/* ==========================================
   EmailForProfessionals — Main Stylesheet
   Ported from LBE design system
   ========================================== */

:root {
    --primary: #0D9488;
    --primary-light: #2DD4BF;
    --primary-dark: #0F766E;
    --accent: #06B6D4;
    --bg: #FAFFFE;
    --bg-dark: #0F172A;
    --bg-card: #FFFFFF;
    --bg-subtle: #F0FDFA;
    --text: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --gradient: linear-gradient(135deg, #0D9488 0%, #06B6D4 100%);
    --gradient-text: linear-gradient(135deg, #0D9488 0%, #06B6D4 50%, #0891B2 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(13,148,136,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }

a { color: var(--primary); }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-top: 16px;
}
.section-badge {
    display: inline-block;
    background: var(--bg-subtle);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}
.btn-primary {
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 15px rgba(5,96,105,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13,148,136,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-nav {
    background: var(--gradient);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(13,148,136,0.3); }

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250,255,254,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,0.5);
    transition: var(--transition);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text);
    letter-spacing: 0.02em;
    word-spacing: 0.08em;
}
.logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text); margin: 5px 0;
    transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
    padding: 90px 0 40px;
    background: linear-gradient(180deg, var(--bg) 0%, #ECFDF5 100%);
    overflow: hidden;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(13,148,136,0.08);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.8;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
    margin-top: 40px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.trust-icon { font-size: 1rem; }

/* Hero Cards (floating) */
.hero-visual {
    position: relative;
    height: 520px;
}
.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    font-size: 0.95rem;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}
.card-icon { font-size: 1.3rem; }
.card-status {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
}
.card-status.done { background: #ECFDF5; color: #059669; }
.card-status.progress { background: #FEF3C7; color: #D97706; }
.card-1 { top: 0px; left: 10px; animation-delay: 0s; }
.card-2 { top: 100px; right: 0; animation-delay: 1.5s; }
.card-3 { top: 200px; left: 30px; animation-delay: 3s; }
.card-4 { top: 300px; right: 20px; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ---- Problem Section ---- */
.problem { padding: 50px 0; }
.problem-content {
    max-width: 800px;
    margin: 0 auto;
}
.problem-content h2 {
    margin-bottom: 32px;
    text-align: center;
}
.problem-bullets {
    list-style: none;
    margin-bottom: 32px;
}
.problem-bullets li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.problem-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
.problem-closing {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
    text-align: center;
    margin-top: 24px;
    font-style: italic;
}

/* ---- How It Works ---- */
.how-it-works {
    padding: 50px 0;
    background: var(--bg-subtle);
}
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}
.step {
    text-align: center;
    max-width: 300px;
    padding: 40px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.step-number {
    width: 56px; height: 56px;
    background: var(--gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }
.step-arrow {
    font-size: 2rem;
    color: var(--text-light);
    margin-top: 60px;
    font-weight: 300;
}
.steps-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ---- Value Stack / Pricing ---- */
.value-stack { padding: 50px 0; }
.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.value-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.value-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.value-card .price-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.value-card .price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}
.value-card .price-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}
.value-card .price-period {
    font-size: 1rem;
    color: var(--text-muted);
}
.value-card ul {
    list-style: none;
}
.value-card ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
}
.value-card ul li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: 700;
}
.value-tagline {
    text-align: center;
    margin-top: 48px;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    font-style: italic;
}

/* ---- FAQ ---- */
.faq { padding: 50px 0; background: var(--bg-subtle); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    padding-bottom: 24px;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); color: var(--primary); }
.faq-item.active .faq-answer { max-height: 300px; }

/* ---- Final CTA ---- */
.cta {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}
.cta h2 { color: white; margin-bottom: 16px; }
.cta p { color: var(--text-light); font-size: 1.125rem; }
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.cta-email {
    margin-top: 24px;
    color: var(--text-light);
    font-size: 0.95rem;
}
.cta-email a {
    color: var(--primary-light);
    text-decoration: none;
}
.cta-email a:hover { text-decoration: underline; }
.cta-company {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ---- Footer ---- */
.footer {
    padding: 40px 0 24px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand .logo { color: white; }
.footer-brand p { color: var(--text-light); margin-top: 8px; font-size: 0.85rem; }
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: white; }
.footer-bottom {
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.8;
}

/* ---- Legal Pages ---- */
.legal-page {
    padding: 140px 0 80px;
    min-height: 60vh;
}
.legal-page .legal-container {
    max-width: 800px;
    margin: 0 auto;
}
.legal-page h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}
.legal-page .legal-date {
    color: var(--text-muted);
    margin-bottom: 40px;
}
.legal-page .legal-content h2 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 12px;
}
.legal-page .legal-content h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 8px;
}
.legal-page .legal-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}
.legal-page .legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-page .legal-content ul li {
    color: var(--text-muted);
    padding: 4px 0;
    line-height: 1.7;
}
.legal-page .legal-content a {
    color: var(--primary);
    text-decoration: underline;
}
.legal-page .legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.legal-page .legal-content th,
.legal-page .legal-content td {
    border: 1px solid var(--border);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.95rem;
}
.legal-page .legal-content th {
    background: var(--bg-subtle);
    font-weight: 600;
    color: var(--text);
}
.legal-page .legal-content td {
    color: var(--text-muted);
}

/* ---- Success Page ---- */
.success-page {
    padding: 140px 0 80px;
    text-align: center;
    min-height: 70vh;
}
.success-icon {
    width: 80px;
    height: 80px;
    background: #ECFDF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
}
.success-page h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 12px;
}
.success-page > .container > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.success-steps {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: left;
    max-width: 640px;
    margin: 0 auto 32px;
}
.success-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}
.success-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.success-step:last-child { margin-bottom: 0; }
.success-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.success-step h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.success-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.success-help {
    background: rgba(13,148,136,0.06);
    border: 1px solid rgba(13,148,136,0.15);
    border-radius: var(--radius);
    padding: 24px;
    max-width: 640px;
    margin: 0 auto 24px;
}
.success-help p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.success-help strong {
    color: var(--text);
}

/* ---- Unsubscribe Page ---- */
.unsub-page {
    padding: 140px 0 80px;
    text-align: center;
    min-height: 60vh;
}
.unsub-page h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}
.unsub-page > .container > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}
.unsub-form {
    max-width: 480px;
    margin: 0 auto;
}
.unsub-form label {
    display: block;
    text-align: left;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}
.unsub-form input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    margin-bottom: 16px;
}
.unsub-form input[type="email"]:focus {
    border-color: var(--primary);
}
.unsub-form button {
    width: 100%;
}
.unsub-confirmation {
    display: none;
    max-width: 480px;
    margin: 32px auto 0;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: var(--radius);
    padding: 24px;
}
.unsub-confirmation.visible {
    display: block;
}
.unsub-confirmation p {
    color: #065F46;
}
.unsub-confirmation p:first-child {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* ---- Inner Page Hero ---- */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--bg) 0%, #ECFDF5 100%);
    text-align: center;
}
.page-hero h1 {
    margin-bottom: 16px;
}
.page-hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto 32px;
}

/* ---- Inner Page Sections ---- */
.inner-section {
    padding: 80px 0;
}
.inner-section.alt {
    background: var(--bg-subtle);
}
.inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.inner-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.inner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.inner-card h3 {
    margin-bottom: 12px;
    color: var(--text);
}
.inner-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Inner steps */
.inner-steps {
    max-width: 700px;
    margin: 0 auto;
}
.inner-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}
.inner-step:last-child { margin-bottom: 0; }
.inner-step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}
.inner-step h3 {
    margin-bottom: 8px;
}
.inner-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Inner checkout */
.inner-checkout {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-glow);
}
.inner-checkout .checkout-price {
    margin-bottom: 8px;
}
.inner-checkout .checkout-price span:first-child {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
}
.inner-checkout .checkout-price span:last-child {
    font-size: 1rem;
    color: var(--text-muted);
}
.inner-checkout .checkout-annual {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}
.inner-checkout .checkout-annual span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}
.checkout-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}
.checkout-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
}
.checkout-features li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: 700;
}
.checkout-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Domain examples grid */
.domain-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 560px;
    margin: 0 auto;
}
.domain-example {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}
.domain-example:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.domain-example .email {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.domain-example .role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Before/After comparison */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 640px;
    margin: 0 auto;
}
.comparison-card {
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}
.comparison-card.before {
    background: #FEF2F2;
    border: 2px solid #FECACA;
}
.comparison-card.after {
    background: #ECFDF5;
    border: 2px solid #A7F3D0;
}
.comparison-card .label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.comparison-card.before .label { color: #EF4444; }
.comparison-card.after .label { color: #059669; }
.comparison-card .email {
    font-family: monospace;
    font-size: 1.15rem;
    font-weight: 600;
}
.comparison-card.before .email { color: #DC2626; }
.comparison-card.after .email { color: #047857; }
.comparison-card .desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Why it matters grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.why-card .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.why-card h3 { margin-bottom: 12px; }
.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; grid-template-columns: 1fr 1fr; }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .inner-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: white;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }
    .mobile-toggle { display: block; }
    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); margin: 0; }
    .value-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .inner-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .comparison { grid-template-columns: 1fr; }
    .domain-examples { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

/* ── Email Morph Card ── */
.card-5 {
    top: 400px;
    left: 10px;
    animation-delay: 1.5s !important;
    z-index: 10;
}

.morph-email {
    transition: color 0.5s ease, font-weight 0.3s ease;
}

.morph-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
    transition: background 0.5s ease, color 0.5s ease;
    background: #FEF2F2;
    color: #e74c3c;
}

.card-morph {
    border: 2px solid rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(16,185,129,0.05));
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
}

/* ── Logo TLD ── */
.logo-tld {
    font-size: 0.6em;
    font-weight: 400;
    color: var(--text-light);
    vertical-align: baseline;
}

/* ── Value Footnote ── */
.value-footnote {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}
