/* ==========================================================================
   ALICE CLARK WINN - COMPLETE MASTER STYLESHEET
   Supports all pages with zero overlaps and high-contrast styling
   ========================================================================== */

:root {
    --navy: #0a1628;
    --navy-light: #132039;
    --navy-mid: #1a2d4d;
    --navy-deep: #050d1a;
    --gold: #d4a853;
    --gold-light: #e8c87a;
    --gold-dark: #b8860b;
    --coral: #e85d5d;
    --coral-light: #fef2f2;
    --green: #10b981;
    --green-light: #d1fae5;
    --cream: #fdf6ec;
    --cream-dark: #f5ead6;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6b7c93;
    --text-muted: #95a5b8;
    --border: #e8e0d4;
    --shadow: rgba(10, 22, 40, 0.08);
    --shadow-heavy: rgba(10, 22, 40, 0.16);
    --shadow-gold: rgba(212, 168, 83, 0.25);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #132039 30%, #1a2d4d 60%, #0f2847 100%);
    --gradient-cta: linear-gradient(135deg, #0a1628 0%, #1a2d4d 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--white);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
}

p {
    margin-bottom: 1.2rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--gold) !important;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: 10000;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.25);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.logo-dot {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links .nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-full);
    font-weight: 700 !important;
}

.nav-links .nav-cta::after {
    display: none !important;
}

.nav-links .nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 10001;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   MARQUEE BAR
   ========================================================================== */
.marquee-bar {
    background: var(--gold);
    color: var(--navy);
    padding: 11px 0;
    overflow: hidden;
    position: relative;
    z-index: 999;
    margin-top: 76px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 50s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-right: 40px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-gold);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.02rem;
}

.center-btn {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================================
   SECTION LABELS & TITLES
   ========================================================================== */
.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
    text-align: center;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.02rem;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.75;
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero {
    position: relative;
    background: var(--gradient-hero);
    color: var(--white);
    padding: 90px 24px 100px;
    text-align: center;
    overflow: hidden;
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    opacity: 0.12;
    animation: particleFloat 10s ease-in-out infinite alternate;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(15deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}

.hero-eyebrow {
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 26px;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--gold);
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
    max-width: 800px;
    margin: 0 auto 28px;
}

.hero-written-badge {
    background: rgba(212, 168, 83, 0.12);
    border: 1px solid rgba(212, 168, 83, 0.35);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    max-width: 760px;
    margin: 0 auto 32px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    color: var(--gold-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hero-written-badge i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.scroll-indicator {
    position: relative;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    animation: bounceArrow 2s infinite;
    margin-top: 8px;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========================================
   PAGE HERO (INNER PAGES)
   ======================================== */
.page-hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 120px 24px 70px;
    text-align: center;
    position: relative;
}

.page-hero .section-label {
    color: var(--gold);
}

.page-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 800;
}

.page-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ========================================
   ALICE INTRO
   ======================================== */
.alice-intro-section {
    padding: 110px 0;
    background: var(--white);
}

.alice-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.alice-intro-photo {
    position: relative;
}

.alice-intro-photo img {
    border-radius: var(--radius);
    box-shadow: 0 20px 60px var(--shadow-heavy);
    width: 100%;
}

.photo-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    padding: 14px 26px;
    border-radius: var(--radius-full);
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px var(--shadow-heavy);
    white-space: nowrap;
    border: 1px solid rgba(212, 168, 83, 0.3);
}

.photo-badge span {
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.alice-intro-text .section-label {
    text-align: left;
}

.alice-intro-text h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: left;
}

.alice-intro-text p {
    font-size: 1.02rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.85;
}

.intro-highlights {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.intro-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.intro-highlight-item i {
    color: var(--gold-dark);
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    padding: 110px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.problem-content {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 50px;
    margin-top: 40px;
    align-items: start;
}

.problem-text p {
    margin-bottom: 18px;
    font-size: 1.02rem;
    color: var(--text);
    line-height: 1.85;
}

.problem-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.problem-stat-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.problem-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 8px;
}

.problem-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ========================================
   PATH COMPARISON
   ======================================== */
.path-section {
    padding: 110px 0;
    background: var(--white);
}

.path-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.path-card {
    padding: 38px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.path-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.path-header i {
    font-size: 1.8rem;
}

.path-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.path-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.path-step {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.path-step:last-child {
    border-bottom: none;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.path-bad {
    background: var(--coral-light);
    border-color: #fecaca;
}

.path-bad .path-header i,
.path-bad .path-header h3 {
    color: var(--coral);
}

.path-bad .step-num {
    background: #fee2e2;
    color: var(--coral);
}

.path-good {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.path-good .path-header i,
.path-good .path-header h3 {
    color: var(--green);
}

.path-good .step-num {
    background: var(--green-light);
    color: var(--green);
}

/* ========================================
   METHODOLOGY
   ======================================== */
.methodology-section {
    padding: 110px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}

.method-card {
    background: var(--white);
    padding: 38px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px var(--shadow);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.method-card p {
    font-size: 0.94rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ========================================
   PHOTO BANNER
   ======================================== */
.photo-banner {
    padding: 90px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.photo-banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
}

.photo-banner-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.photo-banner-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.photo-banner-text h2 {
    color: var(--white);
    font-size: 1.85rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
}

.photo-banner-text p {
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   SERVICES OVERVIEW (DARK SECTION)
   ======================================== */
.services-overview {
    padding: 110px 0;
    background: var(--navy);
    color: var(--white);
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.service-card-home {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card-home:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.service-icon-home {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 83, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-card-home h3 {
    color: var(--white);
    font-size: 1.18rem;
    margin-bottom: 12px;
}

.service-card-home p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-bottom: 18px;
    line-height: 1.75;
    flex-grow: 1;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--gold-light);
    gap: 12px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 110px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 40px;
}

.stat-item {
    padding: 34px 18px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--navy);
    display: inline;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-dark);
    display: inline;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 10px;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: 110px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
    top: 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 35px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 35px);
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.timeline-content {
    background: var(--cream);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    width: 100%;
}

.timeline-content h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-content h3 i {
    color: var(--gold-dark);
}

.timeline-content p {
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.75;
}

/* ========================================
   GENRE SECTION
   ======================================== */
.genre-section {
    padding: 110px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 40px;
}

.genre-card {
    background: var(--white);
    padding: 22px 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.genre-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow);
}

.genre-card i {
    font-size: 1.5rem;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 8px;
}

.genre-card span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.genre-card small {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ========================================
   CASE STUDIES PREVIEW
   ======================================== */
.case-studies-preview {
    padding: 110px 0;
    background: var(--white);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.case-card {
    background: var(--cream);
    padding: 34px 26px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.case-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--navy);
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.case-card h3 {
    font-size: 1.18rem;
    color: var(--navy);
    margin-top: 14px;
    margin-bottom: 12px;
    padding-right: 60px;
}

.case-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.case-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 10px;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
    margin-bottom: 18px;
}

.case-result {
    text-align: center;
}

.case-result strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--gold-dark);
    display: block;
}

.case-result span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 110px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 34px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.testimonial-stars {
    color: var(--gold-dark);
    font-size: 1.05rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ========================================
   LEAD MAGNET SECTION
   ======================================== */
.lead-magnet-section {
    padding: 110px 0;
    background: var(--white);
}

.lead-magnet-wrapper {
    background: var(--gradient-cta);
    border-radius: var(--radius);
    padding: 60px 48px;
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px var(--shadow-heavy);
}

.lead-magnet-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
}

.lead-magnet-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 14px;
}

.lead-magnet-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    margin-bottom: 24px;
    line-height: 1.75;
}

.lead-magnet-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.lead-magnet-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lead-magnet-list li i {
    color: var(--gold);
}

.lead-magnet-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.lead-magnet-form input {
    flex: 1;
    min-width: 220px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.92rem;
    outline: none;
}

.lead-magnet-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.lead-magnet-trust {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
}

/* ========================================
   PHOTO CTA
   ======================================== */
.photo-cta-section {
    padding: 110px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.photo-cta-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.photo-cta-img img {
    border-radius: var(--radius);
    box-shadow: 0 20px 60px var(--shadow-heavy);
    width: 100%;
}

.photo-cta-content h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 18px;
    text-align: left;
}

.photo-cta-content p {
    font-size: 1.02rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.85;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 110px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.faq-grid {
    max-width: 820px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--navy);
}

.faq-question i {
    color: var(--gold-dark);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 24px;
    color: var(--text);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    padding: 110px 0;
    background: var(--gradient-hero);
    text-align: center;
    color: var(--white);
    border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.final-cta h2 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 780px;
    margin: 0 auto 24px;
    line-height: 1.85;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-reminder {
    color: var(--gold);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ========================================
   SERVICES PAGE DETAILED
   ======================================== */
.how-to-choose-section {
    padding: 90px 0;
    background: var(--white);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.choose-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
}

.choose-icon {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.choose-item h4 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.choose-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.services-full {
    padding: 100px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.service-tier {
    margin-bottom: 60px;
}

.tier-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-dark);
    margin-bottom: 16px;
    display: block;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 34px;
    position: relative;
}

.service-detail-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.service-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.service-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.service-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-meta i {
    color: var(--gold-dark);
}

.service-phases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.phase h4 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 10px;
    border-left: 3px solid var(--gold);
    padding-left: 10px;
}

.phase ul, .service-deliverables {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phase li, .service-deliverables li {
    font-size: 0.92rem;
    color: var(--text);
    position: relative;
    padding-left: 18px;
}

.phase li::before, .service-deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: bold;
}

.all-services-section {
    padding-top: 60px;
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.mini-service {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
}

.mini-service i {
    color: var(--gold-dark);
}

/* ========================================
   ABOUT PAGE STORY & BELIEFS
   ======================================== */
.about-story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-chapters {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.story-chapter {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
}

.chapter-header {
    margin-bottom: 14px;
}

.chapter-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 2px;
}

.chapter-header h3 {
    font-size: 1.4rem;
    color: var(--navy);
}

.story-chapter blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--navy);
    border-left: 4px solid var(--gold);
    padding-left: 18px;
    margin: 18px 0;
}

.beliefs-section {
    padding: 100px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.beliefs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.belief-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.belief-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.belief-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.credentials-section {
    padding: 100px 0;
    background: var(--white);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.credential-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.credential-item i {
    font-size: 1.6rem;
    color: var(--gold-dark);
}

.credential-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
}

.credential-item span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.approach-section {
    padding: 100px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.approach-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
}

.approach-icon {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.approach-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
}

.why-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* ========================================
   CASE STUDIES DETAIL PAGE
   ======================================== */
.case-study-detail {
    padding: 90px 0;
    background: var(--white);
}

.case-study-detail.alt-bg {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.case-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
}

.case-detail-header h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.case-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.case-detail-meta strong {
    color: var(--navy);
}

.case-detail-section {
    margin-bottom: 28px;
}

.case-detail-section h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.strategy-phases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.strategy-phase {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.strategy-phase h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.case-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.result-box {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.result-box strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.result-box span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.quick-wins-section {
    padding: 90px 0;
    background: var(--white);
}

.quick-wins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.quick-win {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.quick-win i {
    color: var(--gold-dark);
    font-size: 1.3rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.quick-win p {
    font-size: 0.92rem;
    color: var(--text);
}

/* ========================================
   FULL REVIEWS PAGE
   ======================================== */
.full-reviews-section {
    padding: 100px 0;
    background: var(--cream);
}

.reviews-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.review-full-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: 0 8px 25px var(--shadow);
}

.review-stars {
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.review-full-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.4;
}

.review-author-block {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 20px;
}

.review-author-block strong {
    display: block;
    color: var(--navy);
}

.review-author-block span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   CONTACT FORM & INTAKE
   ======================================== */
.contact-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card h3 i {
    color: var(--gold-dark);
}

.contact-info-card ul, .contact-info-card ol {
    padding-left: 18px;
    font-size: 0.9rem;
    color: var(--text);
}

.contact-info-card ul { list-style: disc; }
.contact-info-card ol { list-style: decimal; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-email {
    color: var(--gold) !important;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.footer-newsletter p {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-form {
    display: flex;
}

.footer-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    outline: none;
    font-size: 0.88rem;
}

.footer-form button {
    padding: 10px 18px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    cursor: pointer;
    font-weight: 700;
}

.footer-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.7rem; }
    .section-title { font-size: 2.2rem; }
    .page-hero-title { font-size: 2.4rem; }
    
    .alice-intro-grid,
    .problem-content,
    .photo-cta-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .alice-intro-text .section-label,
    .alice-intro-text h2 {
        text-align: center;
    }
    
    .methodology-grid,
    .path-grid,
    .testimonials-grid,
    .reviews-full-grid,
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-home,
    .case-grid,
    .quick-wins-grid,
    .credentials-grid,
    .approach-grid,
    .why-grid,
    .choose-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .genre-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .photo-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline::before {
        left: 24px;
    }
    
    .timeline-number {
        left: 24px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 65px;
        padding-right: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 40px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 60px 20px 80px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .services-grid-home,
    .case-grid,
    .quick-wins-grid,
    .credentials-grid,
    .approach-grid,
    .why-grid,
    .choose-grid,
    .service-phases,
    .stats-grid,
    .problem-stats,
    .strategy-phases,
    .case-results-grid,
    .case-detail-meta,
    .all-services-grid {
        grid-template-columns: 1fr;
    }

    .genre-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lead-magnet-list {
        grid-template-columns: 1fr;
    }

    .lead-magnet-form {
        flex-direction: column;
    }

    .lead-magnet-wrapper {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}