/**
 * REFERRA LANDING PAGE STYLES
 * Split-screen layout with scrollable feature cards
 * Gradient accent: #5E6AD2 (purple/blue)
 */

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

html, body {
    position: relative;
}

:root {
    /* Update gradient to match reference */
    --accent-from: #5E6AD2;
    --accent-to: #4B5ED7;
    --accent-solid: #5E6AD2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--text-sm);
    font-weight: var(--weight-normal);
    margin: 0;
    padding: 0;
}

/* Headings use Manrope */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-3) var(--space-6);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-container:hover {
    background: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.logo {
    height: 24px;
    width: auto;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    opacity: 0.95;
}

.logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin: 0 var(--space-6);
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 6px 0;
    position: relative;
    font-family: 'Instrument Sans', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #455EB5 9%, #5643CC 44%, #673FD7 65%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: rgba(0, 0, 0, 0.9);
}

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

.btn-demo {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Instrument Sans', sans-serif;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #455EB5 9%, #5643CC 44%, #673FD7 65%);
    color: white;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(69, 94, 181, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-demo::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 0.5s;
}

.btn-demo:hover::before {
    left: 100%;
}

.btn-demo:hover {
    background: linear-gradient(90deg, #384AA0 9%, #4836B3 44%, #5634C7 65%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(69, 94, 181, 0.25);
}

.btn-demo:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(69, 94, 181, 0.2);
}

/* ===== SPLIT LAYOUT ===== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* ===== LEFT PANEL ===== */
.left-panel {
    display: flex;
    flex-direction: column;
    padding: var(--space-8) var(--space-8) var(--space-12);
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
}

/* Left Panel Navigation */
.left-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    max-width: 540px;
    margin: 0 auto var(--space-8);
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    gap: var(--space-8);
}

.left-nav .logo {
    height: 24px;
    width: auto;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    opacity: 0.95;
}

.left-nav .logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

.left-nav .nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    margin: 0 var(--space-4);
}

/* Vignette effect - subtle darkening at edges */
.left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.03) 80%,
        rgba(0, 0, 0, 0.06) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Additional subtle corner vignettes */
.left-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.04) 0%, transparent 40%),
        radial-gradient(circle at top right, rgba(0, 0, 0, 0.04) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.03) 0%, transparent 35%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.03) 0%, transparent 35%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Ensure content is above vignette */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Top Badge */
.top-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.06) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    box-shadow: 
        0 0 0 1px rgba(16, 185, 129, 0.06),
        0 2px 8px rgba(16, 185, 129, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.top-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.top-badge:hover::before {
    left: 100%;
}

.top-badge:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 
        0 0 0 1px rgba(16, 185, 129, 0.1),
        0 4px 12px rgba(16, 185, 129, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.badge-indicator {
    position: relative;
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.badge-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.badge-text {
    display: flex;
    align-items: baseline;
    gap: var(--space-1-5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8125rem; /* 13px - slightly larger for all caps */
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.badge-label {
    color: var(--text-secondary);
    font-weight: var(--weight-medium);
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.badge-highlight {
    color: #059669;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.06em;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    position: relative;
}

.badge-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #059669, #10b981);
    animation: slideInUnderline 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUnderline {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

/* Hero Title */
.hero-title {
    font-size: 3rem;
    font-weight: var(--weight-semibold);
    line-height: 1.1;
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-5);
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(
        90deg,
        #455EB5 0%,
        #5643CC 20%,
        #7A66FF 35%,
        #A78BFA 50%,
        #7A66FF 65%,
        #5643CC 80%,
        #455EB5 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: 
        fadeInUpGradient 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both,
        shimmerGradient 3s ease-in-out 1.5s infinite;
    filter: brightness(1.1);
}

@keyframes fadeInUpGradient {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmerGradient {
    0% {
        background-position: 0% 50%;
        filter: brightness(1.1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.3);
    }
    100% {
        background-position: 0% 50%;
        filter: brightness(1.1);
    }
}

.hero-description {
    font-size: var(--text-md);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    font-weight: var(--weight-normal);
}

/* Email Capture */
.email-capture {
    width: 100%;
    margin-bottom: var(--space-8);
    text-align: center;
}

.email-input-container {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.email-input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-xs);
    font-family: inherit;
    border: var(--card-border);
    border-radius: var(--radius-sm);
    background: var(--bg-elev1);
    color: var(--text-primary);
    transition: all var(--transition-fast);
    box-shadow: var(--card-ring);
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-solid);
    box-shadow: 0 0 0 3px rgba(94, 106, 210, 0.1);
}

.email-input::placeholder {
    color: var(--text-tertiary);
}

.btn-primary {
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    font-family: inherit;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #455EB5 9%, #5643CC 44%, #673FD7 65%);
    color: white;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(69, 94, 181, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary::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 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #384AA0 9%, #4836B3 44%, #5634C7 65%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(69, 94, 181, 0.25);
}

.btn-primary,
.btn-demo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Calendly Modal */
.calendly-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.calendly-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.calendly-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.calendly-modal-content {
    position: relative;
    width: 95%;
    max-width: 1000px;
    height: 95vh;
    max-height: 95vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: var(--space-6);
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.calendly-modal.active .calendly-modal-content {
    transform: scale(1) translateY(0);
}

.calendly-modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.calendly-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.calendly-modal-close svg {
    width: 20px;
    height: 20px;
}

.calendly-inline-widget {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

.calendly-inline-widget iframe {
    width: 100% !important;
    height: 100% !important;
}

.small-print {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    font-weight: var(--weight-normal);
}

.phi-note {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    font-weight: var(--weight-normal);
    margin-top: var(--space-3);
    text-align: center;
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4);
    background: var(--bg-elev1);
    border: var(--card-border);
    border-radius: var(--radius-sm);
    color: var(--status-success);
    font-weight: var(--weight-semibold);
    font-size: var(--text-xs);
    box-shadow: var(--card-ring);
}

/* Demo Link */
.demo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-3);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-solid);
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Instrument Sans', sans-serif;
    letter-spacing: -0.2px;
}

.demo-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.demo-link:hover {
    color: var(--accent-to);
}

.demo-link:hover svg {
    transform: translateX(4px);
}

/* Trust Row */
.trust-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-2);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8125rem; /* 13px */
    color: var(--text-primary);
    font-weight: var(--weight-medium);
    letter-spacing: 0.01em;
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    background: rgba(255, 255, 255, 0.95);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent-solid);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.trust-badge:hover svg {
    transform: scale(1.1);
}

/* ===== RIGHT PANEL: STACKED FEATURES ===== */
.right-panel {
    /* Cool blue/white background with subtle texture - different from left panel */
    background: 
        radial-gradient(circle at 20% 30%, rgba(122, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(75, 208, 255, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #F0F4F8 0%, #E6EEF5 100%);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--space-10) var(--space-8);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background elements */
.right-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(122, 102, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.right-panel::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 208, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.features-scroll {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.feature-cards {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
    animation: slideIn 400ms ease-out;
    width: 100%;
    position: relative;
    align-items: stretch; /* Make all cards equal height */
}

.feature-cards.active {
    display: grid;
}

/* ===== FEATURE CARD (Narrower width) ===== */
.feature-card {
    /* Dimensions */
    width: 100%;
    min-height: 420px; /* Ensure consistent minimum height */
    height: 100%;
    
    /* Flexbox layout for consistent alignment */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
    /* Padding */
    padding: 28px 24px 24px;
    box-sizing: border-box;
    
    /* Radius: 24px */
    border-radius: 24px;
    
    /* Background: gradient from bottom to top with subtle glow */
    background: linear-gradient(to top, 
        rgba(0, 2, 20, 0.95) 0%, 
        rgba(10, 16, 80, 0.80) 60%, 
        rgba(40, 50, 150, 0.90) 100%);

    /* Border: 1px hairline with subtle gradient */
    border: 1px solid rgba(122, 102, 255, 0.15);
    
    /* Elevation: ring + soft shadow with subtle glow */
    box-shadow: 
        0 0 0 1px var(--ring-outer),
        0 8px 24px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(122, 102, 255, 0.08);
    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle shine effect on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 0 0 1px rgba(122, 102, 255, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(122, 102, 255, 0.12);
    border-color: rgba(122, 102, 255, 0.25);
}

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    max-width: 52px;
    min-height: 52px;
    max-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Enhanced gradient background for icon */
    background: linear-gradient(135deg, rgba(122, 102, 255, 0.18) 0%, rgba(75, 208, 255, 0.15) 100%);
    border: 1px solid rgba(122, 102, 255, 0.25);
    border-radius: 12px;
    color: white;
    margin: 0 0 18px 0;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 4px 12px rgba(122, 102, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 6px 16px rgba(122, 102, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(122, 102, 255, 0.35);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Title: 18px, semibold, 94% opacity */
.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    padding: 0;
    color: var(--fg-strong);
    letter-spacing: -0.2px;
    line-height: 1.3;
    display: block;
    flex-shrink: 0;
}

/* Description: 15px, 88-92% opacity */
.feature-card p {
    font-size: 15px;
    color: var(--fg-soft);
    line-height: 1.6;
    margin: 0 0 20px 0;
    padding: 0;
    opacity: 0.90;
    flex: 1 1 auto;
    display: block;
    flex-shrink: 1;
}

/* Feature Checklist */
.feature-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0; /* Reset margins */
    margin-top: auto; /* Push to bottom of flex container */
    flex-shrink: 0; /* Prevent checklist from shrinking */
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--fg-soft);
    font-weight: 500;
    opacity: 0.88;
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.check-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 102, 255, 0.15);
    border: 1px solid rgba(122, 102, 255, 0.25);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.feature-card:hover .check-item::before {
    background: rgba(122, 102, 255, 0.25);
    border-color: rgba(122, 102, 255, 0.4);
    transform: scale(1.1);
}

.feature-card:hover .check-item {
    opacity: 1;
    transform: translateX(2px);
}


/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-10);
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
}

/* ===== UNIFIED CONTENT SECTION - QUADRANT LAYOUT ===== */
.unified-content {
    padding: var(--space-16) var(--space-8);
    background: #F0F1F4;
    position: relative;
    overflow: hidden;
}

.unified-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(122, 102, 255, 0.02) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 var(--space-6);
}

/* ===== NEW MODERN SECTION DESIGN ===== */

/* Process Section */
.process-section {
    margin-bottom: var(--space-16);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.section-intro {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5E6AD2;
    padding: var(--space-2) var(--space-5);
    background: rgba(94, 106, 210, 0.1);
    border: 1px solid rgba(94, 106, 210, 0.2);
    border-radius: 100px;
    margin-bottom: var(--space-6);
}

.section-title-large {
    font-size: 3.5rem;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin: 0 0 var(--space-4) 0;
    line-height: 1.1;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    /* Background: gradient from bottom to top with subtle glow - matching hero cards */
    background: linear-gradient(to top, 
        rgba(0, 2, 20, 0.95) 0%, 
        rgba(10, 16, 80, 0.80) 60%, 
        rgba(40, 50, 150, 0.90) 100%);
    border: 1px solid rgba(122, 102, 255, 0.15);
    border-radius: 24px;
    padding: var(--space-10) var(--space-8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 0 0 1px var(--ring-outer),
        0 8px 24px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(122, 102, 255, 0.08);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }

.step-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 0 0 1px rgba(122, 102, 255, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(122, 102, 255, 0.12);
    border-color: rgba(122, 102, 255, 0.25);
}

/* Subtle shine effect on hover - matching hero cards */
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: left 0.5s;
}

.step-card:hover::before {
    left: 100%;
}

.step-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5E6AD2 0%, #7A66FF 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover .step-accent {
    opacity: 1;
}

.step-number-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5E6AD2 0%, #7A66FF 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(94, 106, 210, 0.3);
    flex-shrink: 0;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(122, 102, 255, 0.4) 0%, transparent 100%);
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(122, 102, 255, 0.6);
    font-size: 1.25rem;
}

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

.step-title {
    font-size: 1.75rem;
    font-weight: var(--weight-semibold);
    color: var(--fg-strong);
    margin: 0 0 var(--space-4) 0;
    letter-spacing: -0.02em;
}

.step-description {
    font-size: var(--text-sm);
    color: var(--fg-soft);
    line-height: 1.6;
    margin: 0;
    opacity: 0.90;
}

/* Benefits & Pricing Grid */
.benefits-pricing-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

/* Benefits Section */
.benefits-section {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    border: 2px solid rgba(122, 102, 255, 0.2);
    border-radius: 24px;
    padding: var(--space-10) var(--space-8);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.section-intro-small {
    margin-bottom: var(--space-8);
}

.section-title {
    font-size: 2.25rem;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: var(--space-4) 0 0 0;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    gap: var(--space-5);
}

.benefit-card {
    /* Background: gradient from bottom to top with subtle glow - matching hero cards */
    background: linear-gradient(to top, 
        rgba(0, 2, 20, 0.95) 0%, 
        rgba(10, 16, 80, 0.80) 60%, 
        rgba(40, 50, 150, 0.90) 100%);
    border: 1px solid rgba(122, 102, 255, 0.15);
    border-radius: 20px;
    padding: var(--space-6) var(--space-6);
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation: fadeInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 
        0 0 0 1px var(--ring-outer),
        0 8px 24px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(122, 102, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-card:nth-child(1) { animation-delay: 0.5s; }
.benefit-card:nth-child(2) { animation-delay: 0.6s; }
.benefit-card:nth-child(3) { animation-delay: 0.7s; }

/* Subtle shine effect on hover - matching hero cards */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: left 0.5s;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 
        0 0 0 1px rgba(122, 102, 255, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(122, 102, 255, 0.12);
    border-color: rgba(122, 102, 255, 0.25);
}

.benefit-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(122, 102, 255, 0.18) 0%, rgba(75, 208, 255, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
    border: 1px solid rgba(122, 102, 255, 0.25);
    box-shadow: 
        0 4px 12px rgba(122, 102, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 
        0 6px 16px rgba(122, 102, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(122, 102, 255, 0.35);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: var(--weight-semibold);
    color: var(--fg-strong);
    margin: 0 0 var(--space-2) 0;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.benefit-text {
    font-size: var(--text-sm);
    color: var(--fg-soft);
    line-height: 1.6;
    margin: 0;
    opacity: 0.90;
    position: relative;
    z-index: 1;
}

/* Pricing Card Featured */
.pricing-card-featured {
    background: linear-gradient(135deg, rgba(94, 106, 210, 0.08) 0%, rgba(122, 102, 255, 0.06) 100%);
    border: 2px solid rgba(94, 106, 210, 0.2);
    border-radius: 28px;
    padding: var(--space-10) var(--space-8);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    box-shadow: 0 8px 32px rgba(94, 106, 210, 0.15);
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(94, 106, 210, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5E6AD2;
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(94, 106, 210, 0.2);
    border-radius: 100px;
    margin-bottom: var(--space-6);
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    margin: 0 0 var(--space-4) 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.pricing-subtitle {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0 0 var(--space-8) 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

.price-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(94, 106, 210, 0.15);
    border-radius: 18px;
    padding: var(--space-6) var(--space-5);
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 106, 210, 0.2);
    border-color: rgba(94, 106, 210, 0.3);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #5E6AD2 0%, #7A66FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-2);
}

.price-label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    font-weight: var(--weight-medium);
    letter-spacing: 0.03em;
}

.pricing-note {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-block {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

/* CTA Block */
.cta-block {
    text-align: center;
    padding: var(--space-16) var(--space-8);
    background: linear-gradient(135deg, rgba(122, 102, 255, 0.05) 0%, rgba(75, 208, 255, 0.03) 100%);
    border-radius: 32px;
    border: 1px solid rgba(122, 102, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(122, 102, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-10);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
}

.btn-secondary {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    font-family: inherit;
    border: 2px solid var(--accent-solid);
    border-radius: 12px;
    background: transparent;
    color: var(--accent-solid);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: var(--tracking-tight);
}

.btn-secondary:hover {
    background: var(--accent-solid);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(69, 94, 181, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--space-8) var(--space-6);
    border-top: 1px solid var(--line-soft);
    background: var(--bg-base);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.copyright {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--text-xs);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: var(--weight-medium);
}

.footer-links a:hover {
    color: var(--accent-solid);
}

.footer-links .separator {
    color: var(--line-soft);
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .split-layout {
        grid-template-columns: 45% 55%;
    }

    .left-panel {
        padding: var(--space-8) var(--space-6);
    }

    .right-panel {
        padding: var(--space-8) var(--space-6);
    }
}

@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .left-panel {
        position: relative;
        top: 0;
        height: auto;
        padding: var(--space-10) var(--space-6);
    }

    .right-panel {
        height: auto;
        padding: var(--space-8) var(--space-6) var(--space-12);
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav {
        gap: var(--space-4);
        margin-left: var(--space-6);
    }

    /* Process & Benefits sections */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }

    .benefits-pricing-grid {
        grid-template-columns: 1fr;
    }

    .content-container {
        padding: 0 var(--space-4);
    }

    .section-title-large {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .header {
        padding: var(--space-4) var(--space-4);
    }

    .nav {
        display: none;
    }

    .left-panel {
        padding: var(--space-8) var(--space-4);
    }

    .right-panel {
        padding: var(--space-6) var(--space-4) var(--space-10);
    }

    .left-nav {
        width: 100%;
        max-width: 100%;
        padding: var(--space-3) var(--space-4);
        gap: var(--space-4);
    }

    .left-nav .nav-links {
        gap: var(--space-4);
        margin: 0;
    }

    .btn-demo {
        padding: var(--space-2) var(--space-4);
        font-size: 14px;
    }

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

    .hero-description {
        font-size: var(--text-sm);
        margin-bottom: var(--space-6);
    }

    .email-input-container {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
    }

    .trust-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-3);
        justify-content: center;
    }

    .trust-badge {
        font-size: 13px;
        padding: var(--space-2) var(--space-3);
    }

    .feature-card {
        padding: 24px 20px 20px;
        min-height: auto;
    }
    
    .features-scroll {
        max-width: 100%;
    }

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

    /* New sections - Process */
    .process-section {
        margin-bottom: var(--space-12);
    }

    .section-intro {
        margin-bottom: var(--space-8);
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: var(--text-md);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .step-card {
        padding: var(--space-8) var(--space-6);
    }

    .step-connector {
        display: none;
    }

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

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

    /* Benefits & Pricing Grid */
    .benefits-pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

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

    .benefits-section {
        padding: var(--space-8) var(--space-6);
    }

    .benefit-card {
        padding: var(--space-5) var(--space-5);
    }

    .benefit-title {
        font-size: 1.125rem;
    }

    .pricing-card-featured {
        padding: var(--space-8) var(--space-6);
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    /* CTA Block */
    .cta-block {
        padding: var(--space-12) var(--space-6);
    }

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

    .cta-subtitle {
        font-size: var(--text-md);
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    /* Unified content padding */
    .unified-content {
        padding: var(--space-12) var(--space-4);
    }

    /* Footer */
    .footer {
        padding: var(--space-6) var(--space-4);
    }

    /* Modal */
    .calendly-modal-content {
        width: 90%;
        max-width: 90%;
        height: 85vh;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 22px;
    }

    .left-nav {
        padding: var(--space-2) var(--space-3);
        gap: var(--space-3);
    }

    .left-nav .nav-links {
        display: none;
    }

    .btn-demo {
        padding: var(--space-2) var(--space-3);
        font-size: 13px;
    }

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

    .hero-description {
        font-size: 15px;
    }

    .trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }

    .trust-badge {
        font-size: 12px;
        padding: var(--space-2);
    }

    .feature-card {
        padding: 20px 18px 20px;
        min-height: auto;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 14px;
    }
    
    .features-scroll {
        max-width: 100%;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .check-item {
        font-size: 13px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Process Section */
    .section-title-large {
        font-size: 2rem;
    }

    .section-description {
        font-size: var(--text-sm);
    }

    .section-badge {
        font-size: 0.625rem;
        padding: var(--space-1-5) var(--space-3);
    }

    .step-card {
        padding: var(--space-6) var(--space-5);
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 14px;
    }

    /* Benefits & Pricing */
    .benefits-pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

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

    .benefits-section {
        padding: var(--space-6) var(--space-4);
    }

    .benefit-card {
        padding: var(--space-4) var(--space-4);
        gap: var(--space-4);
    }

    .benefit-icon-wrapper {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

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

    .benefit-text {
        font-size: 14px;
    }

    .pricing-card-featured {
        padding: var(--space-6) var(--space-5);
    }

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

    .pricing-subtitle {
        font-size: 14px;
    }

    .price-card {
        padding: var(--space-5) var(--space-4);
    }

    .price-amount {
        font-size: 1.75rem;
    }

    /* CTA */
    .cta-block {
        padding: var(--space-10) var(--space-4);
        border-radius: 24px;
    }

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

    .cta-subtitle {
        font-size: var(--text-sm);
    }

    /* Unified content */
    .unified-content {
        padding: var(--space-10) var(--space-3);
    }

    .content-container {
        padding: 0 var(--space-3);
    }

    /* Footer */
    .footer {
        padding: var(--space-6) var(--space-4);
    }

    .copyright {
        font-size: 11px;
        text-align: center;
    }

    /* Modal adjustments */
    .calendly-modal-content {
        width: 95%;
        max-width: 95%;
        height: 90vh;
    }
}
