/* ===================================
   CSS Custom Properties (Variables)
   ================================== */

:root {
    /* Colors - Primary Palette */
    --primary: #1E3A8A;
    --accent: #3B82F6;
    --success: #10B981;
    --dark: #1F2937;
    --light: #F9FAFB;
    --white: #FFFFFF;

    /* Colors - Gray Scale */
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;

    /* Colors - Status */
    --warning: #F59E0B;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-cta: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(59, 130, 246, 0.03) 0%, transparent 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --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.25);
    --shadow-colored: 0 10px 25px -5px rgba(59, 130, 246, 0.3);

    /* Transitions */
    --transition-base: 0.3s ease;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-small: 60px;
    --container-padding: 24px;
    --container-max-width: 1200px;

    /* Component Sizes */
    --logo-size: 32px;
    --logo-radius: 8px;
    --nav-height: 80px;
    --button-radius: 8px;
    --border-radius-base: 12px;
    --border-radius-large: 1rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 600;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 700;

    /* Z-index layers */
    --z-navbar: 1000;
    --z-modal: 2000;
    --z-tooltip: 3000;
}

/* Scroll Progress Bar - Hidden to prevent overlap with logo */
.scroll-progress {
    display: none;
}
/* ===================================
   CSS Reset & Base Styles
   ================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}
/* ===================================
   Typography Styles
   ================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.15;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Section Titles */
.section-title {
    font-size: 2.75rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }
}
/* ===================================
   Button Styles
   ================================== */

.btn-primary,
.btn-secondary,
.btn-primary-small,
.btn-primary-full,
.btn-secondary-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--button-radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: none;
    min-height: 48px;
}

.btn-primary,
.btn-primary-full {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover,
.btn-primary-full:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-colored);
}

.btn-primary:active,
.btn-primary-full:active,
.btn-secondary:active,
.btn-secondary-full:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary,
.btn-secondary-full {
    background: var(--gray-800);
    color: var(--white);
}

.btn-secondary:hover,
.btn-secondary-full:hover {
    background: var(--gray-700);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-primary-small {
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

/* Store Badge Styling */
.store-badge {
    display: inline-block;
    transition: all var(--transition-base);
    line-height: 0;
    width: 168px;
    height: 56px;
    background: #000000;
    border-radius: 8px;
    padding: 4px;
    box-sizing: border-box;
}

.store-badge img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain;
    display: block !important;
    border-radius: 6px;
}

.store-badge:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.05);
}

.store-badge:active {
    transform: translateY(0) scale(0.98);
}

/* Logo Icon Class (moved from inline styles) */
.logo-icon {
    border-radius: var(--logo-radius);
}
/* ===================================
   Navigation Styles
   ================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-navbar);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark);
}

/* Logo Responsive Sizing - Cross-Device Consistency */
.logo-image {
    max-width: 140px;  /* Default/Desktop size */
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

/* Tablet and smaller (768px and below) */
@media (max-width: 768px) {
    .logo-image {
        max-width: 120px;  /* Slightly smaller on tablets */
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    .logo-image {
        max-width: 100px;  /* Compact on phones */
    }
}

/* Small phones - iPhone SE, etc. (375px and below) */
@media (max-width: 375px) {
    .logo-image {
        max-width: 90px;  /* Very compact on small screens */
    }
}

/* Extra small screens (320px) */
@media (max-width: 320px) {
    .logo-image {
        max-width: 80px;  /* Minimum size */
    }
}

.logo:hover .logo-image {
    opacity: 0.8;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
}

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

.nav-links a {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    transition: color var(--transition-base);
}

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

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--transition-base);
}
/* ===================================
   Footer Styles
   ================================== */

.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    filter: brightness(0) invert(1);
    height: 32px;
    width: auto;
}

.footer-tagline {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--gray-300);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
}

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

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-400);
    transition: color var(--transition-base);
}

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

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

.copyright {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.disclaimer {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 0;
}
/* ===================================
   Card Components
   ================================== */

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.15);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    color: var(--accent);
    margin-bottom: 2rem;
    transition: all var(--transition-base);
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
    background: rgba(59, 130, 246, 0.15);
}

.feature-icon svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.75;
    font-size: 1.0625rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.6;
    padding-left: 1.75rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-base);
}

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

.pricing-card-featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-colored);
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.02), var(--white));
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    animation: pulse 2s ease-in-out infinite;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--dark);
}

.price-period {
    font-size: 1rem;
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--success);
    color: var(--white);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.pricing-features .feature-limited::before {
    content: '⚠';
    background: var(--warning);
}

.trial-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.1);
}

.testimonial-rating {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-semibold);
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: var(--font-weight-semibold);
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* FAQ Cards */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark);
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.02);
}

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

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

.faq-item.active {
    background: rgba(59, 130, 246, 0.03);
    border-left: 4px solid var(--accent);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px; /* Increased from 500px to accommodate longer answers */
    overflow: visible; /* Ensure content is never cut off */
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    margin: 0;
}

/* FAQ Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-featured,
.faq-additional {
    display: flex;
    flex-direction: column;
}

/* Featured Badge */
.faq-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    z-index: 1;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

/* Category Icons */
.faq-category-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.faq-item:hover .faq-category-icon {
    transform: scale(1.1);
    color: var(--primary);
}

/* Question Content Layout */
.faq-question-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

/* Featured Item Styling */
.faq-item-featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-md);
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.02), var(--white));
}

/* Stat Cards */
.stat-item {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
/* ===================================
   Hero Section
   ================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.05;
    z-index: -1;
}

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

.hero-content {
    max-width: 600px;
}

.hero-title {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-extrabold);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.trust-indicators {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.separator {
    color: var(--gray-300);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--gradient-accent);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}
/* ===================================
   Features Section
   ================================== */

.features {
    padding: var(--section-padding) 0;
    background: var(--light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--gradient-subtle);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 1rem;
}
/* ===================================
   Pricing Section
   ================================== */

.pricing {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
/* ===================================
   Testimonials / Social Proof Section
   ================================== */

.social-proof {
    padding: var(--section-padding) 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.social-proof::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

/* Use Cases Section */
.use-cases {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.use-case-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.use-case-item:last-child {
    margin-bottom: 0;
}

.use-case-reverse {
    direction: rtl;
}

.use-case-reverse > * {
    direction: ltr;
}

.use-case-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.use-case-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: var(--border-radius-large);
    color: var(--accent);
}

.use-case-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.use-case-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.use-case-features {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.use-case-features li {
    padding: 0.5rem 1rem;
    background: var(--light);
    border-radius: 0.5rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}
/* ===================================
   FAQ Section
   ================================== */

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
/* ===================================
   CTA Section
   ================================== */

.cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cta);
    z-index: -1;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--accent);
}

.cta .btn-primary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.trial-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
}
/* ===================================
   Trust Badges Section
   ================================== */

.trust-badges {
    padding: 3rem 0;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.03), transparent);
    border-bottom: 1px solid var(--gray-200);
}

.badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
    transition: opacity var(--transition-base);
}

.badge-item:hover {
    opacity: 1;
}

.badge-icon {
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.badge-text strong {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark);
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.trust-subtext {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* ===================================
   Case Studies Section
   ================================== */

.case-studies {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.case-study-card {
    background: var(--light);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.case-study-card:last-child {
    margin-bottom: 0;
}

.case-study-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.case-study-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    box-shadow: var(--shadow-lg);
}

.avatar-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
}

.case-study-meta {
    flex-grow: 1;
}

.case-study-meta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.case-study-meta .role {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.case-study-stats {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stat-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--accent);
}

.case-study-content h4 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.case-study-quote {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-base);
}

.before-after-col h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.before-after-col:first-child h5::before {
    content: '❌';
    font-size: 1rem;
}

.before-after-col:last-child h5::before {
    content: '✅';
    font-size: 1rem;
}

.before-after-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.before-after-col li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.before-after-col li::before {
    content: '•';
    color: var(--accent);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: var(--border-radius-base);
}

.metric-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-sm);
}

.metric-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-item span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

/* ===================================
   Enhanced Testimonials
   ================================== */

.testimonial-metrics {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.testimonial-metrics span {
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--accent);
}

/* ===================================
   Animations
   ================================== */

/* Float Animation (used in hero phone mockup) */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Slide Up Animation for Hero Image */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-image .fade-in {
    animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Shimmer animation for buttons */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Pulse animation for pricing badge */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide in from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ===================================
   Utility & Helper Classes
   ================================== */

/* Container & Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* ===================================
   Accessibility Helpers
   ================================== */

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
/* ===================================
   Responsive Design & Media Queries
   ================================== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    :root {
        --section-padding: 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

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

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

    .use-case-item,
    .use-case-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact-metrics {
        grid-template-columns: 1fr;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    /* Nav Link Items with Icons */
    .nav-link-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        font-size: 1.05rem;
        font-weight: var(--font-weight-medium);
        border-radius: 0.5rem;
        transition: all 0.2s ease;
        color: var(--gray-700);
    }

    .nav-link-item:hover {
        background: rgba(59, 130, 246, 0.08);
        color: var(--accent);
    }

    .nav-link-item:active {
        background: rgba(59, 130, 246, 0.15);
        transform: scale(0.98);
    }

    .nav-icon {
        flex-shrink: 0;
        color: var(--accent);
        transition: transform 0.2s ease;
    }

    .nav-link-item:hover .nav-icon {
        transform: scale(1.1);
    }

    /* Nav Dividers */
    .nav-divider {
        height: 1px;
        background: var(--gray-200);
        margin: 0.75rem 0;
    }

    /* Download Section */
    .nav-download-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem 0;
    }

    .nav-store-badge {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.2s ease;
    }

    .nav-store-badge img {
        width: 135px;
        height: auto;
    }

    .nav-store-badge:active {
        transform: scale(0.95);
    }

    /* Social Links */
    .nav-social-links {
        display: flex;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .nav-social-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        font-weight: var(--font-weight-medium);
        border-radius: 0.5rem;
        transition: all 0.2s ease;
        color: var(--gray-700);
        flex: 1;
        justify-content: center;
    }

    .nav-social-item:hover {
        background: rgba(139, 92, 246, 0.08);
        color: var(--accent);
    }

    .nav-social-item:active {
        transform: scale(0.95);
    }

    .nav-social-item svg {
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .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(7px, -6px);
    }

    .hero {
        min-height: auto;
        padding-top: 180px;  /* Increased for iPhone 15 - ensures title clears navbar */
        padding-bottom: 60px;
    }

    .hero .container {
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        line-height: 1.15;
        margin-top: 0.5rem;  /* Extra spacing to ensure visibility */
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-cta .store-badge {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .hero-cta .store-badge:active {
        transform: scale(0.95);
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }

    .separator {
        display: inline;
        opacity: 0.5;
    }

    /* Hero phone mockup - reduce size on mobile */
    .phone-mockup {
        width: 220px;
        height: 440px;
        margin: 2rem auto 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Feature cards - reduce padding on mobile */
    .feature-card {
        padding: 1.5rem;
    }

    /* Store badges - slightly smaller on mobile */
    .store-badge {
        width: 144px;
        height: 48px;
        padding: 4px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* FAQ items - larger touch targets */
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.25rem;
        padding: 0 1rem;
        flex-wrap: wrap;
    }

    .cta-buttons .store-badge {
        width: 156px;
        height: 52px;
        padding: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .cta-buttons .store-badge:active {
        transform: scale(0.95);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .trial-badge {
        padding: 0.875rem 1.75rem;
        background: rgba(255, 255, 255, 0.25);
        border: 2px solid rgba(255, 255, 255, 0.4);
        font-size: 0.9375rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        max-width: 90%;
        margin: 0 auto;
    }

    .badges-row {
        gap: 1.5rem;
        /* Display as 2 rows of 4 badges on mobile */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .case-study-card {
        padding: 1.5rem;
    }

    .case-study-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .case-study-stats {
        justify-content: center;
    }

    .before-after {
        padding: 1.5rem;
    }

    .impact-metrics {
        padding: 1.5rem;
    }

    .metric-item {
        padding: 1rem;
    }

    .metric-item strong {
        font-size: 2rem;
    }

    /* Sticky mobile CTA */
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: none;
        animation: slideUp 0.3s ease;
    }

    .mobile-sticky-cta.show {
        display: block;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
}

/* Small Mobile (480px and below) - iPhone SE, small Android phones */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
        --container-padding: 16px;
    }

    /* Typography - optimize for small screens */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

    .section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2.5rem;
    }

    /* Hero section - compact for small screens */
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

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

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    /* Feature cards - more compact */
    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

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

    .feature-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .feature-list {
        gap: 0.5rem;
    }

    .feature-list li {
        font-size: 0.875rem;
        padding-left: 1.5rem;
    }

    .feature-list li::before {
        font-size: 0.875rem;
    }

    /* Store badges - smaller for small phones */
    .store-badge {
        width: 132px;
        height: 44px;
        padding: 4px;
    }

    /* Pricing cards - more compact */
    .pricing-card {
        padding: 2rem 1.5rem;
    }

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

    /* Testimonials - more compact */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    /* FAQ - optimize for small screens */
    .faq-question {
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .faq-category-icon {
        width: 20px;
        height: 20px;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9375rem;
    }

    /* Case studies - more compact */
    .case-study-card {
        padding: 1.25rem;
    }

    .avatar-photo {
        width: 56px;
        height: 56px;
    }

    .case-study-meta h3 {
        font-size: 1.25rem;
    }

    .case-study-content h4 {
        font-size: 1.5rem;
    }

    .case-study-quote {
        font-size: 1rem;
        padding-left: 1rem;
    }

    /* CTA section - optimize for small screens */
    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons .store-badge {
        width: 144px;
        height: 48px;
        padding: 4px;
    }

    .trial-badge {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }

    /* Footer - more compact */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    /* Badge items - stack better on small screens */
    .badge-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .badge-text strong {
        font-size: 0.8125rem;
    }

    .badge-text span {
        font-size: 0.6875rem;
    }

    /* Trust indicators - smaller text */
    .trust-indicators {
        font-size: 0.8125rem;
    }

    /* Buttons - ensure minimum touch target size */
    .btn-primary,
    .btn-secondary,
    .btn-primary-small,
    .btn-primary-full,
    .btn-secondary-full {
        min-height: 44px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    /* Metric items - smaller on very small screens */
    .metric-item strong {
        font-size: 1.75rem;
    }

    .metric-item span {
        font-size: 0.8125rem;
    }
}

/* ===================================
   Accessibility Media Queries
   ================================== */

/* Reduced motion for users with vestibular motion disorders */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
        --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.3);
    }
}

/* Print styles */
@media print {
    .navbar,
    .cta,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero-background,
    .cta-background {
        display: none;
    }
}
