/* SimpleClaims Website — Production Styles */
/* Last updated: Feb 2026 */

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Palette */
    --primary-blue: #2563EB;
    --primary-blue-dark: #1D4ED8;
    --primary-blue-light: #DBEAFE;
    --secondary-teal: #14B8A6;
    --accent-orange: #F97316;
    --success-green: #10B981;
    --success-green-dark: #059669;
    --warning-yellow: #F59E0B;
    --error-red: #EF4444;
    --error-red-dark: #DC2626;
    --purple: #8B5CF6;
    --indigo: #6366F1;

    /* Neutrals */
    --dark: #1F2937;
    --dark-700: #374151;
    --gray: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --light-gray: #F3F4F6;
    --light-50: #F9FAFB;
    --white: #FFFFFF;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   SKIP TO CONTENT (Accessibility)
   ======================================== */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition-fast);
}

.skip-to-content:focus {
    top: 0;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-family);
    line-height: 1.4;
}

.btn:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--light-gray);
    border-color: var(--light-gray);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-text {
    background: transparent;
    color: var(--dark);
    padding: 8px 16px;
    border: none;
}

.btn-text:hover {
    background: var(--light-gray);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-green {
    background: var(--success-green);
    color: var(--white);
    border-color: var(--success-green);
}

.btn-green:hover {
    background: var(--success-green-dark);
    border-color: var(--success-green-dark);
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-700);
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family);
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--error-red);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-input.success,
.form-select.success,
.form-textarea.success {
    border-color: var(--success-green);
}

.form-error {
    color: var(--error-red);
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray);
}

.form-checkbox input[type="checkbox"],
.form-checkbox input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-blue);
    cursor: pointer;
    flex-shrink: 0;
}

/* Form success/error messages */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

.form-message.visible {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

/* Password strength meter */
.password-strength {
    margin-top: 8px;
}

.password-strength-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.password-strength-fill {
    height: 100%;
    border-radius: 2px;
    transition: width var(--transition-slow), background var(--transition-slow);
    width: 0%;
}

.password-strength-fill.weak { width: 25%; background: var(--error-red); }
.password-strength-fill.fair { width: 50%; background: var(--warning-yellow); }
.password-strength-fill.good { width: 75%; background: var(--primary-blue); }
.password-strength-fill.strong { width: 100%; background: var(--success-green); }

.password-strength-text {
    font-size: 12px;
    color: var(--gray);
}

/* Password toggle visibility */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
    padding: 4px;
    display: flex;
    align-items: center;
}

.password-toggle:hover {
    color: var(--dark);
}

/* Role picker for signup */
.role-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.role-option {
    padding: 16px;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    background: var(--white);
}

.role-option:has(input:checked) {
    border-color: var(--primary-blue);
    background: var(--primary-blue-light);
}

.role-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
}

.role-option .role-label {
    font-weight: 600;
    color: var(--gray);
    transition: color var(--transition-fast);
}

.role-option:has(input:checked) .role-label {
    color: var(--primary-blue);
}

/* Social login buttons */
.social-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-btn {
    padding: 12px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    color: var(--dark);
    transition: all var(--transition-fast);
}

.social-btn:hover {
    border-color: var(--gray);
    background: var(--light-50);
}

.social-btn:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.logo a,
a.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0 auto;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--primary-blue);
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Mobile-only menu buttons — hidden on desktop */
.nav-menu-buttons {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition-slow);
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #EEF2FF 0%, #F0F4FF 50%, #F9FAFB 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.05) 0%, transparent 40%),
                       radial-gradient(circle at 60% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-blue);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow button */
.btn-glow {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

/* App Store Badges */
.app-store-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--dark);
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid var(--dark);
}

.store-badge:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-badge-small {
    font-size: 10px;
    opacity: 0.8;
}

.store-badge-large {
    font-size: 16px;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

/* Hero Dashboard Preview */
.hero-dashboard-preview {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s ease;
}

.hero-dashboard-preview:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-bottom: 1px solid var(--gray-200);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}

.preview-dots span:first-child { background: #EF4444; }
.preview-dots span:nth-child(2) { background: #F59E0B; }
.preview-dots span:last-child { background: #10B981; }

.preview-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
}

.preview-body {
    padding: 24px;
}

.preview-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.preview-metric {
    background: linear-gradient(135deg, #EEF2FF, #DBEAFE);
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
}

.preview-metric-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
}

.preview-metric-label {
    font-size: 10px;
    color: var(--gray);
    font-weight: 600;
    margin-top: 2px;
}

.preview-claim-card {
    background: var(--light-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.preview-claim-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.claim-type {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.claim-status {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.claim-status.active {
    background: var(--success-green);
    color: var(--white);
}

.preview-claim-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.preview-claim-card p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.preview-health-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.preview-health-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-green), #34D399);
    border-radius: 3px;
    transition: width 1.5s ease;
}

.preview-health-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--success-green);
}

.preview-guidance {
    background: var(--light-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 14px 16px;
}

.preview-guidance-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.preview-guidance-item {
    font-size: 12px;
    color: var(--gray);
    padding: 4px 0;
}

.preview-guidance-item.done {
    color: var(--success-green);
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */
.social-proof-bar {
    padding: 24px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.proof-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

/* ========================================
   PROBLEM / SOLUTION SECTION
   ======================================== */
.problem-section {
    padding: var(--section-padding);
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card,
.solution-card {
    padding: 36px;
    border-radius: 16px;
    position: relative;
}

.problem-card {
    background: #FEF2F2;
    border: 2px solid #FECACA;
}

.solution-card {
    background: #F0FDF4;
    border: 2px solid #BBF7D0;
}

.problem-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.problem-card h3,
.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li,
.solution-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: var(--dark-700);
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error-red);
    font-weight: 700;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.comparison-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table thead th {
    background: var(--dark);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 20px 24px;
}

.comparison-table thead th.highlighted {
    background: var(--primary-blue);
}

.comparison-table td.highlighted {
    background: rgba(37, 99, 235, 0.04);
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

.comparison-table td.yes {
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
}

.comparison-table td.no {
    color: var(--error-red);
    font-weight: 700;
    font-size: 18px;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.02);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    transition: all var(--transition-slow);
}

.feature-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.blue { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); color: var(--primary-blue); }
.feature-icon.teal { background: linear-gradient(135deg, #CCFBF1, #99F6E4); color: var(--secondary-teal); }
.feature-icon.orange { background: linear-gradient(135deg, #FED7AA, #FDBA74); color: var(--accent-orange); }
.feature-icon.green { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); color: var(--success-green); }
.feature-icon.purple { background: linear-gradient(135deg, #E9D5FF, #D8B4FE); color: var(--purple); }
.feature-icon.red { background: linear-gradient(135deg, #FECACA, #FCA5A5); color: var(--error-red); }
.feature-icon.indigo { background: linear-gradient(135deg, #E0E7FF, #C7D2FE); color: var(--indigo); }
.feature-icon.yellow { background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: var(--warning-yellow); }
.feature-icon.slate { background: linear-gradient(135deg, #E2E8F0, #CBD5E1); color: #475569; }

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: var(--section-padding);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all var(--transition-slow);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    border-width: 3px;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
}

.price-period {
    font-size: 18px;
    color: var(--gray);
}

.pricing-description {
    color: var(--gray);
    margin-bottom: 24px;
    min-height: 48px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Dedicated pricing page styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    text-align: center;
    color: var(--white);
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.pricing-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.pricing-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-page {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card-page:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-page.highlighted {
    border-color: var(--primary-blue);
}

.pricing-card-page .badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.pricing-card-page .spacer {
    height: 38px;
    margin-bottom: 24px;
}

.pricing-card-page h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card-page .price-wrapper {
    margin-bottom: 24px;
}

.pricing-card-page .price-wrapper .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
}

.pricing-card-page .price-wrapper .period {
    color: var(--gray);
    font-size: 18px;
}

.pricing-card-page .description {
    color: var(--gray);
    margin-bottom: 32px;
}

.pricing-card-page .feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-card-page .feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-card-page .feature-list .check {
    font-size: 20px;
    flex-shrink: 0;
}

.enterprise-cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 16px;
}

.enterprise-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.enterprise-cta p {
    color: var(--gray);
    margin-bottom: 24px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--warning-yellow);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-avatar.blue { background: var(--primary-blue); }
.testimonial-avatar.green { background: var(--success-green); }
.testimonial-avatar.purple { background: var(--purple); }

.testimonial-info strong {
    display: block;
    font-size: 15px;
}

.testimonial-info span {
    color: var(--gray);
    font-size: 13px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 28px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all var(--transition-slow);
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--primary-blue-light);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
}

.faq-item h3::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-blue);
    transition: transform var(--transition-slow);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.expanded h3 {
    margin-bottom: 12px;
}

.faq-item.expanded h3::after {
    content: '\2212';
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-item.expanded p {
    max-height: 300px;
    opacity: 1;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA store badges */
.cta-store-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.cta-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.3);
}

.cta-store-badge:hover {
    background: rgba(255,255,255,0.25);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background var(--transition-base);
    font-size: 14px;
}

.social-links a:hover {
    background: var(--primary-blue);
}

.social-links a:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-col ul a:hover,
.footer-col ul a:focus-visible {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin: 8px 0;
}

/* ========================================
   AUTH PAGES (Login / Signup / Forgot PW)
   ======================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.auth-nav {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-nav .logo {
    color: var(--white);
}

.auth-nav .logo svg rect {
    fill: rgba(255,255,255,0.2);
}

.auth-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.auth-nav a:hover {
    color: var(--white);
}

.auth-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.auth-card-sm {
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header svg {
    margin: 0 auto 16px;
    display: block;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--gray);
}

.auth-divider {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.auth-divider-text {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.auth-footer-text {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
}

.auth-footer-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer-text a:hover {
    text-decoration: underline;
}

.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 20px;
    color: var(--gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.contact-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    transition: all var(--transition-slow);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}

.contact-card-icon.blue { background: var(--primary-blue); }
.contact-card-icon.green { background: var(--success-green); }
.contact-card-icon.orange { background: var(--accent-orange); }

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 12px;
}

.contact-card a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: var(--section-padding);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.about-value-card {
    text-align: center;
    padding: 32px;
    background: var(--light-gray);
    border-radius: 16px;
}

.about-value-card .icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.about-value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-value-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
    padding: 48px;
    background: var(--primary-blue);
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.about-stat .number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-stat .label {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   LEGAL PAGES (Privacy, Terms)
   ======================================== */
.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.legal-content .last-updated {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--gray);
    margin-bottom: 16px;
    padding-left: 24px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ========================================
   404 PAGE
   ======================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 16px;
}

.error-page h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.error-page p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.feature-card,
.pricing-card,
.pricing-card-page,
.faq-item,
.step,
.testimonial-card,
.problem-card,
.solution-card,
.proof-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner p {
    flex: 1;
    font-size: 14px;
    opacity: 0.9;
    min-width: 200px;
}

.cookie-banner p a {
    color: var(--primary-blue-light);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
}

/* ========================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        gap: 40px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVE — Mobile (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 48px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* --- Mobile Navigation --- */
    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Hide desktop nav-buttons completely on mobile, use in-menu buttons instead */
    .nav-buttons {
        display: none !important;
    }

    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 8px 20px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        gap: 0;
        z-index: 999;
        border-top: 1px solid var(--gray-200);
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-200);
        font-size: 16px;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    /* Mobile menu CTA buttons at bottom of dropdown */
    .nav-menu-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-top: 16px;
        margin-top: 8px;
        border-top: 1px solid var(--gray-200);
        list-style: none;
    }

    .nav-menu-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        font-size: 16px;
        padding: 12px 24px;
    }

    .nav-menu-buttons a {
        padding: 0;
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* --- Hero Section --- */
    .hero {
        padding: 60px 0 64px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    .hero-buttons .btn-lg {
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        text-align: center;
    }

    .stat-number {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 11px;
        line-height: 1.3;
    }

    .hero-image {
        display: none;
    }

    .app-store-badges {
        flex-direction: column;
    }

    /* --- Social Proof Bar --- */
    .social-proof-bar {
        padding: 16px 0;
    }

    .proof-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .proof-item {
        font-size: 12px;
        gap: 6px;
    }

    .proof-item svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    /* --- Problem/Solution --- */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card,
    .solution-card {
        padding: 24px;
    }

    .problem-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .problem-card h3,
    .solution-card h3 {
        font-size: 18px;
    }

    .problem-list li,
    .solution-list li {
        font-size: 14px;
        padding: 6px 0 6px 22px;
    }

    /* --- Section Headers --- */
    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* --- Features --- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: flex-start;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 10px;
        margin-bottom: 0;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-card h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* --- How It Works --- */
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .step {
        display: flex;
        gap: 16px;
        text-align: left;
    }

    .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 22px;
        margin: 0;
    }

    .step-content h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .step-content p {
        font-size: 14px;
    }

    /* --- Comparison Table --- */
    .comparison-table-wrapper {
        margin: 0 -16px;
        padding: 0 16px;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 520px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .comparison-table thead th {
        padding: 14px 12px;
        font-size: 12px;
    }

    /* --- Pricing --- */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 24px;
    }

    .price-amount {
        font-size: 40px;
    }

    .pricing-description {
        min-height: auto;
        font-size: 14px;
    }

    .pricing-features li {
        padding: 10px 0;
        font-size: 14px;
    }

    .pricing-page-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-page {
        padding: 28px;
    }

    .pricing-hero {
        padding: 80px 0 48px;
    }

    /* --- Testimonials --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    /* --- FAQ --- */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 15px;
    }

    .faq-item p {
        font-size: 14px;
    }

    /* --- CTA --- */
    .cta-section {
        padding: 48px 0;
    }

    .cta-content h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    .cta-store-badges {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    /* --- Footer --- */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-col:first-child {
        margin-bottom: 8px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul a {
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 13px;
    }

    /* --- Contact --- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-hero {
        padding: 80px 0 48px;
    }

    .contact-hero h1,
    .pricing-hero h1,
    .about-hero h1 {
        font-size: 28px;
    }

    .contact-hero p,
    .pricing-hero p,
    .about-hero p {
        font-size: 16px;
    }

    /* --- About --- */
    .about-hero {
        padding: 80px 0 48px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-value-card {
        padding: 24px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
        gap: 20px;
    }

    .about-stat .number {
        font-size: 28px;
    }

    /* --- Auth --- */
    .auth-card {
        padding: 28px 20px;
    }

    .auth-header h1 {
        font-size: 24px;
    }

    .social-login-grid {
        grid-template-columns: 1fr;
    }

    .role-picker {
        grid-template-columns: 1fr;
    }

    /* --- Legal --- */
    .legal-page {
        padding: 80px 0 48px;
    }

    .legal-content h1 {
        font-size: 28px;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    /* --- Cookie Banner --- */
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cookie-banner p {
        font-size: 13px;
    }
}

/* ========================================
   RESPONSIVE — Small Mobile (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 22px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    .pricing-hero h1,
    .contact-hero h1,
    .about-hero h1 {
        font-size: 24px;
    }

    .proof-items {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .proof-item {
        justify-content: center;
    }

    .feature-card {
        flex-direction: column;
    }

    .feature-icon {
        margin-bottom: 12px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-store-badges {
        flex-direction: column;
        align-items: center;
    }

    .auth-card {
        padding: 24px 16px;
    }

    .error-code {
        font-size: 80px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 24px;
    }
}

/* ========================================
   FOCUS STYLES (Keyboard Navigation)
   ======================================== */
*:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .cookie-banner,
    .cta-section,
    .skip-to-content {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        background: none;
        padding: 20px 0;
    }

    .footer {
        background: none;
        color: #000;
        border-top: 2px solid #000;
    }

    .footer-col ul a {
        color: #000;
    }

    a {
        text-decoration: underline;
    }

    .btn {
        border: 1px solid #000;
    }
}

/* ========================================
   DARK MODE (prefers-color-scheme)
   ======================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --dark: #F9FAFB;
        --dark-700: #E5E7EB;
        --gray: #9CA3AF;
        --gray-300: #4B5563;
        --gray-200: #374151;
        --light-gray: #1F2937;
        --light-50: #111827;
        --white: #111827;
    }

    body {
        background: #0F172A;
        color: #F9FAFB;
    }

    .navbar {
        background: rgba(15, 23, 42, 0.95);
        border-bottom-color: rgba(255,255,255,0.05);
    }

    .hero {
        background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    }

    .hero-bg-pattern {
        background-image: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                           radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.08) 0%, transparent 40%);
    }

    .hero-badge {
        background: rgba(37, 99, 235, 0.15);
        border-color: rgba(37, 99, 235, 0.25);
    }

    .hero-dashboard-preview {
        background: #1F2937;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    }

    .preview-header {
        background: #374151;
        border-bottom-color: #4B5563;
    }

    .preview-metric {
        background: linear-gradient(135deg, #1E293B, #1E3A5F);
    }

    .preview-claim-card,
    .preview-guidance {
        background: #0F172A;
        border-color: #374151;
    }

    .problem-card {
        background: #2D1B1B;
        border-color: #7F1D1D;
    }

    .solution-card {
        background: #1B2D1B;
        border-color: #166534;
    }

    .social-proof-bar {
        background: #1E293B;
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }

    .comparison-section {
        background: #1E293B;
    }

    .comparison-table {
        background: #1F2937;
    }

    .comparison-table thead th {
        background: #0F172A;
    }

    .comparison-table thead th.highlighted {
        background: var(--primary-blue);
    }

    .comparison-table td {
        border-bottom-color: #374151;
    }

    .mockup-frame {
        background: #374151;
    }

    .mockup-screen {
        background: #1F2937;
    }

    .claim-card {
        background: linear-gradient(135deg, #1E293B 0%, #1E3A5F 100%);
    }

    .feature-card {
        background: #1F2937;
        border-color: #374151;
    }

    .feature-card:hover {
        border-color: var(--primary-blue);
    }

    .faq-item {
        background: #1F2937;
    }

    .pricing-card,
    .pricing-card-page {
        background: #1F2937;
        border-color: #374151;
    }

    .testimonial-card {
        background: #1F2937;
    }

    .contact-card {
        background: #1F2937;
    }

    .how-it-works-section,
    .faq-section,
    .testimonials-section {
        background: #1E293B;
    }

    .auth-card {
        background: #1F2937;
    }

    .form-input,
    .form-select,
    .form-textarea {
        background: #0F172A;
        border-color: #374151;
        color: #F9FAFB;
    }

    .social-btn {
        background: #0F172A;
        border-color: #374151;
        color: #F9FAFB;
    }

    .store-badge {
        background: #374151;
        border-color: #4B5563;
    }

    .enterprise-cta {
        background: #1E293B;
    }

    .legal-content h1,
    .legal-content h2 {
        color: #F9FAFB;
    }

    .about-value-card {
        background: #1E293B;
    }

    .footer {
        background: #020617;
    }

    .cookie-banner {
        background: #1E293B;
    }
}
