:root {
        /* Brand Colors - Light Theme */
        --orange-500: #ff5321;
        --orange-600: #e64515;
        --orange-400: #ff7a4d;
        --orange-300: #ff9a73;
        --orange-100: #fff0eb;
        --orange-glow: rgba(255, 83, 33, 0.25);
        
        /* Neutrals for light theme */
        --slate-900: #0F172A;
        --slate-800: #1E293B;
        --slate-700: #334155;
        --slate-600: #475569;
        --slate-500: #64748B;
        --slate-400: #94A3B8;
        --slate-300: #CBD5E1;
        --slate-200: #E2E8F0;
        --slate-100: #F1F5F9;
        --slate-50: #F8FAFC;
        
        --white: #FFFFFF;
        --cream: #FFFBF7;
        --cream-warm: #FEF7F0;
        
        /* Typography */
        --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
        --font-body: 'Outfit', system-ui, sans-serif;
        
        /* Spacing */
        --space-xs: 0.5rem;
        --space-sm: 1rem;
        --space-md: 1.5rem;
        --space-lg: 2.5rem;
        --space-xl: 4rem;
        --space-2xl: 6rem;
        --space-3xl: 10rem;
        
        /* Layout */
        --container-max: 1200px;
        --container-tight: 900px;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: var(--font-body);
        color: var(--slate-700);
        line-height: 1.7;
        background: var(--white);
        overflow-x: hidden;
    }
    
    /* Subtle texture overlay */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        opacity: 0.015;
        pointer-events: none;
        z-index: 9999;
    }
    
    /* Page reveal animation */
    .reveal, .reveal-left, .reveal-right {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), 
                    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    
    .reveal-left {
        transform: translateX(-60px);
    }
    
    .reveal-right {
        transform: translateX(60px);
    }
    
    .reveal.visible, .reveal-left.visible, .reveal-right.visible {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
    
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }
    .delay-6 { transition-delay: 0.6s; }
    .delay-7 { transition-delay: 0.7s; }
    .delay-8 { transition-delay: 0.8s; }
    
    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: var(--space-md) 0;
        transition: all 0.3s ease;
    }
    
    header.scrolled {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--slate-200);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .header-inner {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 var(--space-lg);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: inherit;
    }
    
    .logo img {
        height: 40px;
        width: auto;
    }
    
    .header-cta-group {
        display: flex;
        align-items: center;
        gap: var(--space-md);
    }
    
    .header-cta {
        padding: 12px 28px;
        background: var(--orange-500);
        color: white;
        border-radius: 100px;
        font-family: var(--font-body);
        font-size: 0.9375rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 2px 8px var(--orange-glow);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .header-cta:hover {
        background: var(--orange-600);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px var(--orange-glow);
    }
    
    .header-link {
        padding: 12px 0;
        background: transparent;
        color: var(--orange-500);
        border: none;
        border-radius: 0;
        font-family: var(--font-body);
        font-size: 0.9375rem;
        text-decoration: none;
        transition: all 0.2s ease;
        cursor: pointer;
    }
    
    .header-link:hover {
        color: var(--orange-600);
        text-decoration: underline;
    }
    
    .header-login {
        padding: 12px 0;
        background: transparent;
        color: var(--orange-500);
        border: none;
        border-radius: 0;
        font-family: var(--font-body);
        font-size: 0.9375rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .header-login:hover {
        color: var(--orange-600);
        text-decoration: underline;
    }
    
    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        padding: var(--space-3xl) 0 var(--space-xl);
        overflow: hidden;
        background: linear-gradient(180deg, var(--cream-warm) 0%, var(--white) 100%);
    }
    
    /* Hero background pattern */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: 
            radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 83, 33, 0.06) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 154, 90, 0.04) 0%, transparent 50%);
        pointer-events: none;
    }
    
    /* Subtle grid */
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: 
            linear-gradient(var(--slate-200) 1px, transparent 1px),
            linear-gradient(90deg, var(--slate-200) 1px, transparent 1px);
        background-size: 80px 80px;
        opacity: 0.3;
        mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, black, transparent);
        pointer-events: none;
    }
    
    .hero-container {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 var(--space-lg);
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: var(--space-xl);
        align-items: center;
        position: relative;
        z-index: 1;
    }
    
    .hero-content {
        padding-right: var(--space-lg);
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: var(--orange-100);
        border: 1px solid rgba(255, 83, 33, 0.2);
        border-radius: 100px;
        font-size: 0.8125rem;
        font-weight: 500;
        color: var(--orange-600);
        margin-bottom: var(--space-md);
    }
    
    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--orange-500);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.4; }
    }
    
    .hero h1 {
        font-family: var(--font-display);
        font-size: clamp(2.75rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1.1;
        color: var(--slate-900);
        letter-spacing: -0.03em;
        margin-bottom: var(--space-md);
    }
    
    .hero h1 .highlight {
        color: var(--orange-500);
    }
    
    .hero-description {
        font-size: 1.125rem;
        color: var(--slate-600);
        line-height: 1.8;
        margin-bottom: var(--space-lg);
        max-width: 480px;
    }
    
    .hero-description strong {
        color: var(--orange-600);
        font-weight: 500;
    }
    
    .hero-cta-group {
        display: flex;
        align-items: center;
        gap: var(--space-md);
        flex-wrap: wrap;
    }
    
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 18px 36px;
        background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
        color: white;
        border-radius: 100px;
        font-family: var(--font-body);
        font-size: 1.0625rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 6px 20px var(--orange-glow), 0 2px 8px rgba(0, 0, 0, 0.1);
        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 ease;
    }
    
    .btn-primary:hover::before {
        left: 100%;
    }
    
    .btn-primary:hover {
        background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 100%);
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 16px 40px var(--orange-glow), 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .btn-primary:active {
        transform: translateY(-2px) scale(1);
    }
    
    .btn-primary svg {
        width: 20px;
        height: 20px;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .btn-primary:hover svg {
        transform: translateX(6px);
    }
    
    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 16px 24px;
        background: transparent;
        color: var(--slate-700);
        border: 1px solid var(--slate-300);
        border-radius: 12px;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.25s ease;
    }
    
    .btn-secondary:hover {
        border-color: var(--slate-400);
        background: var(--slate-50);
    }
    
    /* Hero Demo Wrapper */
    .hero-demo {
        position: relative;
    }
    
    /* Chat Simulation - Light Theme */
    .chat-simulation-wrapper {
        position: relative;
        width: 440px;
        height: 560px;
        margin: 0 auto;
        overflow: visible;
        filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.1));
    }
    
    .chat-simulation-wrapper::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: var(--slate-300);
        border-radius: 20px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .chat-simulation-wrapper.active::before {
        opacity: 1;
    }
    
    .chat-simulation {
        background: var(--white);
        border-radius: 18px;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(0, 0, 0, 0.04);
        overflow: hidden;
        border: 1px solid var(--slate-200);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: opacity 0.3s ease-in-out;
        opacity: 0;
        pointer-events: none;
        position: relative;
    }
    
    .chat-simulation-fab {
        position: absolute;
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: var(--orange-500);
        border: none;
        box-shadow: 0 4px 20px var(--orange-glow);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 10;
        animation: fabPulse 2s ease-in-out infinite;
    }
    
    @keyframes fabPulse {
        0%, 100% {
            box-shadow: 0 4px 20px var(--orange-glow), 0 0 0 0 rgba(255, 83, 33, 0.4);
        }
        50% {
            box-shadow: 0 4px 20px var(--orange-glow), 0 0 0 10px rgba(255, 83, 33, 0);
        }
    }
    
    .chat-simulation-fab:hover {
        transform: scale(1.1);
    }
    
    .chat-simulation-fab.clicking {
        animation: fabClick 0.3s ease-out;
    }
    
    @keyframes fabClick {
        0% { transform: scale(1); }
        50% { transform: scale(0.9); }
        100% { transform: scale(1); }
    }
    
    .chat-simulation-fab svg {
        width: 26px;
        height: 26px;
    }
    
    .chat-simulation-fab.hidden {
        display: none;
    }
    
    .chat-simulation-header {
        background: var(--slate-50);
        padding: 16px 20px;
        border-bottom: 1px solid var(--slate-200);
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }
    
    .chat-simulation-avatar {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: var(--orange-500);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 15px;
    }
    
    .chat-simulation-header-info h3 {
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 600;
        color: var(--slate-900);
        margin: 0;
    }
    
    .chat-simulation-header-info p {
        font-size: 12px;
        color: var(--slate-500);
        margin: 0;
    }
    
    .chat-simulation-messages {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
        background: var(--slate-50);
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-height: 0;
    }
    
    .chat-message {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        animation: fadeInUp 0.3s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .chat-message.user {
        flex-direction: row-reverse;
    }
    
    .chat-message-avatar {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .chat-message.company .chat-message-avatar {
        background: var(--orange-500);
        color: white;
    }
    
    .chat-message.user .chat-message-avatar {
        background: var(--slate-600);
        color: white;
    }
    
    .chat-message-bubble {
        max-width: 75%;
        padding: 12px 16px;
        border-radius: 14px;
        font-size: 13px;
        line-height: 1.5;
    }
    
    .chat-message.company .chat-message-bubble {
        background: var(--white);
        color: var(--slate-700);
        border: 1px solid var(--slate-200);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    }
    
    .chat-message.user .chat-message-bubble {
        background: var(--orange-500);
        color: white;
    }
    
    .chat-typing-dots {
        display: flex;
        gap: 4px;
        padding: 12px 16px;
        background: var(--white);
        border-radius: 14px;
        border: 1px solid var(--slate-200);
    }
    
    .chat-typing-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--slate-400);
        animation: typingDot 1.4s infinite;
    }
    
    .chat-typing-dot:nth-child(2) { animation-delay: 0.2s; }
    .chat-typing-dot:nth-child(3) { animation-delay: 0.4s; }
    
    @keyframes typingDot {
        0%, 60%, 100% {
            opacity: 0.3;
            transform: scale(0.8);
        }
        30% {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .chat-option-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 8px;
    }
    
    .chat-option-button {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        background: var(--white);
        border: 1px solid var(--slate-200);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.2s;
        text-align: left;
        position: relative;
        font-size: 12px;
        font-family: var(--font-body);
        color: var(--slate-700);
    }
    
    .chat-option-button-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--orange-500);
    }
    
    .chat-option-button-icon svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
    }
    
    .chat-option-button-label {
        font-weight: 500;
    }
    
    .chat-option-button:hover {
        border-color: var(--orange-500);
        background: var(--orange-100);
    }
    
    .chat-option-button.selected {
        border-color: var(--orange-500);
        background: var(--orange-100);
    }
    
    .chat-option-button.clicking {
        animation: buttonClick 0.3s ease-out;
    }
    
    @keyframes buttonClick {
        0% { transform: scale(1); }
        50% { transform: scale(0.95); }
        100% { transform: scale(1); }
    }
    
    .chat-simulation-input {
        padding: 16px 20px;
        border-top: 1px solid var(--slate-200);
        background: var(--white);
        display: flex;
        gap: 12px;
        flex-shrink: 0;
    }
    
    .chat-simulation-input input {
        flex: 1;
        padding: 10px 16px;
        border: 1px solid var(--slate-300);
        border-radius: 10px;
        font-size: 16px; /* Minimum 16px to prevent iOS auto-zoom on focus */
        font-family: var(--font-body);
        outline: none;
        background: var(--white);
        color: var(--slate-700);
    }
    
    .chat-simulation-input input:focus {
        border-color: var(--orange-500);
    }
    
    .chat-simulation-input input::placeholder {
        color: var(--slate-400);
    }
    
    .chat-simulation-input button {
        padding: 10px 20px;
        background: var(--orange-500);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 13px;
        font-family: var(--font-body);
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
    }
    
    .chat-simulation-input button:hover {
        background: var(--orange-600);
    }
    
    .chat-simulation-input button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .chat-integration-view {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        animation: integrationFadeIn 0.6s ease-out;
        z-index: 5;
        overflow: hidden;
        border-radius: 18px;
    }
    
    @keyframes integrationFadeIn {
        0% {
            opacity: 0;
            transform: scale(0.95);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .chat-integration-logo {
        width: 72px;
        height: 72px;
        position: relative;
        z-index: 2;
    }
    
    .chat-integration-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .chat-integration-logo img.fade-in {
        animation: logoBounce 0.6s ease-out;
    }
    
    .chat-integration-logo img.fade-out {
        animation: logoFadeOut 0.4s ease-in forwards;
    }
    
    @keyframes logoBounce {
        0% {
            opacity: 0;
            transform: scale(0) rotate(-180deg);
        }
        50% { transform: scale(1.2) rotate(10deg); }
        100% {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
    }
    
    @keyframes logoFadeOut {
        0% {
            opacity: 1;
            transform: scale(1);
        }
        100% {
            opacity: 0;
            transform: scale(0.8);
        }
    }
    
    .chat-integration-content {
        text-align: center;
        max-width: 280px;
        position: relative;
        z-index: 2;
    }
    
    .chat-integration-title {
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 600;
        color: var(--slate-900);
        margin-bottom: 10px;
    }
    
    .chat-integration-text {
        font-size: 13px;
        color: var(--slate-500);
        line-height: 1.6;
    }
    
    .chat-integration-badge {
        display: inline-block;
        margin-top: 16px;
        padding: 6px 14px;
        background: var(--orange-100);
        border: 1px solid rgba(255, 83, 33, 0.2);
        border-radius: 100px;
        font-size: 11px;
        color: var(--orange-600);
        font-weight: 500;
    }
    
    /* Value Props Strip */
    .value-strip {
        padding: var(--space-lg) 0;
        background: var(--white);
        border-top: 1px solid var(--slate-200);
        border-bottom: 1px solid var(--slate-200);
    }
    
    .value-strip-inner {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 var(--space-lg);
        display: flex;
        justify-content: space-between;
        gap: var(--space-lg);
    }
    
    .value-item {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    
    .value-icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--orange-100);
        border-radius: 12px;
        color: var(--orange-500);
    }
    
    .value-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .value-text {
        font-size: 0.9375rem;
        font-weight: 500;
        color: var(--slate-700);
    }
    
    /* Problem Section */
    .problem-section {
        padding: var(--space-3xl) 0;
        position: relative;
        background: var(--slate-50);
    }
    
    .problem-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: 120px;
        background: linear-gradient(to bottom, var(--slate-300), transparent);
    }
    
    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto var(--space-2xl);
        padding: 0 var(--space-lg);
    }
    
    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        background: var(--orange-100);
        border: 1px solid rgba(255, 83, 33, 0.15);
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--orange-600);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: var(--space-md);
    }
    
    .section-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        line-height: 1.15;
        color: var(--slate-900);
        letter-spacing: -0.02em;
        margin-bottom: var(--space-md);
    }
    
    .section-subtitle {
        font-size: 1.125rem;
        color: var(--slate-600);
        line-height: 1.7;
    }
    
    .comparison-grid {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 var(--space-lg);
        display: grid;
        grid-template-columns: 1fr 80px 1fr;
        gap: var(--space-lg);
        align-items: stretch;
    }
    
    .comparison-card {
        background: var(--white);
        border: 1px solid var(--slate-200);
        border-radius: 20px;
        padding: var(--space-xl);
        position: relative;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }
    
    .comparison-card.old {
        opacity: 0.85;
    }
    
    .comparison-card.old::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--slate-400);
    }
    
    .comparison-card.new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
    }
    
    .comparison-label {
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--slate-400);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: var(--space-md);
    }
    
    .comparison-card.new .comparison-label {
        color: var(--orange-500);
    }
    
    .comparison-title {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--slate-900);
        margin-bottom: var(--space-sm);
    }
    
    .comparison-desc {
        font-size: 0.9375rem;
        color: var(--slate-500);
        line-height: 1.6;
        margin-bottom: var(--space-lg);
    }
    
    .comparison-list {
        list-style: none;
    }
    
    .comparison-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        font-size: 0.9375rem;
        color: var(--slate-600);
        border-top: 1px solid var(--slate-100);
    }
    
    .comparison-list li:first-child {
        border-top: none;
    }
    
    .comparison-card.old .comparison-list li::before {
        content: '✕';
        color: var(--slate-400);
        font-weight: 600;
        font-size: 0.875rem;
    }
    
    .comparison-card.new .comparison-list li::before {
        content: '✓';
        color: var(--orange-500);
        font-weight: 600;
        font-size: 0.875rem;
    }
    
    .comparison-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--orange-500);
    }
    
    .comparison-arrow svg {
        width: 32px;
        height: 32px;
    }
    
    /* How it Works */
    .how-section {
        padding: var(--space-3xl) 0;
        background: var(--white);
        position: relative;
    }
    
    .steps-container {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 var(--space-lg);
        position: relative;
        z-index: 1;
    }
    
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    
    .step-card {
        background: var(--slate-50);
        border: 1px solid var(--slate-200);
        border-radius: 20px;
        padding: var(--space-xl);
        position: relative;
        transition: all 0.3s ease;
    }
    
    .step-card:hover {
        border-color: var(--orange-300);
        background: var(--white);
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(255, 83, 33, 0.1);
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--orange-500);
        color: white;
        border-radius: 14px;
        font-family: var(--font-display);
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: var(--space-md);
    }
    
    .step-title {
        font-family: var(--font-display);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--slate-900);
        margin-bottom: var(--space-xs);
    }
    
    .step-desc {
        font-size: 0.9375rem;
        color: var(--slate-500);
        line-height: 1.6;
    }
    
    .code-snippet {
        margin-top: var(--space-md);
        padding: 16px;
        background: var(--slate-800);
        border-radius: 12px;
        font-family: 'SF Mono', 'Fira Code', monospace;
        font-size: 0.8125rem;
        color: var(--slate-200);
        overflow-x: auto;
    }
    
    .code-snippet .tag {
        color: var(--orange-400);
    }
    
    .code-snippet .attr {
        color: var(--slate-400);
    }
    
    .code-snippet .string {
        color: #7dd3fc;
    }
    
    /* Integrations Section */
    .integrations-section {
        padding: var(--space-3xl) 0;
        background: var(--slate-50);
        position: relative;
    }
    
    .integrations-split {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 var(--space-lg);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .integration-category {
        background: var(--white);
        border: 1px solid var(--slate-200);
        border-radius: 24px;
        padding: var(--space-xl);
        position: relative;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }
    
    .integration-category::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
    }
    
    .integration-category.messaging::before {
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    }
    
    .integration-category.ticketing::before {
        background: linear-gradient(90deg, var(--orange-500), #f59e0b);
    }
    
    .integration-category-header {
        margin-bottom: var(--space-lg);
    }
    
    .integration-category-title {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--slate-900);
        margin-bottom: var(--space-xs);
    }
    
    .integration-category-desc {
        font-size: 0.9375rem;
        color: var(--slate-500);
        line-height: 1.6;
    }
    
    .integration-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .integration-logo-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px 16px;
        background: var(--slate-50);
        border: 1px solid var(--slate-200);
        border-radius: 14px;
        transition: all 0.25s ease;
    }
    
    .integration-logo-item:hover {
        border-color: var(--slate-300);
        background: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }
    
    .integration-logo-item img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }
    
    .integration-logo-item i {
        font-size: 28px;
    }
    
    .integration-logo-item span {
        font-size: 0.8125rem;
        font-weight: 500;
        color: var(--slate-600);
    }
    
    /* CTA Section */
    .cta-section {
        padding: var(--space-3xl) 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(180deg, var(--white) 0%, var(--cream-warm) 100%);
    }
    
    .cta-container {
        max-width: var(--container-tight);
        margin: 0 auto;
        padding: 0 var(--space-lg);
        text-align: center;
        position: relative;
        z-index: 1;
    }
    
    .cta-content {
        background: var(--white);
        border: 1px solid var(--slate-200);
        border-radius: 32px;
        padding: var(--space-2xl) var(--space-xl);
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }
    
    .cta-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
    }
    
    .cta-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 800;
        color: var(--slate-900);
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin-bottom: var(--space-sm);
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
        color: var(--slate-500);
        margin-bottom: var(--space-lg);
    }
    
    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 20px 44px;
        background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
        color: white;
        border-radius: 14px;
        font-family: var(--font-body);
        font-size: 1.125rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 6px 24px var(--orange-glow), 0 2px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .cta-button::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 ease;
    }
    
    .cta-button:hover::before {
        left: 100%;
    }
    
    .cta-button:hover {
        background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 100%);
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 16px 48px var(--orange-glow), 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .cta-button:active {
        transform: translateY(-2px) scale(1);
    }
    
    .cta-button svg {
        width: 22px;
        height: 22px;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .cta-button:hover svg {
        transform: translateX(6px);
    }
    
    .cta-note {
        margin-top: var(--space-md);
        font-size: 0.875rem;
        color: var(--slate-400);
    }
    
    /* Footer */
    footer {
        background: var(--slate-900);
        border-top: 1px solid var(--slate-800);
        padding: var(--space-xl) 0;
    }
    
    .footer-inner {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 var(--space-lg);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .footer-logo img {
        height: 32px;
        width: auto;
    }
    
    .footer-links {
        display: flex;
        gap: var(--space-lg);
    }
    
    .footer-links a {
        font-size: 0.875rem;
        color: var(--slate-400);
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
    .footer-links a:hover {
        color: var(--slate-200);
    }
    
    .footer-copy {
        font-size: 0.8125rem;
        color: var(--slate-500);
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            gap: var(--space-2xl);
            text-align: center;
        }
        
        .hero-content {
            padding-right: 0;
        }
        
        .hero-description {
            max-width: 600px;
            margin: 0 auto var(--space-lg);
        }
        
        .hero-cta-group {
            justify-content: center;
        }
        
        .value-strip-inner {
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .comparison-grid {
            grid-template-columns: 1fr;
            gap: var(--space-md);
        }
        
        .comparison-arrow {
            transform: rotate(90deg);
            padding: var(--space-sm) 0;
        }
        
        .steps-grid {
            grid-template-columns: 1fr;
        }
        
        .integrations-split {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        :root {
            --space-lg: 1.5rem;
            --space-xl: 2.5rem;
            --space-2xl: 4rem;
            --space-3xl: 6rem;
        }
        
        .header-inner {
            padding: 0 var(--space-md);
        }
        
        .header-cta-group {
            gap: var(--space-md);
        }
        
        .header-link,
        .header-login {
            padding: 10px 0;
            font-size: 0.875rem;
        }
        
        .hero {
            min-height: auto;
            padding: calc(var(--space-3xl) + 40px) 0 var(--space-xl);
        }
        
        .chat-simulation-wrapper {
            width: 100%;
            max-width: 380px;
            height: 500px;
        }
        
        .value-item {
            flex: 1 1 calc(50% - var(--space-md));
            min-width: 200px;
        }
        
        .integration-logos {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .footer-inner {
            flex-direction: column;
            gap: var(--space-md);
            text-align: center;
        }
        
        .footer-links {
            flex-wrap: wrap;
            justify-content: center;
        }
    }
    
    @media (max-width: 480px) {
        .header-cta-group {
            flex-direction: row;
            gap: var(--space-sm);
        }
        
        .header-link,
        .header-login {
            padding: 8px 0;
            font-size: 0.8125rem;
        }
        
        .hero-cta-group {
            flex-direction: column;
            width: 100%;
        }
        
        .btn-primary {
            width: 100%;
            justify-content: center;
        }
        
        .value-item {
            flex: 1 1 100%;
        }
    }
    
    /* Onboarding Chatbot Modal */
    .onboard-modal {
        position: fixed;
        inset: 0;
        z-index: 10001; /* Higher than FAB (10000) to ensure it appears on top */
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        animation: fadeIn 0.3s ease;
        overflow: hidden; /* Prevent scrolling on modal background */
        touch-action: none; /* Prevent touch gestures on modal background */
    }
    
    .onboard-modal.active {
        display: flex;
    }
    
    /* Prevent body scroll when modal is open */
    body.modal-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
        touch-action: none; /* Prevent touch scrolling on body */
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .onboard-chat-card {
        width: 90%;
        max-width: 500px;
        max-height: 85vh;
        background: var(--white);
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        touch-action: pan-y; /* Allow vertical scrolling within card */
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .onboard-chat-header {
        padding: 20px 24px;
        border-bottom: 1px solid var(--slate-200);
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--slate-50);
        flex-shrink: 0;
        position: sticky;
        top: 0;
        z-index: 10; /* Keep header above scrolling content */
    }
    
    .onboard-chat-avatar {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        color: white;
        flex-shrink: 0;
        background: var(--onboard-primary, var(--orange-500));
        overflow: hidden;
        border: 2px solid var(--slate-200);
    }
    
    .onboard-chat-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 8px; /* Match message avatars for consistency */
        display: block; /* Ensure no white space around image */
    }
    
    /* Hide background color and border when image is present */
    .onboard-chat-avatar.has-image {
        background: transparent;
        border: none;
    }
    
    .onboard-chat-header-info h3 {
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 600;
        color: var(--slate-900);
        margin: 0;
    }
    
    .onboard-chat-header-info p {
        font-size: 12px;
        color: var(--slate-500);
        margin: 0;
    }
    
    .onboard-chat-close {
        margin-left: auto;
        background: none;
        border: none;
        color: var(--slate-400);
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .onboard-chat-close:hover {
        background: var(--slate-100);
        color: var(--slate-700);
    }
    
    .onboard-chat-messages {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 24px;
        background: var(--slate-50);
        display: flex;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        overscroll-behavior: contain; /* Prevent scroll chaining */
        flex-direction: column;
        gap: 16px;
        min-height: 0;
    }
    
    .onboard-message {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        animation: messageSlideIn 0.3s ease-out;
    }
    
    @keyframes messageSlideIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .onboard-message.user {
        flex-direction: row-reverse;
    }
    
    .onboard-message-avatar {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 14px;
        flex-shrink: 0;
        color: white;
    }
    
    .onboard-message.bot .onboard-message-avatar {
        background: var(--onboard-primary, var(--orange-500));
    }
    
    .onboard-message.user .onboard-message-avatar {
        background: var(--slate-600);
    }
    
    .onboard-message-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 8px;
        display: block; /* Ensure no white space around image */
    }
    
    /* Hide background color when image is present (same as top avatar) */
    .onboard-message-avatar.has-image {
        background: transparent;
    }
    
    .onboard-message-bubble {
        max-width: 75%;
        padding: 14px 18px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .onboard-message.bot .onboard-message-bubble {
        background: var(--white);
        color: var(--slate-700);
        border: 1px solid var(--slate-200);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .onboard-message.user .onboard-message-bubble {
        background: var(--onboard-primary, var(--orange-500));
        color: white;
    }
    
    .onboard-typing {
        display: flex;
        gap: 6px;
        padding: 14px 18px;
        background: var(--white);
        border-radius: 16px;
        border: 1px solid var(--slate-200);
        width: fit-content;
    }
    
    .onboard-typing-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--slate-400);
        animation: typingDot 1.4s infinite;
    }
    
    .onboard-typing-dot:nth-child(2) { animation-delay: 0.2s; }
    .onboard-typing-dot:nth-child(3) { animation-delay: 0.4s; }
    
    .onboard-options {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
    }
    
    .onboard-option-button {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        background: var(--white);
        border: 1.5px solid var(--slate-200);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s;
        text-align: left;
        font-size: 14px;
        font-family: var(--font-body);
        color: var(--slate-700);
        font-weight: 500;
    }
    
    .onboard-option-button:hover {
        border-color: var(--onboard-primary, var(--orange-500));
        background: var(--orange-100);
        transform: translateX(4px);
    }
    
    .onboard-option-button.selected {
        border-color: var(--onboard-primary, var(--orange-500));
        background: var(--orange-100);
    }
    
    .onboard-option-checkbox {
        width: 20px;
        height: 20px;
        border: 2px solid var(--slate-300);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.2s;
    }
    
    .onboard-option-button.selected .onboard-option-checkbox {
        background: var(--onboard-primary, var(--orange-500));
        border-color: var(--onboard-primary, var(--orange-500));
    }
    
    .onboard-option-button.selected .onboard-option-checkbox::after {
        content: '✓';
        color: white;
        font-size: 12px;
        font-weight: 700;
    }
    
    .onboard-input-group {
        margin-top: 12px;
    }
    
    /* Prevent iOS auto-zoom on input focus - all inputs must be at least 16px */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="url"],
    input[type="search"],
    textarea,
    select {
        font-size: 16px !important; /* Minimum 16px to prevent iOS auto-zoom on focus */
    }
    
    .onboard-input {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid var(--slate-300);
        border-radius: 12px;
        font-size: 16px; /* Minimum 16px to prevent iOS auto-zoom on focus */
        font-family: var(--font-body);
        outline: none;
        background: var(--white);
        color: var(--slate-700);
        transition: all 0.2s;
    }
    
    .onboard-input:focus {
        border-color: var(--onboard-primary, var(--orange-500));
        box-shadow: 0 0 0 3px rgba(255, 83, 33, 0.1);
    }
    
    .onboard-color-picker {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 12px;
    }
    
    .onboard-color-input {
        width: 60px;
        height: 40px;
        border: 2px solid var(--slate-300);
        border-radius: 10px;
        cursor: pointer;
        padding: 2px;
        background: var(--white);
    }
    
    .onboard-color-input input {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }
    
    .onboard-chat-input {
        padding: 20px 24px;
        border-top: 1px solid var(--slate-200);
        background: var(--white);
        display: flex;
        gap: 12px;
        flex-shrink: 0;
    }
    
    .onboard-chat-input input {
        flex: 1;
        padding: 12px 16px;
        border: 1.5px solid var(--slate-300);
        border-radius: 12px;
        font-size: 16px; /* Minimum 16px to prevent iOS auto-zoom on focus */
        font-family: var(--font-body);
        outline: none;
        background: var(--white);
        color: var(--slate-700);
    }
    
    .onboard-chat-input input:focus {
        border-color: var(--onboard-primary, var(--orange-500));
        box-shadow: 0 0 0 3px rgba(255, 83, 33, 0.1);
    }
    
    .onboard-chat-input button {
        padding: 12px 24px;
        background: var(--onboard-primary, var(--orange-500));
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 14px;
        font-family: var(--font-body);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .onboard-chat-input button:hover:not(:disabled) {
        background: var(--onboard-primary, var(--orange-500));
        opacity: 0.9;
        transform: translateY(-1px);
    }
    
    .onboard-chat-input button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    @media (max-width: 600px) {
        .onboard-chat-card {
            width: 100%;
            max-width: 100%;
            max-height: 100vh;
            border-radius: 0;
        }
    }

/* Privacy and Terms Page Specific Styles */
body.page-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
    background: #fafafa;
}

body.page-content header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

body.page-content .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

body.page-content .content-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 60px;
}

body.page-content .content-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

body.page-content .content-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

body.page-content .content-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

body.page-content .content-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

body.page-content .content-section li {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

body.page-content .last-updated {
    color: #999;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 32px;
}

body.page-content footer {
    background: #1a1a1a;
    color: #999;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 80px;
}

body.page-content .section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

body.page-content .footer-logo {
    margin-bottom: 20px;
}

body.page-content .footer-links {
    margin-bottom: 20px;
}

body.page-content .footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 16px;
    transition: color 0.2s;
}

body.page-content .footer-links a:hover {
    color: #fff;
}

@media (max-width: 640px) {
    body.page-content .content-section {
        padding: 40px 24px;
        margin: 40px 16px;
    }
    
    body.page-content .content-section h1 {
        font-size: 28px;
    }
    
    body.page-content .content-section h2 {
        font-size: 20px;
    }
}

:root {
  --cc-bg: rgba(255, 255, 255, 0.95);
  --cc-fg: #1E293B;
  --cc-muted: #64748B;
  --cc-border: rgba(0, 0, 0, 0.08);
}
  


/* Privacy and Terms Page Specific Styles */
body.page-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
    background: #fafafa;
}

body.page-content header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

body.page-content .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

body.page-content .content-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 60px;
}

body.page-content .content-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

body.page-content .content-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

body.page-content .content-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

body.page-content .content-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

body.page-content .content-section li {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

body.page-content .last-updated {
    color: #999;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 32px;
}

body.page-content footer {
    background: #1a1a1a;
    color: #999;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 80px;
}

body.page-content .section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

body.page-content .footer-logo {
    margin-bottom: 20px;
}

body.page-content .footer-links {
    margin-bottom: 20px;
}

body.page-content .footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 16px;
    transition: color 0.2s;
}

body.page-content .footer-links a:hover {
    color: #fff;
}

@media (max-width: 640px) {
    body.page-content .content-section {
        padding: 40px 24px;
        margin: 40px 16px;
    }
    
    body.page-content .content-section h1 {
        font-size: 28px;
    }
    
    body.page-content .content-section h2 {
        font-size: 20px;
    }
}
