/* CSS Reset and Variables - Using exact colors from brand guidelines */
:root {
    /* Exact color variables from your brand guidelines */
    --color-primary-500: #e14799;
    --color-primary-600: #d04784;
    --color-secondary-50: #f8fafc;
    --color-secondary-100: #f1f5f9;
    --color-secondary-200: #e2e8f0;
    --color-secondary-600: #475569;
    --color-secondary-900: #0f172a;
    
    /* Design system variables matching your guidelines exactly */
    --primary: var(--color-secondary-900);
    --primary-gradient: linear-gradient(90deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    --secondary: var(--color-secondary-600);
    --gray-50: var(--color-secondary-50);
    --gray-100: var(--color-secondary-100);
    --gray-200: var(--color-secondary-200);
    --gray-900: var(--color-secondary-900);
    --brand-pink: var(--color-primary-500);
    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-medium: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-large: 0 10px 30px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    height: 72px;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: inherit;
    transition: opacity 0.2s ease;
}

.nav-brand:hover {
    text-decoration: none !important;
    opacity: 0.8;
}

.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-company-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.nav-cta-btn {
    background: var(--color-primary-500);
    color: white !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.nav-cta-btn:hover {
    background: var(--color-primary-600);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    background: 
        linear-gradient(to right, #f0f0f0 0.5px, transparent 0.5px),
        linear-gradient(to bottom, #f0f0f0 0.5px, transparent 0.5px),
        linear-gradient(135deg, #fafafa 0%, #f5f5f7 25%, #fafafa 50%, #ffffff 100%);
    background-size: 
        24px 24px,
        24px 24px,
        100% 100%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 48px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.01em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Credibility Chips */
.credibility-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    box-shadow: var(--shadow-subtle);
    transition: all 0.2s ease;
}

.chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary-500);
}

.chip-icon {
    font-size: 16px;
}

/* Hero CTAs */
.hero-cta {
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

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

.btn-primary:hover {
    background: var(--color-primary-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: white;
    color: var(--secondary);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-icon {
    font-size: 16px;
}

.cta-note {
    font-size: 15px;
    color: var(--secondary);
    font-weight: 400;
}

/* Pain Section */
.pain-section {
    padding: 120px 0;
    background: white;
}

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

.pain-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.pain-description {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 64px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Inline reassurance text */
.inline-reassurance {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Social Proof Statistics */
.social-proof-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-top: 64px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.stat-item {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    position: relative;
}

.stat-item:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/office1.jpg");
}

.stat-item:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/office2.jpg");
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary-500);
}

.stat-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.stat-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin: 0;
    border-left: 4px solid var(--color-primary-500);
    padding-left: 20px;
}

.stat-source {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-contradiction {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contradiction-word {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-500);
    font-style: italic;
    text-shadow: 0 2px 4px rgba(225, 71, 153, 0.2);
}

/* Why Not Low-Code Section */
.low-code-section {
    padding: 120px 0;
    background: white;
}

.low-code-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.low-code-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.low-code-intro {
    font-size: 1.5rem;
    color: var(--color-primary-500);
    font-weight: 600;
    margin-bottom: 48px;
    text-align: center;
}

.low-code-breakdown {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
    text-align: left;
}

.low-code-tier {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.low-code-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary-500);
}

.low-code-tier p {
    font-size: 1.125rem;
    color: var(--primary);
    line-height: 1.7;
    margin: 0;
}

.low-code-result {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius);
    padding: 48px 32px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url("../img/office1.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Ghostrun Reveal Section */
.ghostrun-reveal {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.ghostrun-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.ghostrun-badge {
    display: inline-block;
    background: rgba(225, 71, 153, 0.1);
    border: 1px solid var(--color-primary-500);
    color: var(--color-primary-500);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.ghostrun-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.title-logo {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(225, 71, 153, 0.2));
    flex-shrink: 0;
}

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

.title-main {
    background: linear-gradient(135deg, var(--primary) 0%, var(--color-primary-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ghostrun-tagline {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0;
}

.ghostrun-story {
    position: relative;
    z-index: 1;
}

.story-block {
    margin-bottom: 80px;
}

.story-lead {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 60px;
    color: var(--secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.story-lead strong {
    color: var(--color-primary-500);
    font-weight: 600;
}

.story-contrast {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--gray-50);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-medium);
}

.contrast-left, .contrast-right {
    text-align: left;
}

.contrast-left h4, .contrast-right h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.contrast-left h4 {
    color: var(--secondary);
}

.contrast-right h4 {
    color: var(--color-primary-500);
}

.contrast-left ul, .contrast-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contrast-left li, .contrast-right li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: var(--secondary);
}

.contrast-left li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.contrast-right li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary-500);
    font-weight: bold;
}

.contrast-arrow {
    font-size: 2rem;
    color: var(--color-primary-500);
    font-weight: bold;
    text-align: center;
}

.ghostrun-engine h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    letter-spacing: -0.02em;
}

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

.engine-pillar {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.engine-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.engine-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
    border-color: rgba(225, 71, 153, 0.3);
}

.engine-pillar:hover::before {
    opacity: 1;
}

.pillar-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-500);
    margin-bottom: 16px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.engine-pillar h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.engine-pillar p {
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive for Ghostrun Section */
@media (max-width: 768px) {
    .ghostrun-reveal {
        padding: 80px 0;
    }
    
    .ghostrun-title {
        font-size: 3rem;
        flex-direction: column;
        gap: 16px;
    }
    
    .title-logo {
        width: 48px !important;
        height: 48px !important;
        max-width: 48px;
        max-height: 48px;
    }
    
    .ghostrun-tagline {
        font-size: 1.25rem;
    }
    
    .story-lead {
        font-size: 1.25rem;
        padding: 0 20px;
    }
    
    .story-contrast {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }
    
    .contrast-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .ghostrun-engine h3 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .engine-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }
    
    .engine-pillar {
        padding: 32px 24px;
    }
}

/* Capabilities Section */
.capabilities-section {
    padding: 120px 0;
    background: var(--gray-50);
}

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

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.capabilities-insight {
    font-size: 1.125rem !important;
    color: var(--primary) !important;
    font-style: italic;
    margin-top: 24px !important;
    font-weight: 500 !important;
    max-width: 800px !important;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.capability-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Background Images */
.capability-card[data-bg="abstract1"] {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4)), url("../img/abstract1.jpg");
    background-size: cover;
    background-position: center;
}

.capability-card[data-bg="abstract2"] {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4)), url("../img/abstract2.jpg");
    background-size: cover;
    background-position: center;
}

.capability-card[data-bg="abstract3"] {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4)), url("../img/abstract3.jpg");
    background-size: cover;
    background-position: center;
}

.capability-card[data-bg="abstract4"] {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4)), url("../img/abstract4.jpg");
    background-size: cover;
    background-position: center;
}

.capability-content {
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.capability-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.capability-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Social Proof Section */
.social-proof {
    padding: 120px 0;
    background: white;
}

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

.proof-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.proof-stat {
    font-size: 1.25rem;
    color: var(--secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

.customer-vignette {
    margin-bottom: 80px;
}

.vignette-placeholder {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 48px;
    border: 1px solid var(--gray-200);
    font-size: 1.125rem;
    color: var(--secondary);
    text-align: center;
    font-style: italic;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--gray-50);
}

.process-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.process-diagram {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: var(--shadow-medium);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--secondary);
    font-size: 14px;
    line-height: 1.5;
}

.process-arrow {
    font-size: 24px;
    color: var(--color-primary-500);
    font-weight: bold;
    margin: 0 8px;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: white;
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-image-column {
    background: url("../img/office3.jpg");
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    min-height: 600px;
}

.faq-content-column {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
    background: white;
}

.faq-item:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-subtle);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    color: var(--secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
    font-size: 14px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    transition: max-height 0.4s ease-in;
}

.faq-content {
    padding: 0 32px 32px 32px;
}

.faq-content p {
    color: var(--secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--gray-50);
}

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

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 48px;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-guarantee {
    font-size: 15px;
    color: var(--secondary);
    font-style: italic;
    font-weight: 400;
}

/* Contact Form Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.show {
    opacity: 1;
    visibility: visible;
}

.contact-modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.contact-modal.show .contact-modal-content {
    transform: translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary);
    z-index: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.contact-modal-close:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.contact-form-container {
    padding: 40px;
}

.contact-form-container h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-form-container p {
    color: var(--secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-500);
    box-shadow: 0 0 0 3px rgba(225, 71, 153, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.form-submit:disabled {
    background: var(--gray-200);
    color: var(--secondary);
    cursor: not-allowed;
    transform: none;
}

.form-submit:disabled:hover {
    background: var(--gray-200);
    transform: none;
    box-shadow: none;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand .nav-brand {
    margin-bottom: 16px;
}

.footer-brand .nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-brand .nav-company-name {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .credibility-chips {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .vignette-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .process-diagram {
        flex-direction: column;
        gap: 32px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links .nav-link {
        font-size: 14px;
    }
    
    .pain-content h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    /* Mobile-friendly social proof stats */
    .social-proof-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .stat-item {
        height: auto;
        min-height: 250px;
    }
    
    .stat-contradiction {
        order: 2;
        margin: 10px 0;
    }
    
    .stat-item:nth-child(1) {
        order: 1;
    }
    
    .stat-item:nth-child(3) {
        order: 3;
    }
    
    .contradiction-word {
        font-size: 2rem;
    }
    
    .pain-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pain-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .vignette-card {
        padding: 32px 24px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-content {
        padding: 0 24px 24px 24px;
    }
}
