/*
Theme Name: Sunny TFG Loans Landing
Theme URI: https://sunny-todarofinancegroup.com
Author: TFG Loans
Author URI: https://sunny-todarofinancegroup.com
Description: High-converting landing page theme for Sunny - TFG Loans (Todaro Finance Group). Built for lead generation — free 15-minute strategy sessions. Includes dedicated landing page template, sticky header, conversion-optimised form, and fully responsive design. Mortgage broker + tax strategist positioning for Sydney market.
Version: 1.2.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sunny-tfg
Tags: landing-page, mortgage, finance, one-page, custom-colors, responsive-layout, sticky-post, threaded-comments
*/

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary palette */
    --blue: #4A90C4;
    --blue-hero: #3D7DB8;
    --blue-deep: #2C5F8A;
    --blue-dark: #1E3A5F;
    --blue-darkest: #162C4A;
    --blue-trust: #3A6FA0;
    --blue-light: #5BA3D9;
    --blue-pale: #E8F1FA;
    --blue-cta: #3B7DD8;

    /* Accents */
    --red: #C0392B;
    --green: #27AE60;
    --amber: #F39C12;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #F5F8FB;
    --cream: #F0F5FA;
    --text: #1A2B3D;
    --text-body: #4A5568;
    --text-muted: #7B8CA3;
    --border: #D6E3F0;

    /* Shadows */
    --shadow: 0 4px 24px rgba(44, 95, 138, 0.08);
    --shadow-md: 0 8px 40px rgba(44, 95, 138, 0.12);
    --shadow-blue: 0 4px 20px rgba(59, 125, 216, 0.3);

    /* Radii */
    --r: 12px;
    --rl: 20px;

    /* Fonts */
    --fd: 'DM Serif Display', Georgia, serif;
    --fb: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fb);
    color: var(--text);
    background: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce-bar {
    background: var(--amber);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.announce-bar strong { font-weight: 800; }

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.site-header.visible { transform: translateY(0); }

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-brand .brand-text {
    font-family: var(--fd);
    font-size: 1.25rem;
    color: var(--blue-dark);
    font-weight: 400;
}
.header-brand .brand-text strong {
    font-weight: 700;
    color: var(--blue-cta);
}
.header-brand img,
.header-brand .header-logo-img {
    height: 44px;
    width: auto;
    display: block;
    max-width: 220px;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-phone {
    color: var(--blue-dark);
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-phone:hover { color: var(--blue-cta); }
.header-cta {
    background: var(--blue-cta);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s;
    display: inline-block;
}
.header-cta:hover {
    background: var(--blue-deep);
    box-shadow: var(--shadow-blue);
    transform: translateY(-1px);
}
@media (max-width: 640px) {
    .header-phone { display: none; }
    .site-header { padding: 0 16px; }
    .header-brand .brand-text { font-size: 1rem; }
    .header-brand img,
    .header-brand .header-logo-img {
        height: 36px;
        max-width: 160px;
    }
    .footer-brand .footer-logo-img {
        height: 56px;
        max-width: 180px;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--blue-hero) 0%, var(--blue-deep) 40%, var(--blue-dark) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 75% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(59, 125, 216, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-decor {
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}
.hd1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hd2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.hd3 { width: 200px; height: 200px; top: 30%; left: 50%; border-color: rgba(255, 255, 255, 0.03); }

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    width: 100%;
}

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

.hero-logo {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}
.hero-logo img { height: 56px; width: auto; }
.hero-logo .wordmark {
    font-family: var(--fd);
    color: var(--white);
    font-size: 1.4rem;
}
.hero-logo .wordmark strong { color: var(--blue-light); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-family: var(--fd);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}
.hero h1 .highlight {
    position: relative;
    display: inline;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(59, 125, 216, 0.4);
    border-radius: 4px;
    z-index: -1;
}

.hero-sub {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 520px;
    font-weight: 300;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.trust-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   FORM CARD
   ============================================ */
.form-wrap { animation: fadeSlideUp 0.8s 0.2s ease-out both; }

.form-card {
    background: var(--white);
    border-radius: var(--rl);
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-cta), var(--blue-light), var(--amber));
}

.form-urgency {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--red);
    margin-bottom: 18px;
    font-weight: 600;
}
.form-title {
    font-family: var(--fd);
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 6px;
    font-weight: 400;
}
.form-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 22px;
    font-weight: 400;
}

.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--fb);
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-cta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(59, 125, 216, 0.1);
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237B8CA3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
    background-color: var(--off-white);
}
.form-group textarea {
    min-height: 90px;
    resize: vertical;
    font-family: var(--fb);
}

/* Side-by-side form fields (date + time) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}
.form-row .form-group {
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-row .form-group {
        margin-bottom: 14px;
    }
}

/* Timezone note below date/time */
.form-timezone-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: -4px 0 14px 0;
    padding: 8px 12px;
    background: rgba(59, 125, 216, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--blue-cta);
    line-height: 1.4;
}
.form-timezone-note strong {
    color: var(--text);
}

/* Native date input styling fix */
.form-group input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--off-white);
    font-family: var(--fb);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    filter: invert(0.3);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--blue-cta);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.form-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.form-btn:hover {
    background: var(--blue-deep);
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}
.form-btn:hover::after { transform: translateX(100%); }

.form-microcopy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 14px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success h3 {
    font-family: var(--fd);
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.form-success p {
    color: var(--text-body);
    font-size: 0.95rem;
}
.form-success .checkmark {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.1);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--blue-trust);
    padding: 36px 24px;
}
.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-number {
    font-family: var(--fd);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: var(--white);
    display: block;
    line-height: 1.2;
    font-weight: 400;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 4px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 90px 24px;
}
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--blue-cta);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blue-cta);
    border-radius: 1px;
}
.section-title {
    font-family: var(--fd);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--text);
    font-weight: 400;
}
.section-desc {
    font-size: 1.08rem;
    color: var(--text-body);
    max-width: 640px;
    line-height: 1.75;
    font-weight: 400;
}
.section-centered { text-align: center; }
.section-centered .section-desc,
.section-centered .section-title { margin-left: auto; margin-right: auto; }
.section-centered .section-label { justify-content: center; }

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   DIFFERENTIATORS (Why Sunny)
   ============================================ */
.diff-section { background: var(--cream); }
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.diff-card {
    background: var(--white);
    border-radius: var(--rl);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--blue-cta), var(--blue-light));
    transition: height 0.5s;
    border-radius: 0 0 4px 0;
}
.diff-card:hover::before { height: 100%; }
.diff-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}
.diff-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--blue-pale);
}
.diff-title {
    font-family: var(--fd);
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.35;
    font-weight: 400;
}
.diff-body {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    font-weight: 400;
}

/* ============================================
   WHO WE HELP
   ============================================ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.audience-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 36px 32px;
    transition: all 0.4s;
}
.audience-card:hover {
    border-color: var(--blue-cta);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.audience-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--blue-pale);
    color: var(--blue-cta);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.audience-card h3 {
    font-family: var(--fd);
    font-size: 1.35rem;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 400;
}
.audience-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.audience-link {
    color: var(--blue-cta);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.audience-link:hover { gap: 10px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
    background: var(--blue-dark);
    color: var(--white);
}
.how-section .section-title,
.how-section .section-desc { color: var(--white); }
.how-section .section-desc { color: rgba(255, 255, 255, 0.8); }
.how-section .section-label { color: var(--blue-light); }
.how-section .section-label::before { background: var(--blue-light); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    position: relative;
}
.step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rl);
    padding: 28px 24px;
    position: relative;
    transition: all 0.3s;
}
.step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(91, 163, 217, 0.3);
    transform: translateY(-4px);
}
.step-number {
    font-family: var(--fd);
    font-size: 2.2rem;
    color: var(--blue-light);
    line-height: 1;
    margin-bottom: 14px;
}
.step h4 {
    font-family: var(--fd);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.35;
    font-weight: 400;
}
.step p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.65;
    font-weight: 400;
}

.steps-badge-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 44px;
    flex-wrap: wrap;
}
.step-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    font-weight: 500;
}

.how-cta {
    text-align: center;
    margin-top: 40px;
}
.how-cta .big-btn {
    background: var(--blue-cta);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-block;
    transition: all 0.3s;
}
.how-cta .big-btn:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-section { background: var(--cream); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.testi-card {
    background: var(--white);
    border-radius: var(--rl);
    padding: 34px 28px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
}
.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.testi-stars {
    color: var(--amber);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.testi-quote {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}
.testi-author {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ============================================
   MARKET URGENCY
   ============================================ */
.urgency-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-darkest) 100%);
    color: var(--white);
}
.urgency-section .section-title,
.urgency-section .section-desc { color: var(--white); }
.urgency-section .section-desc { color: rgba(255, 255, 255, 0.75); }
.urgency-section .section-label { color: var(--amber); }
.urgency-section .section-label::before { background: var(--amber); }

.urgency-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 50px 0 40px;
}
.urgency-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(243, 156, 18, 0.25);
    border-radius: var(--rl);
    padding: 32px 24px;
    text-align: center;
}
.urgency-number {
    font-family: var(--fd);
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    color: var(--amber);
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 400;
}
.urgency-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.urgency-bottom {
    text-align: center;
    margin-top: 20px;
}
.urgency-bottom p {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 24px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: var(--blue-cta); }
.faq-question {
    width: 100%;
    padding: 22px 26px;
    text-align: left;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--blue-cta); }
.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--blue-cta);
    flex-shrink: 0;
    transition: transform 0.4s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
    padding: 0 26px 22px;
    color: var(--text-body);
    font-size: 0.96rem;
    line-height: 1.75;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-section {
    background: var(--blue-dark);
    color: var(--white);
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}
.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(59, 125, 216, 0.2) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta-section .container {
    position: relative;
    z-index: 2;
}
.final-cta-section h2 {
    font-family: var(--fd);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 400;
}
.final-cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta-section .big-btn {
    display: inline-block;
    background: var(--blue-cta);
    color: var(--white);
    padding: 20px 44px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(59, 125, 216, 0.4);
}
.final-cta-section .big-btn:hover {
    background: var(--blue-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(91, 163, 217, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--blue-darkest);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 24px 30px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .brand-text {
    font-family: var(--fd);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
    display: block;
}
.footer-brand .footer-logo-img {
    height: 64px;
    width: auto;
    max-width: 200px;
    display: block;
    margin-bottom: 16px;
    border-radius: 6px;
    background: #0a1628;
    padding: 4px;
    object-fit: contain;
}
.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}
.footer-heading {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-inner ul { list-style: none; }
.footer-inner ul li { margin-bottom: 10px; }
.footer-inner a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: color 0.3s;
}
.footer-inner a:hover { color: var(--blue-light); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .diff-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .urgency-stats { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .section { padding: 70px 20px; }
}
@media (max-width: 640px) {
    .steps-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .form-card { padding: 28px 22px; }
    .section { padding: 60px 20px; }
    .section-title { font-size: 1.7rem; }
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.aligncenter { text-align: center; }
.alignleft { float: left; }
.alignright { float: right; }
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
