/* ============================================================
   CSS Variables & Reset
   ============================================================ */
:root {
    --navy:          #12355B;
    --navy-dark:     #0A2240;
    --teal:          #1CA7A8;
    --teal-dark:     #147C7D;
    --teal-light:    #E0F5F5;
    --light-blue:    #EAF6FA;
    --gold:          #F4B942;
    --coral:         #F26D5B;
    --coral-light:   #FFF0ED;
    --white:         #ffffff;
    --charcoal:      #2B2B2B;
    --text-medium:   #4A5568;
    --text-light:    #718096;
    --border:        #C8E4EE;
    --success:       #22c55e;
    --shadow:        0 4px 24px rgba(18, 53, 91, 0.10);
    --shadow-lg:     0 8px 40px rgba(18, 53, 91, 0.15);
    --radius:        12px;
    --radius-lg:     20px;

    /* Aliases for existing selectors that use old names */
    --primary:       #12355B;
    --primary-dark:  #0A2240;
    --accent:        #1CA7A8;
    --accent-dark:   #147C7D;
    --accent-light:  #EAF6FA;
    --light:         #EAF6FA;
    --text:          #2B2B2B;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }

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

/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(18, 53, 91, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav a {
    color: var(--teal);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

.header-nav a:hover { color: var(--teal-dark); }

.nav-divider {
    color: var(--border);
    font-size: 11px;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    background: var(--light-blue);
    padding: 72px 0 88px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(28, 167, 168, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: end;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 14px;
    line-height: 1.65;
    max-width: 520px;
}

.hero-trust {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-style: italic;
}

/* Hero form card (embedded in hero) */
.hero-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    margin-top: 8px;
}

.hero-form-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

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

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--charcoal);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input::placeholder { color: var(--text-light); }
.form-group input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(28, 167, 168, 0.12);
}

.btn-primary {
    display: block;
    width: 100%;
    background: var(--accent);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 16px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-align: center;
    margin-top: 4px;
    letter-spacing: 0.2px;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 167, 168, 0.40);
}

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

.inline-btn {
    display: inline-block;
    width: auto;
    padding: 14px 32px;
    margin-top: 28px;
}

.btn-full { width: 100%; display: block; }

.btn-large {
    font-size: 18px;
    padding: 18px 48px;
    width: auto;
    display: inline-block;
    border-radius: 10px;
}

.btn-outline-navy {
    display: inline-block;
    margin-top: 24px;
    padding: 13px 28px;
    border: 2px solid var(--navy);
    border-radius: 8px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

.form-error {
    color: var(--coral);
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
}

.form-privacy {
    font-size: 12px;
    color: var(--text-medium);
    text-align: center;
    margin-top: 12px;
    line-height: 1.55;
}

.form-success {
    text-align: center;
    padding: 16px 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin: 0 auto 18px;
}

.form-success h3 { color: var(--navy); font-size: 20px; margin-bottom: 8px; }
.form-success p  { color: var(--text-medium); font-size: 14px; }

/* Checklist Mockup */
.hero-visual { position: relative; }

.checklist-mockup {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    color: var(--navy);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.mockup-header { margin-bottom: 20px; }

.mockup-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
}

.mockup-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.mockup-subtitle {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 28px;
    line-height: 1.45;
}

.mockup-items { margin-bottom: 28px; }

.mockup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    font-size: 14px;
    color: var(--charcoal);
    border-bottom: 1px solid var(--border);
    line-height: 1.4;
}

.mockup-item:last-child { border-bottom: none; }

.check-box {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--teal);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.mockup-footer {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.mockup-glow {
    position: absolute;
    bottom: -18px;
    left: 18px;
    right: -18px;
    height: 100%;
    background: rgba(28, 167, 168, 0.10);
    border-radius: var(--radius-lg);
    z-index: 1;
    filter: blur(2px);
}

/* ============================================================
   Shared Section Styles
   ============================================================ */
.section-alt   { background: var(--light-blue);    padding: 88px 0; }
.section-white { background: var(--white);         padding: 88px 0; }
.section-dark  { background: var(--navy-dark);     padding: 88px 0; }
.section-coral { background: var(--coral-light);   padding: 88px 0; border-top: 1px solid #F9C4BC; border-bottom: 1px solid #F9C4BC; }
.section-navy  { background: var(--navy);          padding: 88px 0; }

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-heading.text-left  { text-align: left; }
.section-heading.text-white { color: var(--white); }

.section-subheading {
    text-align: center;
    color: var(--text-medium);
    font-size: 17px;
    margin-bottom: 52px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================================
   What's Inside — Benefits Grid
   ============================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.benefit-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.benefit-icon { font-size: 34px; margin-bottom: 14px; }

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.65;
}

/* ============================================================
   Who This Is For
   ============================================================ */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 64px;
    align-items: start;
}

.checklist-bullets {
    list-style: none;
    margin: 28px 0 0;
}

.checklist-bullets li {
    padding: 13px 0 13px 40px;
    position: relative;
    font-size: 16px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    line-height: 1.55;
}

.checklist-bullets li:last-child { border-bottom: none; }

.checklist-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 13px;
    width: 24px;
    height: 24px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-box {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
    margin-bottom: 16px;
    transition: box-shadow 0.2s;
}

.highlight-box:hover { box-shadow: var(--shadow); }

.highlight-box.highlight-accent {
    background: var(--teal-light);
    border-color: var(--teal);
}

.highlight-number {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================================
   About / Why I Made This
   ============================================================ */
.about-layout {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 820px;
    margin: 0 auto;
}

.about-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--gold);
    box-shadow: 0 6px 24px rgba(18, 53, 91, 0.20);
    flex-shrink: 0;
}

.about-text {
    font-size: 16px;
    color: var(--charcoal);
    line-height: 1.75;
    margin-bottom: 18px;
}

/* ============================================================
   Quick Value Section
   ============================================================ */
.value-box {
    max-width: 820px;
    margin: 0 auto;
}

.value-intro {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 36px;
    text-align: center;
    line-height: 1.6;
}

.warning-questions { margin-bottom: 32px; }

.warning-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid #F9C4BC;
    border-left: 4px solid var(--coral);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s;
}

.warning-item:hover { box-shadow: var(--shadow); }

.warning-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.warning-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.4;
}

.warning-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.65;
}

.coral-eyebrow {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--coral);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.coral-cta-wrap {
    text-align: center;
    margin-top: 36px;
}

.value-cta-text {
    font-size: 16px;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ============================================================
   Second CTA Section
   ============================================================ */
.section-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 88px 0;
}

.cta-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.cta-subtext {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.section-cta .btn-primary {
    background: var(--teal);
    color: var(--white);
    width: auto;
    display: inline-block;
    box-shadow: 0 6px 24px rgba(28, 167, 168, 0.35);
}

.section-cta .btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(28, 167, 168, 0.45);
}

/* ============================================================
   Tools Section
   ============================================================ */
.affiliate-disclosure-inline {
    background: #FFFBEA;
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 13px;
    color: #6B4F10;
    margin-bottom: 44px;
    line-height: 1.55;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.tool-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.tool-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.tool-icon { font-size: 32px; margin-bottom: 14px; }

.tool-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.tool-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.65;
}

/* ============================================================
   Social Follow
   ============================================================ */
.social-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.80);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.social-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.social-btn.facebook  { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.social-btn.tiktok    { background: #000000; }
.social-btn.youtube   { background: #ff0000; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

.footer-disclaimers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 36px;
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.65;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy { font-size: 13px; }

.footer-links { display: flex; gap: 24px; }

.footer-links a {
    font-size: 13px;
    color: var(--light-blue);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* (standalone form band removed — form is now embedded in hero) */

/* ============================================================
   Brand Intro
   ============================================================ */
.brand-intro-layout {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: center;
}

.brand-intro-photo { flex-shrink: 0; }

.brand-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid var(--gold);
    box-shadow: 0 2px 10px rgba(18, 53, 91, 0.15);
    display: block;
    margin: 0 auto;
}

.brand-intro-text {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 18px;
}

/* ============================================================
   What You'll Find Here — Share Grid
   ============================================================ */
.share-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 52px;
}

.share-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.share-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.share-icon { font-size: 32px; margin-bottom: 14px; }

.share-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.share-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.65;
}

/* ============================================================
   Footer Brand Block
   ============================================================ */
.footer-brand {
    text-align: center;
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   Urgency Callout
   ============================================================ */
.urgency-callout {
    display: inline-block;
    background: #FFF8E7;
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #7A5000;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ============================================================
   Trust Strip
   ============================================================ */
.trust-strip {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 24px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ============================================================
   Hero Form Sub-text
   ============================================================ */
.hero-form-sub {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ============================================================
   Mockup Bonus Tag
   ============================================================ */
.mockup-bonus-tag {
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* ============================================================
   What Happens After You Sign Up — Steps
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.step-card {
    background: var(--light-blue);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}

.step-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    margin-top: 48px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--teal); }

.faq-question[aria-expanded="true"] { color: var(--teal); }

.faq-icon {
    font-size: 22px;
    font-weight: 400;
    flex-shrink: 0;
    color: var(--teal);
    line-height: 1;
}

.faq-answer {
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.75;
}

.faq-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================================
   Tool Card CTA Button
   ============================================================ */
.tool-cta-btn {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
    border-bottom: 1px solid var(--teal);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.tool-cta-btn:hover {
    color: var(--teal-dark);
    border-color: var(--teal-dark);
}

.affiliate-disclosure-inline a {
    color: #6B4F10;
    text-decoration: underline;
}

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
    .steps-grid             { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    .benefits-grid          { grid-template-columns: repeat(2, 1fr); }
    .hero-inner             { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual            { display: none; }
    .two-col-layout         { grid-template-columns: 1fr; gap: 48px; }
    .col-visual             { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .highlight-box          { margin-bottom: 0; }
    .about-layout           { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .about-photo            { margin: 0 auto; }
    .brand-intro-layout     { grid-template-columns: 1fr; gap: 16px; text-align: center; }
    .brand-photo            { width: 64px; height: 64px; }
    .section-heading.text-left { text-align: center; }
    .form-row-inline        { flex-direction: column; }
    .btn-form               { width: 100%; }
}

@media (max-width: 640px) {
    .hero                            { padding: 52px 0 68px; }
    .section-alt,
    .section-white,
    .section-dark,
    .section-cta,
    .section-coral,
    .section-navy                    { padding: 64px 0; }
    .header-nav                      { display: none; }
    .btn-large                       { padding: 16px 28px; font-size: 16px; }
    .footer-bottom                   { flex-direction: column; text-align: center; }
    .footer-links                    { justify-content: center; }
    .col-visual                      { grid-template-columns: 1fr; }
    .benefits-grid                   { grid-template-columns: repeat(2, 1fr); }
    .tools-grid                      { grid-template-columns: 1fr; }
    .share-grid                      { grid-template-columns: 1fr; }
    .warning-item                    { flex-direction: column; gap: 12px; }
}
