/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

:root {
    /* Colors */
    --primary: #E04F00;
    --primary-dark: #C04400;
    --primary-light: #FF6B1A;
    --secondary: #0A0E27;
    --secondary-light: #1A1F3A;
    --accent: #00D9FF;
    --text-primary: #0A0E27;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --border: #E2E8F0;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;

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

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-layered: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(224, 79, 0, 0.3);
    --shadow-glow-strong: 0 0 30px rgba(224, 79, 0, 0.4);
    --shadow-glow-green: 0 0 30px rgba(16, 185, 129, 0.4);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Animation Durations */
    --duration-fast: 0.2s;
    --duration-normal: 0.3s;
    --duration-slow: 0.6s;
    --duration-slower: 1s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* Prevent horizontal overflow */
section {
    max-width: 100%;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary,
.btn-large,
.btn-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-primary);
    position: relative;
    box-shadow: 0 4px 12px rgba(224, 79, 0, 0.2);
}

.btn-primary:hover,
.btn-large:hover,
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(224, 79, 0, 0.35);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary);
    text-decoration: none;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(224, 79, 0, 0.2);
    background: var(--primary);
    color: white;
}

.btn-large,
.btn-cta {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 20px rgba(10, 14, 39, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo:hover {
    color: var(--text-primary);
}

.logo-icon {
    font-size: 2rem;
}

.logo-icon-img {
    height: 3.5rem;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a.btn-primary {
    color: white;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(224, 79, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

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

.hero-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.1) 0%, rgba(224, 79, 0, 0.05) 100%);
    border: 2px solid rgba(224, 79, 0, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(224, 79, 0, 0.1);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(224, 79, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(224, 79, 0, 0.2);
    }
}

.hero-title {
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 0 1 230px;
    padding: 0 28px;
}

.stat + .stat {
    border-left: 1px solid var(--border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-cta {
    margin-top: var(--spacing-lg);
}

.hero-cta-note {
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.problem-card {
    padding: var(--spacing-lg);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    z-index: 1;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.02) 0%, rgba(224, 79, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: var(--radius-xl);
    z-index: 0;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(10, 14, 39, 0.15), 0 0 0 1px rgba(224, 79, 0, 0.1);
    border-color: var(--primary);
}

.problem-card:hover::after {
    opacity: 1;
}

.problem-card:hover::before {
    transform: scaleY(1);
}

.problem-card:hover .problem-icon {
    transform: scale(1.15) translateY(-4px);
}

.problem-card:hover .problem-icon-wrapper {
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.1) 0%, rgba(224, 79, 0, 0.15) 100%);
    box-shadow: 0 8px 20px rgba(224, 79, 0, 0.2);
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.problem-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.05) 0%, rgba(224, 79, 0, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.problem-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
}

.problem-icon img,
.problem-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.problem-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.problem-card:hover h3 {
    color: var(--primary);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.problem-card:hover p {
    color: var(--text-primary);
}

/* ========================================
   SOLUTION SECTION
   ======================================== */

.solution {
    padding: var(--spacing-xl) 0;
    background: var(--secondary);
    color: white;
}

.solution .section-title,
.solution .section-subtitle {
    color: white;
}

.solution-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.solution-box {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: var(--spacing-md);
    background: var(--secondary-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.solution-box.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
}

.solution-box h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.solution-arrow {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
}

.checklist-bad,
.checklist-good {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.checklist-bad li,
.checklist-good li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.checklist-bad li::before {
    content: '❌ ';
    margin-right: 0.5rem;
}

.checklist-good li::before {
    content: '✅ ';
    margin-right: 0.5rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

/* Dark variant for Services section (solution-box style) */
.services.services-dark {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.services.services-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(224, 79, 0, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.services.services-dark .section-title,
.services.services-dark .section-subtitle {
    color: white;
}

.services.services-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.services.services-dark .service-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.services.services-dark .service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.services.services-dark .service-card h3 {
    color: white;
}

.services.services-dark .service-description {
    color: rgba(255, 255, 255, 0.8);
}

.services.services-dark .service-features li {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.services.services-dark .service-features li::before {
    color: var(--primary-light);
}

.services.services-dark .service-features li strong {
    color: var(--primary-light);
    font-weight: 700;
}

.services.services-dark .service-stat {
    background: rgba(224, 79, 0, 0.15);
    color: var(--primary-light);
    border-left-color: var(--primary);
    border-left-width: 4px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(224, 79, 0, 0.2);
}

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

.service-card {
    padding: var(--spacing-lg);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.02) 0%, rgba(224, 79, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: var(--radius-xl);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(10, 14, 39, 0.15);
    border-color: var(--primary);
}

.service-card:hover::after {
    opacity: 1;
}

.service-number {
    position: absolute;
    top: -1rem;
    left: var(--spacing-md);
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card h3 {
    margin-top: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 0.625rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.service-features li::before {
    content: '→ ';
    color: var(--primary);
    font-weight: 700;
    margin-right: 0.5rem;
}

.service-features li strong {
    color: var(--text-primary);
}

.service-stat {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--bg-secondary);
    border-left: 3px solid var(--primary);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    padding: var(--spacing-xl) 0;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: var(--spacing-lg);
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

.timeline-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   RESULTS SECTION
   ======================================== */

.results {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

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

.result-card {
    padding: var(--spacing-lg);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(10, 14, 39, 0.12);
    border-color: var(--primary);
}

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

.result-client {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.result-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.result-description {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

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

.result-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.result-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.result-features li:last-child {
    border-bottom: none;
}

.result-features li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.results-examples {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.result-example-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.result-example-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.result-metrics {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border);
}

.result-metric {
    flex: 1;
}

.result-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.result-insight {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.result-highlight {
    padding: var(--spacing-sm);
    background: var(--bg-secondary);
    border-left: 3px solid var(--primary);
    line-height: 1.7;
}

.result-highlight strong {
    color: var(--primary);
}

/* ========================================
   WHY PIPELINE FACTORY SECTION
   ======================================== */

.why-pipeline {
    padding: var(--spacing-xl) 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: var(--spacing-lg);
    border-top: 1px solid var(--border);
    padding-top: var(--spacing-lg);
}

.why-card {
    padding: 0 40px;
    background: transparent;
    border: 0;
    border-radius: 0;
    position: relative;
    overflow: visible;
}

.why-card:first-child { padding-left: 0; }
.why-card:last-child { padding-right: 0; }

.why-card + .why-card {
    border-left: 1px solid var(--border);
}

.why-card::before {
    content: "01";
    display: block;
    font-family: var(--font-display);
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(224, 79, 0, 0.12);
    margin-bottom: -26px;
    user-select: none;
}
.why-card:nth-child(2)::before { content: "02"; }
.why-card:nth-child(3)::before { content: "03"; }

.why-card .why-icon-wrapper { display: none; }

.why-card h3 { position: relative; margin-top: 0; }

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.02) 0%, rgba(224, 79, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: var(--radius-xl);
    z-index: 0;
}

.why-card:hover { }

.why-card:hover::after { content: none; }

.why-card:hover::before { content: none; }

.why-card:hover .why-icon {
    transform: scale(1.15) translateY(-4px);
}

.why-card:hover .why-icon-wrapper {
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.1) 0%, rgba(224, 79, 0, 0.15) 100%);
    box-shadow: 0 8px 20px rgba(224, 79, 0, 0.2);
}

.why-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.05) 0%, rgba(224, 79, 0, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.why-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.why-icon img,
.why-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card h3 {
    position: relative;
    z-index: 2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.why-card:hover h3 { }

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.why-card:hover p { }

/* ========================================
   REVENUE PLAYBOOKS SECTION
   ======================================== */

.revenue-playbooks {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.playbooks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.playbook-card {
    padding: var(--spacing-lg);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.playbook-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    z-index: 1;
}

.playbook-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.02) 0%, rgba(224, 79, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: var(--radius-xl);
    z-index: 0;
}

.playbook-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(10, 14, 39, 0.15), 0 0 0 1px rgba(224, 79, 0, 0.1);
    border-color: var(--primary);
}

.playbook-card:hover::after {
    opacity: 1;
}

.playbook-card:hover::before {
    transform: scaleY(1);
}

.playbook-card:hover .playbook-icon {
    transform: scale(1.15) translateY(-4px);
}

.playbook-card:hover .playbook-icon-wrapper {
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.1) 0%, rgba(224, 79, 0, 0.15) 100%);
    box-shadow: 0 8px 20px rgba(224, 79, 0, 0.2);
}

.playbook-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.05) 0%, rgba(224, 79, 0, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.playbook-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.playbook-icon img,
.playbook-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.playbook-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.playbook-card:hover h3 {
    color: var(--primary);
}

.playbook-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.playbook-card:hover p {
    color: var(--text-primary);
}

.execution-models {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--border);
}

.execution-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

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

.execution-card {
    padding: var(--spacing-md);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.execution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 14, 39, 0.1);
    border-color: var(--primary);
}

/* ========================================
   OLD VS NEW COMPARISON SECTION
   ======================================== */

.old-vs-new {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.section-eyebrow {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-display);
}

.comparison-cards-wrapper {
    display: flex;
    gap: 1.5rem;
    margin-top: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.comparison-card {
    flex: 1;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 14, 39, 0.12);
}

.comparison-card.old-card {
    border-color: rgba(220, 38, 38, 0.2);
}

.comparison-card.old-card:hover {
    border-color: #dc2626;
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.15);
}

.comparison-card.new-card {
    border-color: rgba(224, 79, 0, 0.2);
}

.comparison-card.new-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(224, 79, 0, 0.15);
}

.comparison-card-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border);
}

.comparison-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--spacing-sm) 0 0 0;
    line-height: 1.3;
}

.comparison-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.old-badge {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.new-badge {
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.15) 0%, rgba(224, 79, 0, 0.1) 100%);
    color: var(--primary);
    border: 1px solid rgba(224, 79, 0, 0.3);
}

.comparison-metrics {
    flex: 1;
    margin-bottom: var(--spacing-lg);
}

.comparison-metric {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border);
}

.comparison-metric:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.metric-value.old-value {
    color: #dc2626;
}

.metric-value.new-value {
    color: var(--primary);
}

.metric-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: italic;
}

.comparison-tools {
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border);
}

.tools-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: center;
    justify-items: center;
}

.tool-logo {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
    padding: 0.25rem;
}

.comparison-card:hover .tool-logo {
    filter: grayscale(0%) opacity(1);
}

.comparison-outcome {
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--border);
    text-align: center;
}

.outcome-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.outcome-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.old-outcome {
    color: #dc2626;
}

.new-outcome {
    color: var(--primary);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    padding: var(--spacing-md);
}

.comparison-supporting {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.supporting-headline {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.supporting-body {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.execution-card h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.execution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* ========================================
   PRICING PAGE HERO
   ======================================== */

.pricing-hero {
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(224, 79, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.pricing-hero .section-eyebrow {
    color: var(--primary);
}

.pricing-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.pricing-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   COST BREAKDOWN SECTION
   ======================================== */

.cost-breakdown {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
}

.cost-breakdown .pricing-comparison {
    max-width: 600px;
    margin: var(--spacing-xl) auto 0;
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.savings-callout {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.1) 0%, rgba(224, 79, 0, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(224, 79, 0, 0.2);
}

.savings-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.savings-note {
    font-size: 1.125rem;
    color: var(--text-secondary);
}


/* Pricing card enhancements */
.pricing-tagline {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    margin-bottom: var(--spacing-sm);
}

/* ========================================
   PRICING TEASER SECTION (Homepage)
   ======================================== */

.pricing-teaser {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.pricing-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-highlight-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-highlight-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.03) 0%, rgba(224, 79, 0, 0.08) 100%);
}

.highlight-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.highlight-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.highlight-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.highlight-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.highlight-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

.pricing-teaser-note {
    margin-top: var(--spacing-md);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .pricing-highlights {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .pricing-highlight-card.featured {
        order: -1;
    }
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

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

.pricing-card {
    padding: var(--spacing-lg);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 14, 39, 0.15);
}

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

.pricing-card.highlight {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(224, 79, 0, 0.2);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F0 100%);
}

.pricing-card.highlight::before {
    transform: scaleX(1);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.price {
    text-align: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.price span {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.pricing-features li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: 700;
    margin-right: 0.5rem;
}

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-md);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.pricing-comparison {
    max-width: 700px;
    margin: var(--spacing-xl) auto 0;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.pricing-comparison h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.comparison-table {
    margin-top: var(--spacing-md);
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--border);
}

.comparison-row.total {
    border-top: 2px solid var(--text-primary);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-md);
}

.comparison-row.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-md);
    margin-top: var(--spacing-sm);
    border: none;
}

.comparison-label {
    color: var(--text-secondary);
}

.comparison-row.highlight .comparison-label,
.comparison-row.highlight .comparison-value {
    color: white;
}

.comparison-value {
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-value.bad {
    color: var(--error);
}

.comparison-value.good {
    color: var(--success);
}

.comparison-row.highlight .comparison-value {
    color: white;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: var(--spacing-xl) 0;
    background: white;
}

.faq-accordion {
    max-width: 1200px;
    margin: var(--spacing-lg) auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item[open] {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: "";
}

.faq-question span {
    flex: 1;
    padding-right: var(--spacing-md);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.faq-item:hover .faq-icon {
    color: var(--primary);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-md);
    animation: faqFadeIn 0.3s ease;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 var(--spacing-sm) 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: var(--spacing-sm) 0 0 0;
    padding-left: var(--spacing-lg);
    color: var(--text-secondary);
}

.faq-answer li {
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    color: var(--text-secondary);
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-primary);
}

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

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    padding: var(--spacing-lg);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-xl);
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 36px rgba(10, 14, 39, 0.12);
    border-color: var(--primary);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: Georgia, serif;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-company {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

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

.cta h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn-large,
.cta .calendly-trigger {
    background: white;
    color: var(--primary);
}

.cta .btn-large:hover,
.cta .calendly-trigger:hover {
    background: var(--bg-secondary);
    color: var(--primary-dark);
}

.cta-note {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-brand .logo {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.footer-brand .logo-icon-img {
    height: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-column h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0.25rem 0;
}

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

@media (max-width: 968px) {
    .nav-links {
        gap: 1rem;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero-stats {
        gap: var(--spacing-md);
    }

    .solution-visual {
        flex-direction: column;
    }

    .solution-arrow {
        transform: rotate(90deg);
    }

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

    .comparison-cards-wrapper {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .comparison-divider {
        transform: rotate(90deg);
        padding: var(--spacing-sm);
    }

    .comparison-divider svg {
        width: 32px;
        height: 32px;
    }

    .comparison-card {
        padding: var(--spacing-lg);
    }

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

    .tool-logo {
        max-height: 32px;
    }

    .comparison-col-header h3 {
        font-size: 0.875rem;
    }

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

    .supporting-headline {
        font-size: 1.5rem;
    }

    .supporting-body {
        font-size: 1rem;
    }

    .comparison-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .comparison-cta .btn {
        width: 100%;
        text-align: center;
    }

    .timeline::before {
        left: 1.5rem;
    }

    .timeline-marker {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .timeline-item {
        padding-left: 4rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .logo-icon-img {
        height: 2rem;
    }

    .footer-brand .logo-icon-img {
        height: 2.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: var(--spacing-sm) 0;
        text-align: center;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
        gap: var(--spacing-sm);
    }

    .stat-label {
        max-width: 100%;
    }

    .stat + .stat {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: var(--spacing-sm);
    }

    .problem-grid,
    .services-grid,
    .diff-grid,
    .why-grid,
    .playbooks-grid,
    .execution-grid,
    .pricing-cards,
    .results-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-accordion {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: var(--spacing-md);
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }

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

    .result-card {
        padding: var(--spacing-md);
    }

    .result-client {
        font-size: 1.25rem;
    }

    .result-features li {
        font-size: 0.9375rem;
        padding: 0.625rem 0;
        padding-left: 1.25rem;
    }

    .playbook-card,
    .why-card,
    .execution-card {
        padding: var(--spacing-md);
    }

    .playbook-icon-wrapper,
    .why-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .playbook-icon,
    .why-icon {
        width: 48px;
        height: 48px;
    }

    .why-grid,
    .playbooks-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: var(--spacing-md);
    }

    .price {
        font-size: 2.5rem;
    }

    .pricing-comparison {
        padding: var(--spacing-md);
    }

    .comparison-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .service-card,
    .result-card,
    .testimonial-card {
        padding: var(--spacing-md);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

.hero-content,
.problem-card,
.service-card,
.diff-card,
.pricing-card,
.result-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Stagger animations */
.problem-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2) { animation-delay: 0.2s; }
.problem-card:nth-child(3) { animation-delay: 0.3s; }

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* Scroll progress indicator */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(224, 79, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Process section now uses section-title and section-subtitle like other sections */

.process-timeline-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Enhanced Vertical timeline connector */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(224, 79, 0, 0.15) 0%,
        rgba(224, 79, 0, 0.35) 20%,
        rgba(224, 79, 0, 0.5) 50%,
        rgba(224, 79, 0, 0.35) 80%,
        rgba(224, 79, 0, 0.15) 100%);
    z-index: 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(224, 79, 0, 0.1);
    animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(224, 79, 0, 0.1);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(224, 79, 0, 0.2);
    }
}

.timeline-phase {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding-left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--duration-slow) ease, transform var(--duration-slow) ease;
}

.timeline-phase.visible {
    opacity: 1;
    transform: translateY(0);
}

.phase-marker {
    flex-shrink: 0;
    width: 120px;
    position: relative;
    z-index: 2;
    padding-top: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.phase-connector-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-full);
    border: 4px solid var(--bg-secondary);
    box-shadow: 0 0 0 3px rgba(224, 79, 0, 0.2), var(--shadow-glow);
    position: relative;
    z-index: 3;
    transition: all var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1);
    animation: dotPulse 2s ease-in-out infinite;
}

.scale-dot {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2), var(--shadow-glow-green);
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 3px rgba(224, 79, 0, 0.2), var(--shadow-glow);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 5px rgba(224, 79, 0, 0.3), var(--shadow-glow-strong);
    }
}

.scale-dot {
    animation: dotPulseGreen 2s ease-in-out infinite;
}

@keyframes dotPulseGreen {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2), var(--shadow-glow-green);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.3), var(--shadow-glow-green);
    }
}

.timeline-phase:hover .phase-connector-dot,
.timeline-phase.active .phase-connector-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(224, 79, 0, 0.3), var(--shadow-glow-strong);
    animation: none;
}

.scale-phase:hover .scale-dot,
.scale-phase.active .scale-dot {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.3), var(--shadow-glow-green);
}

.phase-label {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-layered), 0 0 0 1px rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    transition: all var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.scale-label {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

.phase-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--duration-slower) ease;
}

.timeline-phase:hover .phase-label,
.timeline-phase.active .phase-label {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.timeline-phase:hover .phase-label::before,
.timeline-phase.active .phase-label::before {
    left: 100%;
}

.phase-connector-line {
    position: absolute;
    left: 120px;
    top: 2rem;
    width: var(--spacing-md);
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    opacity: 0.3;
    z-index: 1;
    transition: all var(--duration-normal) ease;
}

.timeline-phase:hover .phase-connector-line,
.timeline-phase.active .phase-connector-line {
    opacity: 0.6;
    width: calc(var(--spacing-md) + 1rem);
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, transparent 100%);
}

.phase-steps {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-sm);
    padding-top: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(15px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left border accent */
.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.scale-step::before {
    background: linear-gradient(180deg, var(--success) 0%, #059669 100%);
}

.process-step:hover::before,
.process-step.active::before {
    transform: scaleY(1);
}

/* Gradient overlay */
.process-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 79, 0, 0.02) 0%, rgba(224, 79, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    pointer-events: none;
    border-radius: var(--radius-lg);
    z-index: 0;
}

.scale-step::after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.process-step:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-layered), 0 0 0 1px rgba(224, 79, 0, 0.1);
    border-color: var(--primary);
}

.scale-step:hover {
    border-color: var(--success);
    box-shadow: var(--shadow-layered), 0 0 0 1px rgba(16, 185, 129, 0.1);
}

.process-step:hover::after {
    opacity: 1;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(224, 79, 0, 0.25), 0 0 0 0 rgba(224, 79, 0, 0.4);
    transition: all var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.scale-number {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25), 0 0 0 0 rgba(16, 185, 129, 0.4);
}

.step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width var(--duration-slow) ease, height var(--duration-slow) ease;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 16px rgba(224, 79, 0, 0.4), 0 0 0 4px rgba(224, 79, 0, 0.1);
}

.scale-step:hover .scale-number {
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4), 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.process-step:hover .step-number::before {
    width: 100%;
    height: 100%;
}

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

.step-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    transition: color var(--duration-normal) ease;
    letter-spacing: -0.01em;
}

.process-step:hover .step-title {
    color: var(--primary);
}

.scale-step:hover .step-title {
    color: var(--success);
}

.step-tasks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-tasks li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.625rem;
    padding-left: 1.5rem;
    position: relative;
    transition: color var(--duration-normal) ease;
}

.step-tasks li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
    transition: color var(--duration-normal) ease;
}

.scale-step .step-tasks li::before {
    color: var(--success);
}

.process-step:hover .step-tasks li {
    color: var(--text-primary);
}

/* Stagger animations for steps */
.process-step:nth-child(1) { transition-delay: 0.05s; }
.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.15s; }
.process-step:nth-child(4) { transition-delay: 0.2s; }
.process-step:nth-child(5) { transition-delay: 0.25s; }
.process-step:nth-child(6) { transition-delay: 0.3s; }
.process-step:nth-child(7) { transition-delay: 0.35s; }

/* Process Section Responsive */
@media (max-width: 968px) {
    .process-timeline::before {
        left: 100px;
    }

    .phase-marker {
        width: 100px;
    }

    .phase-connector-dot {
        width: 14px;
        height: 14px;
        border-width: 3px;
    }

    .phase-label {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

    .phase-connector-line {
        left: 100px;
    }

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

@media (max-width: 768px) {
    .process-section {
        padding: var(--spacing-lg) 0;
    }

    .process-timeline {
        gap: var(--spacing-md);
    }

    .process-timeline::before {
        left: 80px;
    }

    .timeline-phase {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .phase-marker {
        width: 100%;
        padding-top: 0;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .phase-connector-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .phase-label {
        display: inline-block;
        font-size: 0.8125rem;
        padding: 0.4rem 0.75rem;
    }

    .phase-connector-line {
        display: none;
    }

    .phase-steps {
        width: 100%;
        padding-left: 0;
    }

    .process-step {
        padding: var(--spacing-sm);
    }

    .step-number {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.8125rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-tasks li {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .process-timeline::before {
        display: none;
    }

    .timeline-phase {
        padding-left: 0;
    }

    .phase-marker {
        width: 100%;
    }

    .phase-connector-dot {
        display: none;
    }

    .process-step {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }

    .step-title {
        font-size: 0.9375rem;
    }

    .step-tasks li {
        font-size: 0.875rem;
    }
}




@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: var(--spacing-md) 0; }
    .why-card:first-child { padding-top: 0; }
    .why-card + .why-card { border-left: 0; border-top: 1px solid var(--border); }
}

/* ========================================
   CLAY DESIGN LAYER
   Clay.com-style language on PF brand tokens: white canvas, tinted rounded
   mega-panels, pill eyebrows with echo dots, oversized two-tone headlines,
   borderless white shadow cards, crisp inline-SVG icons.
   Scoped: nothing here touches the process timeline section.
   ======================================== */

:root {
    --clay-peach: #FDF0E7;
    --clay-blue: #EEF4FB;
    --clay-cream: #F7F5F0;
    --clay-r: 28px;
    --clay-shadow: 0 1px 2px rgba(10, 14, 39, .05), 0 12px 32px -18px rgba(10, 14, 39, .18);
}

/* sections: white canvas, the panels carry the color */
.clay-section {
    padding: 22px 0;
    background: #fff;
}

.clay-section .container {
    max-width: 1120px;
}

.clay-panel {
    border-radius: var(--clay-r);
    padding: 44px 48px 48px;
}

.clay-panel.p-blue { background: var(--clay-blue); }
.clay-panel.p-peach { background: var(--clay-peach); }
.clay-panel.p-cream { background: var(--clay-cream); }

/* eyebrow pill + echo dots */
.clay-eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
}

.clay-eyebrow .pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #fff;
    background: var(--secondary);
}

.clay-eyebrow i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: .35;
}

.clay-eyebrow i + i {
    width: 8px;
    height: 8px;
    opacity: .18;
}

.clay-eyebrow.org .pill { background: var(--primary); }
.clay-eyebrow.org i { background: var(--primary); }

/* type: left-aligned two-tone titles inside clay sections, no underline */
.clay-section .section-title {
    text-align: left;
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -.025em;
    font-weight: 650;
    margin-bottom: 8px;
    width: auto;
    display: block;
}

.clay-section .section-title::after { display: none; }

.clay-section .section-title .a { color: var(--primary); }

.clay-section .section-subtitle {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.62;
    margin: 6px 0 28px;
    max-width: 720px;
}

/* centered variant (hero, CTA panels) */
.clay-center .section-title,
.clay-center .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.clay-center .clay-eyebrow { justify-content: center; }

/* hero: white, centered, soft gradient blobs */
.clay-hero {
    position: relative;
    padding: 84px 0 30px;
    background: #fff;
    overflow: hidden;
}

.clay-hero .container {
    position: relative;
    text-align: center;
    max-width: 1120px;
}

.clay-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.clay-blobs i {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
}

.clay-blobs .b1 {
    width: 420px;
    height: 420px;
    left: 4%;
    top: -80px;
    background: rgba(224, 79, 0, .10);
}

.clay-blobs .b2 {
    width: 380px;
    height: 380px;
    right: 2%;
    top: 40px;
    background: rgba(0, 217, 255, .09);
}

.clay-hero .clay-eyebrow {
    justify-content: center;
    margin: 0 0 22px;
}

.clay-hero .clay-eyebrow .pill {
    font-size: 13px;
    padding: 7px 18px;
}

.clay-hero .clay-eyebrow i { width: 13px; height: 13px; }
.clay-hero .clay-eyebrow i + i { width: 9px; height: 9px; }

.clay-title {
    font-size: clamp(2.4rem, 5.2vw, 3.6rem);
    line-height: 1.06;
    letter-spacing: -.03em;
    font-weight: 650;
    color: var(--text-primary);
    max-width: 20ch;
    margin: 0 auto;
}

.clay-title .a { color: var(--primary); }

.clay-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 640px;
    margin: 18px auto 0;
}

/* chips */
.clay-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
    background: #fff;
    color: var(--primary-dark);
    box-shadow: var(--clay-shadow);
}

/* stat tiles: borderless white cards */
.clay-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 34px auto 0;
    max-width: 900px;
}

.clay-stats .stat {
    background: #fff;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: var(--clay-shadow);
    text-align: left;
    flex: none;
}

.clay-stats .stat + .stat { border-left: 0; }

.clay-stats .stat-number { font-size: 1.9rem; }

.clay-stats .stat-label {
    margin: 6px 0 0;
    max-width: none;
    font-size: .875rem;
}

/* card grids */
.clay-grid {
    display: grid;
    gap: 18px;
    margin-top: 8px;
}

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

/* borderless white shadow cards */
.clay-card {
    position: relative;
    border-radius: 20px;
    padding: 26px 26px 24px;
    background: #fff;
    box-shadow: var(--clay-shadow);
    border: 2px solid transparent;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), border-color .35s, box-shadow .35s;
}

.clay-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 18px 44px -16px rgba(10, 14, 39, .22);
}

.clay-card .ic {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--clay-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.clay-card .ic.blue { background: var(--clay-blue); }

.clay-card .ic svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
}

.clay-card h3 {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.clay-card p {
    font-size: .94rem;
    color: var(--text-secondary);
    line-height: 1.62;
    margin: 0;
}

.clay-card .no {
    display: block;
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--primary);
    margin-bottom: 12px;
}

.clay-card .clay-chip {
    position: absolute;
    top: 24px;
    right: 22px;
    background: var(--clay-blue);
    box-shadow: none;
    color: var(--secondary);
}

.clay-card .statline {
    margin-top: 16px;
    padding: 9px 13px;
    border-radius: 12px;
    background: var(--clay-peach);
    color: var(--primary-dark);
    font-size: .84rem;
    font-weight: 700;
    display: inline-block;
}

.clay-card ul {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.clay-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.clay-card ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: .52em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.clay-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--primary);
}

.clay-card .card-link:hover { color: var(--primary-dark); }

/* CTA panel */
.clay-cta {
    text-align: center;
    padding: 56px 44px;
}

.clay-cta .btn-large { margin-top: 6px; }

@media (max-width: 900px) {
    .clay-grid.cols-2,
    .clay-grid.cols-3,
    .clay-grid.cols-4 { grid-template-columns: 1fr; }

    .clay-stats { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .clay-panel {
        padding: 28px 22px 30px;
        border-radius: 22px;
    }

    .clay-hero { padding: 56px 0 20px; }

    .clay-cta { padding: 36px 22px; }

    .clay-card .clay-chip {
        position: static;
        display: inline-flex;
        margin-bottom: 10px;
    }
}
