/* ========================================================================
   CueX Labs — Design System & Styles
   ======================================================================== */

/* — Google Fonts (loaded via <link> in HTML for performance) — */

/* — Skip Link (Accessibility) — */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--eggplant);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 1rem;
}

/* — Design Tokens — */
:root {
    /* Brand Colors */
    --eggplant: #63465a;
    --coral: #ed7955;
    --rose: #ac6d7f;
    --brick: #b85c50;
    --peach: #ffbb7d;
    --apricot: #ffa477;

    /* Neutrals */
    --slate: #2d2d2d;
    --slate-light: #5a5a5a;
    --off-white: #fdf8f4;
    --white: #ffffff;
    --border: rgba(99, 70, 90, 0.12);

    /* Gradients – eggplant-dominant for readability */
    --grad-hero: linear-gradient(135deg, #4a3347 0%, var(--eggplant) 50%, #6d4f5e 100%);
    --grad-soft: linear-gradient(135deg, var(--peach) 0%, var(--rose) 100%);
    --grad-warm: linear-gradient(135deg, var(--apricot) 0%, var(--peach) 100%);
    --grad-eggplant: linear-gradient(135deg, #4a3347 0%, var(--eggplant) 100%);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-quote: 'IBM Plex Serif', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(99, 70, 90, 0.08);
    --shadow-md: 0 4px 20px rgba(99, 70, 90, 0.12);
    --shadow-lg: 0 8px 40px rgba(99, 70, 90, 0.16);
    --shadow-glow: 0 0 30px rgba(237, 121, 85, 0.25);

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.3s var(--ease-out);

    /* Container */
    --container-max: 1200px;
    --container-narrow: 900px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--slate);
    background: var(--off-white);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* — Typography — */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--eggplant);
    line-height: 1.15;
}

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

h2 {
    font-weight: 600;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    letter-spacing: -0.01em;
}

h3 {
    font-weight: 600;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7a6270;
}

.pull-quote {
    font-family: var(--font-quote);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--rose);
}

/* — Pull Quote Section — */
.pull-quote-section {
    background: linear-gradient(135deg, #4a3347 0%, var(--eggplant) 50%, #7a4840 100%);
}
.pull-quote-section .pull-quote {
    color: white;
}
.pull-quote-section .label {
    color: rgba(255,255,255,0.5);
}

/* — Layout — */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-2xl) 0;
}

.section--lg {
    padding: var(--space-3xl) 0;
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.flex {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

/* — Buttons — */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn--primary {
    background: var(--eggplant);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--coral {
    background: var(--coral);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--coral:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--eggplant);
    border: 2px solid var(--eggplant);
}

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

.btn--ghost {
    background: transparent;
    color: var(--coral);
    padding: 0.5rem 0;
    border-radius: 0;
}

.btn--ghost:hover {
    color: var(--eggplant);
}

.btn--ghost::after {
    display: none;
}

.btn--ghost .arrow {
    display: inline-block;
    transition: transform var(--transition);
}

.btn--ghost:hover .arrow {
    transform: translateX(4px);
}

/* — Navigation — */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.65rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.navbar__logo img {
    height: 40px;
    width: auto;
}

.navbar__logo .logo-dot {
    display: none;
}

.navbar__logo span {
    display: none;
}

.navbar.scrolled .navbar__logo img {
    height: 34px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar__links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--slate);
    transition: color var(--transition);
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition);
}

.navbar__links a:hover {
    color: var(--eggplant);
}

.navbar__links a:hover::after {
    width: 100%;
}

.navbar__links a.active {
    color: var(--eggplant);
}

.navbar__links a.active::after {
    width: 100%;
}

/* — Nav: white text on dark hero/page-header — */
.navbar:not(.scrolled) .navbar__links a:not(.navbar__cta) {
    color: rgba(255, 255, 255, 0.88);
}

.navbar:not(.scrolled) .navbar__links a:not(.navbar__cta):hover {
    color: var(--white);
}

.navbar:not(.scrolled) .navbar__links a:not(.navbar__cta)::after {
    background: rgba(255, 255, 255, 0.7);
}

.navbar:not(.scrolled) .navbar__links a.active:not(.navbar__cta) {
    color: var(--white);
}

/* Logo SVG mark */
.navbar__logo-svg {
    height: 40px;
    width: auto;
    display: block;
}

.navbar.scrolled .navbar__logo-svg {
    height: 34px;
}

.navbar__cta {
    margin-left: 0.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--eggplant);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Hamburger visible on dark backgrounds */
.navbar:not(.scrolled) .hamburger span {
    background: var(--white);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* — Hero — */
.hero {
    background:
        linear-gradient(135deg, rgba(74, 51, 71, 0.87) 0%, rgba(99, 70, 90, 0.85) 50%, rgba(109, 79, 94, 0.82) 100%),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1600&q=70') center / cover no-repeat;
    color: var(--white);
    padding: calc(var(--space-3xl) + 60px) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

/* Subtle warm accent in corner instead of full gradient */
.hero .hero__accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 50%;
    background: radial-gradient(ellipse at bottom right, rgba(237, 121, 85, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--off-white) 0%, transparent 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    max-width: 540px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero .btn--primary {
    background: var(--white);
    color: var(--eggplant);
}

.hero .btn--primary:hover {
    background: var(--peach);
}

.hero .btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero .btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

/* Decorative shapes */
.hero__shapes {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    pointer-events: none;
    z-index: 0;
}

.hero__shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--white);
}

.hero__shapes .shape--1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -5%;
}

.hero__shapes .shape--2 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 15%;
    opacity: 0.05;
}

.hero__shapes .shape--3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    opacity: 0.06;
    background: var(--peach);
}

/* — Section Header — */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.section-header .label {
    margin-bottom: var(--space-xs);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--slate-light);
    font-size: 1.05rem;
}

/* — Cards — */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 70, 90, 0.18);
    border-color: rgba(99, 70, 90, 0.25);
}

.card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.card__icon--eggplant {
    background: rgba(99, 70, 90, 0.1);
    color: var(--eggplant);
}

.card__icon--coral {
    background: rgba(237, 121, 85, 0.12);
    color: var(--coral);
}

.card__icon--rose {
    background: rgba(172, 109, 127, 0.12);
    color: var(--rose);
}

.card__icon--peach {
    background: rgba(255, 187, 125, 0.2);
    color: var(--brick);
}

.card h3 {
    margin-bottom: var(--space-xs);
}

.card p {
    color: var(--slate-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card--featured {
    background: var(--eggplant);
    color: var(--white);
    border: none;
}

.card--featured h3,
.card--featured p {
    color: var(--white);
}

.card--featured p {
    opacity: 0.9;
}

/* — Friction / Pain Points — */
.friction {
    background: var(--white);
}

.friction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.friction-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--off-white);
    transition: all var(--transition);
}

.friction-item:hover {
    background: rgba(255, 187, 125, 0.15);
}

.friction-item__marker {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(237, 121, 85, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 1.1rem;
}

.friction-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.friction-item p {
    font-size: 0.9rem;
    color: var(--slate-light);
    line-height: 1.5;
}

/* — Packages Preview — */
.packages-preview {
    background: var(--off-white);
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 70, 90, 0.18);
    border-color: rgba(99, 70, 90, 0.25);
}

.package-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    width: fit-content;
    margin-bottom: var(--space-md);
}

.package-card__badge--evidence {
    background: rgba(99, 70, 90, 0.1);
    color: var(--eggplant);
}

.package-card__badge--be {
    background: rgba(237, 121, 85, 0.12);
    color: var(--coral);
}

.package-card__badge--ux {
    background: rgba(172, 109, 127, 0.12);
    color: var(--rose);
}

.package-card__badge--blended {
    background: var(--eggplant);
    color: var(--white);
}

.package-card__badge--training {
    background: rgba(255, 164, 119, 0.2);
    color: var(--brick);
}

.package-card h3 {
    margin-bottom: var(--space-xs);
}

.package-card__desc {
    color: var(--slate-light);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.package-card__meta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.package-card__tag {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--off-white);
    color: var(--slate-light);
}

.package-card__deliverables {
    margin-bottom: var(--space-md);
}

.package-card__deliverables h4 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--eggplant);
    margin-bottom: var(--space-xs);
}

.package-card__deliverables li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.88rem;
    color: var(--slate-light);
    line-height: 1.6;
}

.package-card__deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 700;
}

/* Flagship card */
.package-card--flagship {
    background: linear-gradient(135deg, #4a3347 0%, var(--eggplant) 50%, #7a4840 100%);
    color: var(--white);
    border: none;
    position: relative;
}

.package-card--flagship::before {
    content: '★ FLAGSHIP';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--peach);
}

.package-card--flagship h3,
.package-card--flagship .package-card__desc {
    color: var(--white);
}

.package-card--flagship .package-card__tag {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.package-card--flagship .package-card__deliverables h4 {
    color: var(--peach);
}

.package-card--flagship .package-card__deliverables li {
    color: rgba(255, 255, 255, 0.85);
}

.package-card--flagship .package-card__deliverables li::before {
    color: var(--peach);
}

/* — Membership Tiers — */
.membership {
    background: var(--white);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.membership-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 2px solid transparent;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 70, 90, 0.18);
    border-color: rgba(99, 70, 90, 0.25);
}

.membership-card__tier {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral);
    margin-bottom: var(--space-xs);
}

.membership-card h3 {
    margin-bottom: var(--space-xs);
}

.membership-card__ideal {
    font-size: 0.9rem;
    color: var(--slate-light);
    margin-bottom: var(--space-md);
    line-height: 1.5;
    flex-grow: 1;
}

.membership-card__features {
    margin-bottom: var(--space-md);
}

.membership-card__features li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.7;
}

.membership-card__features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 700;
}

.membership-card--highlight {
    background: var(--white);
    border-color: var(--eggplant);
    box-shadow: var(--shadow-md);
}

/* — Trust Strip — */
.trust {
    background: var(--white);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust__label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-light);
    margin-bottom: var(--space-sm);
}

.trust__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust__item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--rose);
    opacity: 0.45;
    transition: opacity var(--transition);
    white-space: nowrap;
}

.trust__item:hover {
    opacity: 0.8;
}

/* — Email Capture — */
.email-capture {
    background: linear-gradient(135deg, #4a3347 0%, var(--eggplant) 45%, #7a4840 100%);
    padding: var(--space-xl) 0;
    color: var(--white);
}

.email-capture__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.email-capture h3 {
    color: var(--white);
}

.email-capture p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.email-capture__form {
    display: flex;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.email-capture__form input {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    width: 280px;
    outline: none;
    transition: border-color var(--transition);
}

.email-capture__form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.email-capture__form input:focus {
    border-color: var(--coral);
}

/* — Process / Timeline — */
.process-timeline {
    position: relative;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: var(--grad-warm);
    z-index: 0;
    border-radius: 2px;
}

.timeline__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline__marker {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--white);
    border: 3px solid var(--eggplant);
    color: var(--eggplant);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.timeline__step:hover .timeline__marker {
    background: var(--eggplant);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.timeline__step h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.timeline__step p {
    font-size: 0.88rem;
    color: var(--slate-light);
    line-height: 1.5;
}

/* What to expect */
.expect {
    margin-top: var(--space-2xl);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.expect-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border);
}

.expect-card h3 {
    margin-bottom: var(--space-md);
    color: var(--coral);
}

.expect-bar {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.expect-bar__label {
    font-size: 0.78rem;
    font-weight: 500;
    width: 80px;
    flex-shrink: 0;
    color: var(--slate-light);
}

.expect-bar__track {
    flex-grow: 1;
    height: 28px;
    border-radius: var(--radius-sm);
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.expect-bar__fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    padding-left: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
}

/* — About — */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-story__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--grad-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.value-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 70, 90, 0.18);
    border-color: rgba(99, 70, 90, 0.25);
}

.value-card__icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.value-card p {
    font-size: 0.85rem;
    color: var(--slate-light);
}

/* Team */
.team-banner {
    background: linear-gradient(135deg, #4a3347 0%, var(--eggplant) 50%, #7a4840 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.team-banner h2 {
    color: var(--white);
}

.team-banner p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

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

.team-stat__number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--peach);
    line-height: 1;
    margin-bottom: 4px;
}

.team-stat__label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

/* — Contact — */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--eggplant);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    background: var(--off-white);
    color: var(--slate);
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info__item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(237, 121, 85, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--coral);
    flex-shrink: 0;
}

.contact-info__item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-info__item p {
    font-size: 0.9rem;
    color: var(--slate-light);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eggplant);
    font-size: 1.1rem;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.social-link:hover {
    background: var(--eggplant);
    color: var(--white);
    transform: translateY(-2px);
}

/* — FAQ — */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--eggplant);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: color var(--transition);
}

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

.faq-icon {
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
    color: var(--slate-light);
}

.faq-item--open .faq-icon {
    transform: rotate(180deg);
    color: var(--coral);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--coral);
}

.faq-question {
    background: transparent;
    transition: background var(--transition), color var(--transition);
}

.faq-item--open .faq-question {
    background: rgba(99, 70, 90, 0.04);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-answer__inner {
    padding: 0 0 var(--space-md);
    font-size: 0.95rem;
    color: var(--slate-light);
    line-height: 1.65;
}

/* — Footer — */
.footer {
    background: var(--eggplant);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.footer__logo .logo-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--coral);
    border-radius: 50%;
}

.footer__brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer__col h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--peach);
    margin-bottom: var(--space-sm);
}

.footer__col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--coral);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

.footer__bottom a:hover {
    color: var(--coral);
}

.footer__legal {
    display: flex;
    gap: var(--space-md);
}

/* — Scroll Animations — */
.js-ready .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.js-ready .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Disable scroll animations on mobile — too slow/janky on low-end devices */
@media (max-width: 768px) {
    .js-ready .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .js-ready .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* — Tailored Note — */
.tailored-note {
    text-align: center;
    padding: var(--space-lg);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

.tailored-note p {
    font-family: var(--font-quote);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--rose);
    margin-bottom: var(--space-sm);
}

/* ========================================================================
   AI Behavioral Diagnostics
   ======================================================================== */

.diagnostics {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.diagnostics::before,
.diagnostics::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.5;
}

.diagnostics::before {
    width: 480px;
    height: 480px;
    background: var(--peach);
    top: -160px;
    left: -160px;
}

.diagnostics::after {
    width: 380px;
    height: 380px;
    background: var(--rose);
    bottom: -120px;
    right: -120px;
    opacity: 0.15;
}

.diagnostics__shell {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.diagnostics__input-bar {
    background: var(--eggplant);
    padding: var(--space-lg) var(--space-lg);
}

.diagnostics__input-bar label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: var(--space-sm);
}

.diagnostics__row {
    display: flex;
    gap: var(--space-sm);
}

.diagnostics__input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-md);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--slate);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.08);
    outline: none;
    transition: box-shadow var(--transition);
}

.diagnostics__input:focus {
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.08), 0 0 0 3px rgba(237,121,85,0.4);
    min-height: 80px;
}

.diagnostics__input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.diagnostics__send {
    padding: 0.9rem 1.5rem;
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.diagnostics__send:hover:not(:disabled) {
    background: #d66a4a;
    transform: translateY(-1px);
}

.diagnostics__send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Chat transcript area */
.diagnostics__body {
    background: var(--off-white);
    min-height: 260px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.diagnostics__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 220px;
    color: var(--slate-light);
    text-align: center;
    gap: var(--space-sm);
}

.diagnostics__empty-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

/* Message bubbles */
.diag-msg {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
    animation: fadeSlideUp 0.35s var(--ease-out) both;
}

.diag-msg--user {
    margin-left: auto;
    flex-direction: row-reverse;
}

.diag-msg__avatar {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.diag-msg--ai .diag-msg__avatar {
    background: var(--eggplant);
    color: var(--white);
}

.diag-msg--user .diag-msg__avatar {
    background: var(--coral);
    color: var(--white);
}

.diag-msg__bubble {
    max-width: 75%;
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.diag-msg--ai .diag-msg__bubble {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px 18px 18px 4px;
    color: var(--slate);
}

.diag-msg--user .diag-msg__bubble {
    background: var(--eggplant);
    color: white;
    border-radius: 18px 18px 4px 18px;
}

/* Typing indicator */
.diag-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    border-bottom-left-radius: 4px;
    width: fit-content;
}

.diag-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose);
    animation: typingBounce 1.2s ease-in-out infinite;
}

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

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Final diagnosis card */
.diag-result {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: fadeSlideUp 0.4s var(--ease-out) both;
}

.diag-result__header {
    background: var(--eggplant);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
}

.diag-result__header h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.diag-result__header p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

.diag-result__body {
    padding: var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.diag-result__col-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brick);
    margin-bottom: var(--space-sm);
}

.diag-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    border-left: 3px solid var(--rose);
    margin-bottom: 0.6rem;
}

.diag-card--spark {
    border-left-color: var(--coral);
}

.diag-card h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--eggplant);
    margin-bottom: 0.25rem;
}

.diag-card p {
    font-size: 0.875rem;
    color: var(--slate-light);
    line-height: 1.5;
}

.diag-result__service {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--eggplant), var(--rose));
    border-radius: var(--radius-md);
    padding: var(--space-md);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.diag-result__service-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.diag-result__service-text strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

/* Email capture inside diagnostics */
.diag-email-capture {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: var(--space-lg);
    animation: fadeSlideUp 0.4s var(--ease-out) 0.2s both;
}

.diag-email-capture h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--eggplant);
}

.diag-email-capture p {
    font-size: 0.875rem;
    color: var(--slate-light);
    margin-bottom: var(--space-md);
}

.diag-email-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.diag-email-form input[type="email"],
.diag-email-form input[type="text"] {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate);
    outline: none;
    transition: border-color var(--transition);
}

.diag-email-form input:focus {
    border-color: var(--coral);
}

.diag-email-form__row {
    display: flex;
    gap: 0.75rem;
}

.diag-email-form__row input {
    flex: 1;
}

.diag-opt-in {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--slate-light);
    cursor: pointer;
}

.diag-opt-in input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--coral);
    flex-shrink: 0;
}

.diag-email-success {
    text-align: center;
    padding: var(--space-md) 0;
    color: var(--eggplant);
    animation: fadeSlideUp 0.3s var(--ease-out) both;
}

.diag-email-success .checkmark {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

/* — Form Step Transitions — */
.form-step {
    animation: stepIn 0.25s var(--ease-out);
}

@keyframes stepIn {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-step__back {
    margin-bottom: var(--space-md);
}

/* — Sticky Mobile CTA — */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--border);
    z-index: 900;
    box-shadow: 0 -4px 20px rgba(99,70,90,0.1);
}

.sticky-cta .btn {
    width: 100%;
    justify-content: center;
}

/* — Placeholder contrast — */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

input::placeholder,
textarea::placeholder {
    color: #888;
}

/* Services preview — short/long term layout */
.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.services-split__col {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border);
}

.services-split__col--featured {
    background: var(--eggplant);
    border-color: transparent;
}

.services-split__col--featured h3,
.services-split__col--featured p,
.services-split__col--featured li {
    color: rgba(255,255,255,0.88);
}

.services-split__col--featured h2 {
    color: var(--white);
}

.services-split__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
}

.services-split__col:not(.services-split__col--featured) .services-split__label {
    color: var(--coral);
}

.services-split__col--featured .services-split__label {
    color: var(--peach);
}

.services-type-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: var(--space-md) 0;
}

.services-type-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--slate);
}

.services-type-list li::before {
    content: '→';
    color: var(--coral);
    font-weight: 700;
    flex-shrink: 0;
}

.services-split__col--featured .services-type-list li::before {
    color: var(--peach);
}

.services-split__col--featured .services-type-list li {
    color: rgba(255,255,255,0.8);
}

.services-split__price {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-light);
    border-top: 1px solid var(--border);
    padding-top: var(--space-sm);
    margin-top: var(--space-sm);
}

.services-split__col--featured .services-split__price {
    color: rgba(255,255,255,0.5);
    border-top-color: rgba(255,255,255,0.15);
}

/* ========================================================================
   Responsive
   ======================================================================== */

@media (max-width: 1024px) {
    .grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .team-banner {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .membership-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
    h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
    h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }
    .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }
    .pull-quote { font-size: clamp(1.1rem, 3.5vw, 1.5rem); }

    .sticky-cta { display: block; }

    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem var(--space-lg) var(--space-lg);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right var(--transition);
        gap: 0.5rem;
        z-index: 999;
    }

    .navbar__links.open {
        right: 0;
    }

    .navbar__links a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
        color: var(--slate) !important;
    }

    .navbar__links a:hover {
        color: var(--eggplant) !important;
    }

    .navbar__links a.btn--coral {
        color: var(--white) !important;
    }

    .navbar__cta {
        margin-left: 0;
        margin-top: var(--space-sm);
    }

    .hamburger {
        display: flex;
    }

    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: calc(var(--space-2xl) + 60px) 0 var(--space-2xl);
        background:
            linear-gradient(135deg, rgba(74, 51, 71, 0.9) 0%, rgba(99, 70, 90, 0.88) 50%, rgba(109, 79, 94, 0.85) 100%),
            url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=800&q=50') center / cover no-repeat;
    }

    .hero__shapes {
        display: none;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .timeline::before {
        top: 0;
        bottom: 0;
        left: 28px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .timeline__step {
        text-align: left;
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: var(--space-md);
        align-items: start;
        padding-left: 0;
    }

    .timeline__step h3,
    .timeline__step p {
        grid-column: 2;
    }

    .timeline__marker {
        margin: 0;
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        grid-row: 1 / span 2;
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .membership-grid {
        grid-template-columns: 1fr;
    }

    .email-capture__inner {
        flex-direction: column;
        text-align: center;
    }

    .email-capture__form {
        flex-direction: column;
        width: 100%;
    }

    .email-capture__form input {
        width: 100%;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .trust__inner {
        gap: var(--space-lg);
    }

    .services-split {
        grid-template-columns: 1fr;
    }

    .diag-result__body {
        grid-template-columns: 1fr;
    }

    .diagnostics__row {
        flex-direction: column;
    }

    .diag-email-form__row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.92rem;
    }

    .section {
        padding: var(--space-xl) 0;
    }
}

/* — Page Header (for inner pages) — */
.page-header {
    background: linear-gradient(135deg, #4a3347 0%, var(--eggplant) 50%, #7a4840 100%);
    color: var(--white);
    padding: calc(var(--space-2xl) + 80px) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    max-width: 560px;
    margin-top: var(--space-sm);
    position: relative;
    z-index: 1;
}

.page-header .label {
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-xs);
}

/* Overlay for mobile nav */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ========================================================================
   Impact Section
   ======================================================================== */

.impact-section {
    background: var(--white);
}

.impact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.impact-split__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.impact-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.impact-split__content .label {
    margin-bottom: var(--space-sm);
}

.impact-split__content h2 {
    margin-bottom: var(--space-md);
}

.impact-split__content p {
    color: var(--slate-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.impact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.impact-tags span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    background: rgba(99, 70, 90, 0.07);
    color: var(--eggplant);
}

@media (max-width: 768px) {
    .impact-split {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .impact-split__image {
        aspect-ratio: 16 / 9;
    }
}

/* ========================================================================
   Services — Routing, Track, Engagement Items
   ======================================================================== */

/* Routing section */
.routing-section {
    padding: var(--space-xl) 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.routing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.routing-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--slate);
    transition: var(--transition);
    cursor: pointer;
}

.routing-card:hover {
    border-color: var(--eggplant);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.routing-card__num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--coral);
    text-transform: uppercase;
}

.routing-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--eggplant);
    margin: 0;
    line-height: 1.4;
}

.routing-card p {
    font-size: 0.875rem;
    color: var(--slate-light);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.routing-card__cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--coral);
    margin-top: var(--space-xs);
}

/* Track sections */
.track__header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.track__num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    padding-top: 0.25rem;
}

.track__header .label {
    margin-bottom: var(--space-xs);
}

.track__header h2 {
    margin-bottom: var(--space-sm);
}

.track__header p {
    color: var(--slate-light);
    max-width: 600px;
    line-height: 1.7;
}

/* Engagement items (compact) */
.engagement-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.engagement-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.track:not([style*="background"]) .engagement-item {
    background: var(--white);
}

[style*="background: var(--white)"] .engagement-item {
    background: var(--off-white);
}

.engagement-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.engagement-item__info {
    flex: 1;
}

.engagement-item__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    background: rgba(99, 70, 90, 0.08);
    color: var(--eggplant);
    margin-bottom: var(--space-xs);
}

.engagement-item__info h3 {
    font-size: 1.05rem;
    color: var(--eggplant);
    margin-bottom: 0.35rem;
}

.engagement-item__info p {
    font-size: 0.9rem;
    color: var(--slate-light);
    line-height: 1.6;
    margin: 0;
}

.engagement-item__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.engagement-item__duration {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-light);
    white-space: nowrap;
}

.btn--sm {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .routing-grid {
        grid-template-columns: 1fr;
    }

    .track__header {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .track__num {
        font-size: 2rem;
    }

    .engagement-item {
        flex-direction: column;
        gap: var(--space-md);
    }

    .engagement-item__meta {
        align-items: flex-start;
        flex-direction: row;
        align-items: center;
    }
}

/* — Cookie Consent Banner — */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--eggplant);
    color: #fff;
    padding: var(--space-md) var(--space-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.92;
}

.cookie-banner__text a {
    color: var(--peach);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
}

.cookie-banner__btn:hover {
    opacity: 0.85;
}

.cookie-banner__btn--accept {
    background: var(--coral);
    color: #fff;
}

.cookie-banner__btn--decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: var(--space-sm) var(--space-md);
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}