/* =============================================
   Skills Academy — Design System v2
   counsellingskillsacademy.com
   ============================================= */

/* --- Variables --- */
:root {
    --primary: #002b49;
    --primary-mid: #0a3a5c;
    --primary-light: #1a4d6e;
    --accent: #c5a050;
    --accent-hover: #d4b068;
    --cream: #f7f7f5;
    --white: #ffffff;
    --text: #1b2e3c;
    --text-muted: #5a6b78;
    --text-body: #2d3e4e;
    --text-on-dark: #e8ecef;
    --border: #e2e2de;

    --font-heading: 'Source Serif 4', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

    --container-max: 1200px;
    --container-narrow: 720px;
    --container-mid: 880px;
    --radius-btn: 50px;
    --radius-card: 16px;
    --radius-sm: 10px;

    --shadow-card: 0 4px 24px rgba(0, 43, 73, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(0, 43, 73, 0.12);
    --shadow-btn-hover: 0 8px 24px rgba(197, 160, 80, 0.35);

    --ease: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--ease);
}
a:hover { color: var(--accent-hover); }


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 0.75rem;
}

p { margin-bottom: 1.3em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }


/* --- Section Labels --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}


/* --- Layout --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 4rem;
}
.container--narrow {
    max-width: var(--container-narrow);
    padding: 0 2rem;
}
.container--mid {
    max-width: var(--container-mid);
    padding: 0 2rem;
}

.section {
    padding: 7rem 4rem;
    position: relative;
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.section--dark {
    background: var(--primary);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}
.section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(79, 134, 168, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(197, 160, 80, 0.05) 0%, transparent 40%);
    pointer-events: none;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark .section-label { color: var(--accent); }
.section--dark .section-label::before { background: var(--accent); }

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


/* --- Animations --- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }


/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--ease);
}

.site-header.is-scrolled {
    background: rgba(247, 247, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 4rem;
    box-shadow: 0 4px 30px rgba(27, 46, 60, 0.08);
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.site-header__logo-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--white);
    transition: color var(--ease);
}
.site-header.is-scrolled .site-header__logo-text {
    color: var(--primary);
}
.site-header__logo img,
.site-header__logo-img {
    width: 64px;
    height: 72px;
    transition: filter var(--ease);
}
.site-header.is-scrolled .site-header__logo-img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(30%) saturate(1500%) hue-rotate(180deg) brightness(92%);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--ease);
    text-decoration: none;
    position: relative;
}
.site-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.site-nav a:not(.btn):hover::after {
    transform: scaleX(1);
}

.site-header.is-scrolled .site-nav a:not(.btn) {
    color: var(--text);
}
.site-header.is-scrolled .site-nav a:not(.btn):hover {
    color: var(--accent);
}

.site-nav .btn {
    font-size: 0.88rem;
    padding: 0.55rem 1.5rem;
    margin-left: 0.75rem;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all var(--ease);
    border-radius: 2px;
}
.site-header.is-scrolled .nav-toggle span {
    background: var(--text);
}


/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-btn);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--ease);
    text-decoration: none;
    line-height: 1.3;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-btn-hover);
}

.btn--secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn--secondary:hover {
    background: var(--primary-mid);
    border-color: var(--primary-mid);
    color: var(--white);
    transform: translateY(-3px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.btn-group--center { justify-content: center; }


/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 6rem;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-light) 100%);
}

/* Subtle texture on hero */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(79, 134, 168, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(197, 160, 80, 0.06) 0%, transparent 40%);
    pointer-events: none;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.75rem;
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.15s forwards;
}

.hero .btn-group {
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

/* Decorative accent line under hero heading */
.hero-accent {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 2rem;
    border-radius: 2px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.1s forwards;
}


/* --- Cards (base) --- */
.card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    transition: transform var(--ease), box-shadow var(--ease);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}
.card:hover::before {
    transform: scaleX(1);
}


/* --- Three Pillars --- */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.pillar-grid .card {
    text-align: center;
    padding: 3rem 2rem;
}
.pillar-grid--stacked {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.pillar-grid--stacked .card {
    text-align: left;
    display: block;
    padding: 2.5rem;
}
.pillar-grid--stacked h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
}
.pillar-grid--stacked .pillar-icon {
    margin: 0 0 1.25rem 0;
    width: 56px;
    height: 56px;
}
.pillar-grid--stacked p {
    margin-bottom: 0;
}

.pillar-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(197, 160, 80, 0.12), rgba(0, 43, 73, 0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pillar-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* --- Pull Quotes --- */
.pull-quote {
    border-left: 3px solid var(--accent);
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text);
    position: relative;
}

/* Stat highlight */
.stat-highlight {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--accent);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}


/* --- Bio section --- */
.bio-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
.bio-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--cream);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border: 2px dashed var(--border);
    position: relative;
    overflow: hidden;
}
.bio-photo::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-card) + 3px);
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    z-index: -1;
    opacity: 0.5;
}
.bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-card);
}


/* --- Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--ease), box-shadow var(--ease);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.15;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}
.testimonial-card blockquote {
    border-left: none;
    padding-left: 0;
    flex: 1;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
}
.testimonial-card .quote-attr {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: auto;
    padding-top: 1.25rem;
    font-weight: 600;
    border-top: 1px solid var(--border);
}


/* --- Audience Grid --- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.audience-item {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem 2.25rem;
    border: 1px solid var(--border);
    transition: all var(--ease);
}
.audience-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(197, 160, 80, 0.1);
    transform: translateY(-2px);
}
.audience-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary);
    margin-bottom: 0.6rem;
}
.audience-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}


/* --- CTA Split --- */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}
.cta-option {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--ease);
}
.cta-option:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(197, 160, 80, 0.3);
    transform: translateY(-3px);
}
.cta-option p {
    font-size: 0.95rem;
    opacity: 0.75;
    line-height: 1.65;
}


/* --- FAQs --- */
.faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.faq-question:hover { color: var(--accent); }

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 24px;
    text-align: center;
}
.faq-item.is-open .faq-question::after {
    content: '\2212';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-answer {
    max-height: 600px;
    padding-top: 1rem;
}
.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* --- Footer --- */
.site-footer {
    background: var(--primary);
    color: var(--text-on-dark);
    padding: 4rem 4rem 2.5rem;
    font-size: 0.9rem;
}
.site-footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
}
.site-footer__brand { max-width: 360px; }
.site-footer__brand p {
    color: rgba(232, 236, 239, 0.6);
    font-size: 0.88rem;
    line-height: 1.65;
}
.site-footer__links {
    display: flex;
    gap: 2.5rem;
}
.site-footer__links a {
    color: rgba(232, 236, 239, 0.6);
    font-size: 0.88rem;
    transition: color var(--ease);
    text-decoration: none;
}
.site-footer__links a:hover { color: var(--white); }

.site-footer__bottom {
    max-width: var(--container-max);
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: rgba(232, 236, 239, 0.4);
}
.site-footer__socials {
    display: flex;
    gap: 1.25rem;
}
.site-footer__socials a {
    color: rgba(232, 236, 239, 0.4);
    transition: all var(--ease);
}
.site-footer__socials a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}
.site-footer__socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}


/* --- Sales Page Hero (shorter) --- */
.hero--sales {
    min-height: 70vh;
    padding: 10rem 4rem 6rem;
}
.hero--sales h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-style: italic;
    font-weight: 400;
}


/* --- Sales Callout --- */
.sales-callout {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    color: var(--primary);
    padding: 1.5rem 0;
    letter-spacing: -0.01em;
}


/* --- Testimonial Highlight (wide single) --- */
.testimonial-highlight {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--accent);
    position: relative;
}
.testimonial-highlight blockquote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
}
.testimonial-highlight .quote-attr {
    display: block;
    font-style: normal;
    font-size: 0.88rem;
    color: var(--accent);
    margin-top: 1.25rem;
    font-weight: 600;
}


/* --- Testimonial Grid (two-column variant) --- */
.testimonial-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


/* --- Feature Grid (What's Inside) --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--cream);
    border-radius: var(--radius-card);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all var(--ease);
}
.feature-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(197, 160, 80, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(197, 160, 80, 0.12), rgba(0, 43, 73, 0.06));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.feature-item p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.75;
}


/* --- Pricing Card --- */
.pricing-card {
    max-width: 520px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-card);
    padding: 3rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.pricing-card__label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    margin: 0.5rem 0 0.25rem;
    letter-spacing: -0.02em;
}

.pricing-card__plan {
    font-size: 1rem;
    color: rgba(232, 236, 239, 0.7);
    margin-bottom: 0.25rem;
}

.pricing-card__plan-note {
    font-size: 0.82rem;
    color: rgba(232, 236, 239, 0.45);
    margin-bottom: 2rem;
}

.pricing-card__includes {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pricing-card__includes ul {
    list-style: none;
    padding: 0;
}
.pricing-card__includes li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    font-size: 0.92rem;
    color: rgba(232, 236, 239, 0.8);
    line-height: 1.5;
}
.pricing-card__includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.btn--large {
    padding: 1.15rem 3rem;
    font-size: 1.1rem;
}


/* --- Guarantee Box --- */
.guarantee-box {
    max-width: 600px;
    margin: 2.5rem auto 0;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    text-align: center;
}
.guarantee-box h3 {
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.guarantee-box p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(232, 236, 239, 0.7);
}


/* --- Pricing Testimonials --- */
.pricing-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.pricing-testimonial {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: left;
}
.pricing-testimonial p {
    font-style: italic;
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(232, 236, 239, 0.7);
}
.pricing-testimonial span {
    display: block;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.75rem;
}


/* --- Responsive (below 900px) --- */
@media (max-width: 900px) {
    .section { padding: 4rem 1.5rem; }
    .container { padding: 0 1.5rem; }

    /* Nav */
    .site-header { padding: 1rem 1.5rem; }
    .site-header.is-scrolled { padding: 0.75rem 1.5rem; }
    .site-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 43, 73, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        z-index: 999;
    }
    .site-nav.is-open { display: flex; }
    .site-nav a {
        font-size: 1.2rem;
        color: var(--white) !important;
        padding: 1rem 2rem;
    }
    .site-nav a:not(.btn)::after { display: none; }
    .site-nav .btn {
        margin-left: 0;
        margin-top: 1rem;
    }
    .nav-toggle { display: block; z-index: 1001; }

    /* Hero */
    .hero { min-height: 90vh; padding: 7rem 1.5rem 4rem; }
    .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }

    /* Grids */
    .pillar-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .audience-grid { grid-template-columns: 1fr; }
    .bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .bio-photo { max-width: 280px; margin: 0 auto; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .cta-split { grid-template-columns: 1fr; gap: 1.5rem; }

    /* Footer */
    .site-footer { padding: 3rem 1.5rem 2rem; }
    .site-footer__inner { flex-direction: column; }
    .site-footer__links { flex-direction: column; gap: 0.75rem; }
    .site-footer__bottom { flex-direction: column; text-align: center; }

    /* Buttons */
    .btn-group { flex-direction: column; align-items: stretch; }
    .btn-group .btn { text-align: center; }

    /* Sales page */
    .hero--sales { min-height: 60vh; padding: 7rem 1.5rem 4rem; }
    .testimonial-highlight { padding: 1.75rem 1.5rem; }
    .testimonial-grid--two { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-item { flex-direction: column; gap: 1rem; }
    .pricing-card { padding: 2rem 1.5rem; }
    .pricing-testimonials { grid-template-columns: 1fr; }
    .guarantee-box { padding: 1.5rem; }
}


/* =============================================
   SALES PAGE v3 — Editorial Luxury Redesign
   ============================================= */

/* --- Grain texture overlay (reusable) --- */
.grain-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
    z-index: 1;
}

/* --- Curved section dividers --- */
.section-curve {
    position: relative;
    overflow: visible;
}
.section-curve--bottom::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 2;
}

.curve-divider {
    display: block;
    width: 100%;
    height: 80px;
    position: relative;
    margin-top: -1px;
}
.curve-divider--cream { color: var(--cream); }
.curve-divider--white { color: var(--white); }
.curve-divider--dark { color: var(--primary); }

/* --- Sales hero v3 --- */
.hero--v3 {
    min-height: 85vh;
    padding: 12rem 4rem 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.hero--v3 .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #001a2e 0%, var(--primary) 40%, var(--primary-mid) 70%, var(--primary-light) 100%);
}

/* Atmospheric light orbs */
.hero--v3 .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 15% 50%, rgba(197, 160, 80, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 400px at 85% 30%, rgba(79, 134, 168, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 400px 400px at 50% 90%, rgba(197, 160, 80, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtle grid texture */
.hero--v3 .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* --- Split hero layout (text left, card right) --- */
.hero--split {
    min-height: 100vh;
    padding: 10rem 4rem 6rem;
}

.hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

/* Left: hero text column */
.hero--split .hero-text {
    text-align: left;
}

.hero--split .hero-eyebrow {
    justify-content: flex-start;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.1s forwards;
}
.hero--split .hero-eyebrow::before { display: none; }

.hero--split h1 {
    font-size: clamp(2.6rem, 4.5vw, 3.6rem);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.hero--split .hero-sub {
    margin: 0 0 2.5rem;
    max-width: 520px;
    text-align: left;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.35s forwards;
}

/* Value props row */
.hero-values {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.45s forwards;
}

.hero-value {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(232, 236, 239, 0.85);
    font-weight: 500;
}

.hero-value svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* CTA group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.55s forwards;
}

.hero-cta-group--centered {
    justify-content: center;
}

/* Ghost button variant */
.btn--ghost {
    background: transparent;
    border: 1px solid rgba(232, 236, 239, 0.3);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 236, 239, 0.5);
    color: var(--white);
}

/* Ghost-accent button: more visible, gold-tinted */
.btn--ghost-accent {
    background: rgba(197, 160, 80, 0.08);
    border: 1px solid rgba(197, 160, 80, 0.3);
    color: var(--accent);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn--ghost-accent:hover {
    background: rgba(197, 160, 80, 0.15);
    border-color: rgba(197, 160, 80, 0.5);
    color: var(--accent);
}

/* Hero scroll button — centred to full text column */
.hero-scroll-btn {
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.55s forwards;
}

/* Right: hero offer card */
.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 160, 80, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    backdrop-filter: blur(16px);
    position: relative;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

/* Subtle glow behind card */
.hero-card::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 30px;
    background: radial-gradient(ellipse at center, rgba(197, 160, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-card__label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 1.75rem;
}

/* Card feature items */
.hero-card__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: rgba(232, 236, 239, 0.85);
    line-height: 1.5;
}

.hero-card__item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 1px;
}

/* Card pricing block */
.hero-card__pricing {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(197, 160, 80, 0.15);
    margin-bottom: 1.5rem;
}

.hero-card__price {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-card__price-detail {
    font-size: 0.88rem;
    color: rgba(232, 236, 239, 0.6);
    margin-top: 0.35rem;
}

.hero-card__price-plan {
    font-size: 0.85rem;
    color: rgba(232, 236, 239, 0.45);
    margin-top: 0.25rem;
}

/* Card CTA button */
.hero-card__cta {
    display: block;
    width: 100%;
    text-align: center;
}

/* Card footer */
.hero-card__footer {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(232, 236, 239, 0.4);
    margin-top: 1rem;
}

/* Floating decorative elements */
.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.hero-deco--ring {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(197, 160, 80, 0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}
.hero-deco--ring-sm {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(197, 160, 80, 0.06);
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
}
.hero-deco--line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
    top: 30%;
    left: 8%;
    transform: rotate(-30deg);
}
.hero-deco--dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.2;
}
.hero-deco--dot-1 { top: 25%; right: 15%; }
.hero-deco--dot-2 { bottom: 30%; left: 12%; }
.hero-deco--dot-3 { top: 60%; right: 8%; }

.hero--v3 .hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    text-align: center;
}

/* Eyebrow text above heading */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.1s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.hero--v3 h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.hero--v3 .hero-sub {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.35s forwards;
}

/* Price badge */
.hero-price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    background: rgba(197, 160, 80, 0.1);
    border: 1px solid rgba(197, 160, 80, 0.25);
    border-radius: 100px;
    padding: 0.75rem 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.45s forwards;
}
.hero-price-badge .price-main {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}
.hero-price-badge .price-detail {
    font-size: 0.9rem;
    color: rgba(232, 236, 239, 0.7);
}

.hero--v3 .btn-group {
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.55s forwards;
}

/* CTA button glow on hero */
.btn--glow {
    position: relative;
}
.btn--glow::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: var(--accent);
    opacity: 0;
    filter: blur(16px);
    transition: opacity 0.4s ease;
    z-index: -1;
}
.btn--glow:hover::after {
    opacity: 0.35;
}


/* --- Editorial bridge --- */
.editorial-bridge {
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
}
.editorial-bridge .bridge-text {
    max-width: 740px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-body);
    position: relative;
}
.editorial-bridge .bridge-text::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 2.5rem;
}


/* --- Journey steps (How It Works v3) --- */
.journey-section {
    padding: 7rem 4rem;
    position: relative;
}

.journey-intro {
    max-width: 640px;
    margin: 0 auto 4.5rem;
    text-align: center;
}

.journey-steps {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

/* Connecting line */
.journey-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--accent), rgba(197, 160, 80, 0.15));
}

.journey-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3.5rem;
    position: relative;
}
.journey-step:last-child { margin-bottom: 0; }

.journey-step__number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    text-align: center;
    position: relative;
}
/* Gold dot on the timeline */
.journey-step__number::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px rgba(197, 160, 80, 0.3);
    z-index: 2;
}

.journey-step__content {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border-left: 3px solid var(--accent);
    transition: transform var(--ease), box-shadow var(--ease);
}
.journey-step__content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.journey-step__content h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    margin-bottom: 1rem;
    color: var(--primary);
}

.journey-step__content .pillar-icon {
    margin: 0 0 1.25rem 0;
    width: 52px;
    height: 52px;
}


/* --- Feature blocks (What's Inside v3) --- */
.features-v3 {
    padding: 7rem 4rem;
    position: relative;
}

.features-v3-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-block {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.75rem;
    align-items: start;
    padding: 2.25rem 2.5rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
}
/* Corner accent (matches audience cards) */
.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(197, 160, 80, 0.08) 50%, transparent 50%);
    pointer-events: none;
    transition: all var(--ease);
}
.feature-block:hover {
    border-color: rgba(197, 160, 80, 0.3);
    box-shadow: 0 8px 32px rgba(0, 43, 73, 0.08);
    transform: translateY(-3px);
}
.feature-block:hover::before {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(197, 160, 80, 0.12) 50%, transparent 50%);
}

.feature-block__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(197, 160, 80, 0.1), rgba(0, 43, 73, 0.04));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.feature-block__icon svg {
    width: 26px;
    height: 26px;
}

.feature-block h3 {
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary);
    margin-bottom: 0.6rem;
}
.feature-block p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
}


/* --- Bio section v3 --- */
.bio-v3 {
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
}

.bio-v3__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
    max-width: var(--container-max);
    margin: 0 auto;
}

.bio-v3__photo-wrap {
    position: relative;
}
.bio-v3__photo-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(197, 160, 80, 0.3);
    border-radius: calc(var(--radius-card) + 4px);
    pointer-events: none;
}

.bio-v3__photo {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--cream);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border: 2px dashed var(--border);
    position: relative;
    overflow: hidden;
}
.bio-v3__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-card);
}

.bio-v3__text .section-label {
    margin-bottom: 1rem;
}
.bio-v3__text h2 {
    margin-bottom: 2rem;
}

/* Decorative pull quote in bio */
.bio-pullquote {
    margin: 2.5rem 0;
    padding: 1.75rem 0 1.75rem 2rem;
    border-left: 3px solid var(--accent);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--primary);
}


/* --- Dark band CTA v3 --- */
.cta-band {
    padding: 5.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow orb behind CTA */
.cta-band::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 80, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-band h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-style: italic;
}


/* --- Testimonials v3 --- */
.testimonials-v3 {
    padding: 7rem 4rem;
    position: relative;
}

/* Featured testimonial (large) */
.testimonial-featured {
    max-width: 800px;
    margin: 0 auto 3.5rem;
    text-align: center;
    position: relative;
    padding: 3rem 0;
}
.testimonial-featured::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.testimonial-featured blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--text);
}
.testimonial-featured .quote-attr {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Supporting testimonials (smaller) */
.testimonial-supporting {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 880px;
    margin: 0 auto;
}

.testimonial-card-v3 {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem 2.25rem;
    box-shadow: 0 2px 16px rgba(0, 43, 73, 0.06);
    border-top: 2px solid transparent;
    transition: all var(--ease);
    display: flex;
    flex-direction: column;
}
.testimonial-card-v3:hover {
    border-top-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 43, 73, 0.1);
    transform: translateY(-4px);
}
.testimonial-card-v3 blockquote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    flex: 1;
}
.testimonial-card-v3 .quote-attr {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}


/* --- Audience v3 --- */
.audience-v3 {
    padding: 7rem 4rem;
    position: relative;
}

.audience-v3-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 880px;
    margin: 0 auto;
}

.audience-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2.25rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all var(--ease);
}
.audience-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: opacity var(--ease);
}
.audience-card:hover {
    border-color: rgba(197, 160, 80, 0.3);
    box-shadow: 0 4px 24px rgba(0, 43, 73, 0.07);
}
.audience-card:hover::after {
    opacity: 1;
}
.audience-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary);
    margin-bottom: 0.6rem;
}
.audience-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}


/* --- Pricing v3 --- */
.pricing-v3 {
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Light background variant for pricing */
.pricing-v3--light {
    background: #264e6e;
    color: var(--body-text);
}
.pricing-v3--light h2 {
    color: var(--white);
}
.pricing-v3--light .section-label {
    color: var(--accent);
}
.pricing-v3--light .section-label::before {
    background: var(--accent);
}

/* Glow behind pricing card */
.pricing-glow {
    position: relative;
    max-width: 760px;
    margin: 3rem auto 0;
}
.pricing-glow::before {
    content: '';
    position: absolute;
    inset: -50px;
    border-radius: 40px;
    background: radial-gradient(ellipse at center, rgba(0, 43, 73, 0.4) 0%, rgba(0, 43, 73, 0.1) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-card-v3 {
    position: relative;
    z-index: 1;
    background: var(--primary);
    border: 1.5px solid rgba(197, 160, 80, 0.25);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    overflow: hidden;
    box-shadow:
        0 12px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* Price header zone */
.pricing-card-v3__header {
    padding: 3rem 3.5rem 2.5rem;
    background: linear-gradient(180deg, rgba(197, 160, 80, 0.06) 0%, transparent 100%);
    border-bottom: 1px solid rgba(197, 160, 80, 0.15);
}

.pricing-card-v3__label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
}

.pricing-card-v3__price {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 8vw, 5.5rem);
    font-weight: 400;
    color: var(--white);
    margin: 0.6rem 0 0.3rem;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-card-v3__plan {
    font-size: 1.05rem;
    color: rgba(232, 236, 239, 0.6);
    margin-bottom: 0;
}

.pricing-card-v3__plan-note {
    display: none;
}

/* Feature list zone */
.pricing-card-v3__body {
    padding: 2.5rem 3.5rem 3rem;
}

.pricing-card-v3__divider {
    display: none;
}

.pricing-card-v3__list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}
.pricing-card-v3__list li {
    padding: 0.85rem 0 0.85rem 3rem;
    position: relative;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-card-v3__list li:last-child {
    border-bottom: none;
}
/* White box with navy tick */
.pricing-card-v3__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
}
.pricing-card-v3__list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: calc(1.1rem + 6px);
    width: 9px;
    height: 5px;
    border-left: 2.5px solid var(--primary);
    border-bottom: 2.5px solid var(--primary);
    transform: rotate(-45deg);
}

/* Bonus standalone section */
.bonus-section {
    padding: 6rem 4rem;
    text-align: center;
}
.bonus-section__inner {
    max-width: 800px;
    margin: 0 auto;
}
.bonus-section__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 2.5rem;
}
.bonus-section__course-name {
    margin-bottom: 2rem;
}
.bonus-section__title-accent {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.8rem;
}
.bonus-section__intro {
    font-size: 1.05rem;
    color: rgba(232, 236, 239, 0.75);
    line-height: 1.7;
    margin-bottom: 0;
}
.bonus-section__intro strong {
    color: var(--white);
}
.bonus-section__cta {
    margin-top: 2.5rem;
    text-align: center;
}
.bonus-section__cta-detail {
    font-size: 0.92rem;
    color: rgba(232, 236, 239, 0.55);
    margin-top: 1rem;
}
.bonus-section__card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 3rem;
}
.bonus-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
}
.bonus-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.bonus-section__list li {
    position: relative;
    padding: 0.65rem 0 0.65rem 2rem;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}
/* White tick */
.bonus-section__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
}

/* Guarantee v3 — on light pricing background */
.guarantee-v3 {
    max-width: 660px;
    margin: 2.5rem auto 0;
    padding: 2rem 2.5rem;
    background: rgba(0, 43, 73, 0.15);
    border: 1px solid rgba(0, 43, 73, 0.2);
    border-radius: var(--radius-card);
    text-align: center;
    position: relative;
    z-index: 1;
}
.guarantee-v3 h3 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.guarantee-v3 p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* Testimonial within pricing section */
.pricing-v3--light .testimonial-featured blockquote {
    color: rgba(255, 255, 255, 0.85);
}


/* --- FAQ v3 --- */
.faq-v3 {
    padding: 7rem 4rem;
}

.faq-v3 .faq-list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-v3 .faq-item {
    border-bottom: 1px solid rgba(0, 43, 73, 0.08);
    padding: 2rem 0;
}
.faq-v3 .faq-item:first-child {
    border-top: 1px solid rgba(0, 43, 73, 0.08);
}
.faq-v3 .faq-item.is-open {
    border-bottom-color: var(--accent);
}

.faq-v3 .faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.faq-v3 .faq-question::after {
    font-size: 1.75rem;
    font-weight: 200;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 160, 80, 0.08);
    transition: all 0.3s ease;
}
.faq-v3 .faq-item.is-open .faq-question::after {
    background: rgba(197, 160, 80, 0.15);
    transform: rotate(180deg);
}

.faq-v3 .faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}


/* --- Final CTA v3 --- */
.final-cta-v3 {
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Large decorative quote marks */
.final-cta-v3::before,
.final-cta-v3::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(197, 160, 80, 0.06);
    border-radius: 50%;
    pointer-events: none;
}
.final-cta-v3::before {
    top: -100px;
    left: -80px;
}
.final-cta-v3::after {
    bottom: -120px;
    right: -60px;
}

.final-cta-v3 h2 {
    font-style: italic;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.final-cta-v3 .cta-subtitle {
    font-size: 1.1rem;
    color: rgba(232, 236, 239, 0.7);
    margin-bottom: 2.5rem;
}

.final-cta-v3 .price-summary {
    font-size: 0.92rem;
    opacity: 0.6;
    margin-top: 1.25rem;
}

.final-cta-v3 .soft-exit {
    margin-top: 2.5rem;
    font-size: 0.92rem;
    opacity: 0.5;
}
.final-cta-v3 .soft-exit a {
    color: var(--accent);
    opacity: 1;
}


/* --- Responsive: Sales page v3 --- */
@media (max-width: 1060px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero--split .hero-text {
        text-align: center;
    }
    .hero--split .hero-sub {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .hero-values {
        justify-content: center;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-card {
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .hero--v3 {
        min-height: 75vh;
        padding: 8rem 1.5rem 5rem;
    }
    .hero--split {
        min-height: auto;
        padding: 8rem 1.5rem 4rem;
    }
    .hero--v3 h1,
    .hero--split h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .hero-deco--ring,
    .hero-deco--ring-sm,
    .hero-deco--line { display: none; }
    .hero-values {
        gap: 0.75rem 1.5rem;
    }
    .hero-card {
        padding: 2rem 1.5rem;
    }

    .editorial-bridge {
        padding: 4rem 1.5rem;
    }
    .editorial-bridge .bridge-text {
        font-size: 1.05rem;
    }

    .journey-section { padding: 4rem 1.5rem; }
    .journey-steps::before { left: 24px; }
    .journey-step {
        grid-template-columns: 48px 1fr;
        gap: 1.5rem;
    }
    .journey-step__number {
        font-size: 2.5rem;
    }
    .journey-step__content {
        padding: 2rem 1.5rem;
    }

    .features-v3 { padding: 4rem 1.5rem; }
    .feature-block {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }

    .bio-v3 { padding: 4rem 1.5rem; }
    .bio-v3__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .bio-v3__photo-wrap {
        max-width: 280px;
        margin: 0 auto;
    }
    .bio-v3__photo-wrap::before { display: none; }

    .cta-band { padding: 4rem 1.5rem; }

    .testimonials-v3 { padding: 4rem 1.5rem; }
    .testimonial-supporting { grid-template-columns: 1fr; }
    .testimonial-featured blockquote {
        font-size: 1.15rem;
    }

    .audience-v3 { padding: 4rem 1.5rem; }
    .audience-v3-grid { grid-template-columns: 1fr; }
    .audience-v4-grid { grid-template-columns: 1fr; }

    .pricing-v3 { padding: 5rem 1.5rem; }
    .pricing-card-v3__header { padding: 2.5rem 1.5rem 2rem; }
    .pricing-card-v3__body { padding: 2rem 1.5rem 2.5rem; }
    .pricing-glow::before { display: none; }

    .faq-v3 { padding: 4rem 1.5rem; }

    .final-cta-v3 { padding: 5rem 1.5rem; }
    .final-cta-v3::before,
    .final-cta-v3::after { display: none; }

    .testimonial-card-v4 { padding: 2rem 1.5rem 1.75rem; }
    .tc-quote-mark { font-size: 4rem; top: -0.25rem; right: 1rem; }
    .audience-card-v4 { padding: 2rem 1.5rem; }
}


/* =============================================
   UPGRADED COMPONENTS — v4 refinements
   ============================================= */

/* --- Duotone pillar icons --- */
.pillar-icon--duotone {
    width: 68px;
    height: 68px;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(145deg, rgba(197, 160, 80, 0.12), rgba(0, 43, 73, 0.08));
    border: 1px solid rgba(197, 160, 80, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--ease);
}

/* Soft glow behind icon on hover */
.journey-step__content:hover .pillar-icon--duotone {
    background: linear-gradient(145deg, rgba(197, 160, 80, 0.18), rgba(0, 43, 73, 0.1));
    border-color: rgba(197, 160, 80, 0.3);
    box-shadow: 0 4px 20px rgba(197, 160, 80, 0.12);
}

.pillar-icon--duotone svg {
    width: 34px;
    height: 34px;
    stroke: none;
    fill: none;
}

/* Duotone colours: fill layer is semi-transparent gold, stroke layer is solid accent */
.pillar-icon--duotone .duotone-fill {
    color: var(--accent);
    opacity: 0.15;
}
.pillar-icon--duotone .duotone-stroke {
    color: var(--accent);
    opacity: 1;
}


/* --- Testimonial cards v4 — with quote watermark and avatar --- */
.testimonial-card-v4 {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2.5rem 2.5rem 2rem;
    box-shadow: 0 2px 16px rgba(0, 43, 73, 0.06);
    border: 1px solid rgba(0, 43, 73, 0.06);
    transition: all var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Gold top accent line */
.testimonial-card-v4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--ease);
}

.testimonial-card-v4:hover {
    border-color: rgba(197, 160, 80, 0.2);
    box-shadow: 0 12px 40px rgba(0, 43, 73, 0.1);
    transform: translateY(-4px);
}
.testimonial-card-v4:hover::before {
    opacity: 1;
}

/* Decorative quote watermark — prominent gold */
.tc-quote-mark {
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-size: 6.5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
    transition: opacity var(--ease);
}
.testimonial-card-v4:hover .tc-quote-mark {
    opacity: 0.2;
}

.testimonial-card-v4 blockquote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Simple attribution with gold top border */
.testimonial-card-v4 .quote-attr {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

/* Wide card (bottom row) */
.testimonial-card-v4--wide {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}


/* --- Audience cards v4 — with icons and richer treatment --- */
.audience-v4-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 880px;
    margin: 0 auto;
}

.audience-card-v4 {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all var(--ease);
}

/* Decorative corner accent */
.audience-card-v4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(197, 160, 80, 0.08) 50%, transparent 50%);
    pointer-events: none;
    transition: all var(--ease);
}

.audience-card-v4:hover {
    border-color: rgba(197, 160, 80, 0.3);
    box-shadow: 0 8px 32px rgba(0, 43, 73, 0.08);
    transform: translateY(-3px);
}
.audience-card-v4:hover::before {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(197, 160, 80, 0.12) 50%, transparent 50%);
}

/* Audience icon */
.ac-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--accent);
}
.ac-icon svg {
    width: 100%;
    height: 100%;
}

.audience-card-v4 h3 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary);
    margin-bottom: 0.6rem;
}
.audience-card-v4 p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}


/* --- Standalone quote (between sections) --- */
.standalone-quote {
    max-width: 680px;
    margin: 4rem auto 0;
    text-align: center;
    position: relative;
}
.standalone-quote p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--text-body);
}
.standalone-quote span {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.88rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 1rem;
}


/* =============================================
   SALES PAGE v4 — QC Polish Pass
   ============================================= */

/* Bridge text — spacing between paragraphs */
.editorial-bridge .bridge-text p + p {
    margin-top: 1.2em;
}

/* Features — compact grid for shorter supporting items */
.features-compact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 1.25rem auto 0;
}
.features-compact-row .feature-block {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    padding: 2rem 1.5rem;
}
.features-compact-row .feature-block__icon {
    margin: 0 auto 1rem;
}
.features-compact-row .feature-block h3 {
    font-size: 1.05rem;
}
.features-compact-row .feature-block p {
    font-size: 0.92rem;
}

/* Guarantee box — more visible */
.guarantee-v3 {
    background: rgba(0, 43, 73, 0.25);
    border-color: rgba(197, 160, 80, 0.2);
    border-top: 2px solid var(--accent);
}

/* Curve divider backgrounds — eliminate hairline gaps between sections */
.curve-divider {
    margin-bottom: -1px;
}

/* Reduce top padding on sections that have curve dividers flowing into them */
.bonus-section { padding-top: 5rem; }

/* Responsive: v4 additions */
@media (max-width: 900px) {
    .hero--split {
        padding-top: 10rem;
    }
    .features-compact-row {
        grid-template-columns: 1fr;
    }
}
