/* ============================================
   FRANCESCA FINCH — WHITE MINIMAL STYLESHEET
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* WHITE PALETTE */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --border: #EEEEEE;
    --border-dark: #E0E0E0;

    /* TEXT */
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #7A7A7A;
    --text-muted: #A0A0A0;

    /* ACCENT — subtle warm tone */
    --accent: #8B7355;
    --accent-hover: #6B5A42;
    --accent-light: #F5F0E8;

    /* SHADOWS */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.06);

    /* LAYOUT */
    --radius: 6px;
    --radius-lg: 10px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-primary);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    display: block;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 780px;
}

section {
    padding: 100px 0;
}

/* ===== TYPOGRAPHY UTILS ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title em {
    font-style: italic;
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 660px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 60px;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-subtitle {
    margin: 0 auto;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.btn--primary {
    background: var(--text-primary);
    color: var(--white);
    border: 1px solid var(--text-primary);
}

.btn--primary:hover {
    background: var(--white);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn--outline:hover {
    background: var(--text-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav__logo span {
    color: var(--accent);
    margin-left: 4px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav__links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width var(--transition);
}

.nav__links a:hover {
    color: var(--text-primary);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--text-primary) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: var(--radius);
    font-size: 0.8rem !important;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}

.nav__cta:hover {
    background: var(--accent) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav__cta::after {
    display: none !important;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    margin: 6px 0;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    padding: 180px 0 120px;
    background: var(--white);
    position: relative;
}

.hero__content {
    max-width: 800px;
}

.hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent);
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero__sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 680px;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero__trust {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hero__trust-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.hero__trust-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== PROBLEM SECTION ===== */
.problem {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.problem .section-label {
    color: var(--accent);
}

.problem__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.problem__text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.problem__text p:last-child {
    margin-bottom: 0;
}

.problem__text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.problem__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.problem__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.problem__card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.problem__card-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.problem__card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.problem__card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== WHAT IF SECTION ===== */
.what-if {
    background: var(--white);
}

.what-if__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.what-if__card {
    padding: 32px 24px;
    border-left: 2px solid var(--border);
    transition: border-color var(--transition);
}

.what-if__card:hover {
    border-left-color: var(--accent);
}

.what-if__icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: var(--text-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.what-if__card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.what-if__card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SERVICES PILLARS ===== */
.pillars {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.pillar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: left;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.pillar:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pillar__icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
}

.pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pillar p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pillar__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== PROCESS PREVIEW ===== */
.process-preview {
    background: var(--white);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.process__step {
    text-align: left;
    position: relative;
}

.process__number {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.process__step h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.process__step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.process-preview__cta {
    text-align: center;
    margin-top: 60px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    transition: all var(--transition);
}

.testimonial:hover {
    box-shadow: var(--shadow-md);
}

.testimonial__quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.2;
}

.testimonial__body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.testimonial__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--light-gray);
    flex-shrink: 0;
}

.testimonial__name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial__book {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.testimonial__link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
}

/* ===== WHO SECTION ===== */
.who {
    background: var(--white);
}

.who__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.who__col {
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.who__col--yes {
    background: var(--white);
}

.who__col--no {
    background: var(--off-white);
}

.who__col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.who__col ul {
    list-style: none;
}

.who__col ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.who__col ul li:last-child {
    border-bottom: none;
}

/* ===== LEAD MAGNET ===== */
.lead-magnet {
    background: var(--text-primary);
    color: var(--white);
}

.lead-magnet__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-magnet__content .section-label {
    color: var(--accent-light);
    border-color: var(--accent-light);
}

.lead-magnet__content h2 {
    color: var(--white);
    margin-bottom: 24px;
}

.lead-magnet__content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.lead-magnet__content strong {
    color: var(--white);
}

.lead-magnet__content .btn--primary {
    background: var(--white);
    color: var(--text-primary);
    border-color: var(--white);
    margin-top: 12px;
}

.lead-magnet__content .btn--primary:hover {
    background: transparent;
    color: var(--white);
}

.lead-magnet__file {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lead-magnet__file-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lead-magnet__file-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.lead-magnet__file-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--text-primary);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--white);
    color: var(--text-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand .nav__logo {
    color: var(--text-primary);
    margin-bottom: 16px;
    display: inline-block;
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer__notice {
    font-size: 0.8rem !important;
    padding: 12px 16px;
    background: var(--off-white);
    border-left: 2px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer ul a:hover {
    color: var(--text-primary);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__bottom a {
    color: var(--text-muted);
    margin-left: 20px;
}

.footer__bottom a:hover {
    color: var(--text-primary);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    padding: 160px 0 80px;
    background: var(--white);
}

.about-hero__content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.about-hero__image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--off-white);
    border: 1px dashed var(--border-dark);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
}

.about-hero__image-placeholder span {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.about-hero__text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 28px;
    line-height: 1.1;
}

.about-hero__text h1 em {
    color: var(--accent);
    font-style: italic;
}

.about-hero__text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.my-story {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.my-story p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.my-story p:first-of-type {
    font-size: 1.15rem;
    color: var(--text-primary);
}

.credentials {
    background: var(--white);
}

.credentials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.credential-card {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.credential-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.credential-card__icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.credential-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.credential-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.credential-note {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 16px !important;
    font-style: italic;
}

.my-promise {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.my-promise p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.my-promise strong {
    color: var(--text-primary);
}

.about-values {
    background: var(--white);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    padding: 36px 28px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.value-card:hover {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.value-card__icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-different {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 100px 0;
}

.about-different h2 {
    margin-bottom: 24px;
}

.about-different p {
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-different strong {
    color: var(--text-primary);
}

.about-where {
    background: var(--white);
}

.about-where__content {
    max-width: 720px;
}

.about-where p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-where .notice {
    background: var(--off-white);
    border-left: 3px solid var(--accent);
    padding: 24px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 32px;
}

.about-where .notice h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.about-where .notice p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* ===== SERVICES PAGE ===== */
.services-hero {
    padding: 160px 0 60px;
    background: var(--white);
}

.services-hero__nav {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.services-hero__nav a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.services-hero__nav a:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent);
}

.service-block {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
}

.service-block:nth-child(even) {
    background: var(--off-white);
}

.service-block__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.service-block__inner--reverse {
    direction: rtl;
}

.service-block__inner--reverse > * {
    direction: ltr;
}

.service-block__badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.service-block__badge--core {
    background: var(--text-primary);
    color: var(--white);
    border-color: var(--text-primary);
}

.service-block h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-block__intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-detail {
    margin-bottom: 28px;
}

.service-detail h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-detail p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-list {
    list-style: none;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 32px;
}

.service-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.service-list li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-deliverables {
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.service-deliverables h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-deliverables p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== PACKAGES ===== */
.packages {
    background: var(--white);
    padding: 100px 0;
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.package {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.package:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-primary);
}

.package--featured {
    border-color: var(--text-primary);
    border-width: 2px;
}

.package__popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.package__tier {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 12px;
}

.package h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.package__price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.package__price strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 600;
    display: inline-block;
    margin-left: 4px;
}

.package__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.package ul {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.package ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.package ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.package ul li:last-child {
    border-bottom: none;
}

.package__timeline {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
    padding: 10px 14px;
    background: var(--off-white);
    border-radius: var(--radius);
    text-align: center;
}

.package .btn {
    width: 100%;
    text-align: center;
}

.packages__comparison {
    margin-top: 60px;
}

.packages__comparison h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.comparison-table-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.comparison-table th {
    background: var(--off-white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.packages__note {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.packages__note h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.packages__note p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.packages__note .btn {
    margin-top: 12px;
}

/* ===== PROCESS PAGE ===== */
.process-hero {
    padding: 160px 0 80px;
    background: var(--white);
}

.why-async {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-async p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-async strong {
    color: var(--text-primary);
}

.process-timeline {
    background: var(--white);
    padding: 100px 0;
}

.timeline {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 0;
    left: 24px;
    width: 1px;
    background: var(--border-dark);
}

.timeline__item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 60px;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
}

.timeline__item h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.timeline__lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline__detail {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-top: 16px;
}

.timeline__detail h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    margin-top: 20px;
}

.timeline__detail h4:first-child {
    margin-top: 0;
}

.timeline__detail ul {
    list-style: none;
    margin-bottom: 8px;
}

.timeline__detail li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.timeline__detail li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.what-you-need {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.what-you-need__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.need-card {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.need-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.need-card__num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.need-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.need-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq {
    background: var(--white);
}

.faq__grid {
    max-width: 820px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--accent);
}

.faq__icon {
    font-size: 1.5rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--accent);
    font-weight: 300;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-bottom: 24px;
}

.faq__answer a {
    color: var(--accent);
    text-decoration: underline;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

/* ===== RESULTS PAGE ===== */
.results-hero {
    padding: 160px 0 60px;
    background: var(--white);
}

.results-intro {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.results-intro p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.case-studies {
    background: var(--white);
    padding: 100px 0;
}

.case-study {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px;
    margin-bottom: 40px;
    transition: box-shadow var(--transition);
}

.case-study:hover {
    box-shadow: var(--shadow-md);
}

.case-study__header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.case-study__book-image {
    background: var(--off-white);
    border-radius: var(--radius);
    aspect-ratio: 2/3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.case-study__book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study__genre {
    display: inline-block;
    padding: 4px 12px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.case-study h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.case-study h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.case-study__series {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.case-study__amazon-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    padding: 8px 16px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.case-study__amazon-link:hover {
    background: var(--accent);
    color: var(--white);
}

.case-study__section {
    margin-bottom: 24px;
}

.case-study__section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.case-study__section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.case-study__section ul {
    list-style: none;
}

.case-study__section li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.case-study__section li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.case-study__quote {
    border-left: 3px solid var(--accent);
    padding: 20px 28px;
    margin: 32px 0 0;
    background: var(--off-white);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.case-study__quote p {
    font-style: italic;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.case-study__quote cite {
    display: block;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-secondary);
}

.case-study--placeholder {
    background: var(--off-white);
    border: 1px dashed var(--border-dark);
    text-align: center;
    padding: 60px 40px;
}

.case-study__placeholder-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.case-study__placeholder-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.results-ethics {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.results-ethics p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.results-ethics strong {
    color: var(--text-primary);
}

/* ===== GENRES PAGE ===== */
.genres-hero {
    padding: 160px 0 80px;
    background: var(--white);
}

.why-genre {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-genre p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.genre-grid-section {
    background: var(--white);
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.genre-card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.genre-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.genre-card__icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.genre-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.genre-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.genre-card__note {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 12px 16px;
    background: var(--off-white);
    border-left: 2px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    line-height: 1.6;
    font-style: italic;
}

.genre-approach {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.approach-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.approach-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FAQ PAGE ===== */
.faq-hero {
    padding: 160px 0 80px;
    background: var(--white);
}

.faq-page {
    background: var(--white);
    padding: 60px 0 100px;
}

.faq-category {
    max-width: 820px;
    margin: 0 auto 60px;
}

.faq-category__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--text-primary);
}

.faq-remaining {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    padding: 80px 0;
}

.faq-remaining h2 {
    margin-bottom: 20px;
}

.faq-remaining p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    padding: 160px 0 60px;
    background: var(--white);
}

.contact-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    padding: 80px 0 100px;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group label span {
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A4A4A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    padding-right: 40px;
}

.contact-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 0.9rem;
    margin-top: 12px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.form-success__icon {
    width: 60px;
    height: 60px;
    background: var(--text-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-info__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info__item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-info__item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info__item a {
    font-size: 0.9rem;
    color: var(--accent);
}

.impersonation-notice {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid #C53030;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px 28px;
    margin-top: 32px;
}

.impersonation-notice h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #C53030;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.impersonation-notice p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.impersonation-notice strong {
    color: var(--text-primary);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 160px 0 80px;
    background: var(--white);
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.legal-page .last-updated {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.legal-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-page p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-notice {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 32px 0;
}

.legal-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .problem__content,
    .about-hero__content,
    .lead-magnet__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pillars__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .credentials__grid,
    .values__grid,
    .genre-grid,
    .what-if__grid,
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-block__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-block__inner--reverse {
        direction: ltr;
    }

    .packages__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 60px;
    }

    .contact__grid,
    .who__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .what-you-need__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .case-study__header {
        grid-template-columns: 1fr;
    }

    .case-study__book-image {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .nav__inner {
        height: 72px;
    }

.nav__links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 40px 40px 80px;
    overflow-y: auto;
}

    .nav__links.active {
        display: flex;
    }

    .nav__toggle {
        display: block;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .hero__trust {
        gap: 30px;
        flex-wrap: wrap;
    }

    .problem__visual,
    .pillars__grid,
    .process__steps,
    .credentials__grid,
    .values__grid,
    .genre-grid,
    .what-if__grid,
    .approach-grid,
    .what-you-need__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__content {
        gap: 24px;
    }

    .about-hero__image-placeholder {
        max-width: 280px;
        margin: 0 auto;
    }

    .service-block {
        padding: 60px 0;
    }

    .service-block h2 {
        font-size: 1.5rem;
    }

    .case-study {
        padding: 32px 24px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .services-hero__nav {
        gap: 20px;
    }

    .timeline__item {
        padding-left: 60px;
    }

    .timeline__dot {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline::before {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .service-block__inner {
        gap: 32px;
    }

    .service-list {
        padding: 16px 20px;
    }
}
/* ============================================
   HOME PAGE EXPANDED SECTIONS
   ============================================ */

/* Hero Grid with Image */
.hero__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero__sub-secondary {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    font-style: italic;
}

.hero__image-frame {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--off-white);
}

.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Strip */
.trust-strip {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.trust-strip__inner {
    text-align: center;
}

.trust-strip__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 600;
}

.trust-strip__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-strip__logo img {
    height: 32px;
    width: auto;
    filter: grayscale(100%);
    transition: all var(--transition);
}

.trust-strip__logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Problem Section Card Icons */
.problem__card-icon img {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

/* Meet Francesca Enhanced */
.meet-francesca__image {
    position: relative;
}

.meet-francesca__badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    text-align: left;
}

.meet-francesca__badge span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.meet-francesca__badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-primary);
}

/* Pillar Images */
.pillar {
    padding: 0;
    overflow: hidden;
}

.pillar__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--off-white);
}

.pillar__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pillar:hover .pillar__image img {
    transform: scale(1.05);
}

.pillar__content {
    padding: 32px 24px;
}

.pillar__number {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

/* Process Step Images */
.process__step {
    text-align: left;
}

.process__step-image {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    background: var(--off-white);
}

.process__step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process__step-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-style: italic;
}

/* Testimonial with Book Visual */
.testimonial__book-visual {
    aspect-ratio: 2/3;
    max-width: 100px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--off-white);
}

.testimonial__book-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Who Section Icons */
.who__icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.who__icon img {
    width: 24px;
    height: 24px;
}

.who__col--yes {
    border-top: 3px solid var(--accent);
}

.who__col--no {
    border-top: 3px solid var(--text-muted);
}

/* Behind The Work Section */
.behind-work {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.behind-work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.behind-work__item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.behind-work__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.behind-work__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.behind-work__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.behind-work__item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 24px 24px 12px;
    line-height: 1.4;
}

.behind-work__item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 24px 24px;
}

/* From The Field Section */
.from-field {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.from-field__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.from-field__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.from-field__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.from-field__number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
    opacity: 0.5;
}

.from-field__card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.from-field__card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Lead Magnet Preview */
.lead-magnet__preview {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.lead-magnet__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-magnet__file-icon img {
    width: 32px;
    height: 32px;
}

/* CTA Section Note */
.cta-section__note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 16px;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__image {
        max-width: 500px;
        margin: 0 auto;
    }

    .behind-work__grid,
    .from-field__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip__logos {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .behind-work__grid,
    .from-field__grid {
        grid-template-columns: 1fr;
    }

    .trust-strip__logos {
        gap: 24px;
    }

    .trust-strip__logo img {
        height: 24px;
    }

    .meet-francesca__badge {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }
}


/* ============================================
   ABOUT PAGE ENHANCED SECTIONS
   ============================================ */

/* About Hero with Badge */
.about-hero__image-wrap {
    position: relative;
}

.about-hero__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.about-hero__image-badge span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.about-hero__image-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text-primary);
}

/* My Story Grid with Two Images */
.my-story__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.my-story__image-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.my-story__image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/5;
    background: var(--off-white);
}

.my-story__image--bottom {
    aspect-ratio: 4/3;
    margin-left: 30px;
}

.my-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-story__pullquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--text-primary);
    padding: 24px 0 24px 28px;
    border-left: 3px solid var(--accent);
    margin: 32px 0 !important;
    font-style: italic;
}

/* By The Numbers */
.by-numbers {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.by-numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.by-numbers__stat {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.by-numbers__stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.by-numbers__value {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.by-numbers__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.by-numbers__stat p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Credential Card Icons */
.credential-card__icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--off-white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.credential-card__icon-wrap img {
    width: 28px;
    height: 28px;
}

/* Workspace Gallery */
.workspace {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.workspace__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
    height: 500px;
}

.workspace__image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.workspace__image--large {
    grid-row: span 2;
}

.workspace__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workspace__image:hover img {
    transform: scale(1.05);
}

.workspace__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

/* My Promise with Image */
.my-promise__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.my-promise__image {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--off-white);
}

.my-promise__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-promise__content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.my-promise__content strong {
    color: var(--text-primary);
}

/* Value Card Icons */
.value-card__icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.value-card__icon-wrap img {
    width: 24px;
    height: 24px;
}

/* About Different with Image */
.about-different__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-different__image {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    order: 2;
}

.about-different__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-different__content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

/* How Different Section */
.how-different {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-different__grid {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.how-different__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 32px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    align-items: start;
}

.how-different__item:hover {
    transform: translateX(8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.how-different__number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    padding-top: 4px;
}

.how-different__content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.how-different__content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About Where Contact Card */
.about-where__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-where__contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.about-where__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    margin-bottom: 20px;
}

.about-where__contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.about-where__contact-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.about-where__contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
}

.about-where__contact-item span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.about-where__contact-item a,
.about-where__contact-item p {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0;
}

.about-where__contact-card .btn {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .my-story__grid,
    .my-promise__inner,
    .about-different__inner,
    .about-where__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .my-story__image-column {
        position: static;
        flex-direction: row;
        max-width: 500px;
    }

    .my-story__image--bottom {
        margin-left: 0;
    }

    .about-different__image {
        order: 0;
    }

    .about-where__contact-card {
        position: static;
    }

    .by-numbers__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workspace__grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .workspace__image--large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .workspace__image {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) {
    .by-numbers__grid {
        grid-template-columns: 1fr;
    }

    .by-numbers__value {
        font-size: 2.5rem;
    }

    .workspace__grid {
        grid-template-columns: 1fr;
    }

    .workspace__image,
    .workspace__image--large {
        aspect-ratio: 16/10;
        grid-column: span 1;
    }

    .how-different__item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px;
    }

    .how-different__item:hover {
        transform: none;
    }

    .my-story__image-column {
        flex-direction: column;
    }

    .my-story__pullquote {
        font-size: 1.15rem;
        padding-left: 20px;
    }
}

/* ============================================
   SERVICES PAGE ENHANCED SECTIONS
   ============================================ */

/* Services Hero */
.services-hero__inner {
    max-width: 900px;
}

.services-hero__nav {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.services-hero__nav a {
    padding: 10px 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.services-hero__nav a:hover {
    background: var(--text-primary);
    color: var(--white);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

/* Services Overview Grid */
.services-overview {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-overview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.services-overview__grid a:nth-child(4),
.services-overview__grid a:nth-child(5) {
    grid-column: span 1;
}

.services-overview__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.services-overview__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.services-overview__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.services-overview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-overview__card:hover .services-overview__image img {
    transform: scale(1.05);
}

.services-overview__content {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-overview__number {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.services-overview__badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--text-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.services-overview__badge--core {
    background: var(--accent);
}

.services-overview__content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.services-overview__content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.services-overview__link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-top: auto;
}

/* Service Block Hero */
.service-block {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
}

.service-block--alt {
    background: var(--off-white);
}

.service-block__hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-block__hero--reverse {
    grid-template-columns: 1.2fr 1fr;
}

.service-block__hero--reverse .service-block__hero-image {
    order: 2;
}

.service-block__hero-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--off-white);
}

.service-block__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-block__badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.service-block__badge--core {
    background: var(--text-primary);
    color: var(--white);
    border-color: var(--text-primary);
}

.service-block__hero-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-block__intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Service Block Details */
.service-block__details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.service-block__section {
    padding: 32px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.service-block--alt .service-block__section {
    background: var(--white);
}

.service-block__section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.service-block__section-icon {
    width: 48px;
    height: 48px;
    background: var(--off-white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.service-block--alt .service-block__section-icon {
    background: var(--card-bg);
}

.service-block__section-icon img {
    width: 24px;
    height: 24px;
}

.service-block__section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.service-block__section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-block__section p:last-child {
    margin-bottom: 0;
}

/* Service Deliverables */
.service-block__deliverables {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.service-block--alt .service-block__deliverables {
    background: var(--card-bg);
}

.service-block__deliverables-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.service-block__deliverables-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-block__deliverables-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-block__deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.deliverable {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.service-block--alt .deliverable {
    background: var(--white);
}

.deliverable:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.deliverable__check {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.deliverable__check img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

.deliverable h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.4;
}

.deliverable p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Packages Disclaimer Enhanced */
.packages__disclaimer {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-md);
    align-items: start;
}

.packages__disclaimer-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.packages__disclaimer-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.packages__disclaimer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.packages__disclaimer-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.packages__disclaimer-content p:last-of-type {
    margin-bottom: 20px;
}

.packages__disclaimer-content strong {
    color: var(--text-primary);
}

/* Package Cards with Images */
.package {
    padding: 0;
    overflow: hidden;
}

.package__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.package__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package:hover .package__image img {
    transform: scale(1.05);
}

.package__body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package__price small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-overview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-block__hero,
    .service-block__hero--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-block__hero--reverse .service-block__hero-image {
        order: 0;
    }

    .service-block__details {
        grid-template-columns: 1fr;
    }

    .service-block__deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-overview__grid {
        grid-template-columns: 1fr;
    }

    .service-block__deliverables {
        padding: 32px 20px;
    }

    .service-block__deliverables-grid {
        grid-template-columns: 1fr;
    }

    .service-block__section {
        padding: 24px;
    }

    .services-hero__nav {
        gap: 12px;
    }

    .services-hero__nav a {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .packages__disclaimer {
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }

    .packages__disclaimer-icon {
        margin: 0 auto;
    }
}

/* ============================================
   PROCESS PAGE ENHANCED
   ============================================ */

.process-hero__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-hero__meta {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.process-hero__meta-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.process-hero__meta-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-hero__image {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--off-white);
}

.process-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-async__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.why-async__image {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--off-white);
}

.why-async__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-async__content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Timeline Overview */
.timeline-overview {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.timeline-overview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.timeline-overview__step {
    padding: 32px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.timeline-overview__step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.timeline-overview__number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}

.timeline-overview__step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.timeline-overview__step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.timeline-overview__duration {
    display: inline-block;
    padding: 4px 12px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Detailed Timeline with Images */
.timeline__item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding-left: 0;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}

.timeline__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline::before {
    display: none;
}

.timeline__image {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--off-white);
    position: sticky;
    top: 100px;
    align-self: start;
}

.timeline__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline__content {
    padding-top: 0;
}

.timeline__dot {
    position: static;
    display: inline-flex;
    margin-bottom: 20px;
}

/* Need Cards with Images */
.need-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.need-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.need-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.need-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.need-card:hover .need-card__image img {
    transform: scale(1.05);
}

.need-card__body {
    padding: 28px 24px;
}

.need-card__num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    line-height: 1;
}

/* Communication Section */
.communication {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.communication__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.communication__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.communication__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.communication__icon {
    width: 56px;
    height: 56px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--border);
}

.communication__icon img {
    width: 24px;
    height: 24px;
}

.communication__card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.communication__card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   RESULTS PAGE ENHANCED
   ============================================ */

.results-hero__inner {
    max-width: 900px;
}

.results-intro__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.results-intro__image {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--off-white);
}

.results-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.results-intro__content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Case Study Enhanced */
.case-study__author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    padding: 16px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.case-study__author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.case-study__author-info strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.case-study__author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study__section {
    padding: 24px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.case-study__section-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.case-study__section-icon img {
    width: 20px;
    height: 20px;
}

.case-study__quote {
    position: relative;
    padding: 40px 40px 40px 60px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 32px;
    box-shadow: var(--shadow-sm);
}

.case-study__quote-mark {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    opacity: 0.3;
}

.case-study__quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.case-study__quote cite {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study__placeholder-icon {
    width: 60px;
    height: 60px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--border);
}

.case-study__placeholder-icon img {
    width: 28px;
    height: 28px;
}

/* Ethics Section */
.results-ethics__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.results-ethics__image {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--off-white);
    position: sticky;
    top: 100px;
}

.results-ethics__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ethics-point {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.ethics-point__number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}

.ethics-point h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ethics-point p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   GENRES PAGE ENHANCED
   ============================================ */

.genres-hero__inner {
    max-width: 900px;
}

.why-genre__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.why-genre__image {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--off-white);
}

.why-genre__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-genre__content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Genre Cards with Images */
.genre-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.genre-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.genre-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.genre-card:hover .genre-card__image img {
    transform: scale(1.05);
}

.genre-card__body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.genre-card__sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.genre-card--ask {
    border-color: var(--accent);
    background: var(--card-bg);
}

/* Approach Grid with Icons */
.approach-item {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.approach-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.approach-item__icon {
    width: 48px;
    height: 48px;
    background: var(--off-white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.approach-item__icon img {
    width: 24px;
    height: 24px;
}

.approach-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-hero__grid,
    .why-async__inner,
    .results-intro__inner,
    .results-ethics__inner,
    .why-genre__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .results-ethics__image {
        position: static;
    }

    .timeline__item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .timeline__image {
        position: static;
        max-width: 400px;
        aspect-ratio: 16/10;
    }

    .timeline-overview__grid,
    .communication__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline-overview__grid,
    .communication__grid {
        grid-template-columns: 1fr;
    }

    .process-hero__meta {
        gap: 24px;
    }

    .case-study__quote {
        padding: 32px 24px 24px 40px;
    }

    .case-study__quote-mark {
        font-size: 3rem;
        top: 12px;
        left: 12px;
    }

    .ethics-point {
        flex-direction: column;
        gap: 12px;
    }
}


/* MOBILE NAV FIX — force solid background on mobile menu */
@media (max-width: 768px) {
    .nav__links.active {
        background: #FFFFFF !important;
        background-color: #FFFFFF !important;
        z-index: 1001 !important;
    }
}
