/* ============================================
   MARTIAL ARTS VERTICAL - Page-Specific Styles
   Base design system: zivvy-design-system.css
   ============================================ */

:root {
    /* Martial Arts Accent Colors - Deep Red/Black Belt Theme */
    --ma-accent: hsl(0, 72%, 51%);
    --ma-accent-light: hsl(0, 72%, 51%, 0.1);
    --ma-gold: hsl(46, 65%, 52%);
    --ma-gold-light: hsl(46, 65%, 52%, 0.15);

    /* Neutrals (gray scale) */
    --gray-50: hsl(210, 20%, 98%);
    --gray-100: hsl(220, 14%, 96%);
    --gray-200: hsl(220, 13%, 91%);
    --gray-300: hsl(216, 12%, 84%);
    --gray-400: hsl(218, 11%, 65%);
    --gray-500: hsl(220, 9%, 46%);
    --gray-600: hsl(215, 14%, 34%);
    --gray-700: hsl(217, 19%, 27%);
    --gray-800: hsl(215, 28%, 17%);
    --gray-900: hsl(221, 39%, 11%);

    /* Neutral hero colors */
    --neutral-hero-black: hsl(180, 37%, 4%);
    --neutral-ui-black: hsl(0, 0%, 6%);

    /* Additional shadows (extends design system) */
    --shadow-sm: 0 1px 2px 0 hsl(0, 0%, 0%);
    --shadow-md: 0 4px 6px -1px hsl(0, 0%, 0%), 0 2px 4px -2px hsl(0, 0%, 0%);
    --shadow-lg: 0 10px 15px -3px hsl(0, 0%, 0%), 0 4px 6px -4px hsl(0, 0%, 0%);
    --shadow-xl: 0 20px 25px -5px hsl(0, 0%, 0%), 0 8px 10px -6px hsl(0, 0%, 0%);
}

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

html {
    font-size: var(--type-body-md);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    font-size: var(--type-body-md);
    line-height: 1.6;
    color: var(--gray-900);
    background: white;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   NAVIGATION - now handled by centralized header component
   ============================================ */

/* ============================================
   CALLOUT BANNER - CREDIBILITY
   ============================================ */

.credibility-banner {
    margin-top: 72px;
    background: var(--ma-accent);
    padding: var(--space-xl) 0;
    position: relative;
}

.credibility-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-l);
    position: relative;
    z-index: 1;
}

.credibility-icon {
    font-size: 40px;
    color: var(--ma-gold);
    flex-shrink: 0;
}

.credibility-text {
    font-size: var(--type-body-lg);
    font-weight: 600;
    color: white;
    line-height: 1.6;
    max-width: 900px;
}

.credibility-highlight {
    color: var(--ma-gold);
    font-weight: 700;
}

@media (max-width: 768px) {
    .credibility-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-s);
    }

    .credibility-text {
        font-size: var(--type-body-lg);
    }
}

/* ============================================
   ACT I: HERO - SETUP (Calm Opening)
   "Establish the world, build confidence"
   ============================================ */

.hero {
    padding-top: calc(72px + var(--space-section));
    padding-bottom: var(--space-section);
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 72px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--ma-accent-light) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-l);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-section);
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-m);
    background: var(--ma-gold-light);
    border: 1px solid var(--ma-gold);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-l);
}

.hero-badge-icon {
    font-size: var(--type-body-lg);
    color: var(--ma-gold);
}

.hero-badge-text {
    font-size: var(--type-body-sm);
    font-weight: 600;
    color: var(--gray-800);
}

.hero-title {
    font-size: var(--type-display-md);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--space-l);
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: var(--type-heading-2);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-l);
    margin-bottom: var(--space-xl);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.hero-trust-icon {
    width: 20px;
    height: 20px;
    color: var(--success-primary);
}

.hero-trust-text {
    font-size: var(--type-body-sm);
    font-weight: 500;
    color: var(--gray-600);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    min-height: var(--touch-mobile);
    padding: 0 var(--space-xl);
    background: var(--secondary-500);
    color: white;
    font-size: var(--type-body-lg);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--timing-base);
}

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

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    min-height: var(--touch-mobile);
    padding: 0 var(--space-l);
    background: transparent;
    color: var(--gray-700);
    font-size: var(--type-body-md);
    font-weight: 500;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--timing-fast);
}

.btn-secondary-large:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    background: linear-gradient(135deg, var(--neutral-hero-black) 0%, hsl(231, 38%, 16%) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-l);
    box-shadow: var(--shadow-xl);
}

.hero-dashboard-mock {
    width: 100%;
    border-radius: var(--radius-lg);
    background: white;
    overflow: hidden;
}

.mock-header {
    background: var(--gray-100);
    padding: var(--space-s) var(--space-m);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.mock-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
}

.mock-dot-red { background: hsl(0, 84%, 60%); }
.mock-dot-yellow { background: hsl(38, 92%, 50%); }
.mock-dot-green { background: hsl(160, 84%, 39%); }

.mock-content {
    padding: var(--space-l);
}

.mock-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
    margin-bottom: var(--space-l);
}

.mock-stat-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-m);
}

.mock-stat-label {
    font-size: var(--type-body-xs);
    color: var(--gray-500);
    margin-bottom: var(--space-xxs);
}

.mock-stat-value {
    font-size: var(--type-heading-2);
    font-weight: 700;
    color: var(--gray-900);
}

.mock-stat-value.success { color: var(--success-primary); }
.mock-stat-value.warning { color: var(--warning-primary); }
.mock-stat-value.primary { color: var(--secondary-500); }

.mock-belt-tracker {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-m);
}

.mock-belt-title {
    font-size: var(--type-body-sm);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-s);
}

.mock-belt-row {
    display: flex;
    align-items: center;
    gap: var(--space-s);
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--gray-200);
}

.mock-belt-row:last-child {
    border-bottom: none;
}

.mock-belt-color {
    width: 24px;
    height: 8px;
    border-radius: var(--radius-sm);
}

.belt-white { background: hsl(220, 13%, 91%); border: 1px solid hsl(216, 12%, 84%); }
.belt-yellow { background: hsl(46, 97%, 65%); }
.belt-orange { background: hsl(27, 96%, 61%); }
.belt-green { background: hsl(142, 71%, 45%); }
.belt-blue { background: hsl(217, 91%, 60%); }
.belt-purple { background: hsl(271, 91%, 65%); }
.belt-brown { background: hsl(23, 82%, 31%); }
.belt-black { background: hsl(221, 39%, 11%); }

.mock-belt-name {
    font-size: var(--type-body-sm);
    color: var(--gray-700);
    flex: 1;
}

.mock-belt-count {
    font-size: var(--type-body-sm);
    font-weight: 600;
    color: var(--gray-900);
}

/* Floating stats card */
.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-m) var(--space-l);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-s);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-float-icon {
    width: 48px;
    height: 48px;
    background: var(--success-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-float-icon .material-symbols-outlined {
    font-size: var(--type-display-sm);
    color: var(--success-primary);
}

.hero-float-content {
    display: flex;
    flex-direction: column;
}

.hero-float-value {
    font-size: var(--type-heading-2);
    font-weight: 700;
    color: var(--gray-900);
}

.hero-float-label {
    font-size: var(--type-body-sm);
    color: var(--gray-500);
}

/* ============================================
   ACT II: PAIN POINTS - RISING ACTION
   "Build tension, identify the problem"
   ============================================ */

.pain-section {
    padding: var(--space-section) 0;
    background: white;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-l);
}

/* Override design system section-header styles with centered version */
.section-header {
    text-align: center !important;
    max-width: 720px;
    margin: 0 auto var(--space-section) !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xxs) var(--space-s);
    background: var(--ma-accent-light);
    color: var(--ma-accent);
    font-size: var(--type-body-sm);
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-m);
}

.section-title {
    font-size: var(--type-display-sm);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-m);
    letter-spacing: -0.02em;
    display: block !important;
    text-align: center !important;
}

.section-subtitle {
    font-size: var(--type-body-lg);
    color: var(--gray-600);
    line-height: 1.7;
    text-align: center !important;
}

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

.pain-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--timing-base);
}

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

.pain-icon {
    width: 56px;
    height: 56px;
    background: var(--ma-accent-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-l);
}

.pain-icon .material-symbols-outlined {
    font-size: var(--type-display-md);
    color: var(--ma-accent);
}

.pain-title {
    font-size: var(--type-heading-2);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-s);
}

.pain-description {
    font-size: var(--type-body-md);
    color: var(--gray-600);
    line-height: 1.7;
}

.pain-stat {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xxs);
    margin-top: var(--space-m);
    padding: var(--space-xs) var(--space-s);
    background: white;
    border-radius: var(--radius-md);
    font-size: var(--type-body-sm);
    font-weight: 600;
}

.pain-stat-value {
    color: var(--ma-accent);
}

.pain-stat-text {
    color: var(--gray-600);
}

/* ============================================
   ACT III: SOLUTION - CLIMAX (Peak Moment)
   "The transformation, the answer"
   ============================================ */

.solution-section {
    padding: var(--space-section) 0;
    background: var(--neutral-hero-black);
    color: white;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.solution-header {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto var(--space-section) !important;
    position: relative;
    z-index: 1;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.solution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-m);
    background: hsl(0, 0%, 100%, 0.1);
    border: 1px solid hsl(0, 0%, 100%, 0.2);
    color: white;
    font-size: var(--type-body-sm);
    font-weight: 600;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-l);
}

.solution-title {
    font-size: var(--type-display-md);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-l);
    letter-spacing: -0.02em;
    text-align: center !important;
}

.solution-title-highlight {
    background: linear-gradient(135deg, var(--secondary-500) 0%, hsl(213, 94%, 68%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-subtitle {
    font-size: var(--type-heading-2);
    color: hsl(0, 0%, 100%, 0.7);
    line-height: 1.7;
    text-align: center !important;
}

/* Revenue Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-l);
    position: relative;
    z-index: 1;
}

.pillar-card {
    background: hsl(0, 0%, 100%, 0.05);
    border: 1px solid hsl(0, 0%, 100%, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-l);
    text-align: center;
    transition: all var(--timing-base);
}

.pillar-card:hover {
    background: hsl(0, 0%, 100%, 0.1);
    border-color: hsl(0, 0%, 100%, 0.2);
    transform: translateY(-4px);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-l);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon .material-symbols-outlined {
    font-size: var(--type-display-lg);
}

.pillar-discover .pillar-icon { background: var(--success-100); }
.pillar-discover .pillar-icon .material-symbols-outlined { color: var(--success-primary); }

.pillar-capture .pillar-icon { background: var(--secondary-100); }
.pillar-capture .pillar-icon .material-symbols-outlined { color: var(--secondary-500); }

.pillar-operate .pillar-icon { background: hsl(271, 91%, 65%, 0.15); }
.pillar-operate .pillar-icon .material-symbols-outlined { color: hsl(271, 91%, 65%); }

.pillar-automate .pillar-icon { background: var(--ma-gold-light); }
.pillar-automate .pillar-icon .material-symbols-outlined { color: var(--ma-gold); }

.pillar-title {
    font-size: var(--type-body-lg);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-xs);
}

.pillar-stat {
    font-size: var(--type-heading-2);
    font-weight: 800;
    margin-bottom: var(--space-s);
}

.pillar-discover .pillar-stat { color: var(--success-primary); }
.pillar-capture .pillar-stat { color: var(--secondary-500); }
.pillar-operate .pillar-stat { color: hsl(271, 91%, 65%); }
.pillar-automate .pillar-stat { color: var(--ma-gold); }

.pillar-description {
    font-size: var(--type-body-sm);
    color: hsl(0, 0%, 100%, 0.6);
    line-height: 1.6;
}

/* ============================================
   ACT IV: FEATURES - VALLEY (Rest & Detail)
   "Explore the details, build understanding"
   ============================================ */

.features-section {
    padding: var(--space-section) 0;
    background: var(--gray-50);
}

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

.feature-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-l);
    transition: all var(--timing-base);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-m);
}

.feature-icon .material-symbols-outlined {
    font-size: var(--type-display-sm);
    color: var(--secondary-500);
}

.feature-card.highlight .feature-icon {
    background: var(--ma-accent-light);
}

.feature-card.highlight .feature-icon .material-symbols-outlined {
    color: var(--ma-accent);
}

.feature-title {
    font-size: var(--type-body-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.feature-description {
    font-size: var(--type-body-sm);
    color: var(--gray-600);
    line-height: 1.7;
}

.feature-tag {
    display: inline-flex;
    margin-top: var(--space-m);
    padding: var(--space-xxs) var(--space-xs);
    background: var(--ma-gold-light);
    color: var(--gray-800);
    font-size: var(--type-body-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

/* ============================================
   ACT V: SOCIAL PROOF - RESOLUTION
   "Validate the decision, show outcomes"
   ============================================ */

.proof-section {
    padding: var(--space-section) 0;
    background: white;
}

.proof-header {
    text-align: center !important;
    max-width: 720px;
    margin: 0 auto var(--space-section) !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

/* Featured Case Study */
.case-study-featured {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--neutral-hero-black) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xxl);
    margin-bottom: var(--space-xxl);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xxl);
    align-items: center;
}

.case-study-content {
    color: white;
}

.case-study-quote {
    font-size: var(--type-heading-2);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: var(--space-xl);
    position: relative;
}

.case-study-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: var(--type-display-xl);
    color: var(--secondary-500);
    opacity: 0.3;
    font-family: var(--font-display);
}

.case-study-highlight {
    color: var(--success-primary);
    font-weight: 700;
}

.case-study-author {
    display: flex;
    align-items: center;
    gap: var(--space-m);
}

.case-study-avatar {
    width: 64px;
    height: 64px;
    background: var(--secondary-500);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--type-heading-2);
    font-weight: 700;
    color: white;
}

.case-study-info {
    display: flex;
    flex-direction: column;
}

.case-study-name {
    font-size: var(--type-body-lg);
    font-weight: 700;
    color: white;
}

.case-study-role {
    font-size: var(--type-body-sm);
    color: hsl(0, 0%, 100%, 0.7);
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-m);
}

.metric-card {
    background: hsl(0, 0%, 100%, 0.05);
    border: 1px solid hsl(0, 0%, 100%, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-l);
    text-align: center;
}

.metric-value {
    font-size: var(--type-heading-1);
    font-weight: 800;
    margin-bottom: var(--space-xxs);
}

.metric-value.success { color: var(--success-primary); }
.metric-value.primary { color: var(--secondary-500); }
.metric-value.gold { color: var(--ma-gold); }
.metric-value.purple { color: hsl(271, 91%, 65%); }

.metric-label {
    font-size: var(--type-body-sm);
    color: hsl(0, 0%, 100%, 0.6);
}

/* Additional Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-l);
}

.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-l);
}

.testimonial-quote {
    font-size: var(--type-body-md);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-l);
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-s) var(--space-m);
    background: var(--success-100);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-l);
}

.testimonial-result-icon {
    color: var(--success-primary);
}

.testimonial-result-value {
    font-size: var(--type-body-lg);
    font-weight: 700;
    color: var(--success-primary);
}

.testimonial-result-text {
    font-size: var(--type-body-sm);
    color: var(--gray-600);
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--secondary-500);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--type-body-md);
    font-weight: 600;
    color: white;
}

.testimonial-name {
    font-size: var(--type-body-md);
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-role {
    font-size: var(--type-body-sm);
    color: var(--gray-500);
}

/* Logo Wall */
.logo-wall {
    margin-top: var(--space-section);
    text-align: center;
}

.logo-wall-title {
    font-size: var(--type-body-sm);
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-l);
}

.logo-wall-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xxl);
    flex-wrap: wrap;
    opacity: 0.5;
}

.logo-placeholder {
    width: 120px;
    height: 48px;
    background: var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--type-body-xs);
    color: var(--gray-500);
}

/* ============================================
   ACT VI: CTA - NEXT STORY (New Beginning)
   "Call to action, start the journey"
   ============================================ */

.cta-section {
    padding: var(--space-section) 0;
    background: linear-gradient(135deg, var(--secondary-500) 0%, hsl(226, 71%, 40%) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: var(--type-display-sm);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-m);
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: var(--type-heading-2);
    color: hsl(0, 0%, 100%, 0.85);
    margin-bottom: var(--space-xl);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    min-height: var(--touch-mobile);
    padding: 0 var(--space-xl);
    background: white;
    color: var(--secondary-500);
    font-size: var(--type-body-lg);
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--timing-base);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px hsl(0, 0%, 0%, 0.3);
}

.cta-trust {
    margin-top: var(--space-l);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-l);
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--type-body-sm);
    color: hsl(0, 0%, 100%, 0.8);
}

.cta-trust-item .material-symbols-outlined {
    font-size: var(--type-body-lg);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: var(--space-xxl) 0;
    background: var(--gray-900);
    color: white;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-l);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-size: var(--type-heading-2);
    font-weight: 700;
    color: white;
}

.footer-links {
    display: flex;
    gap: var(--space-l);
}

.footer-link {
    font-size: var(--type-body-sm);
    color: hsl(0, 0%, 100%, 0.6);
    text-decoration: none;
    transition: color var(--timing-fast);
}

.footer-link:hover {
    color: white;
}

.footer-copyright {
    font-size: var(--type-body-sm);
    color: hsl(0, 0%, 100%, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-xxl);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-study-featured {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: var(--type-display-sm);
    }
    
    .section-title {
        font-size: var(--type-heading-1);
    }
    
    .solution-title {
        font-size: var(--type-heading-1);
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-s);
    }
    
    .hero-float-card {
        display: none;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: var(--space-s);
    }
    
    .footer-container {
        flex-direction: column;
        gap: var(--space-l);
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Touch targets for mobile */
@media (max-width: 768px) {
    .btn-primary-large,
    .btn-secondary-large,
    .nav-cta,
    .cta-button {
        min-height: var(--touch-mobile);
        padding-left: var(--space-l);
        padding-right: var(--space-l);
    }
}
