* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0891b2;
    --success: #059669;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --accent-light: #bfdbfe;
    --accent-teal: #a5f3fc;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
    min-height: 100vh;
    padding: 0;
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px 40px;
    background: white;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

header .logo {
    max-width: 500px;
    height: auto;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 3.5em;
    margin-bottom: 12px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.subtitle {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.8em;
    font-weight: 400;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

/* Top Lead Capture Section - Compact Multi-Step */
.top-lead-capture-compact {
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    padding: 32px 40px;
    margin: 0 -20px;
    color: white;
    text-align: center;
}

.compact-lead-content {
    max-width: 700px;
    margin: 0 auto;
}

.compact-lead-content h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2em;
    margin-bottom: 8px;
    line-height: 1.2;
}

.compact-benefits {
    font-size: 1em;
    margin-bottom: 24px;
    opacity: 0.95;
    font-weight: 500;
}

.multi-step-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInStep 0.3s ease-out;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1.1em;
    font-family: inherit;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.form-step input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.step-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.step-btn-final {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.step-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

.lead-privacy-compact {
    text-align: center;
    font-size: 0.85em;
    color: var(--text-secondary);
    margin: 0;
}

/* High-Converting Lead Capture Section */
.conversion-section {
    margin-top: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 20px;
    padding: 48px;
    border: 3px solid var(--primary);
}

.conversion-hero {
    text-align: center;
    margin-bottom: 36px;
}

.conversion-headline {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2.2em;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.highlight-number {
    color: var(--success);
    background: rgba(5, 150, 105, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 800;
}

.conversion-subheadline {
    font-size: 1.2em;
    color: var(--text-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.proof-item {
    text-align: center;
}

.proof-icon {
    font-size: 1.8em;
    margin-bottom: 8px;
}

.proof-text {
    font-weight: 600;
    font-size: 0.95em;
    color: var(--text-primary);
    line-height: 1.4;
}

.proof-text small {
    font-size: 0.85em;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Conversion Form Container */
.conversion-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.big-cta-btn {
    width: 100%;
    padding: 24px 32px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.5em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.big-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.5);
}

.conversion-form {
    background: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
}

.conversion-form h3 {
    text-align: center;
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.6em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.benefits-checklist {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.benefit-check {
    padding: 10px 0;
    font-size: 1.05em;
    color: var(--text-primary);
    border-bottom: 1px solid #e2e8f0;
}

.benefit-check:last-child {
    border-bottom: none;
}

.benefit-check strong {
    color: var(--success);
}

.form-inputs {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.form-inputs input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1.1em;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-inputs input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-conversion-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.submit-conversion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
}

.trust-badges {
    text-align: center;
    font-size: 0.9em;
    color: var(--text-secondary);
    margin: 0;
}

/* Testimonial Box */
.testimonial-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--success);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.05em;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    padding: 16px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-cta-text {
    color: white;
    font-size: 1.1em;
}

.sticky-cta-text strong {
    display: block;
    font-size: 1.1em;
    margin-bottom: 4px;
}

.sticky-cta-text span {
    font-size: 0.95em;
    opacity: 0.95;
}

.sticky-cta-button {
    padding: 14px 32px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.sticky-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Main Layout */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
    padding: 40px 0;
    align-items: start;
}

/* Input Section */
.input-section {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 20px;
    border: 1px solid var(--border);
}

.input-section h2 {
    font-family: 'Fjalla One', sans-serif;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-size: 1.8em;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.input-section h2::before {
    content: '⚙️';
    font-size: 1.2em;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 0.9em;
}

.form-group label::before {
    content: '';
    width: 3px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.2s ease;
    background: var(--bg-light);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:hover {
    border-color: #cbd5e0;
    background: var(--bg-white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 0.8em;
}

.calculate-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.calculate-btn span {
    position: relative;
    z-index: 1;
}

.calculate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.calculate-btn:hover::before {
    left: 100%;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.calculate-btn:active {
    transform: translateY(0);
}

/* Results Section */
.results-section {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.results-section h2 {
    font-family: 'Fjalla One', sans-serif;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-size: 1.8em;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.results-section h2::before {
    content: '📊';
    font-size: 1.2em;
}

/* Results Placeholder */
.results-placeholder {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 16px;
    border: 2px dashed var(--border);
}

.placeholder-icon {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.results-placeholder h3 {
    color: var(--text-primary);
    font-size: 1.5em;
    margin-bottom: 12px;
    font-weight: 700;
}

.results-placeholder p {
    color: var(--text-secondary);
    font-size: 1em;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 24px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card:hover::before {
    transform: scaleY(1);
}

.card h3 {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 12px;
}

.card .amount {
    font-size: 2em;
    font-weight: 800;
    color: var(--text-primary);
    margin: 8px 0 12px;
    line-height: 1.1;
}

.card small {
    font-size: 0.8em;
    color: var(--text-secondary);
    line-height: 1.4;
}

.card.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: var(--warning);
}

.card.highlight .amount {
    color: #92400e;
}

.card.highlight h3,
.card.highlight small {
    color: #78350f;
}

.card.positive {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: var(--success);
}

.card.positive .amount {
    color: #065f46;
}

.card.positive h3,
.card.positive small {
    color: #047857;
}

/* Chart Container */
.chart-container {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 32px;
    border: 2px solid var(--border);
}

.chart-container h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
}

/* Table */
.table-container {
    margin-bottom: 32px;
}

.table-container h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.2em;
    font-weight: 700;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 2px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    font-size: 0.9em;
}

thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 700;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
}

tbody tr {
    transition: background 0.2s ease;
}

tbody tr:hover {
    background: var(--bg-light);
}

tbody tr:last-child td {
    border-bottom: none;
    font-weight: 700;
    background: #e0e7ff;
}

/* Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--warning);
    border-radius: 12px;
    padding: 24px;
    border: 2px solid #fbbf24;
}

.disclaimer h4 {
    color: #92400e;
    margin-bottom: 16px;
    font-size: 1.1em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.disclaimer h4::before {
    content: '⚠️';
    font-size: 1.2em;
}

.disclaimer ul {
    list-style: none;
    color: #78350f;
}

.disclaimer li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.disclaimer li::before {
    content: '•';
    position: absolute;
    left: 8px;
    font-weight: bold;
    color: var(--warning);
}

/* Email Capture Section */
.email-capture {
    margin-top: 32px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 16px;
    padding: 32px;
    border: 2px solid var(--primary);
}

.email-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.email-header {
    text-align: center;
    margin-bottom: 28px;
}

.email-header h3 {
    color: var(--text-primary);
    font-size: 1.6em;
    margin-bottom: 12px;
    font-weight: 700;
}

.email-header p {
    color: var(--text-secondary);
    font-size: 1em;
    line-height: 1.6;
}

.email-form {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group-email {
    margin-bottom: 20px;
}

.form-group-email label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 0.9em;
}

.form-group-email input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group-email input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.email-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.email-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.email-submit-btn:active {
    transform: translateY(0);
}

.privacy-note {
    text-align: center;
    font-size: 0.85em;
    color: var(--text-secondary);
    margin-top: 16px;
    margin-bottom: 0;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    font-weight: bold;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.success-message h3 {
    color: var(--text-primary);
    font-size: 1.8em;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-secondary);
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 8px;
}

.success-subtext {
    color: var(--success);
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.results-display {
    animation: fadeIn 0.4s ease-out;
}

/* Responsive */
@media (max-width: 1200px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .input-section {
        position: static;
    }

    .summary-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .conversion-section {
        padding: 32px 20px;
    }

    .conversion-headline {
        font-size: 1.6em;
    }

    .social-proof-bar {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .big-cta-btn {
        font-size: 1.2em;
        padding: 20px 24px;
    }

    .conversion-form {
        padding: 24px 20px;
    }

    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .sticky-cta-button {
        width: 100%;
    }

    header .logo {
        max-width: 300px;
    }

    header h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1em;
    }

    .calculator-wrapper {
        padding: 20px 0;
    }

    .input-section,
    .results-section {
        padding: 24px;
        border-radius: 16px;
    }

    .summary-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 20px;
    }

    .card .amount {
        font-size: 1.75em;
    }

    table {
        font-size: 0.8em;
    }

    th, td {
        padding: 10px 8px;
    }

    .chart-container,
    .table-container {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .email-capture {
        padding: 24px;
    }

    .email-form {
        padding: 20px;
    }

    .email-header h3 {
        font-size: 1.3em;
    }

    .results-placeholder {
        padding: 60px 20px;
    }

    .placeholder-icon {
        font-size: 3em;
    }

    .results-placeholder h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    header .logo {
        max-width: 250px;
    }

    header h1 {
        font-size: 1.75em;
    }

    .input-section h2,
    .results-section h2 {
        font-size: 1.25em;
    }

    .card .amount {
        font-size: 1.5em;
    }
}
