/* ===== CSS VARIABLES ===== */
:root {
    /* BRAND COLORS */
    --color-primary: #2563EB;
    --color-primary-dark: #1E40AF;
    --color-primary-light: #3B82F6;
    --color-accent: #10B981;
    
    /* NEUTRAL COLORS */
    --color-background: #FFFFFF;
    --color-surface: #F9FAFB;
    --color-surface-dark: #F3F4F6;
    --color-text: #111827;
    --color-text-secondary: #6B7280;
    --color-text-tertiary: #9CA3AF;
    --color-border: #E5E7EB;
    --color-border-light: #F3F4F6;
    
    /* SEMANTIC COLORS */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    
    /* SPACING SYSTEM (8px base) */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    
    /* TYPOGRAPHY */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Sora', var(--font-sans);
    
    /* SHADOWS */
    --shadow-sm: 0 1px 2px 0 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);
    
    /* BORDER RADIUS */
    --radius-sm: 0.375rem;  /* 6px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-2xl: 1.5rem;   /* 24px */
    --radius-full: 9999px;
}

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-background);
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
}

p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

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

.section-title {
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

section {
    padding: var(--space-20) 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--color-primary);
    color: white;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: transparent;
    color: var(--color-primary);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--color-border);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: rgba(37, 99, 235, 0.05);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    color: var(--color-primary);
}

.logo svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.2s ease;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: var(--space-2);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    padding: var(--space-6);
    border-top: 1px solid var(--color-border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.mobile-menu a {
    display: block;
    padding: var(--space-4);
    color: var(--color-text);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.mobile-menu a:hover {
    background: var(--color-surface);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: calc(73px + var(--space-20));
    padding-bottom: var(--space-24);
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-6);
}

.hero-badge svg {
    color: var(--color-success);
}

.hero-text h1 {
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 540px;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-text);
    font-size: 0.9375rem;
    font-weight: 500;
}

.badge-item svg {
    color: var(--color-success);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
}

.hero-image-badge {
    position: absolute;
    bottom: var(--space-6);
    right: var(--space-6);
    background: white;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.hero-image-badge svg {
    color: #F59E0B;
}

.hero-image-badge strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.hero-image-badge span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    line-height: 1;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background: var(--color-background);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.step-card {
    position: relative;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.step-number {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-surface-dark);
    line-height: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--color-primary);
}

.step-card h3 {
    margin-bottom: var(--space-3);
}

.step-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--color-surface);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.services-text h2 {
    margin-bottom: var(--space-4);
}

.services-text > p {
    margin-bottom: var(--space-8);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.services-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
}

.services-list svg {
    color: var(--color-success);
    flex-shrink: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.service-card {
    background: white;
    border: 1px solid var(--color-border);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    color: var(--color-primary);
}

.service-card h3 {
    margin-bottom: var(--space-2);
    font-size: 1.125rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: var(--color-background);
}

.pricing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.pricing-category {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.pricing-category.featured {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-color: var(--color-primary);
    color: white;
}

.category-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-warning);
    color: white;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.category-header {
    text-align: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.pricing-category.featured .category-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--color-primary);
}

.pricing-category.featured .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-header h3 {
    font-size: 1.25rem;
    margin: 0;
}

.pricing-category.featured h3 {
    color: white;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.pricing-category.featured .price-item {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.price-item:last-child {
    border-bottom: none;
}

.item-name {
    font-size: 0.9375rem;
    color: var(--color-text);
    font-weight: 500;
}

.pricing-category.featured .item-name {
    color: rgba(255, 255, 255, 0.95);
}

.item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-category.featured .item-price {
    color: white;
}

.pricing-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.pricing-note {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    background: var(--color-surface);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
}

.pricing-note svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-text);
}

.pricing-cta {
    text-align: center;
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
}

.pricing-cta h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
}

.pricing-cta p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    background: var(--color-surface);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    margin-bottom: var(--space-20);
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
}

.feature-text h2 {
    margin-bottom: var(--space-4);
}

.feature-text p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ===== LOCATIONS SECTION ===== */
.locations {
    background: var(--color-background);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.location-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.location-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    color: var(--color-primary);
}

.location-card h3 {
    margin-bottom: var(--space-3);
}

.address {
    color: var(--color-text);
    margin-bottom: var(--space-3);
    font-size: 0.9375rem;
}

.hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    font-size: 0.875rem;
}

.hours svg {
    color: var(--color-primary);
}

.location-card button {
    width: 100%;
    justify-content: center;
}

/* ===== APP DOWNLOAD SECTION ===== */
.app-download {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
}

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

.app-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: white;
}

.app-content h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.app-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--space-10);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: white;
    color: var(--color-text);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.store-button svg {
    color: var(--color-text);
    flex-shrink: 0;
}

.store-button div {
    text-align: left;
}

.store-button small {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.store-button strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.app-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #111827;
    color: white;
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    color: white;
    margin-bottom: var(--space-4);
}

.footer-logo svg {
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo .logo-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo .logo-tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: var(--space-3);
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: white;
}

.social-icons a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9375rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-primary-light);
}

.footer-col svg {
    color: var(--color-primary-light);
    flex-shrink: 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: var(--space-2);
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */

/* Tablets and below (768px) */
@media (max-width: 768px) {
    :root {
        --space-16: 3rem;
        --space-20: 4rem;
        --space-24: 5rem;
    }
    
    .container {
        padding: 0 var(--space-5);
    }
    
    section {
        padding: var(--space-16) 0;
    }
    
    /* Navigation */
    .nav-links,
    .nav-content > .btn-primary {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero {
        padding-top: calc(73px + var(--space-12));
        padding-bottom: var(--space-16);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        align-items: center;
    }
    
    .hero-image-badge {
        bottom: var(--space-4);
        right: var(--space-4);
        padding: var(--space-3) var(--space-4);
    }
    
    .hero-image-badge strong {
        font-size: 1rem;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    /* Services */
    .services-content {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing */
    .pricing-categories {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .pricing-category {
        padding: var(--space-6);
    }
    
    .pricing-notes {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .pricing-cta {
        padding: var(--space-8);
    }
    
    /* Feature blocks */
    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        direction: ltr;
        margin-bottom: var(--space-12);
    }
    
    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    /* App download */
    .app-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .store-button {
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .step-card,
    .service-card,
    .location-card {
        padding: var(--space-6);
    }
    
    .pricing-card {
        padding: var(--space-8);
    }
}

/* Tablets landscape and small desktops (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: var(--space-12);
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Large screens (1440px and above) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    section {
        padding: var(--space-24) 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card,
.service-card,
.pricing-card,
.location-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

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

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

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--color-background);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.faq-question svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: gap 0.2s ease;
}

.faq-link:hover {
    gap: var(--space-3);
}

.faq-link svg {
    color: var(--color-primary);
}

.faq-cta {
    text-align: center;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
}

.faq-cta p {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: var(--space-6);
    font-weight: 500;
}

/* Mobile adjustments for FAQ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .faq-item {
        padding: var(--space-6);
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.875rem;
    }
}

/* ===== SUBSCRIPTION SECTION ===== */
.subscription-section {
    margin-top: var(--space-16);
    padding-top: var(--space-16);
    border-top: 2px solid var(--color-border);
}

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

.subscription-header h3 {
    font-size: 1.875rem;
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.subscription-header p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    max-width: 1100px;
    margin: 0 auto;
}

.subscription-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.subscription-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.subscription-card.featured-sub {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

.subscription-card.featured-sub:hover {
    transform: scale(1.05) translateY(-4px);
}

.sub-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-success);
    color: white;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.subscription-card h4 {
    font-size: 1.5rem;
    margin-bottom: var(--space-6);
    color: var(--color-text);
}

.subscription-card.featured-sub h4 {
    color: white;
}

.sub-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--space-2);
}

.sub-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: var(--space-1);
}

.sub-price .amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.sub-price .period {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-left: var(--space-2);
}

.subscription-card.featured-sub .sub-price .period {
    color: rgba(255, 255, 255, 0.8);
}

.sub-items {
    font-size: 0.9375rem;
    margin-bottom: var(--space-8);
    color: var(--color-text-secondary);
    font-weight: 500;
}

.subscription-card.featured-sub .sub-items {
    color: rgba(255, 255, 255, 0.9);
}

.sub-features {
    text-align: left;
    margin-bottom: var(--space-8);
}

.sub-features li {
    padding: var(--space-3) 0;
    color: var(--color-text);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--color-border-light);
}

.sub-features li:last-child {
    border-bottom: none;
}

.subscription-card.featured-sub .sub-features li {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.subscription-card button {
    width: 100%;
    justify-content: center;
}

.subscription-card.featured-sub .btn-primary {
    background: white;
    color: var(--color-primary);
}

.subscription-card.featured-sub .btn-primary:hover {
    background: var(--color-surface);
}

/* Mobile adjustments for subscriptions */
@media (max-width: 768px) {
    .subscription-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .subscription-card {
        padding: var(--space-8);
    }
    
    .subscription-card.featured-sub {
        transform: scale(1);
    }
    
    .subscription-card.featured-sub:hover {
        transform: translateY(-4px);
    }
}
