/* ===== AASANKAR v5 - PRODUCTION CSS ===== */

:root {
    --primary: #D4A574;
    --primary-dark: #B8956A;
    --secondary: #8B4513;
    --background: #F4F1E8;
    --background-light: #FAF8F3;
    --accent: #CD853F;
    --dark: #654321;
    --deep-brown: #4A2F1A;
    --light: #F5E6D3;
    --cream: #FFF9F0;
    --success: #22C55E;
    --success-dark: #16A34A;
    --gold-gradient: linear-gradient(135deg, #D4A574 0%, #B8956A 50%, #CD853F 100%);
    --warm-shadow: 0 4px 20px rgba(139, 69, 19, 0.15);
    --glass-bg: rgba(255, 249, 240, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.hindi { font-family: 'Noto Sans Devanagari', sans-serif; }

/* Language switching */
[data-lang="hi"] .lang-en, [data-lang="en"] .lang-hi { display: none !important; }
[data-lang="hi"] .lang-hi, [data-lang="en"] .lang-en { display: block !important; }
[data-lang="hi"] span.lang-hi, [data-lang="en"] span.lang-en { display: inline !important; }

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(205, 133, 63, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===== ANNOUNCEMENT BANNER ===== */
.announcement-bar {
    background: var(--deep-brown);
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.announcement-bar.hidden {
    transform: translateY(-100%);
}

.announcement-messages {
    position: relative;
    width: 100%;
    height: 100%;
}

.announcement-message {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 1rem;
}

.announcement-message.active {
    opacity: 1;
    transform: translateY(0);
}

.announcement-message a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.announcement-message a:hover {
    text-decoration: underline;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 36px;
    left: 0; right: 0;
    z-index: 1000;
    padding: 0.75rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled { 
    top: 0;
    padding: 0.5rem 2rem; 
    box-shadow: var(--warm-shadow); 
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
}

/* Logo - Text Only */
.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.15;
}

.logo-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-english {
    font-family: 'Crimson Text', serif;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-right { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.lang-toggle {
    display: flex;
    background: rgba(212, 165, 116, 0.15);
    border-radius: 8px;
    padding: 0.25rem;
    border: 1px solid rgba(212, 165, 116, 0.25);
}

.lang-btn {
    padding: 0.4rem 0.75rem;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: var(--dark);
    opacity: 0.6;
}

.lang-btn.active {
    background: var(--gold-gradient);
    color: white;
    opacity: 1;
    box-shadow: 0 2px 6px rgba(139, 69, 19, 0.25);
}

.lang-btn:hover:not(.active) { 
    opacity: 0.9; 
    background: rgba(212, 165, 116, 0.2); 
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-gradient);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    text-decoration: none;
}

.nav-cta:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4); 
}

.nav-cta svg { 
    width: 18px; 
    height: 18px; 
    fill: white; 
}

.nav-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--secondary);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-cta-secondary:hover {
    background: rgba(212, 165, 116, 0.15);
    border-color: var(--secondary);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    padding: 7.5rem 2rem 4rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content { 
    animation: fadeInUp 0.8s ease-out; 
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 1px solid rgba(212, 165, 116, 0.3);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.trust-badge.dpdp {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}
.trust-badge.dpdp svg { fill: var(--success); }
.trust-badge.dpdp span { color: var(--success-dark); }

.trust-badge.aws {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(255, 153, 0, 0.05) 100%);
    border-color: rgba(255, 153, 0, 0.3);
}
.trust-badge.aws svg { fill: #FF9900; }
.trust-badge.aws span { color: #CC7A00; }

.trust-badge.encrypted {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}
.trust-badge.encrypted svg { fill: #3B82F6; }
.trust-badge.encrypted span { color: #1D4ED8; }

.trust-badge.make-india {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.12) 0%, rgba(19, 136, 8, 0.08) 100%);
    border-color: rgba(255, 153, 51, 0.35);
}

.make-india-icon {
    width: 20px; height: 14px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.make-india-icon .saffron { flex: 1; background: #FF9933; }
.make-india-icon .white { flex: 1; background: #FFFFFF; position: relative; }
.make-india-icon .white::after {
    content: '●';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-size: 5px;
    color: #000080;
}
.make-india-icon .green { flex: 1; background: #138808; }

.make-india-text { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.make-india-text .main { font-size: 0.65rem; font-weight: 700; color: var(--dark); }
.make-india-text .sub { font-size: 0.5rem; color: #666; font-family: 'Noto Sans Devanagari', sans-serif; }

/* Hero Title */
.hero-title { margin-bottom: 0.5rem; animation: fadeInUp 0.8s ease-out 0.2s both; }

.hero-title .hindi-title {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: clamp(3.6rem, 8.5vw, 6rem);
    font-weight: 700;
    color: var(--secondary);
    display: block;
    line-height: 1.2;
}

.hero-title .english-title {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.1rem, 4.2vw, 3.3rem);
    color: var(--accent);
    display: block;
    margin-top: 0.25rem;
}

.hero-tagline {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.35s both;
}

/* AI CA Box */
.ai-ca-box {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(205, 133, 63, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.38s both;
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ai-ca-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.ai-ca-icon {
    width: 40px; height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.25);
}

.ai-ca-icon svg { width: 22px; height: 22px; fill: white; }

.ai-ca-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
}

.ai-ca-text {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.6;
    text-align: center;
}

/* ===== AI ASSISTANT BOX WITH COLLAPSIBLE STEPS ===== */
.ai-assistant-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.ai-assistant-frame {
    background: var(--cream);
    border: 2px solid var(--primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.12);
}

.ai-assistant-header {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(205, 133, 63, 0.1) 100%);
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thinking-indicator {
    display: flex;
    align-items: center;
    gap: 3px;
}

.thinking-indicator span {
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: thinkingPulse 1.4s ease-in-out infinite;
}

.thinking-indicator span:nth-child(2) { animation-delay: 0.2s; }
.thinking-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes thinkingPulse {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1); }
}

.ai-assistant-content {
    padding: 1rem;
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: left;
    scroll-behavior: smooth;
}

.ai-assistant-content::-webkit-scrollbar { width: 6px; }
.ai-assistant-content::-webkit-scrollbar-track { background: rgba(212, 165, 116, 0.1); border-radius: 3px; }
.ai-assistant-content::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.ai-assistant-content::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

.ai-assistant-footer {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(205, 133, 63, 0.08) 100%);
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
    color: var(--accent);
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

/* Step Items */
.step-item {
    margin-bottom: 0.75rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    background: white;
    transition: all 0.3s ease;
}

.step-item:last-child { margin-bottom: 0; }

.step-item.completed { border-color: rgba(34, 197, 94, 0.3); }
.step-item.active { border-color: var(--primary); box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1); }
.step-item.pending { opacity: 0.5; }

.step-header {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s ease;
}

.step-header:hover { background: rgba(212, 165, 116, 0.05); }

.step-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item.completed .step-icon {
    background: var(--success);
    color: white;
}

.step-item.active .step-icon {
    background: var(--gold-gradient);
    color: white;
    animation: activePulse 2s ease-in-out infinite;
}

.step-item.pending .step-icon {
    background: #e0e0e0;
    color: #999;
}

@keyframes activePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(212, 165, 116, 0); }
}

.step-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.step-status {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}

.step-item.completed .step-status {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-dark);
}

.step-item.active .step-status {
    background: rgba(212, 165, 116, 0.15);
    color: var(--secondary);
}

.step-item.pending .step-status {
    background: #f0f0f0;
    color: #999;
}

/* Step Body - Collapsible */
.step-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(244, 241, 232, 0.5);
}

.step-item.active .step-body,
.step-item.expanded .step-body {
    max-height: 300px;
    padding: 0 1rem 1rem;
}

.step-body-content {
    font-size: 0.85rem;
    color: var(--dark);
    line-height: 1.7;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(212, 165, 116, 0.3);
    text-align: left;
}

.step-body-content .typing-text {
    white-space: pre-wrap;
    display: block;
    text-align: left;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--primary);
    margin-left: 2px;
    animation: cursorBlink 0.6s infinite;
    vertical-align: text-bottom;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Collapsed Summary */
.step-summary {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 0.25rem;
    display: none;
}

.step-item.completed .step-summary { display: block; }
.step-item.expanded .step-summary { display: none; }

/* ===== BOTTOM SECTION ===== */
.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.data-control-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.data-control-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.data-control-title svg { width: 20px; height: 20px; fill: var(--success); }
.data-control-title span { font-weight: 600; color: var(--dark); }

.data-control-text { font-size: 0.95rem; color: var(--secondary); margin-bottom: 0.5rem; }
.data-control-tagline { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.9rem; color: var(--accent); }

/* CTA Section */
.cta-section { text-align: center; }

.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 2px solid var(--light);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.google-btn:hover { 
    border-color: var(--primary); 
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.15); 
    transform: translateY(-2px); 
}

.google-btn svg { width: 24px; height: 24px; flex-shrink: 0; }

.pricing-info { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 0.5rem; 
    margin-top: 1rem; 
    flex-wrap: wrap; 
}

.price-tag { 
    font-family: 'Crimson Text', serif; 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: var(--secondary); 
}

.price-note { font-size: 0.85rem; color: var(--accent); }

/* ===== PRIVACY SECTION ===== */
.privacy-section { padding: 4rem 2rem; background: var(--cream); }

.privacy-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--warm-shadow);
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.privacy-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.privacy-icon svg { width: 32px; height: 32px; fill: var(--success); }

.privacy-title { font-family: 'Crimson Text', serif; font-size: 1.5rem; color: var(--secondary); margin-bottom: 0.5rem; }
.privacy-title-hi { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 1.5rem; color: var(--secondary); margin-bottom: 0.5rem; }
.privacy-text { font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.privacy-text-hi { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.privacy-subtext { font-size: 0.9rem; color: var(--accent); margin-top: 0.5rem; }

/* ===== FOOTER ===== */
footer { background: var(--deep-brown); color: var(--light); padding: 2.5rem 2rem 2rem; }

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links { 
    display: flex; 
    justify-content: center;
    gap: 2rem; 
    flex-wrap: wrap; 
}
.footer-links a { color: var(--light); text-decoration: none; font-size: 0.9rem; opacity: 0.8; transition: opacity 0.3s ease; }
.footer-links a:hover { opacity: 1; }

.footer-bottom {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 230, 211, 0.15);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== MOBILE CTA ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    z-index: 1000;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--gold-gradient);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Mobile Back CTA for Legal Pages */
.mobile-back-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    z-index: 1000;
}

.mobile-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 0.875rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.mobile-back-btn:active {
    transform: scale(0.98);
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--deep-brown);
    color: var(--light);
    padding: 1.25rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hidden { display: none; }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 280px; }
.cookie-text h4 { font-family: 'Crimson Text', serif; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary); }
.cookie-text p { font-size: 0.9rem; line-height: 1.6; opacity: 0.9; }
.cookie-text a { color: var(--primary); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background: var(--gold-gradient);
    color: white;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.3);
}

.cookie-btn.accept:hover { transform: translateY(-2px); }

.cookie-btn.decline, .cookie-btn.settings {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(245, 230, 211, 0.3);
}

.cookie-btn.decline:hover, .cookie-btn.settings:hover { background: rgba(245, 230, 211, 0.1); }

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.cookie-modal-overlay.show { opacity: 1; visibility: visible; }

.cookie-modal {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header { padding: 1.5rem; border-bottom: 1px solid rgba(212, 165, 116, 0.2); }
.cookie-modal-header h3 { font-family: 'Crimson Text', serif; font-size: 1.25rem; color: var(--secondary); margin-bottom: 0.5rem; }
.cookie-modal-header p { font-size: 0.9rem; color: var(--dark); line-height: 1.6; }

.cookie-modal-body { padding: 1.5rem; }

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.cookie-option:last-child { border-bottom: none; }
.cookie-option-info { flex: 1; }
.cookie-option-info h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 0.25rem; }
.cookie-option-info p { font-size: 0.8rem; color: var(--accent); }

.cookie-toggle { position: relative; display: inline-block; width: 50px; height: 28px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ccc;
    border-radius: 28px;
    transition: 0.3s;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px; width: 22px;
    left: 3px; bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--success); }
.cookie-toggle input:checked + .cookie-toggle-slider:before { transform: translateX(22px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { background: var(--success); opacity: 0.7; cursor: not-allowed; }

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ai-assistant-content { max-height: 400px; }
}

@media (max-width: 768px) {
    .announcement-bar { font-size: 0.75rem; padding: 0.4rem 0.5rem; height: 32px; }
    
    nav { padding: 0.625rem 1rem; top: 32px; }
    .nav-content { height: 44px; }
    .nav-cta, .nav-cta-secondary { display: none; }
    .mobile-cta { display: block; }
    .mobile-back-cta { display: block; }
    
    .logo-hindi { font-size: 1.2rem; }
    .logo-english { font-size: 0.65rem; }
    
    .hero { padding: 6rem 1.25rem 6rem; min-height: auto; }
    .hero-title .hindi-title { font-size: 3.3rem; }
    .hero-title .english-title { font-size: 1.8rem; }
    
    .ai-assistant-content { max-height: 350px; padding: 0.75rem; }
    .step-header { padding: 0.6rem 0.75rem; }
    .step-title { font-size: 0.85rem; }
    .step-body-content { font-size: 0.8rem; }
    
    .privacy-card { padding: 2rem 1.5rem; }
    .privacy-section { padding: 3rem 1.25rem; }
    
    footer { padding-bottom: 5rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; gap: 1.5rem; }
    
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; justify-content: center; }
    .mobile-cta { bottom: 0; }
    .cookie-banner.show ~ .mobile-cta { bottom: auto; }
}

@media (max-width: 575px) {
    .announcement-bar { font-size: 0.7rem; height: 30px; }
    
    .logo-hindi { font-size: 1.15rem; }
    .logo-english { font-size: 0.6rem; }
    
    .hero { padding: 5.5rem 1rem 6rem; }
    .hero-title .hindi-title { font-size: 2.7rem; }
    .hero-title .english-title { font-size: 1.6rem; }
    .hero-tagline { font-size: 1.1rem; }
    .hero-subtitle { font-size: 0.9rem; }
    
    .trust-badges { gap: 0.4rem; }
    .trust-badge { padding: 0.3rem 0.5rem; font-size: 0.65rem; }
    .trust-badge svg { width: 12px; height: 12px; }
    
    .ai-ca-box { padding: 1rem; }
    .ai-ca-title { font-size: 1rem; }
    .ai-ca-text { font-size: 0.9rem; }
    
    .ai-assistant-content { max-height: 320px; }
    .step-icon { width: 20px; height: 20px; font-size: 0.7rem; }
    .step-title { font-size: 0.8rem; }
    .step-status { font-size: 0.7rem; padding: 0.2rem 0.5rem; }
    .step-summary { font-size: 0.75rem; }
    
    .google-btn { width: 100%; justify-content: center; padding: 0.875rem 1.5rem; }
    
    .data-control-box { padding: 1.25rem; }
    .data-control-text { font-size: 0.9rem; }
    
    .pricing-info { flex-direction: column; gap: 0.25rem; }
    .price-tag { font-size: 1.15rem; }
    
    .privacy-card { padding: 1.5rem 1.25rem; border-radius: 16px; }
    .privacy-icon { width: 56px; height: 56px; }
    .privacy-icon svg { width: 28px; height: 28px; }
    .privacy-title, .privacy-title-hi { font-size: 1.35rem; }
    
    .footer-links { flex-direction: column; gap: 1rem; }
}

@media (max-width: 375px) {
    .announcement-bar { font-size: 0.65rem; }
    .hero { padding: 5rem 0.75rem 5.5rem; }
    .hero-title .hindi-title { font-size: 2.4rem; }
    .hero-title .english-title { font-size: 1.4rem; }
    .logo-hindi { font-size: 1rem; }
    .logo-english { font-size: 0.55rem; }
    .lang-btn { padding: 0.3rem 0.5rem; font-size: 0.75rem; }
}

/* ===== AUDIO TOGGLE BUTTON ===== */
.audio-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.audio-toggle:hover {
    background: rgba(212, 165, 116, 0.25);
    border-color: var(--primary);
}

.audio-toggle svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
    transition: all 0.3s ease;
}

.audio-toggle .audio-on,
.audio-toggle .audio-off {
    position: absolute;
}

/* Default: show audio-on (speaker icon), hide audio-off (muted icon) */
.audio-toggle .audio-on {
    opacity: 1;
}

.audio-toggle .audio-off {
    opacity: 0;
}

/* When muted: show audio-off, hide audio-on */
.audio-toggle.muted .audio-on {
    opacity: 0;
}

.audio-toggle.muted .audio-off {
    opacity: 1;
}

.audio-toggle.muted {
    background: rgba(139, 69, 19, 0.1);
}

.audio-toggle.muted svg {
    fill: var(--accent);
}

/* Sound wave animation when playing */
.audio-toggle.playing::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: soundWave 1.5s ease-out infinite;
}

@keyframes soundWave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===== FOOTER BRAND STYLES ===== */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-beta {
    font-size: 0.75rem;
    color: var(--light);
    opacity: 0.8;
}

.footer-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* ===== LEGAL PAGE STYLES ===== */
.legal-page {
    min-height: 100vh;
    padding: 7rem 2rem 4rem;
    background: var(--background);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
}

.legal-header h1 {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.legal-beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success-dark);
}

.legal-content {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--warm-shadow);
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.legal-section li strong {
    color: var(--secondary);
}

.legal-section a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--secondary);
}

/* Legal Table */
.legal-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.legal-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.legal-table th {
    background: rgba(212, 165, 116, 0.1);
    font-weight: 600;
    color: var(--secondary);
}

.legal-table tr:hover {
    background: rgba(212, 165, 116, 0.05);
}

/* Legal Disclaimer Box */
.legal-disclaimer {
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.legal-disclaimer p {
    margin-bottom: 0;
}

.legal-disclaimer.warning {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.3);
}

.legal-disclaimer.warning h3 {
    color: #B45309;
    margin-top: 0;
}

.legal-disclaimer.warning ul {
    margin-bottom: 0;
}

/* Legal Contact Info */
.legal-contact-info {
    background: var(--glass-bg);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.legal-contact-info p {
    margin-bottom: 0.5rem;
}

.legal-contact-info p:last-child {
    margin-bottom: 0;
}

/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-page .legal-header {
    border-bottom: none;
    padding-bottom: 1rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--warm-shadow);
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.2);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.contact-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-address,
.contact-response {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
}

.contact-note {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 0.25rem;
}

/* Support Categories */
.support-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.support-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.support-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-content h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.support-content p {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.faq-item {
    padding: 1rem;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.faq-item h4 {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0;
}

/* Email CTA */
.email-cta {
    text-align: center;
    margin-top: 2rem;
}

.contact-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.contact-email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.4);
}

.contact-email-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* Beta Notice */
.beta-notice {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(205, 133, 63, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.beta-notice h3 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.beta-notice p {
    margin-bottom: 0;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 1rem 3rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .support-categories {
        grid-template-columns: 1fr;
    }
    
    .legal-table {
        font-size: 0.8rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 0.5rem;
    }
    
    /* Add space for mobile back button */
    .legal-page ~ footer {
        padding-bottom: 5rem;
    }
}

@media (max-width: 575px) {
    .legal-header h1 {
        font-size: 1.75rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-content {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .footer-brand {
        text-align: center;
    }
}

/* Audio toggle responsive */
@media (max-width: 768px) {
    .audio-toggle {
        width: 36px;
        height: 36px;
    }
    
    .audio-toggle svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 575px) {
    .audio-toggle {
        width: 34px;
        height: 34px;
    }
    
    .audio-toggle svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== UNIFIED MODAL STYLES ===== */
/* Legal Modal Overlay */
.legal-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.legal-modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* Legal Modal */
.legal-modal {
    background: white;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.legal-modal-overlay.show .legal-modal {
    transform: translateY(0);
}

/* Legal Modal Header */
.legal-modal-header {
    padding: 1.5rem 2rem;
    background: var(--gold-gradient);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.legal-modal-header h2 {
    font-family: 'Noto Sans Devanagari', 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}
.legal-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.legal-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}
.legal-modal-close svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Legal Modal Content */
.legal-modal-content {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}
.legal-modal-content h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}
.legal-modal-content h3:first-child {
    margin-top: 0;
}
.legal-modal-content p {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.legal-modal-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: var(--dark);
    line-height: 1.8;
}
.legal-modal-content li {
    margin-bottom: 0.5rem;
}
.legal-modal-content strong {
    color: var(--secondary);
}
.legal-modal-content a {
    color: var(--primary);
    text-decoration: none;
}
.legal-modal-content a:hover {
    text-decoration: underline;
}

/* Legal Note/Warning Boxes */
.legal-note {
    background: rgba(212, 165, 116, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}
.legal-note.legal-warning {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #EF4444;
}
.legal-note p {
    margin: 0;
}

/* Legal Modal Footer */
.legal-modal-footer {
    padding: 1rem 2rem;
    background: var(--light);
    text-align: center;
}
.legal-modal-footer button {
    background: var(--gold-gradient);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.legal-modal-footer button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* Contact Cards in Modal */
.contact-cards-modal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-card-modal {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}
.contact-card-modal .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.contact-card-modal h4 {
    color: var(--secondary);
    margin: 0.5rem 0;
    font-size: 1rem;
}
.contact-card-modal a {
    color: var(--primary);
    font-weight: 500;
}
.contact-card-modal .contact-note {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 0.5rem;
}

/* Help Items in Contact Modal */
.help-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}
.help-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
    align-items: flex-start;
}
.help-item .help-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.help-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}
.help-item p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--accent);
}

/* Beta Notice */
.beta-notice-modal {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
}
.beta-notice-modal p {
    margin: 0;
    color: #D97706;
}

/* Calculator Modal Specific */
.calculator-modal-overlay .legal-modal {
    max-width: 1100px;
    max-height: 95vh;
}
.calculator-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}
.calculator-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .calculator-layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* Calculator Input Section */
.calc-section {
    background: var(--light);
    border-radius: 16px;
    padding: 1.5rem;
}
.calc-section-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: var(--secondary);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

/* Calculator Input Groups */
.calc-input-group {
    margin-bottom: 1rem;
}
.calc-input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.calc-input-group label small {
    color: var(--accent);
    font-weight: 400;
}
.calc-input-wrapper {
    position: relative;
}
.calc-input-wrapper .currency {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-weight: 500;
}
.calc-input-wrapper input {
    width: 100%;
    padding: 0.875rem 0.875rem 0.875rem 2.25rem;
    border: 2px solid rgba(212, 165, 116, 0.25);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
}
.calc-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

/* Collapsible Sections */
.collapsible-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: #EDE4D8;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}
.collapsible-header:hover {
    background: #E5DCD0;
}
.collapsible-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}
.collapsible-header svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    transition: transform 0.3s ease;
}
.collapsible-header.open svg {
    transform: rotate(180deg);
}
.collapsible-content {
    display: none;
    padding: 0.75rem 0;
}
.collapsible-content.open {
    display: block;
}

/* City Select */
.city-select {
    display: flex;
    gap: 0.75rem;
}
.city-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 2px solid rgba(212, 165, 116, 0.25);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-size: 0.9rem;
}
.city-option:hover {
    border-color: var(--primary);
}
.city-option.selected {
    border-color: var(--primary);
    background: rgba(212, 165, 116, 0.1);
}
.city-option input {
    display: none;
}
.city-option .radio-dot {
    width: 18px;
    height: 18px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}
.city-option.selected .radio-dot {
    border-color: var(--primary);
}
.city-option.selected .radio-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

/* Calculate Button */
.calculate-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}
.calculate-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* Results Placeholder */
.results-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--accent);
}
.results-placeholder svg {
    width: 64px;
    height: 64px;
    fill: var(--primary);
    opacity: 0.4;
    margin-bottom: 1rem;
}
.results-placeholder p {
    margin: 0;
}

/* Results Content */
.results-content {
    display: none;
}
.results-content.show {
    display: block;
}

/* Recommendation Banner */
.recommendation-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    background: var(--success-light);
}
.recommendation-banner.new-wins {
    background: var(--success-light);
}
.recommendation-banner.old-wins {
    background: var(--warning-light);
}
.recommendation-banner.tie {
    background: var(--info-light);
}
.recommendation-text h3 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    color: var(--success-dark);
}
.recommendation-banner.old-wins .recommendation-text h3 {
    color: #D97706;
}
.recommendation-banner.tie .recommendation-text h3 {
    color: var(--info);
}
.recommendation-text p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}
.savings-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-dark);
}
.recommendation-banner.old-wins .savings-amount {
    color: #D97706;
}
.recommendation-banner.tie .savings-amount {
    color: var(--info);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
@media (max-width: 550px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* Regime Cards */
.regime-card {
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(212, 165, 116, 0.2);
    overflow: hidden;
}
.regime-card.winner {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.regime-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: var(--light);
}
.regime-header h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--secondary);
}
.winner-badge {
    background: var(--success);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}
.regime-body {
    padding: 1rem;
}
.regime-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}
.regime-row:last-child {
    border-bottom: none;
}
.regime-row.total {
    font-weight: 600;
    color: var(--secondary);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(212, 165, 116, 0.2);
    border-bottom: none;
}

/* Breakdown Section */
.breakdown-section {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(212, 165, 116, 0.15);
}
.breakdown-section h4 {
    font-size: 0.95rem;
    margin: 0 0 0.75rem 0;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.breakdown-section h4 svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}
.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    color: var(--dark);
}

/* Reset Button */
.reset-btn {
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.reset-btn:hover {
    background: rgba(212, 165, 116, 0.1);
}

/* Modal Responsive */
@media (max-width: 600px) {
    .legal-modal {
        width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }
    .legal-modal-header {
        padding: 1rem 1.25rem;
    }
    .legal-modal-header h2 {
        font-size: 1.25rem;
    }
    .legal-modal-content {
        padding: 1.25rem;
    }
    .legal-modal-footer {
        padding: 0.875rem 1.25rem;
    }
    .city-select {
        flex-direction: column;
    }
}
