/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    /* Official Misogi Works Color Palette */
    --sky-light: #8dc9de;        /* Light blue - accents, highlights */
    --ocean-deep: #305871;       /* Deep blue - primary, headings */
    --olive-muted: #595e33;      /* Olive green - secondary text */
    --forest-dark: #233915;      /* Dark green - dark backgrounds */
    --rust-deep: #7d240f;        /* Deep rust - emphasis, warnings */
    --sunset-orange: #e9821e;    /* Vibrant orange - CTAs, accents */

    /* Semantic Color Mappings */
    --navy-dark: #305871;        /* Primary dark - headings, nav */
    --navy-medium: #595e33;      /* Secondary - body text */
    --earth-warm: #e9821e;       /* Warm accent */
    --earth-deep: #7d240f;       /* Deep accent */
    --white-clean: #fafafa;      /* Clean white background */
    --accent-orange: #e9821e;    /* Primary CTA color */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography - Montserrat */
    --font-base: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 1.125rem;
    --font-size-small: 1rem;
    --font-size-h1: 3.5rem;
    --font-size-h2: 2.5rem;
    --font-size-h3: 1.75rem;

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* ===========================
   PREMIUM DESIGN SYSTEM
   Shared utilities across all pages
   =========================== */

/* Premium Section Wrapper */
.section-premium {
    position: relative;
    padding: 6rem 0;
}

.section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1200px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(48, 88, 113, 0.15), transparent);
}

.section-premium:first-of-type::before {
    display: none;
}

/* Premium Section Backgrounds */
.section-light {
    background: #ffffff;
}

.section-subtle {
    background: linear-gradient(180deg, #fafbfc 0%, #f5f7f9 100%);
}

.section-warm {
    background: linear-gradient(135deg, rgba(233, 130, 30, 0.03) 0%, rgba(233, 130, 30, 0.01) 100%);
}

/* Premium Section Titles */
.section-title-premium {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle-premium {
    font-size: 1.15rem;
    color: var(--navy-medium);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Premium Content Box */
.content-box-premium {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.content-box-premium p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--navy-medium);
    margin-bottom: 1.25rem;
}

.content-box-premium p:last-child {
    margin-bottom: 0;
}

.content-box-premium strong {
    color: var(--navy-dark);
    font-weight: 600;
}

.content-box-premium .highlight-premium {
    background: linear-gradient(135deg, rgba(233, 130, 30, 0.08) 0%, rgba(233, 130, 30, 0.03) 100%);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    border-left: 3px solid var(--accent-orange);
    margin-top: 2rem;
}

/* Premium Authority Bar */
.authority-bar-premium {
    background: #ffffff;
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(48, 88, 113, 0.06);
    position: relative;
    z-index: 5;
}

.authority-bar-premium p {
    margin: 0;
    color: var(--navy-dark);
    letter-spacing: 0.02em;
}

.authority-bar-premium .authority-details {
    font-size: 0.9rem;
    color: var(--navy-medium);
    margin-top: 0.35rem;
    letter-spacing: 0.03em;
}

/* Premium Grid Layouts */
.grid-premium {
    display: grid;
    gap: 2px;
    background: rgba(48, 88, 113, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.grid-item-premium {
    background: #ffffff;
    padding: 2.5rem;
    transition: background 0.3s ease;
}

.grid-item-premium:hover {
    background: linear-gradient(180deg, rgba(233, 130, 30, 0.04) 0%, #ffffff 100%);
}

/* Premium Cards with Top Border Animation */
.card-premium {
    background: #ffffff;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-premium:hover::before {
    transform: scaleX(1);
}

.card-premium:hover {
    background: linear-gradient(180deg, rgba(233, 130, 30, 0.04) 0%, #ffffff 100%);
}

/* Premium Labels */
.label-premium {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Premium Trust Bar */
.trust-bar-premium {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(48, 88, 113, 0.08);
}

.trust-item-premium {
    text-align: center;
}

.trust-number-premium {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label-premium {
    font-size: 0.8rem;
    color: var(--navy-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Premium Testimonials */
.testimonial-premium {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(48, 88, 113, 0.06);
    position: relative;
    text-align: left;
}

.testimonial-premium::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3.5rem;
    color: var(--accent-orange);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-text-premium {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--navy-medium);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

.testimonial-author-premium {
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 0.9rem;
}

.testimonial-author-premium span {
    display: block;
    font-weight: 400;
    color: var(--navy-medium);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Premium CTA Section */
.cta-section-premium {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #2a2a4e 100%);
    padding: 6rem 0;
}

.cta-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin: 3rem 0;
}

.cta-card-premium {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background 0.3s ease;
}

.cta-card-premium:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cta-card-premium h3 {
    font-size: 1.1rem;
    color: var(--white-clean);
    margin-bottom: 0.75rem;
    margin-top: 0;
    font-weight: 600;
}

.cta-card-premium p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Utility: Center text */
.text-center {
    text-align: center;
}

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

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

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

@media (max-width: 768px) {
    .section-premium {
        padding: 4rem 0;
    }

    .section-title-premium {
        font-size: 1.75rem;
    }

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

    .trust-bar-premium {
        flex-direction: column;
        gap: 2rem;
    }

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

    .content-box-premium {
        padding: 0 1rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--navy-dark);
    background-color: var(--white-clean);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    animation: fadeInBody 0.5s ease-in forwards;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}

/* ===========================
   Skip Link for Accessibility
   =========================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-orange);
    color: var(--white-clean);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--navy-dark);
    outline-offset: 2px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* Better focus states for accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--accent-orange);
    outline-offset: 3px;
}

.nav-link:focus-visible {
    outline-color: var(--accent-orange);
    outline-offset: 5px;
}

/* ===========================
   Navigation
   =========================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(48, 88, 113, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    background-color: rgba(48, 88, 113, 0.98);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-clean);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white-clean);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

/* Legacy support for simple logo-img */
.logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer .logo {
    gap: 0.5rem;
}

.footer .logo-icon {
    height: 36px;
}

.footer .logo-text {
    font-size: 1.1rem;
}

.footer .logo-tagline {
    font-size: 0.55rem;
}

/* Forge48 Hero Logo */
.forge48-hero-logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Forge48 Logo in program cards */
.forge48-card-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

/* Forge48 Logo in sidebar */
.forge48-sidebar-logo {
    max-width: 160px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

/* Founder image styling */
.founder-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    box-shadow: 0 8px 24px rgba(48, 88, 113, 0.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white-clean);
    font-weight: 500;
    font-size: var(--font-size-small);
    opacity: 0.9;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background-color: var(--accent-orange);
    transition: all 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.nav-link:hover::before {
    left: 0;
    right: 0;
}

.nav-link.active {
    opacity: 1;
    color: var(--accent-orange);
}

.nav-link.active::before {
    left: 0;
    right: 0;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-orange);
    color: var(--white-clean);
    border-radius: 6px;
    font-weight: 600;
    font-size: var(--font-size-small);
    transition: var(--transition-base);
}

.nav-cta:hover {
    background-color: var(--earth-warm);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 130, 30, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--white-clean);
    transition: var(--transition-base);
}

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

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

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

/* ===========================
   Hero Section
   =========================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero-small {
    height: 50vh;
    min-height: 400px;
}

.hero-forge48 {
    height: auto;
    min-height: auto;
    padding: 140px 0 100px;
    background-image: url('https://images.unsplash.com/photo-1586763326261-bf7c7a31bfa6?q=80&w=5184&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: 80% 30%;
    background-attachment: scroll;
    display: block;
    align-items: initial;
    justify-content: initial;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(48, 88, 113, 0.8), rgba(22, 33, 62, 0.7));
}

.hero-forge48 .hero-overlay {
    background: linear-gradient(135deg, rgba(48, 88, 113, 0.85), rgba(22, 33, 62, 0.8));
}

.hero-forge48 .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-clean);
    max-width: 1100px;
    padding: 0 2rem;
}

/* Hero Eyebrow - small text above headline */
.hero-eyebrow {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Hero CTA Group - multiple buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-cta-group .btn {
    min-width: 180px;
}

/* Hero Social Proof */
.hero-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.hero-proof-divider {
    opacity: 0.5;
}

/* Scroll hint at bottom of hero */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-clean);
    opacity: 0.5;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.hero-scroll-hint svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: var(--font-size-small);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white-clean);
    box-shadow: 0 4px 12px rgba(233, 130, 30, 0.2);
}

.btn-primary:hover {
    background-color: var(--earth-warm);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 130, 30, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(233, 130, 30, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy-dark);
    border: 2px solid var(--navy-dark);
    box-shadow: 0 2px 8px rgba(48, 88, 113, 0.1);
}

.btn-secondary:hover {
    background-color: var(--navy-dark);
    color: var(--white-clean);
    box-shadow: 0 6px 16px rgba(48, 88, 113, 0.2);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(48, 88, 113, 0.15);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white-clean);
    border: 2px solid var(--white-clean);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
    background-color: var(--white-clean);
    color: var(--navy-dark);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline-light:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
}

.btn-text {
    background-color: transparent;
    color: var(--accent-orange);
    padding: 0.5rem 1rem;
    text-decoration: underline;
    font-weight: 600;
}

.btn-text:hover {
    color: var(--earth-warm);
    text-decoration-thickness: 2px;
}

.btn-text:active {
    transform: scale(0.98);
}

.btn-large {
    padding: 1.15rem 2.5rem;
    font-size: 1.05rem;
}

.btn-small {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

/* ===========================
   Layout & Containers
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    color: var(--navy-dark);
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--earth-warm));
    border-radius: 2px;
}

/* ===========================
   Content Sections
   =========================== */
.problem-section {
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}

.what-section {
    background-color: var(--white-clean);
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
}

.content-box p {
    margin-bottom: 1.5rem;
    color: var(--navy-medium);
    line-height: 1.8;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box strong {
    color: var(--navy-dark);
    font-weight: 600;
}

.highlight {
    padding: 2rem;
    background-color: rgba(233, 130, 30, 0.05);
    border-left: 4px solid var(--accent-orange);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(233, 130, 30, 0.08);
    transition: var(--transition-base);
}

.highlight:hover {
    box-shadow: 0 4px 16px rgba(233, 130, 30, 0.15);
    transform: translateX(4px);
}

/* ===========================
   Pillars Section
   =========================== */
.pillars-section {
    background-color: #ffffff;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.pillar-card {
    padding: 2.5rem 2rem;
    background-color: var(--white-clean);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(48, 88, 113, 0.05);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(233, 130, 30, 0.2);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.pillar-card p {
    color: var(--navy-medium);
    font-size: var(--font-size-small);
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===========================
   Who Section
   =========================== */
.who-section {
    background-color: var(--white-clean);
}

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

.who-card {
    padding: 2.5rem 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(48, 88, 113, 0.1);
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.who-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.who-card h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.who-card p {
    color: var(--navy-medium);
}

/* ===========================
   Founder Section
   =========================== */
.founder-section {
    background-color: #ffffff;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(48, 88, 113, 0.2);
    transition: var(--transition-base);
}

.founder-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(48, 88, 113, 0.3);
}

.founder-placeholder span {
    font-size: 5rem;
    color: var(--white-clean);
    font-weight: 700;
}

.founder-text p {
    margin-bottom: 1.5rem;
    color: var(--navy-medium);
}

.founder-text p:last-of-type {
    margin-bottom: 2rem;
}

/* ===========================
   Programs Page
   =========================== */
.programs-section {
    background-color: var(--white-clean);
}

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

.program-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid rgba(48, 88, 113, 0.1);
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.program-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.program-header {
    margin-bottom: 1.5rem;
}

.program-name {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.program-tagline {
    font-style: italic;
    color: var(--earth-deep);
    font-size: var(--font-size-small);
}

.program-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.program-body p {
    margin-bottom: 1rem;
    color: var(--navy-medium);
}

.program-body p:last-child {
    margin-bottom: 0;
}

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

/* ===========================
   Manifesto Page
   =========================== */
.manifesto-intro {
    background-color: #ffffff;
}

.manifesto-lead {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--navy-dark);
    margin-bottom: 2rem;
}

.pillar-detail {
    background-color: #ffffff;
}

.pillar-detail.alt-bg {
    background-color: var(--white-clean);
}

.pillar-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.pillar-detail-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pillar-detail-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.pillar-detail-tagline {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--earth-deep);
    text-align: center;
    margin-bottom: 3rem;
}

.pillar-detail-body {
    font-size: var(--font-size-base);
    line-height: 1.8;
}

.pillar-detail-body p {
    margin-bottom: 1.5rem;
    color: var(--navy-medium);
}

.pillar-detail-body p:last-child {
    margin-bottom: 0;
}

.pillar-detail-body strong {
    color: var(--navy-dark);
    font-weight: 600;
}

.manifesto-closing {
    background-color: var(--white-clean);
    text-align: center;
}

.manifesto-closing .content-box {
    max-width: 900px;
}

.manifesto-closing .section-title {
    text-align: center;
}

/* Belief Columns */
.belief-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-md) 0;
}

.belief-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
}

.belief-column ul {
    list-style: none;
    padding: 0;
}

.belief-column li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--navy-medium);
}

.belief-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Pillar Detail Body Lists */
.pillar-detail-body ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.pillar-detail-body li {
    margin-bottom: 0.75rem;
    color: var(--navy-medium);
}

/* Short Manifesto - Poster Style */
.short-manifesto {
    background: var(--white-clean);
    padding: var(--spacing-xl) 0;
}

.short-manifesto-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.short-manifesto .section-title {
    color: var(--navy-dark);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2rem;
}

.short-manifesto-text {
    background: var(--navy-dark);
    color: var(--white-clean);
    padding: 4rem 3rem;
    border-radius: 4px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 12px var(--white-clean),
        0 0 0 13px rgba(48, 88, 113, 0.1);
    text-align: center;
    line-height: 2;
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
}

.short-manifesto-text::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: inherit;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

.short-manifesto-text p {
    margin-bottom: 1.5rem;
    color: var(--white-clean);
    opacity: 0.85;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}

.short-manifesto-text p strong {
    color: var(--accent-orange);
    font-weight: 700;
    opacity: 1;
    font-size: 1.25rem;
    display: block;
    margin-top: 0.25rem;
    letter-spacing: 0.01em;
}

.manifesto-final {
    margin-top: 3rem !important;
    font-size: 1.5rem;
    opacity: 1 !important;
}

.manifesto-final strong {
    font-size: 2rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===========================
   About Page
   =========================== */
.about-section {
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition-base);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--navy-medium);
    line-height: 1.8;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

.about-cta {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--white-clean);
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
}

.about-cta h3 {
    margin-top: 0;
}

.about-cta .btn {
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.about-email {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    color: var(--white-clean);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(233, 130, 30, 0.1), transparent);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white-clean);
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
}

.cta-content p {
    margin-top: 1.5rem;
    opacity: 0.9;
    font-size: 1.125rem;
}

.cta-email {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-orange);
    transition: var(--transition-base);
}

.cta-email:hover {
    color: var(--earth-warm);
}

/* CTA Grid (3-column cards) */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white-clean);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.cta-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.cta-card .btn {
    width: 100%;
    max-width: 200px;
}

/* Ensure buttons are visible on dark backgrounds */
.cta-card .btn-outline-light,
.cta-section .btn-outline-light,
.cta-section-premium .btn-outline-light {
    color: var(--white-clean);
    border-color: var(--white-clean);
    background: transparent;
}

.cta-card .btn-outline-light:hover,
.cta-section .btn-outline-light:hover,
.cta-section-premium .btn-outline-light:hover {
    background: var(--white-clean);
    color: var(--navy-dark);
}

/* Secondary buttons on dark backgrounds */
.cta-card .btn-secondary,
.cta-section .btn-secondary,
.cta-section-premium .btn-secondary,
.cta-option .btn-secondary {
    color: var(--white-clean);
    border-color: var(--white-clean);
    background: transparent;
}

.cta-card .btn-secondary:hover,
.cta-section .btn-secondary:hover,
.cta-section-premium .btn-secondary:hover,
.cta-option .btn-secondary:hover {
    background: var(--white-clean);
    color: var(--navy-dark);
    border-color: var(--white-clean);
}

@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cta-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .cta-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--navy-dark);
    color: var(--white-clean);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: var(--font-size-small);
}

.footer-contact p {
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--accent-orange);
}

.footer-contact a:hover {
    color: var(--earth-warm);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    opacity: 0.8;
    transition: var(--transition-base);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.footer-social-note {
    opacity: 0.7;
    font-size: 0.875rem;
    font-style: italic;
    margin: 0;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(250, 250, 250, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: var(--font-size-small);
}

/* ===========================
   Animations
   =========================== */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure content is visible if JS fails or before it loads */
.no-js .scroll-reveal,
noscript + .scroll-reveal {
    opacity: 1;
    transform: none;
}

/* Stagger animation for grid items */
.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }

/* ===========================
   Forge48 Page Specific Styles
   =========================== */

/* Element Detail Sections */
.element-detail {
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.element-detail:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.element-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.element-detail p {
    margin-bottom: 1.25rem;
    color: var(--navy-medium);
    line-height: 1.8;
}

.element-detail ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.element-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--navy-medium);
    line-height: 1.7;
}

.element-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.25rem;
}

.element-note {
    padding: 1.25rem;
    background-color: rgba(233, 130, 30, 0.05);
    border-radius: 6px;
    font-style: italic;
    margin-top: 1.5rem;
    border-left: 3px solid var(--accent-orange);
}

/* Timeline Section */
.timeline-section {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--navy-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.timeline-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-orange);
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.timeline-item p {
    margin-bottom: 1rem;
    color: var(--navy-medium);
    line-height: 1.8;
}

.timeline-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.timeline-item li {
    margin-bottom: 0.5rem;
    color: var(--navy-medium);
}

/* Program Details Section */
.program-details-section {
    background-color: var(--white-clean);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.detail-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-orange);
}

.detail-item p {
    color: var(--navy-medium);
    margin-bottom: 0;
}

/* Checklist and Crosslist Styles */
.checklist,
.crosslist {
    list-style: none;
    padding-left: 0;
}

.checklist li,
.crosslist li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--navy-medium);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.5rem;
}

.crosslist li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.5rem;
}

.checklist li ul,
.crosslist li ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.checklist li ul li,
.crosslist li ul li {
    padding: 0.25rem 0;
    margin-bottom: 0.25rem;
}

.checklist li ul li::before,
.crosslist li ul li::before {
    content: none;
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    margin-bottom: 1.5rem;
    background-color: var(--white-clean);
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--navy-medium);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Next Steps Section */
.next-steps-section {
    background-color: var(--white-clean);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
    border: 1px solid rgba(48, 88, 113, 0.1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--earth-warm));
    color: var(--white-clean);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(233, 130, 30, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--navy-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-card .btn {
    margin-top: 1rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    :root {
        --font-size-h1: 2.5rem;
        --font-size-h2: 2rem;
        --font-size-h3: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    /* Logo responsive */
    .logo-icon {
        height: 36px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
    }

    .footer .logo-icon {
        height: 30px;
    }

    .footer .logo-text {
        font-size: 0.95rem;
    }

    .forge48-hero-logo {
        max-width: 200px;
    }

    .forge48-card-logo {
        max-width: 100px;
    }

    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(48, 88, 113, 0.98), rgba(22, 33, 62, 0.98));
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link,
    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 1.25rem 1rem;
        border-bottom: 1px solid rgba(250, 250, 250, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: rgba(233, 130, 30, 0.1);
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .nav-cta {
        margin-top: 1rem;
        border-bottom: none;
        border-radius: 6px;
    }

    /* Hero */
    .hero {
        background-attachment: scroll;
    }

    .hero-forge48 {
        padding: 110px 0 70px;
    }

    .forge48-hero-logo {
        max-width: 240px;
    }

    .hero-eyebrow {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-proof {
        font-size: 0.75rem;
        gap: 0.25rem;
    }

    .hero-scroll-hint {
        display: none;
    }

    /* Grids */
    .pillars-grid {
        grid-template-columns: 1fr;
    }

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

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

    /* Manifesto Page */
    .pillar-detail-title {
        font-size: 2.25rem;
    }

    .pillar-detail-icon {
        font-size: 3rem;
    }

    .manifesto-lead {
        font-size: 1.25rem;
    }

    .belief-columns {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .short-manifesto-text {
        padding: 3rem 2rem;
        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.25),
            0 0 0 8px var(--white-clean),
            0 0 0 9px rgba(48, 88, 113, 0.1);
    }

    .short-manifesto-text p {
        font-size: 1rem;
    }

    .short-manifesto-text p strong {
        font-size: 1.125rem;
    }

    .manifesto-final {
        font-size: 1.25rem !important;
    }

    .manifesto-final strong {
        font-size: 1.5rem;
    }

    /* Founder Section */
    .founder-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .founder-placeholder {
        width: 200px;
        height: 200px;
    }

    .founder-placeholder span {
        font-size: 4rem;
    }

    /* About Page */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .about-image {
        position: relative;
        top: 0;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    /* Container */
    .container {
        padding: 0 1.5rem;
    }

    /* Forge48 Responsive */
    .element-detail {
        padding: 2rem 1.5rem;
    }

    .timeline-item {
        padding: 2rem 1.5rem;
    }

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

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

    .step-card {
        padding: 2rem 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-h1: 2rem;
        --font-size-h2: 1.75rem;
        --font-size-h3: 1.25rem;
        --font-size-base: 1rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
    }

    .pillar-card,
    .who-card,
    .program-card {
        padding: 2rem 1.5rem;
    }

    /* Forge48 Small Screen */
    .element-number {
        font-size: 1.5rem;
    }

    .timeline-title {
        font-size: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1.125rem;
    }
}

/* ===========================
   Programs Page Redesign Styles
   =========================== */

/* Authority Bar (consistent with other pages) */
.authority-bar {
    background: #f8f9fa;
    padding: 1rem 0;
    text-align: center;
}

.authority-text {
    font-size: 0.95rem;
    color: #555;
}

/* Results Intro */
.results-intro {
    background-color: #ffffff;
}

.results-intro .content-box {
    max-width: 800px;
    margin: 0 auto;
}

/* Router Section */
.router-section {
    background: #fafafa;
}

.router-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.router-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: var(--transition-base);
}

.router-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.router-situation {
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.router-recommendation {
    color: #666;
}

.router-recommendation a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
}

.router-recommendation a:hover {
    text-decoration: underline;
}

/* Featured Program Section */
.featured-program-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.featured-program {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.featured-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
}

.featured-tagline {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.featured-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--navy-medium);
}

.featured-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-detail {
    margin-bottom: 1.5rem;
}

.featured-detail strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    font-size: 1.1rem;
}

.featured-detail p {
    color: var(--navy-medium);
    line-height: 1.7;
    margin: 0;
}

.featured-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.featured-meta {
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    color: #666;
    font-size: 0.9rem;
}

.meta-value {
    text-align: right;
    font-weight: 500;
    color: var(--navy-dark);
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.featured-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
}

/* Programs Grid (3 columns) */
.programs-grid-section {
    background-color: #ffffff;
}

.programs-grid.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.programs-grid.three-col .program-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.programs-grid.three-col .program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.program-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.program-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
}

.program-tagline {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.program-body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.program-for {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.program-description {
    margin-bottom: 1.5rem;
    color: var(--navy-medium);
    line-height: 1.7;
}

.program-formats {
    margin-top: 1rem;
}

.program-formats p {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
}

.program-formats ul {
    margin: 0.5rem 0 0 1.25rem;
    font-size: 0.9rem;
}

.program-formats li {
    margin-bottom: 0.5rem;
    color: var(--navy-medium);
    line-height: 1.6;
}

.program-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.program-meta {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.program-meta p {
    margin-bottom: 0.5rem;
    color: var(--navy-medium);
}

.program-footer .btn {
    width: 100%;
}

/* Comparison Table */
.comparison-section {
    background: #fafafa;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table thead th {
    background: var(--navy-dark);
    color: white;
    font-weight: 600;
    text-align: center;
}

.comparison-table thead th:first-child {
    background: transparent;
}

.comparison-table thead th:nth-child(2) {
    background: var(--accent-orange);
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table tbody td:first-child {
    font-weight: 500;
    color: #555;
}

.comparison-table tbody td:nth-child(2) {
    background: rgba(255, 152, 0, 0.05);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.comparison-note a {
    color: var(--accent-orange);
    text-decoration: none;
}

.comparison-note a:hover {
    text-decoration: underline;
}

/* Testimonials Grid */
.testimonials-section {
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--navy-medium);
}

.testimonial-author {
    text-align: right;
    color: var(--navy-dark);
    font-weight: 600;
}

/* CTA Options */
.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 700px;
}

/* When there are 3 items, allow them to spread more */
.cta-options:has(.cta-option:nth-child(3)) {
    max-width: 1000px;
}

.cta-option {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-base);
}

.cta-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.cta-option-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-option h3 {
    margin-bottom: 0.5rem;
    color: var(--white-clean);
    font-size: 1.25rem;
}

.cta-option p {
    font-size: 0.9rem;
    color: var(--white-clean);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .featured-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .router-grid {
        grid-template-columns: 1fr;
    }

    .featured-program {
        padding: 2rem;
    }

    .featured-title {
        font-size: 2rem;
    }

    .programs-grid.three-col {
        grid-template-columns: 1fr;
    }

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

    .cta-options {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }

    .featured-content {
        gap: 2rem;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ===========================
   About Page Redesign Styles
   =========================== */

/* About Page Hero */
.hero-about {
    height: 50vh;
    min-height: 400px;
}

.hero-about .hero-title {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Short Version Section */
.short-version-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.short-version-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.short-version-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.short-version-role {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.short-version-summary {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--navy-medium);
}

.short-version-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Authority Section */
.authority-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.authority-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

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

.trusted-by-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.2s, filter 0.2s;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* For placeholder logos without images */
.logo-item-placeholder {
    font-size: 0.9rem;
    color: #888;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-chapter {
    margin-bottom: 3rem;
}

.story-chapter h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy-dark);
}

.story-chapter p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--navy-medium);
}

.story-image {
    max-width: 600px;
    margin: 3rem auto 0;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Experience Section (What I've Built) */
.experience-section {
    background: #fafafa;
    padding: 4rem 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.experience-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: var(--transition-base);
}

.experience-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.experience-item h3 {
    margin-bottom: 1rem;
    color: var(--navy-dark);
    font-size: 1.25rem;
}

.experience-item p {
    color: #555;
    line-height: 1.6;
}

/* Featured Testimonial */
.testimonial-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--navy-dark);
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
}

/* Beliefs Section */
.beliefs-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.beliefs-content {
    max-width: 700px;
    margin: 0 auto;
}

.belief-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.belief-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.belief-statement {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.belief-explanation {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Methodology Section */
.methodology-section {
    background: #fafafa;
    padding: 4rem 0;
}

.methodology-content {
    max-width: 800px;
    margin: 0 auto;
}

.methodology-intro {
    margin-bottom: 2.5rem;
}

.methodology-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--navy-medium);
}

.methodology-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.methodology-element {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: var(--transition-base);
}

.methodology-element:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-orange);
}

.methodology-element h4 {
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.methodology-element p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.methodology-closing p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--navy-medium);
}

/* Testimonials Grid (for 2 testimonials) */
.testimonials-grid-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.testimonials-grid-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-grid-section .testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    transition: var(--transition-base);
}

.testimonials-grid-section .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.testimonials-grid-section .testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--navy-medium);
}

.testimonials-grid-section .testimonial-author {
    text-align: right;
    color: var(--navy-dark);
    font-weight: 600;
}

/* Personal Section */
.personal-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.personal-content {
    max-width: 800px;
    margin: 0 auto;
}

.personal-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--navy-medium);
}

.personal-image {
    margin-top: 2rem;
    max-width: 400px;
}

.personal-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Connect Section */
.connect-section {
    padding: 3rem 0;
    text-align: center;
    background-color: #ffffff;
}

.connect-content p {
    margin-bottom: 2rem;
    color: var(--navy-medium);
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--navy-dark);
    transition: background 0.2s, transform 0.2s;
    border: 1px solid #e0e0e0;
}

.social-link:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-label {
    font-weight: 500;
}

/* About Page CTA Options - override for white background */
.cta-section .cta-options .cta-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section .cta-options .cta-option:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Responsive for About Page */
@media (max-width: 1024px) {
    .authority-stats {
        gap: 2rem;
    }

    .trusted-logos {
        gap: 2rem;
    }

    .methodology-elements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-about .hero-title {
        font-size: 1.8rem;
    }

    .short-version-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .short-version-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .short-version-cta {
        justify-content: center;
    }

    .authority-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trusted-logos {
        gap: 1.5rem;
    }

    .logo-item img {
        height: 30px;
    }

    .story-chapter p {
        font-size: 1rem;
    }

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

    .testimonial-quote {
        font-size: 1.25rem;
    }

    .belief-statement {
        font-size: 1.2rem;
    }

    .belief-explanation {
        font-size: 1rem;
    }

    .testimonials-grid-section .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 200px;
        justify-content: center;
    }
}

/* ===========================
   Manifesto Page Redesign Styles
   =========================== */

/* Manifesto Hero */
.hero-manifesto {
    height: 50vh;
    min-height: 400px;
}

.hero-manifesto .hero-title {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

/* Short Manifesto Section */
.short-manifesto-section {
    padding: 5rem 0;
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

.short-manifesto-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 2rem;
}

.short-manifesto-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #000000;
}

.short-manifesto-subtitle {
    font-size: 0.9rem;
    color: #444444;
    margin-bottom: 3rem;
}

.short-manifesto-text {
    font-size: 1.25rem;
    line-height: 2;
    background: #ffffff;
}

.short-manifesto-text p {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.manifesto-emphasis {
    font-weight: 600;
    color: #000000;
}

.manifesto-final {
    margin-top: 2rem !important;
    font-size: 1.4rem;
    color: #000000;
}

.manifesto-cta {
    margin-top: 3rem;
}

.manifesto-read-more {
    font-size: 0.95rem;
    color: #555;
}

.manifesto-read-more a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
}

.manifesto-read-more a:hover {
    text-decoration: underline;
}

/* Attribution Section */
.attribution-section {
    padding: 2rem 0;
    background: #f0f0f0;
}

.attribution-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.attribution-text {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.attribution-author {
    font-size: 0.9rem;
    color: #888;
}

/* Split Section */
.split-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.split-content {
    max-width: 900px;
    margin: 0 auto;
}

.split-problem,
.split-alternative {
    margin-bottom: 3rem;
}

.split-problem p,
.split-alternative p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--navy-medium);
}

.split-highlight {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid var(--accent-orange);
    margin: 2rem 0;
}

.split-divider {
    width: 100px;
    height: 2px;
    background: var(--accent-orange);
    margin: 3rem auto;
}

/* Pillars Section */
.pillars-section {
    padding: 5rem 0;
    background: #fafafa;
}

.section-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

/* For 5 cards: first row 3, second row 2 centered */
.pillar-card:nth-child(1),
.pillar-card:nth-child(2),
.pillar-card:nth-child(3) {
    grid-column: span 2;
}

.pillar-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.pillar-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.pillar-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--accent-orange);
}

.pillar-card-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.pillar-card-icon svg {
    width: 48px;
    height: 48px;
}

.pillar-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--navy-dark);
}

.pillar-card-tagline {
    font-size: 1rem;
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 1rem;
}

.pillar-card-summary {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.pillar-card-belief {
    font-size: 0.95rem;
    color: var(--navy-dark);
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Expandable Details */
.pillar-details {
    margin-top: 1rem;
}

.pillar-expand {
    font-size: 0.9rem;
    color: var(--accent-orange);
    cursor: pointer;
    list-style: none;
    padding: 0.5rem 0;
}

.pillar-expand::-webkit-details-marker {
    display: none;
}

.pillar-expand:hover {
    text-decoration: underline;
}

.pillar-expanded-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #e0e0e0;
}

.pillar-expanded-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.75rem;
}

details[open] .pillar-expand {
    margin-bottom: 0.5rem;
}

details[open] .pillar-expand::after {
    content: ' −';
}

details:not([open]) .pillar-expand::after {
    content: '';
}

/* Vision Section */
.vision-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-statements {
    margin: 3rem 0;
}

.vision-statement {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.vision-statement:last-child {
    border-bottom: none;
}

.vision-headline {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.vision-detail {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.vision-closing {
    text-align: center;
    margin-top: 3rem;
}

.vision-closing p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy-medium);
}

.vision-final {
    font-size: 1.3rem;
    margin-top: 1.5rem !important;
}

/* Bridge Section */
.bridge-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.bridge-content {
    max-width: 900px;
    margin: 0 auto;
}

.bridge-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--navy-medium);
}

.bridge-programs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bridge-program {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: var(--transition-base);
}

.bridge-program:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-orange);
}

.bridge-program h3 {
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.bridge-program p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bridge-closing {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--navy-medium);
}

/* Comparison Table Mobile Improvements */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(48, 88, 113, 0.1);
    vertical-align: top;
}

.comparison-table th {
    background: var(--navy-dark);
    color: var(--white-clean);
    font-weight: 600;
    position: sticky;
    top: 0;
}

.comparison-table th:first-child {
    background: transparent;
    color: var(--navy-dark);
}

.comparison-table tbody tr:hover {
    background: rgba(233, 130, 30, 0.05);
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--navy-dark);
}

/* Mobile scroll hint */
@media (max-width: 768px) {
    .comparison-table-wrapper::before {
        content: '\2190 Scroll to see all programs \2192';
        display: block;
        text-align: center;
        font-size: 0.85rem;
        color: var(--navy-medium);
        padding: 0.5rem;
        background: rgba(233, 130, 30, 0.1);
        border-radius: 4px;
        margin-bottom: 1rem;
    }
}

/* Trusted by names styling */
.trusted-by-names {
    font-size: 1rem;
    color: var(--navy-medium);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* Connect options styling */
.connect-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

/* Mobile Responsive for Manifesto Page */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillar-card:nth-child(1),
    .pillar-card:nth-child(2),
    .pillar-card:nth-child(3),
    .pillar-card:nth-child(4),
    .pillar-card:nth-child(5) {
        grid-column: span 1;
    }

    .pillar-card:nth-child(5) {
        grid-column: 1 / span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .bridge-programs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-manifesto .hero-title {
        font-size: 2rem;
    }

    .short-manifesto-text {
        font-size: 1.1rem;
    }

    .manifesto-final {
        font-size: 1.2rem;
    }

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

    .pillar-card:nth-child(5) {
        grid-column: span 1;
        max-width: 100%;
    }

    .split-highlight {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .vision-headline {
        font-size: 1.2rem;
    }

    .vision-detail {
        font-size: 1rem;
    }
}

/* ===========================
   Testimonial Carousel
   =========================== */
.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.testimonial-carousel-viewport {
    overflow: hidden;
    border-radius: 8px;
}

.testimonial-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-carousel-slide {
    flex-shrink: 0;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

/* Testimonial cards inside carousel */
.testimonial-carousel .testimonial-premium {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-carousel .testimonial-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(48, 88, 113, 0.12);
}

.testimonial-carousel .testimonial-text-premium {
    flex-grow: 1;
    /* Limit very long testimonials */
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-carousel .testimonial-author-premium {
    margin-top: auto;
    padding-top: 1rem;
}

/* Read more hint */
.testimonial-read-more {
    font-size: 0.8rem;
    color: var(--accent-orange);
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Testimonial Modal */
.testimonial-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.testimonial-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-modal {
    background: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-modal-overlay.active .testimonial-modal {
    transform: translateY(0);
}

.testimonial-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(48, 88, 113, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.testimonial-modal-close:hover {
    background: rgba(48, 88, 113, 0.2);
}

.testimonial-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--navy-dark);
    stroke-width: 2;
}

.testimonial-modal-quote {
    font-size: 4rem;
    color: var(--accent-orange);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: -2rem;
}

.testimonial-modal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--navy-medium);
    margin-bottom: 1.5rem;
}

.testimonial-modal-author {
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 1rem;
}

.testimonial-modal-company {
    color: var(--navy-medium);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .testimonial-modal {
        padding: 1.5rem;
        margin: 1rem;
    }

    .testimonial-modal-text {
        font-size: 1rem;
    }
}

/* Navigation Arrows */
.testimonial-carousel-prev,
.testimonial-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(48, 88, 113, 0.15);
    box-shadow: 0 2px 8px rgba(48, 88, 113, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-carousel-prev {
    left: 0;
}

.testimonial-carousel-next {
    right: 0;
}

.testimonial-carousel-prev:hover,
.testimonial-carousel-next:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 4px 12px rgba(233, 130, 30, 0.3);
}

.testimonial-carousel-prev:hover svg,
.testimonial-carousel-next:hover svg {
    stroke: #ffffff;
}

.testimonial-carousel-prev svg,
.testimonial-carousel-next svg {
    width: 20px;
    height: 20px;
    stroke: var(--navy-dark);
    stroke-width: 2;
    fill: none;
    transition: stroke 0.3s ease;
}

/* Navigation Dots */
.testimonial-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(48, 88, 113, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-carousel-dot:hover {
    background: rgba(48, 88, 113, 0.4);
}

.testimonial-carousel-dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-carousel {
        padding: 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-carousel {
        padding: 0 1rem;
    }

    .testimonial-carousel-prev,
    .testimonial-carousel-next {
        display: none;
    }

    .testimonial-carousel-slide {
        padding: 0 0.5rem;
    }

    /* On mobile, show swipe hint */
    .testimonial-carousel::after {
        content: 'Swipe to see more';
        display: block;
        text-align: center;
        font-size: 0.75rem;
        color: var(--navy-medium);
        opacity: 0.6;
        margin-top: 0.5rem;
    }
}
