/* ============================================
   Chegatta — Product Website Styles (Mobile-First)
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --primary-lighter: #818cf8;
    --primary-bg: #eef2ff;
    --accent: #06b6d4;
    --accent-dark: #0891b2;

    /* Status Colors */
    --green: #10b981;
    --green-bg: #d1fae5;
    --orange: #f59e0b;
    --orange-bg: #fef3c7;
    --red: #ef4444;
    --red-bg: #fee2e2;
    --blue: #3b82f6;
    --blue-bg: #dbeafe;
    --purple: #8b5cf6;
    --purple-bg: #ede9fe;
    --teal: #14b8a6;
    --teal-bg: #ccfbf1;

    /* Neutrals */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border: #e2e8f0;
    --border-dark: #cbd5e1;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
    --gradient-hero: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
    --gradient-cta: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 64px 0;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 30px -5px rgba(79, 70, 229, 0.3);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Section */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--bg-secondary);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 40px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    touch-action: manipulation;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ============================================
   Navigation (Mobile-First: Hamburger Menu)
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Mobile: Hidden nav links, show as dropdown */
.nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 12px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: var(--transition);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    display: flex;
    align-items: stretch;
    list-style: none;
}

.nav-links.active {
    transform: translateY(0);
}

.nav-links li {
    width: 100%;
}

.nav-links a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-bg);
}

.nav-cta-mobile {
    display: block;
    margin-top: 8px;
}

.nav-cta-mobile .btn {
    width: 100%;
}

/* Mobile: Hide desktop nav actions */
.nav-actions {
    display: none;
}

/* Mobile: Show hamburger toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero Section (Mobile-First: Single Column)
   ============================================ */
.hero {
    position: relative;
    padding: 90px 0 60px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Mobile: Single column, visual first */
.hero .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0; }
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
}

/* Mobile: Stack buttons vertically */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-actions .btn {
    width: 100%;
}

/* Hero Trial Note */
.hero-trial-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 32px;
}

.hero-trial-note .check-icon {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

/* Mobile: Stats in a row, smaller */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Hero Visual - Dashboard Mockup */
.hero-visual {
    position: relative;
    max-width: 100%;
}

/* Mobile: No 3D transform, simpler shadow */
.dashboard-mockup {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-dark);
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }

.mockup-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.mockup-body {
    padding: 16px;
}

/* Mobile: Stats in a row but compact */
.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.mockup-stat-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.mockup-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-stat-icon svg {
    width: 16px;
    height: 16px;
}

.mockup-stat-icon.present {
    background: var(--green-bg);
    color: var(--green);
}

.mockup-stat-icon.absent {
    background: var(--red-bg);
    color: var(--red);
}

.mockup-stat-icon.late {
    background: var(--orange-bg);
    color: var(--orange);
}

.mockup-stat-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.mockup-stat-label {
    font-size: 10px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.mockup-chart {
    margin-bottom: 16px;
}

.mockup-chart-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.mockup-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}

.mockup-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    transition: var(--transition);
}

.mockup-attention {
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.mockup-attention-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.mockup-attention-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-secondary);
    padding: 3px 0;
}

.attention-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.attention-dot.high { background: var(--red); }
.attention-dot.medium { background: var(--orange); }

/* Mobile: Hide floating cards */
.floating-card {
    display: none;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    padding: 32px 0;
    background: var(--bg-secondary);
}

.trust-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-logo {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-tertiary);
    opacity: 0.6;
    transition: var(--transition);
}

.trust-logo:hover {
    opacity: 1;
    color: var(--text-secondary);
}

/* ============================================
   Features Section (Mobile-First: 1 Column)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card {
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-lg);
}

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

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

.icon-blue { background: var(--blue-bg); color: var(--blue); }
.icon-green { background: var(--green-bg); color: var(--green); }
.icon-purple { background: var(--purple-bg); color: var(--purple); }
.icon-orange { background: var(--orange-bg); color: var(--orange); }
.icon-red { background: var(--red-bg); color: var(--red); }
.icon-teal { background: var(--teal-bg); color: var(--teal); }

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   How It Works (Mobile-First: Vertical Steps)
   ============================================ */
.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
}

.step {
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

/* Mobile: Vertical connector */
.step-connector {
    width: 2px;
    height: 32px;
    background: var(--border);
    position: relative;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.3;
}

/* ============================================
   Analytics Section (Mobile-First: Stacked)
   ============================================ */
.analytics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.analytics-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.analytics-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.analytics-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-bg);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.analytics-check svg {
    width: 16px;
    height: 16px;
}

.analytics-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.analytics-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Insights Panel */
.insights-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.insights-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.insights-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.insights-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--green-bg);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.insights-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.insights-body {
    padding: 20px;
}

.insight-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.insight-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    width: 80px;
    flex-shrink: 0;
}

.insight-bar-container {
    flex: 1;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.insight-bar {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s ease-out;
}

.insight-bar-green { background: var(--green); }
.insight-bar-orange { background: var(--orange); }
.insight-bar-red { background: var(--red); }
.insight-bar-blue { background: var(--blue); }

.insight-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    width: 36px;
    text-align: right;
}

.insight-summary {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    margin-top: 8px;
}

.insight-summary-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-summary-icon svg {
    width: 16px;
    height: 16px;
}

.insight-summary p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.insight-summary strong {
    color: var(--primary);
}

/* ============================================
   Roles Section (Mobile-First: 1 Column)
   ============================================ */
.roles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.role-card {
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.role-card:hover {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-lg);
}

.role-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.role-icon svg {
    width: 24px;
    height: 24px;
}

.role-admin {
    background: var(--purple-bg);
    color: var(--purple);
}

.role-company {
    background: var(--blue-bg);
    color: var(--blue);
}

.role-employee {
    background: var(--teal-bg);
    color: var(--teal);
}

.role-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.role-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.role-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.role-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.role-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* ============================================
   Pricing Section (Mobile-First: 1 Column)
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card {
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-popular {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: var(--shadow-primary);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.pricing-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 8px;
}

/* Pricing Trial Badge */
.pricing-trial-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--green-bg);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-align: center;
}

.pricing-trial-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

/* ============================================
   Testimonials (Mobile-First: 1 Column)
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.testimonial-card {
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.author-title {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-tertiary);
    transition: var(--transition);
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 20px 16px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Trial Section (Mobile-First)
   ============================================ */
.trial-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.trial-box {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 20px;
    position: relative;
    overflow: hidden;
}

.trial-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trial-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.trial-badge svg {
    width: 16px;
    height: 16px;
}

.trial-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.trial-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Mobile: 1 column benefits */
.trial-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.trial-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.trial-benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--green-bg);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trial-benefit-icon svg {
    width: 18px;
    height: 18px;
}

.trial-benefit h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.trial-benefit p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Mobile: Stacked form */
.trial-form {
    max-width: 100%;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.trial-form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.trial-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    background: var(--bg-primary);
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.trial-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

select.trial-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.trial-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-tertiary);
    position: relative;
    z-index: 1;
}

.trial-note .check-icon {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 56px 0;
    background: var(--bg-secondary);
}

.cta-box {
    background: var(--gradient-cta);
    border-radius: var(--radius-xl);
    padding: 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* CTA Button */
.btn-cta {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.cta-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Footer (Mobile-First: 1 Column)
   ============================================ */
.footer {
    background: var(--text-primary);
    color: var(--text-tertiary);
    padding: 48px 0 24px;
}

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

.footer-brand .nav-logo {
    color: #fff;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 100%;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* ============================================
   Mobile Apps Coming Soon Section
   ============================================ */
.apps-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.apps-box {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 20px;
    position: relative;
    overflow: hidden;
}

.apps-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.apps-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--orange-bg);
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.apps-badge svg {
    width: 16px;
    height: 16px;
}

.apps-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.apps-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* App Store Badges */
.apps-store-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.app-store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--text-primary);
    border-radius: var(--radius-md);
    color: #fff;
    position: relative;
    max-width: 200px;
    width: 100%;
    justify-content: center;
}

.app-store-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.app-store-small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
}

.app-store-large {
    font-size: 15px;
    font-weight: 600;
}

.app-store-soon {
    position: absolute;
    top: -6px;
    right: -6px;
    padding: 3px 10px;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Apps Features */
.apps-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
    text-align: left;
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.apps-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.apps-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.apps-feature-icon svg {
    width: 18px;
    height: 18px;
}

.apps-feature span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.apps-notify-text {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Scroll Reveal Animation
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TABLET: @media (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .container {
        padding: 0 24px;
    }

    /* Navigation: Show desktop nav */
    .nav-container {
        height: 72px;
    }

    .nav-logo {
        font-size: 22px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        background: none;
        padding: 0;
        border: none;
        box-shadow: none;
        transform: none;
        max-height: none;
        overflow: visible;
    }

    .nav-links li {
        width: auto;
    }

    .nav-links a {
        padding: 8px 14px;
        font-size: 15px;
    }

    .nav-cta-mobile {
        display: none;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-toggle {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 120px 0 100px;
    }

    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }

    .hero-content {
        text-align: left;
    }

    .hero-badge {
        font-size: 13px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: row;
        margin-bottom: 24px;
    }

    .hero-actions .btn {
        width: auto;
    }

    .hero-trial-note {
        justify-content: flex-start;
        font-size: 14px;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 32px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Dashboard mockup with 3D */
    .dashboard-mockup {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
        transition: var(--transition-slow);
    }

    .dashboard-mockup:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .mockup-body {
        padding: 20px;
    }

    .mockup-stats {
        gap: 12px;
    }

    .mockup-stat-card {
        padding: 12px;
        gap: 10px;
    }

    .mockup-stat-icon {
        width: 36px;
        height: 36px;
    }

    .mockup-stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .mockup-stat-value {
        font-size: 20px;
    }

    .mockup-stat-label {
        font-size: 11px;
    }

    .mockup-bars {
        gap: 8px;
        height: 100px;
    }

    /* Floating cards visible on tablet+ */
    .floating-card {
        display: flex;
        position: absolute;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        background: #fff;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--border);
        animation: float 3s ease-in-out infinite;
    }

    .card-1 {
        top: 10%;
        left: -8%;
        animation-delay: 0s;
    }

    .card-2 {
        bottom: 15%;
        right: -5%;
        animation-delay: 1.5s;
    }

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

    .floating-card-icon {
        width: 36px;
        height: 36px;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-bg);
        color: var(--primary);
        flex-shrink: 0;
    }

    .floating-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .floating-card-icon.notify {
        background: var(--red-bg);
        color: var(--red);
    }

    .floating-card-title {
        font-size: 13px;
        font-weight: 700;
        color: var(--text-primary);
    }

    .floating-card-text {
        font-size: 11px;
        color: var(--text-tertiary);
    }

    .hero-wave svg {
        height: 80px;
    }

    /* Trust Bar */
    .trust-bar {
        padding: 48px 0;
    }

    .trust-label {
        font-size: 14px;
    }

    .trust-logos {
        gap: 48px;
    }

    .trust-logo {
        font-size: 20px;
    }

    /* Section Header */
    .section-header {
        max-width: 720px;
        margin: 0 auto 56px;
    }

    .section-tag {
        font-size: 13px;
        padding: 6px 16px;
    }

    .section-title {
        font-size: clamp(28px, 4vw, 42px);
    }

    .section-subtitle {
        font-size: 18px;
    }

    /* Features: 2 columns */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-card {
        padding: 32px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

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

    .feature-card p {
        font-size: 15px;
    }

    /* How It Works: Horizontal */
    .steps {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        max-width: 1000px;
    }

    .step {
        flex: 1;
        padding: 0 24px;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 24px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 15px;
    }

    .step-connector {
        width: 80px;
        height: 2px;
        flex: 0 0 80px;
        margin-top: 32px;
    }

    /* Analytics: 2 columns */
    .analytics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .analytics-features {
        gap: 24px;
        margin-top: 32px;
    }

    .analytics-feature h4 {
        font-size: 17px;
    }

    .analytics-feature p {
        font-size: 14px;
    }

    .insights-panel {
        max-width: 100%;
    }

    .insights-header {
        padding: 20px 24px;
    }

    .insights-header h4 {
        font-size: 16px;
    }

    .insights-badge {
        font-size: 12px;
        padding: 4px 12px;
    }

    .insights-body {
        padding: 24px;
    }

    .insight-row {
        gap: 12px;
        margin-bottom: 16px;
    }

    .insight-label {
        font-size: 14px;
        width: 100px;
    }

    .insight-value {
        font-size: 14px;
        width: 40px;
    }

    .insight-summary {
        padding: 16px;
    }

    .insight-summary-icon {
        width: 32px;
        height: 32px;
    }

    .insight-summary-icon svg {
        width: 18px;
        height: 18px;
    }

    .insight-summary p {
        font-size: 14px;
    }

    /* Roles: 2 columns */
    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .role-card {
        padding: 32px;
    }

    .role-icon {
        width: 56px;
        height: 56px;
    }

    .role-icon svg {
        width: 28px;
        height: 28px;
    }

    .role-card h3 {
        font-size: 20px;
    }

    .role-card > p {
        font-size: 15px;
    }

    /* Pricing: 2 columns */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 700px;
    }

    .pricing-card {
        padding: 32px;
    }

    .pricing-header h3 {
        font-size: 22px;
    }

    .pricing-price {
        font-size: 40px;
    }

    .pricing-price span {
        font-size: 16px;
    }

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

    .pricing-trial-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .pricing-features {
        gap: 12px;
        margin-bottom: 28px;
    }

    .pricing-features li {
        font-size: 14px;
    }

    /* Testimonials: 2 columns */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonial-stars {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-title {
        font-size: 13px;
    }

    /* FAQ */
    .faq-list {
        max-width: 760px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    /* Mobile Apps Section */
    .apps-box {
        padding: 48px 40px;
        max-width: 700px;
    }

    .apps-badge {
        font-size: 14px;
        padding: 8px 20px;
    }

    .apps-badge svg {
        width: 18px;
        height: 18px;
    }

    .apps-title {
        font-size: 32px;
    }

    .apps-subtitle {
        font-size: 18px;
        max-width: 600px;
    }

    .apps-store-badges {
        flex-direction: row;
        justify-content: center;
    }

    .app-store-badge {
        width: auto;
        max-width: 180px;
    }

    .apps-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        max-width: 600px;
    }

    .apps-feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px 12px;
    }

    .apps-notify-text {
        font-size: 16px;
    }

    /* Trial Section */
    .trial-box {
        padding: 48px 40px;
        max-width: 700px;
    }

    .trial-badge {
        font-size: 14px;
        padding: 8px 20px;
    }

    .trial-badge svg {
        width: 18px;
        height: 18px;
    }

    .trial-title {
        font-size: 32px;
    }

    .trial-subtitle {
        font-size: 18px;
        max-width: 600px;
    }

    .trial-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 36px;
    }

    .trial-benefit {
        padding: 16px;
    }

    .trial-form {
        max-width: 560px;
    }

    .trial-form-row {
        flex-direction: row;
    }

    .trial-input {
        padding: 14px 18px;
    }

    .trial-note {
        font-size: 13px;
    }

    /* CTA */
    .cta-section {
        padding: 80px 0;
    }

    .cta-box {
        padding: 56px 48px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-note {
        font-size: 13px;
    }

    /* Footer: 2 columns */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-tagline {
        max-width: 320px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* ============================================
   DESKTOP: @media (min-width: 1024px)
   ============================================ */
@media (min-width: 1024px) {
    :root {
        --section-padding: 100px 0;
    }

    /* Hero */
    .hero {
        padding: 140px 0 120px;
    }

    .hero-title {
        font-size: clamp(36px, 5.5vw, 60px);
    }

    .hero-subtitle {
        font-size: 19px;
        max-width: 520px;
    }

    .hero-actions {
        margin-bottom: 48px;
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Features: 3 columns */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Roles: 3 columns */
    .roles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Pricing: 3 columns */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }

    /* Testimonials: 3 columns */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Apps box wider */
    .apps-box {
        max-width: 800px;
        padding: 56px 48px;
    }

    .apps-title {
        font-size: clamp(28px, 4vw, 40px);
    }

    /* Trial box wider */
    .trial-box {
        max-width: 800px;
        padding: 56px 48px;
    }

    .trial-title {
        font-size: clamp(28px, 4vw, 40px);
    }

    /* CTA */
    .cta-title {
        font-size: clamp(28px, 4vw, 40px);
    }

    /* Footer: 4 columns */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }

    .footer-brand {
        grid-column: auto;
    }
}

/* ============================================
   LARGE DESKTOP: @media (min-width: 1200px)
   ============================================ */
@media (min-width: 1200px) {
    .container {
        padding: 0 24px;
    }
}

/* ============================================
   REDUCED MOTION: Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}