/* ========================================
   MARQUI V12 - ULTIMATE DESIGN SYSTEM
   ======================================== */

/* CSS VARIABLES - MODERNIZED */
:root {
    /* Primary Colors */
    --bordeaux: #b01021;
    --bordeaux-hover: #990f1e;
    --bordeaux-light: #c91f31;
    --bordeaux-subtle: rgba(176, 16, 33, 0.08);

    /* Neutrals - Modern palette */
    --off-white: #fafaf9;
    --charcoal: #18181b;
    --soft-gray: #f4f4f5;
    --mid-gray: #71717a;
    --dark-gray: #3f3f46;

    /* Spacing - More generous */
    --spacing-unit: 140px;
    --spacing-section: 100px;

    /* Modern shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    /* Border radius - Modern values */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== LUCIDE ICONS BASE STYLES ===== */
svg.lucide {
    display: inline-block;
    vertical-align: middle;
}

/* Ensure icons inherit stroke color from parent when not explicitly set */
i[data-lucide] {
    display: inline-block;
    line-height: 1;
}

/* TYPOGRAPHY - MODERNIZED */
h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    color: var(--charcoal);
}

h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    color: var(--charcoal);
}

h3 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
    font-weight: 400;
    margin-bottom: 16px;
}

strong {
    font-weight: 600;
    color: var(--charcoal);
}

/* LAYOUT */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

section {
    padding: var(--spacing-unit) 0;
    position: relative;
}

/* Section Question Label - MODERNIZED */
.section-question {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 auto 32px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 100px;
    text-align: center;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Center section questions in their containers */
.container > .section-question,
.section-content > .section-question,
.workshop-header > .section-question {
    display: block;
    text-align: center;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Light version - for light backgrounds */
.section-question-light {
    color: var(--charcoal);
    background: var(--soft-gray);
    border: 1px solid rgba(24, 24, 27, 0.06);
}

/* Dark version - for dark backgrounds */
.section-question-dark {
    color: var(--off-white);
    background: rgba(250, 250, 249, 0.1);
    border: 1px solid rgba(250, 250, 249, 0.15);
    backdrop-filter: blur(8px);
}

/* SCROLL PROGRESS BAR - MODERNIZED */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bordeaux);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* NAVIGATION - MODERNIZED */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    border-bottom: 1px solid rgba(24, 24, 27, 0.06);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 28px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
    margin: 0;
}

.nav-menu a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bordeaux);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--bordeaux);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid rgba(24, 24, 27, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 16px;
    min-width: 200px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 200ms ease;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark-gray);
    transition: all 150ms ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(133, 15, 28, 0.05);
    color: var(--bordeaux);
    padding-left: 24px;
}

/* Primary CTA (Profit Scan) */
.nav-menu .nav-cta-primary {
    background: var(--bordeaux);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.nav-menu .nav-cta-primary::after {
    display: none;
}

.nav-menu .nav-cta-primary:hover {
    background: var(--bordeaux-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(176, 16, 33, 0.3), 0 2px 4px -1px rgba(176, 16, 33, 0.2);
    color: white;
}

/* Secondary CTA (Contact) */
.nav-menu .nav-cta {
    background: transparent;
    color: var(--bordeaux);
    padding: 12px 28px;
    border: 2px solid var(--bordeaux);
    border-radius: 100px;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu .nav-cta::after {
    display: none;
}

.nav-menu .nav-cta:hover {
    background: var(--bordeaux);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(176, 16, 33, 0.3), 0 2px 4px -1px rgba(176, 16, 33, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

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

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

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

/* BUTTONS - CLEAN & MODERN */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 200ms ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

/* ===== LUCIDE ICON STYLING ===== */

/* Button Icons */
.btn-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    display: inline-block;
    vertical-align: middle;
}

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

.btn-primary:hover {
    background: var(--bordeaux-hover);
    box-shadow: 0 4px 12px rgba(176, 16, 33, 0.2);
}

.btn-secondary {
    background: white;
    color: var(--charcoal);
    border: 1px solid rgba(24, 24, 27, 0.15);
}

.btn-secondary:hover {
    border-color: var(--charcoal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary-light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary-subtle {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: none;
}

.btn-secondary-subtle:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* HERO SECTION - MODERNIZED */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    padding-top: 80px;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(24, 24, 27, 0.65) 100%),
                url('./img/pics/hero.png') right/cover no-repeat;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero h1 {
    max-width: 1100px;
    margin: 0 auto 32px;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subline {
    font-size: 28px;
    max-width: 900px;
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 500;
}

.hero-subline-secondary {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    align-items: flex-start;
}

.cta-with-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.3px;
    font-style: italic;
}

.hero-note a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-style: normal;
    background: rgba(176, 16, 33, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.hero-note a:hover {
    background: var(--bordeaux);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 16, 33, 0.4);
}

/* HERO VIDEO TOGGLE */
.video-toggle-btn {
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.video-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.video-toggle-btn .btn-icon {
    width: 20px;
    height: 20px;
}

/* HERO VIDEO CONTAINER */
.hero-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.hero-video-container.active {
    opacity: 1;
    visibility: visible;
}

.video-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-video-container.active .video-wrapper {
    transform: scale(1);
}

.video-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.video-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-close-btn i {
    width: 24px;
    height: 24px;
}

.video-embed {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-hover) 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--bordeaux-hover) 0%, var(--bordeaux) 100%);
}

.video-placeholder i {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

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

/* QUOTE DIVIDER - MODERNIZED */
.quote-divider {
    background: var(--soft-gray);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176, 16, 33, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.quote-divider blockquote {
    margin: 0;
    position: relative;
    z-index: 2;
}

.quote-divider p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.025em;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-divider .underline {
    position: relative;
    font-style: italic;
    font-weight: 700;
}

.quote-divider .underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bordeaux), var(--bordeaux-hover));
    border-radius: 2px;
    animation: underline-grow 1.5s ease-out forwards;
    transform-origin: left;
}

@keyframes underline-grow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* PROBLEM SECTION */
.problem {
    background: white;
    position: relative;
}

.section-content {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-content {
    /* Left column */
}

.problem-content-focused {
    max-width: 720px;
    margin: 0 auto;
}

.problem-content-focused h2 {
    text-align: center;
}

.problem-content-focused .highlight {
    text-align: center;
    margin: 40px 0;
}

.problem-content h2 {
    margin-bottom: 60px;
    text-align: left;
}

.problem-text {
    margin: 0;
}

.problem-text p {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--dark-gray);
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    padding-left: 32px;
    border-left: 3px solid var(--soft-gray);
    transition: border-left-color 200ms ease;
}

.problem-text p:hover {
    border-left-color: var(--bordeaux);
}

/* Video Section */
.problem-video {
    /* Right column */
    display: flex;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--soft-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    transition: background 200ms ease;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.video-placeholder:hover {
    background: #ececed;
}

.video-placeholder:hover .play-icon-circle {
    background: var(--bordeaux-hover);
    box-shadow: var(--shadow-lg);
}

.play-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bordeaux);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
    box-shadow: var(--shadow-sm);
}

.play-icon {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.video-placeholder p {
    color: var(--charcoal);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    text-align: center;
    padding: 0 20px;
}

.highlight {
    font-size: 22px;
    margin: 60px auto;
    max-width: 900px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.6;
    text-align: center;
    padding: 48px 64px 56px;
    background: var(--soft-gray);
    border-radius: 12px;
    position: relative;
}

.highlight[data-name]::after {
    content: "— " attr(data-name);
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    color: var(--mid-gray);
    font-family: 'Georgia', serif;
    letter-spacing: 0.3px;
}

/* Highlight on dark background */
.dark-section .highlight {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dark-section .highlight::before {
    color: rgba(255, 255, 255, 0.15);
}

.dark-section .highlight[data-name]::after {
    color: rgba(255, 255, 255, 0.5);
}

.highlight::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: rgba(133, 15, 28, 0.08);
    line-height: 1;
}

.icon-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 80px 0;
    font-size: 64px;
}

/* Visual Icons (Problem Section) */
.visual-icon {
    stroke: var(--charcoal);
    background: var(--off-white);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-width: 2;
    padding: 30px;
}

.visual-icon:hover {
    transform: scale(1.1) rotate(10deg);
    background: var(--bordeaux);
    stroke: white;
}

.visual-arrow {
    stroke: var(--bordeaux);
    width: 48px;
    height: 48px;
    stroke-width: 2.5;
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.7; }
}

/* USE CASES SECTION */
.use-cases {
    background: var(--soft-gray);
    position: relative;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.use-case-card {
    background: white;
    padding: 48px 40px;
    border: 1px solid rgba(24, 24, 27, 0.1);
    border-radius: 16px;
    transition: all 200ms ease;
}

.use-case-card:hover {
    border-color: rgba(24, 24, 27, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Use Case Icons */
.use-case-icon {
    width: 48px;
    height: 48px;
    stroke: var(--bordeaux);
    stroke-width: 1.5;
    margin-bottom: 24px;
}

.use-case-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.use-case-card > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 28px;
}

.use-case-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-benefits li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.use-case-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--bordeaux);
    font-weight: 700;
}

/* PROMISE SECTION */
.promise {
    background: linear-gradient(135deg, #f9f6f5 0%, #ffffff 100%);
    position: relative;
}

.promise h2 {
    margin-bottom: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--charcoal);
}

.promise-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.promise-text p {
    font-size: 21px;
    color: var(--dark-gray);
    font-weight: 400;
    line-height: 1.6;
}

.promise-dont-need,
.promise-need {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px auto;
    max-width: 900px;
    flex-wrap: wrap;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.promise-item .cross {
    font-size: 24px;
    color: #dc2626;
    font-weight: 700;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.promise-item .check {
    font-size: 20px;
    color: #16a34a;
    font-weight: 700;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.promise-item p {
    font-size: 20px;
    color: var(--charcoal);
    margin: 0;
    font-weight: 400;
}

.promise-closing {
    font-size: 26px;
    margin: 80px auto 0;
    max-width: 900px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.6;
    text-align: center;
    padding: 48px 64px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--bordeaux);
}

/* WHAT WE DO SECTION - MODERNIZED */
.what-we-do {
    background: linear-gradient(135deg, var(--charcoal) 0%, #0f0f0f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(176, 16, 33, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.what-we-do .container {
    position: relative;
    z-index: 2;
}

.what-we-do h2 {
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.intro-text {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.intro-text p {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: left;
    padding-left: 32px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    transition: border-left-color 200ms ease;
    font-weight: 400;
}

.intro-text p:hover {
    border-left-color: var(--bordeaux);
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 80px 0;
    position: relative;
}

/* Connecting line behind cards */
.pillars::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.15) 80%,
        transparent 100%);
    z-index: 0;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 56px 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 300ms ease;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Progressive opacity to show sequence */
.pillar-card:nth-child(1) {
    opacity: 1;
}

.pillar-card:nth-child(2) {
    opacity: 0.95;
}

.pillar-card:nth-child(3) {
    opacity: 0.9;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transform: translateY(-4px);
}

.pillar-number {
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: -0.05em;
    transition: all 300ms ease;
}

.pillar-card:hover .pillar-number {
    color: rgba(255, 255, 255, 0.12);
    transform: translateX(-50%) scale(1.05);
}

/* Pillar Icons */
.pillar-icon {
    width: 40px;
    height: 40px;
    stroke: var(--off-white);
    stroke-width: 1.5;
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.pillar-card p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 2;
}

/* SUCCESS STORIES SECTION */
.success-stories {
    background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%);
    position: relative;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(133, 15, 28, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.success-stories .container {
    position: relative;
    z-index: 2;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 40px;
}

.section-intro {
    max-width: 1000px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.story-card {
    background: white;
    border: 1px solid rgba(24, 24, 27, 0.1);
    border-left: 3px solid var(--bordeaux);
    padding: 32px;
    transition: all 200ms ease;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-card:hover {
    border-color: rgba(24, 24, 27, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* 1️⃣ Context - Business type */
.story-context {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mid-gray);
    font-weight: 600;
    margin: 0;
}

/* 2️⃣ Constraint - The bottleneck */
.story-constraint {
    font-size: 17px;
    line-height: 1.5;
    color: var(--charcoal);
    margin: 0;
    font-weight: 400;
}

.story-constraint strong {
    color: var(--bordeaux);
    font-weight: 600;
}

/* 3️⃣ Outcome - Metrics */
.story-outcome {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.story-outcome li {
    font-size: 15px;
    color: var(--dark-gray);
    padding-left: 24px;
    position: relative;
    font-weight: 500;
}

.story-outcome li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--bordeaux);
    font-weight: 600;
}

/* Legacy styles - can be removed if not used elsewhere */
.story-header {
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.story-header h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--charcoal);
    line-height: 1.4;
    font-weight: 600;
}

.story-meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.timeline {
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 600;
    background: var(--off-white);
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.3px;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-solution {
    color: var(--dark-gray);
}

.story-impact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.impact-metric {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-hover) 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(133, 15, 28, 0.2);
    transition: all 0.3s ease;
}

.impact-metric:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(133, 15, 28, 0.3);
}

.story-insight {
    font-size: 16px;
    font-style: italic;
    color: var(--charcoal);
    font-weight: 500;
    margin-top: 24px;
    padding: 20px;
    background: rgba(133, 15, 28, 0.03);
    border-radius: 6px;
    border-left: 3px solid var(--bordeaux);
}

.stories-summary {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
    border-top: 1px solid rgba(133, 15, 28, 0.2);
}

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

.stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--bordeaux);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 200px;
}

/* WORKSHOP SECTION */
.workshop {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.workshop::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(133, 15, 28, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.workshop-header {
    text-align: center;
    margin-bottom: 80px;
}

.workshop-flow {
    font-size: 18px;
    color: var(--dark-gray);
    margin-top: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.workshop-badge {
    display: inline-block;
    background: var(--bordeaux);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.workshop h2 {
    max-width: 900px;
    margin: 0 auto;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-option {
    background: white;
    padding: 60px 48px;
    border-radius: 12px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.workshop-free {
    border-color: rgba(133, 15, 28, 0.15);
}

.workshop-premium {
    border-color: var(--bordeaux);
    box-shadow: 0 12px 32px rgba(176, 16, 33, 0.12);
}

.workshop-option:hover {
    border-color: rgba(24, 24, 27, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.workshop-premium:hover {
    box-shadow: 0 40px 100px rgba(133, 15, 28, 0.25);
}

.option-badge {
    position: absolute;
    top: -16px;
    left: 48px;
    background: var(--charcoal);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.option-badge.premium {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-hover) 100%);
    box-shadow: 0 4px 12px rgba(133, 15, 28, 0.3);
}

.workshop-option h3 {
    font-size: 28px;
    margin: 24px 0 16px;
    color: var(--charcoal);
}

.option-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 32px;
    min-height: 80px;
}

/* Price block removed - now using investment-block for consistency */

.guarantee-block {
    background: linear-gradient(135deg, rgba(133, 15, 28, 0.05) 0%, rgba(133, 15, 28, 0.02) 100%);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--bordeaux);
    margin: 24px 0;
}

.guarantee-block strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--bordeaux);
}

.guarantee-block p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: var(--dark-gray);
}

.investment-block {
    background: var(--off-white);
    border: 2px solid rgba(133, 15, 28, 0.1);
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
    text-align: center;
}

.investment-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.investment-value {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    color: var(--bordeaux);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.workshop-free .investment-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
}

.return-block {
    margin: 24px 0;
}

.return-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bordeaux);
    margin-bottom: 16px;
}

.option-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.option-features li {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 12px;
    padding-left: 8px;
}

.option-features li strong {
    color: var(--bordeaux);
}

.software-note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-top: 16px;
    padding: 16px;
    background: rgba(133, 15, 28, 0.03);
    border-left: 3px solid var(--bordeaux);
    border-radius: 4px;
}

.workshop-option .btn {
    width: 100%;
    justify-content: center;
    margin-top: 32px;
}

.workshop-note {
    text-align: center;
    margin-top: 60px;
    font-size: 17px;
    color: var(--dark-gray);
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* HOW WE WORK SECTION */
.how-we-work {
    background: var(--charcoal);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(133, 15, 28, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.how-we-work h2 {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.work-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.work-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    line-height: 1.8;
    text-align: left;
    padding-left: 40px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.work-content p:hover {
    border-left-color: var(--bordeaux);
    padding-left: 48px;
    transition: all 0.3s ease;
}

.work-icons {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 100px;
}

.work-icon-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.work-icon-item:hover {
    transform: translateY(-12px);
}

/* Work Icons */
.work-icon-item .icon {
    width: 48px;
    height: 48px;
    stroke: var(--off-white);
    stroke-width: 1.5;
    display: block;
    margin: 0 auto 20px;
}

.work-icon-item p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* WHO WE WORK WITH SECTION */
.who-we-work-with {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(133, 15, 28, 0.8) 50%, rgba(0, 0, 0, 0.7) 100%),
                url('./img/pics/office.jpg') center/cover no-repeat;
    color: white;
    position: relative;
}

.who-we-work-with::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(133, 15, 28, 0.2) 0%, transparent 60%);
}

.who-we-work-with .container {
    position: relative;
    z-index: 2;
}

.who-we-work-with h2 {
    color: white;
    text-align: center;
    margin-bottom: 80px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 200ms ease;
}

.criteria-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.check {
    font-size: 28px;
    color: var(--bordeaux);
    font-weight: bold;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.criteria-item p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.98);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.who-ctas {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 80px;
    flex-wrap: wrap;
}

/* WHY IT WORKS SECTION */
.why-it-works {
    background: linear-gradient(180deg, white 0%, var(--off-white) 100%);
    position: relative;
}

.why-it-works::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 400px;
    background: radial-gradient(ellipse at bottom, rgba(133, 15, 28, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.why-it-works .container {
    position: relative;
    z-index: 2;
}

.why-it-works h2 {
    text-align: center;
    margin-bottom: 60px;
}

.why-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-content p {
    font-size: 21px;
    margin-bottom: 24px;
    color: var(--dark-gray);
    line-height: 1.6;
    text-align: left;
    padding-left: 32px;
    border-left: 3px solid var(--soft-gray);
    transition: border-left-color 200ms ease;
    font-weight: 400;
}

.why-content p:hover {
    border-left-color: var(--bordeaux);
}

.why-icons {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 80px;
    margin-bottom: 80px;
}

/* Aircraft Metaphor Call-out - MODERNIZED */
.aircraft-callout {
    max-width: 1100px;
    margin: 80px auto 0;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(24, 24, 27, 0.08);
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.aircraft-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--bordeaux);
}

.aircraft-callout::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(176, 16, 33, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.callout-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid rgba(133, 15, 28, 0.1);
}

.callout-icon {
    width: 40px;
    height: 40px;
    stroke: var(--bordeaux);
    stroke-width: 2;
    flex-shrink: 0;
}

.callout-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.callout-content {
    position: relative;
    z-index: 1;
}

.callout-content p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.callout-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px 0;
}

.callout-list li {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.callout-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--bordeaux);
    font-weight: 700;
    font-size: 20px;
}

.callout-emphasis {
    font-size: 21px !important;
    font-weight: 700 !important;
    color: var(--charcoal) !important;
    margin-top: 36px !important;
    margin-bottom: 16px !important;
}

.callout-highlight {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--bordeaux) !important;
    background: rgba(133, 15, 28, 0.05);
    padding: 20px 28px;
    border-left: 4px solid var(--bordeaux);
    border-radius: 4px;
    margin: 32px 0 !important;
}

.callout-closing {
    font-size: 20px !important;
    font-style: italic;
    color: var(--dark-gray) !important;
    margin-top: 40px !important;
    margin-bottom: 0 !important;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(133, 15, 28, 0.1);
}

.callout-closing strong {
    color: var(--bordeaux);
    font-weight: 800;
    font-style: normal;
    font-size: 22px;
}

.why-icon-item {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.why-icon-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(133, 15, 28, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-icon-item:hover::before {
    opacity: 1;
}

.why-icon-item:hover {
    transform: translateY(-12px);
}

/* Why Icons */
.why-icon-item .icon {
    width: 48px;
    height: 48px;
    stroke: var(--bordeaux);
    stroke-width: 1.5;
    display: block;
    margin: 0 auto 20px;
}

.why-icon-item p {
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ECOSYSTEM SECTION */
.ecosystem {
    background: var(--soft-gray);
    position: relative;
}

.ecosystem::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at bottom left, rgba(133, 15, 28, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.ecosystem .container {
    position: relative;
    z-index: 2;
}

.ecosystem h2 {
    text-align: center;
    margin-bottom: 40px;
}

.ecosystem-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 80px;
}

.ecosystem-card {
    background: white;
    padding: 48px 40px;
    border: 1px solid rgba(24, 24, 27, 0.1);
    border-radius: 16px;
    transition: all 200ms ease;
    text-align: center;
}

a.ecosystem-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.ecosystem-card:hover {
    border-color: rgba(24, 24, 27, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ecosystem-card:hover {
    border-color: rgba(24, 24, 27, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Ecosystem Logos */
.ecosystem-logo {
    width: auto;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 28px;
    display: block;
}

.ecosystem-logo-icon {
    width: 72px;
    height: 72px;
    stroke: var(--bordeaux);
    color: var(--bordeaux);
}

.ecosystem-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--charcoal);
    font-weight: 600;
}

.ecosystem-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.coming-soon {
    font-style: italic;
    color: var(--bordeaux);
}

.ecosystem-footer {
    max-width: 100%;
    margin: 80px 0 0;
    padding: 0;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(24, 24, 27, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.ecosystem-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--bordeaux);
    z-index: 2;
}

/* Big Bob Container */
.big-bob-container {
    display: grid;
    grid-template-columns: 30% 1fr;
    align-items: center;
    gap: 0;
    min-height: 280px;
}

.big-bob-image {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: contain;
    padding: 48px;
}

.big-bob-text {
    padding: 60px 80px 60px 40px;
    display: flex;
    align-items: center;
}

.big-bob-text p {
    font-size: 22px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
}

.big-bob-text strong {
    color: var(--bordeaux);
    font-weight: 800;
    font-size: 24px;
}

.about-story .about-big-bob {
    margin-top: 48px;
    padding-top: 8px;
    border-top: 1px solid rgba(24, 24, 27, 0.08);
    min-height: auto;
}

.about-story .about-big-bob .big-bob-image {
    max-height: 220px;
    padding: 24px;
}

.about-story .about-big-bob .big-bob-text {
    padding: 24px 32px 24px 16px;
}

.about-story .about-big-bob .big-bob-text p {
    font-size: 18px;
}

.about-story .about-big-bob .big-bob-text strong {
    font-size: 20px;
}

/* FINAL CTA SECTION */
.final-cta {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(133, 15, 28, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card {
    background: white;
    padding: 64px 48px;
    text-align: center;
    border: 1px solid rgba(24, 24, 27, 0.1);
    border-radius: 16px;
    transition: all 200ms ease;
}

.cta-card:hover {
    border-color: rgba(24, 24, 27, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-card h3 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--charcoal);
    position: relative;
    z-index: 2;
}

.cta-card p {
    font-size: 19px;
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-card .btn {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* ABOUT Q SECTION */
.about-section {
    background: #ffffff;
    padding: var(--spacing-unit) 0;
    position: relative;
}

.about-intro {
    text-align: center;
    margin-bottom: 80px;
}

.about-intro h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--bordeaux), transparent);
    border-radius: 2px;
}

/* Two-Column Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Portrait Photo Column */
.about-photo {
    position: sticky;
    top: 120px;
}

.photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.08);
    background: var(--charcoal);
    aspect-ratio: 3/4;
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--charcoal);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(133, 15, 28, 0.1) 100%);
    pointer-events: none;
}

.photo-caption {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(133, 15, 28, 0.15);
}

.photo-caption .signature-line {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    font-style: italic;
    color: var(--bordeaux);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.photo-caption .signature-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-gray);
}

/* Story Content Column */
.about-story {
    text-align: left;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-story p strong {
    color: var(--charcoal);
    font-weight: 700;
}

.about-story .highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--bordeaux);
    background: rgba(133, 15, 28, 0.04);
    padding: 20px 28px;
    border-left: 4px solid var(--bordeaux);
    border-radius: 4px;
    margin: 32px 0;
    line-height: 1.7;
}

.about-mission {
    background: linear-gradient(135deg, rgba(133, 15, 28, 0.03) 0%, rgba(133, 15, 28, 0.06) 100%);
    padding: 32px 36px;
    border-radius: 12px;
    border: 2px solid rgba(133, 15, 28, 0.1);
    margin: 36px 0;
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--bordeaux), var(--bordeaux-hover));
}

.about-mission p {
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.about-mission p:last-child {
    margin-bottom: 0;
}

.mission-statement {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--charcoal) !important;
    line-height: 1.5 !important;
    margin-top: 12px !important;
}

.about-closing {
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal);
    margin-top: 32px;
}

/* CONTACT SECTION */
.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--charcoal) 50%, #0f0f0f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(133, 15, 28, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: start;
}

.contact-form-wrapper h2 {
    color: white;
    margin-bottom: 24px;
}

.contact-form-wrapper > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    font-size: 19px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px 28px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--bordeaux);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(133, 15, 28, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    align-self: flex-start;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Message Styling */
.form-message {
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 8px;
    display: none;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Loading spinner animation */
.spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 80px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

/* Contact Info Icons */
.info-icon {
    width: 32px;
    height: 32px;
    stroke: var(--off-white);
    stroke-width: 2;
}

.info-item p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
}

.info-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.info-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bordeaux);
    transition: width 0.3s ease;
}

.info-item a:hover {
    color: var(--bordeaux);
}

.info-item a:hover::after {
    width: 100%;
}

/* FOOTER */
.main-footer {
    background: var(--charcoal);
    color: white;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
    max-width: 500px;
}

.footer-nav {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
}

.footer-nav-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bordeaux);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: white;
    padding-left: 4px;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Footer Icon */
.footer-icon {
    width: 24px;
    height: 24px;
    stroke: var(--bordeaux);
    stroke-width: 2;
    fill: var(--bordeaux);
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for child elements */
.fade-in.visible .story-card,
.fade-in.visible .pillar-card,
.fade-in.visible .ecosystem-card,
.fade-in.visible .cta-card,
.fade-in.visible .criteria-item {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.fade-in.visible .story-card:nth-child(1),
.fade-in.visible .pillar-card:nth-child(1),
.fade-in.visible .ecosystem-card:nth-child(1),
.fade-in.visible .cta-card:nth-child(1),
.fade-in.visible .criteria-item:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in.visible .story-card:nth-child(2),
.fade-in.visible .pillar-card:nth-child(2),
.fade-in.visible .ecosystem-card:nth-child(2),
.fade-in.visible .cta-card:nth-child(2),
.fade-in.visible .criteria-item:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in.visible .story-card:nth-child(3),
.fade-in.visible .pillar-card:nth-child(3),
.fade-in.visible .ecosystem-card:nth-child(3),
.fade-in.visible .criteria-item:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in.visible .story-card:nth-child(4),
.fade-in.visible .pillar-card:nth-child(4),
.fade-in.visible .ecosystem-card:nth-child(4),
.fade-in.visible .criteria-item:nth-child(4) {
    animation-delay: 0.4s;
}

.fade-in.visible .story-card:nth-child(5),
.fade-in.visible .story-card:nth-child(6) {
    animation-delay: 0.5s;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .pillars {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Hide connecting line on mobile */
    .pillars::before {
        display: none;
    }

    /* Reset opacity on mobile */
    .pillar-card:nth-child(1),
    .pillar-card:nth-child(2),
    .pillar-card:nth-child(3) {
        opacity: 1;
    }

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

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

    .cta-cards {
        grid-template-columns: 1fr;
    }

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

    .workshop-premium {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
        height: 70px;
    }

    .nav-logo img {
        height: 32px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        border-bottom: 1px solid rgba(133, 15, 28, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a::after {
        display: none;
    }

    /* Mobile dropdown behavior */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 12px;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(133, 15, 28, 0.1);
        border-radius: 0;
        padding: 12px 0 0 0;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 300ms ease;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu li {
        padding: 8px 0;
        border-bottom: none;
    }

    .dropdown-menu a {
        font-size: 14px;
        padding: 8px 16px;
    }

    .dropdown-menu a:hover {
        padding-left: 16px;
        background: rgba(133, 15, 28, 0.03);
    }

    .nav-menu .nav-cta-primary,
    .nav-menu .nav-cta {
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 70px;
    }

    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 24px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .cta-with-note {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .video-toggle-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .video-wrapper {
        width: 95%;
    }

    .video-close-btn {
        top: -60px;
        right: 10px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .problem-content h2 {
        text-align: center;
        margin-bottom: 40px;
    }

    .video-container {
        max-width: 320px;
    }

    .play-icon-circle {
        width: 64px;
        height: 64px;
    }

    .play-icon {
        width: 28px;
        height: 28px;
    }

    .video-placeholder p {
        font-size: 15px;
    }

    .problem-text p {
        font-size: 19px;
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .intro-text p {
        font-size: 18px;
        padding-left: 24px;
        margin-bottom: 20px;
    }

    .why-content p {
        font-size: 18px;
        padding-left: 24px;
        margin-bottom: 20px;
    }

    .highlight {
        padding: 32px 24px 48px;
        font-size: 19px;
    }

    .highlight::before {
        font-size: 80px;
        top: 10px;
        left: 10px;
    }

    .highlight[data-name]::after {
        font-size: 14px;
        bottom: 12px;
        right: 16px;
    }

    .promise-text p {
        font-size: 18px;
    }

    .promise-dont-need,
    .promise-need {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .promise-item p {
        font-size: 18px;
    }

    .promise-closing {
        font-size: 21px;
        padding: 32px 24px;
        margin: 60px auto 0;
    }

    .work-icons,
    .why-icons {
        flex-direction: column;
        gap: 40px;
    }

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

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .use-case-card {
        padding: 40px 32px;
    }

    .who-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .stories-summary {
        flex-direction: column;
        gap: 40px;
    }

    .workshop-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workshop-option {
        padding: 40px 32px;
    }

    .workshop-premium {
        transform: scale(1);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-nav-column h4 {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-nav-column ul {
        gap: 10px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .pillar-number {
        font-size: 60px;
        top: 10px;
        right: 10px;
    }

    .icon-visual {
        flex-direction: column;
        gap: 24px;
    }

    .visual-icon {
        width: 100px;
        height: 100px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-subline {
        font-size: 20px;
    }

    .hero-subline-secondary {
        font-size: 18px;
    }

    .quote-divider p {
        font-size: 28px;
    }

    .story-card {
        padding: 24px;
        gap: 12px;
    }

    .story-context {
        font-size: 12px;
    }

    .story-constraint {
        font-size: 16px;
    }

    .story-outcome li {
        font-size: 14px;
    }

    .impact-metric {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* About Section - Mobile */
    .about-intro {
        margin-bottom: 48px;
    }

    .about-intro h2 {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-photo {
        position: relative;
        top: 0;
        max-width: 320px;
        margin: 0 auto;
    }

    .photo-caption .signature-line {
        font-size: 36px;
    }

    .photo-caption .signature-title {
        font-size: 13px;
    }

    .about-story p {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .about-story .highlight-text {
        font-size: 18px;
        padding: 18px 20px;
        margin: 28px 0;
    }

    .mission-statement {
        font-size: 19px !important;
    }

    .about-mission {
        padding: 24px 20px;
        margin: 32px 0;
    }

    .about-closing {
        font-size: 17px;
        margin-top: 28px;
    }

    /* Ecosystem - Mobile */
    .ecosystem-logo {
        height: 90px;
        max-width: 220px;
        margin-bottom: 24px;
    }

    .ecosystem-footer {
        margin-top: 60px;
        border-radius: 8px;
    }

    .big-bob-container {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 0;
    }

    .big-bob-image {
        max-height: 200px;
        padding: 40px 32px 24px;
    }

    .big-bob-text {
        padding: 24px 32px 40px;
        text-align: center;
    }

    .big-bob-text p {
        font-size: 18px;
    }

    .big-bob-text strong {
        font-size: 20px;
    }

    /* Aircraft Callout - Mobile */
    .aircraft-callout {
        padding: 40px 28px;
        margin-top: 60px;
        border-radius: 12px;
    }

    .callout-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 36px;
        padding-bottom: 24px;
    }

    .callout-icon {
        width: 48px;
        height: 48px;
    }

    .callout-header h3 {
        font-size: 24px;
    }

    .callout-content p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .callout-list {
        margin: 16px 0 24px 0;
    }

    .callout-list li {
        font-size: 16px;
        padding-left: 24px;
        margin-bottom: 10px;
    }

    .callout-list li::before {
        left: 6px;
        font-size: 18px;
    }

    .callout-emphasis {
        font-size: 19px !important;
        margin-top: 28px !important;
    }

    .callout-highlight {
        font-size: 19px !important;
        padding: 16px 20px;
        margin: 24px 0 !important;
    }

    .callout-closing {
        font-size: 18px !important;
        margin-top: 32px !important;
        padding-top: 24px;
    }

    .callout-closing strong {
        font-size: 19px;
    }
}

