/* CSS Variables based on Movallo app DARK theme */
:root {
  /* Colors - Dark Theme */
  --primary: #ABF732;
  --secondary: #A66CFE;
  --accent: #FFC94D;
  --background: #14151A;
  --dark-background: #050506;
  --surface: #1E2D28;
  --block1: #2D2D35;
  --block2: #1E1F24;
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-disabled: #628A7A;
  --border: #2A4037;
  --success: #9DDC2F;
  --warning: #FFC94D;
  --error: #FF5252;
  --card-background-opacity: rgba(255, 255, 255, 0.1);
  --modal-background: #14151A;
  --modal-button-background: #2D2D35;
  --icon-default: rgba(255, 255, 255, 0.5);

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  /* Border Radius */
  --radius-xs: 2px;
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 16px;
  --radius-pill: 9999px;

  /* Typography */
  --font-regular: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-light: 'AdineueProCyr', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-bold: 'AdineueProCyr', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --font-xs: 12px;
  --font-s: 14px;
  --font-m: 16px;
  --font-l: 18px;
  --font-xl: 20px;
  --font-xxl: 24px;
  --font-hero: 56px;
  --font-mega: 72px;

  /* Shadows */
  --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-large: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(171, 247, 50, 0.3);
  --shadow-glow-purple: 0 0 20px rgba(166, 108, 254, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #ABF732 0%, #9DDC2F 100%);
  --gradient-secondary: linear-gradient(135deg, #A66CFE 0%, #7A4DCC 100%);
  --gradient-accent: linear-gradient(135deg, #FFC94D 0%, #FFB800 100%);
  --gradient-bg: linear-gradient(135deg, #14151A 0%, #050506 100%);
  --gradient-card: linear-gradient(135deg, #2D2D35 0%, #1E1F24 100%);
}

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

body {
    font-family: var(--font-regular);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-bg);
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-l);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 21, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.header.scrolled {
    background: rgba(20, 21, 26, 0.98);
    box-shadow: var(--shadow-large);
    border-bottom: 1px solid var(--primary);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-m);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
    z-index: 2;
}

.logo {
    position: relative;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(171, 247, 50, 0.4));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(171, 247, 50, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: var(--font-xl);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
    font-size: var(--font-xs);
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: var(--spacing-s);
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-s);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--font-m);
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-m) var(--spacing-l);
    border-radius: var(--radius-m);
    background: transparent;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(171, 247, 50, 0.1);
    border-color: rgba(171, 247, 50, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    stroke: currentColor;
}

.nav-link:hover .nav-icon {
    transform: scale(1.2);
    stroke: var(--primary);
}

.nav-text {
    transition: all 0.3s ease;
}

.nav-link:hover .nav-text {
    text-shadow: 0 0 10px rgba(171, 247, 50, 0.5);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
}


.cta-button {
    display: flex;
    align-items: center;
    gap: var(--spacing-s);
    background: var(--gradient-primary);
    color: var(--dark-background);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-m);
    padding: var(--spacing-m) var(--spacing-xl);
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large), var(--shadow-glow);
    background: linear-gradient(135deg, #9DDC2F 0%, #ABF732 100%);
}

.cta-arrow {
    transition: transform 0.3s ease;
    font-size: var(--font-l);
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-s);
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--primary);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--modal-background);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-large);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-m);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--font-l);
    padding: var(--spacing-m);
    border-radius: var(--radius-m);
    transition: all 0.3s ease;
    background: var(--gradient-card);
    border: 1px solid var(--border);
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: rgba(171, 247, 50, 0.1);
    border-color: var(--primary);
    transform: translateX(8px);
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    stroke: currentColor;
}

.mobile-nav-link:hover .mobile-nav-icon {
    stroke: var(--primary);
}

.mobile-actions {
    margin-top: var(--spacing-m);
    padding-top: var(--spacing-m);
    border-top: 1px solid var(--border);
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-s);
    background: var(--gradient-primary);
    color: var(--dark-background);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-l);
    padding: var(--spacing-l) var(--spacing-xl);
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.mobile-cta-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-large), var(--shadow-glow);
}

.mobile-cta-arrow {
    font-size: var(--font-xl);
    transition: transform 0.3s ease;
}

.mobile-cta-button:hover .mobile-cta-arrow {
    transform: translateX(6px);
}

/* Hero Section */
.hero {
    padding: 90px 0 100px;
    background: var(--gradient-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(171, 247, 50, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(166, 108, 254, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 40% 40%, rgba(255, 201, 77, 0.04) 0%, transparent 70%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.grid-pattern {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-m);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--dark-background);
    padding: var(--spacing-s) var(--spacing-l);
    border-radius: var(--radius-pill);
    font-size: var(--font-s);
    font-weight: 700;
    margin-bottom: var(--spacing-l);
    box-shadow: var(--shadow-glow);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: var(--font-mega);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-l);
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(171, 247, 50, 0.5);
}

.hero-description {
    font-size: var(--font-xl);
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    background: var(--gradient-card);
    padding: var(--spacing-l);
    border-radius: var(--radius-l);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: var(--font-xxl);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: var(--spacing-s);
    text-shadow: 0 0 10px rgba(171, 247, 50, 0.3);
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: var(--font-s);
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-m);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-s);
    padding: var(--spacing-l) var(--spacing-xl);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-m);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-background);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large), var(--shadow-glow);
}

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

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

.btn-icon {
    transition: transform 0.3s ease;
    font-size: var(--font-l);
}

.btn:hover .btn-icon {
    transform: translateX(6px);
}

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

.phone-mockup {
    position: relative;
    border-radius: 40px;
    padding: 20px;
    max-width: 500px;
    width: 100%;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 42px;
    z-index: -1;
    opacity: 0.5;
}

.app-preview {
    width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--dark-background);
    position: relative;
    overflow: hidden;
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.features-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(171, 247, 50, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(171, 247, 50, 0.04) 0%, transparent 70%),
        radial-gradient(circle at 40% 60%, rgba(171, 247, 50, 0.06) 0%, transparent 70%);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(166, 108, 254, 0.04) 0%, transparent 70%),
        radial-gradient(circle at 90% 80%, rgba(255, 201, 77, 0.04) 0%, transparent 70%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--dark-background);
    padding: var(--spacing-s) var(--spacing-l);
    border-radius: var(--radius-pill);
    font-size: var(--font-s);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-m);
    box-shadow: var(--shadow-glow);
}

.section-title {
    font-size: var(--font-mega);
    font-weight: 900;
    margin-bottom: var(--spacing-m);
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--gradient-card);
    border-radius: var(--radius-l);
    padding: var(--spacing-xl);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-l);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .card-glow {
    opacity: 0.1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
    margin-bottom: var(--spacing-m);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-m);
    color: var(--dark-background);
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow), var(--shadow-large);
}

.card-title {
    font-size: var(--font-xl);
    font-weight: 800;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--font-m);
}

.card-footer {
    margin-top: var(--spacing-m);
}

.feature-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--dark-background);
    padding: var(--spacing-xs) var(--spacing-s);
    border-radius: var(--radius-pill);
    font-size: var(--font-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow);
}

/* How it works Section */
.how-it-works {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.how-it-works-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 80%, rgba(171, 247, 50, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 20% 20%, rgba(171, 247, 50, 0.04) 0%, transparent 70%),
        radial-gradient(circle at 60% 40%, rgba(171, 247, 50, 0.06) 0%, transparent 70%);
}

.steps-container {
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: 80px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-m);
    background: var(--gradient-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-l);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.step:hover::before {
    opacity: 0.05;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary);
}

.step-number {
    background: var(--gradient-primary);
    color: var(--dark-background);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xl);
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    font-size: var(--font-l);
    font-weight: 800;
    margin-bottom: var(--spacing-s);
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Download Section */
.download {
    padding: 120px 0;
    background: var(--gradient-bg);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.download-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.download-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(171, 247, 50, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(171, 247, 50, 0.04) 0%, transparent 70%),
        radial-gradient(circle at 60% 40%, rgba(171, 247, 50, 0.06) 0%, transparent 70%);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.download-info {
    text-align: left;
}

.download-title {
    font-size: var(--font-xxl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-l);
    line-height: 1.2;
}

.download-description {
    font-size: var(--font-l);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-m);
}

.download-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
    padding: var(--spacing-m);
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    transition: all 0.3s ease;
}

.download-feature:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-medium);
}

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

.download-feature span {
    font-size: var(--font-m);
    font-weight: 600;
    color: var(--text-primary);
}

.download-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-l);
    justify-content: center;
    align-items: center;
}

.download-btn {
    display: block;
    transition: all 0.3s ease;
    border-radius: var(--radius-m);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    flex: 0 0 auto;
}

.download-btn:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: var(--shadow-large);
}

.download-btn img {
    height: 60px;
    width: auto;
    display: block;
    max-width: 180px;
}

.download-btn.google img {
    height: 70px;
    max-width: 200px;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(171, 247, 50, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(166, 108, 254, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.download-content {
    position: relative;
    z-index: 2;
}

.download-description {
    font-size: var(--font-xl);
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.download-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-l);
    justify-content: center;
    align-items: center;
}

.download-btn {
    display: block;
    transition: all 0.3s ease;
    border-radius: var(--radius-m);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    flex: 0 0 auto;
}

.download-btn:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: var(--shadow-large);
}

.download-btn img {
    height: 70px;
    width: auto;
    border-radius: var(--radius-m);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: var(--gradient-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-l);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary);
}

.stat-number {
    font-size: var(--font-mega);
    font-weight: 900;
    margin-bottom: var(--spacing-s);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(171, 247, 50, 0.3);
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: var(--font-m);
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--gradient-bg);
    color: var(--text-primary);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(171, 247, 50, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(166, 108, 254, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    flex: 2;
    min-width: 300px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
    margin-bottom: var(--spacing-l);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(171, 247, 50, 0.3));
}

.footer-brand-name {
    font-size: var(--font-xl);
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(171, 247, 50, 0.3);
}

.footer-description {
    font-size: var(--font-m);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.footer-stats {
    display: flex;
    gap: var(--spacing-l);
}

.footer-stat {
    text-align: center;
}

.footer-stat .stat-number {
    display: block;
    font-size: var(--font-l);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.footer-stat .stat-label {
    font-size: var(--font-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title {
    font-size: var(--font-l);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-l);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-s);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-m);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-m);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-m);
    transition: all 0.3s ease;
    padding: var(--spacing-s);
    border-radius: var(--radius-s);
}

.social-link:hover {
    color: var(--primary);
    background: rgba(171, 247, 50, 0.1);
    transform: translateX(4px);
}

.social-link svg {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

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

.footer-copyright {
    color: var(--text-secondary);
    font-size: var(--font-m);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-l);
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-m);
    transition: all 0.3s ease;
}

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(171, 247, 50, 0.3));
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: var(--font-m);
}

.footer-section h4 {
    font-size: var(--font-l);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-s);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-m);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-links li {
    margin-bottom: var(--spacing-s);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-m);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-m);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-m);
    transition: all 0.3s ease;
    padding: var(--spacing-s);
    border-radius: var(--radius-s);
}

.social-link:hover {
    color: var(--primary);
    background: rgba(171, 247, 50, 0.1);
    transform: translateX(4px);
}

.social-link svg {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .header-actions {
        display: none;
    }

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

    .logo-text {
        display: none;
    }

    .logo-img {
        height: 45px;
    }

    .header-container {
        height: 80px;
    }

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

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

    .phone-mockup {
        max-width: 250px;
        margin: 0 auto;
    }

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

    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-m);
    }

    .download-btn img {
        height: 50px;
        max-width: 150px;
    }

    .download-btn.google img {
        height: 60px;
        max-width: 170px;
    }

    .download-stats {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

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

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

    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .header-container {
        padding: 0 var(--spacing-s);
    }

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

    .hero-description {
        font-size: var(--font-m);
    }

    .btn {
        padding: var(--spacing-m) var(--spacing-l);
        font-size: var(--font-s);
        min-width: 160px;
    }

    .section-title {
        font-size: 48px;
    }

    .download-stats {
        flex-direction: column;
        gap: 30px;
    }

    .mobile-menu-content {
        padding: var(--spacing-l);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: var(--font-m);
    }

    .btn {
        padding: var(--spacing-m) var(--spacing-l);
        font-size: var(--font-s);
        min-width: 160px;
    }

    .section-title {
        font-size: 48px;
    }

    .download-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* Step Cards */
.step-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-l);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

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

.step-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-l);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover .step-glow {
    opacity: 0.1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-m);
    background: var(--gradient-primary);
    border-radius: var(--radius-m);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-background);
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    stroke-width: 2;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow), var(--shadow-large);
}

.step-title {
    font-size: var(--font-xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-m);
}

.step-description {
    font-size: var(--font-m);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-m);
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-s);
    justify-content: center;
}

.step-feature {
    background: var(--gradient-primary);
    color: var(--dark-background);
    padding: var(--spacing-xs) var(--spacing-s);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow);
}

/* Additional Content */
.additional-content {
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.content-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    padding: var(--spacing-l);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.content-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-m);
    background: var(--gradient-primary);
    border-radius: var(--radius-m);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-background);
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.content-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 2;
}

.content-card:hover .content-icon {
    transform: scale(1.1);
}

.content-title {
    font-size: var(--font-l);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-s);
}

.content-description {
    font-size: var(--font-s);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        gap: 40px;
    }

    .footer-brand {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-section {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .footer-content {
        gap: 30px;
    }

    .footer-section {
        flex: 1 1 100%;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        /* gap: var(--spacing-m); */
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Complete Responsive System */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 var(--spacing-xl);
    }

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

    .section-title {
        font-size: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 1024px;
        padding: 0 var(--spacing-l);
    }

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

    .section-title {
        font-size: 42px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 768px;
        padding: 0 var(--spacing-m);
    }

    .hero {
        padding: 100px 0;
    }

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

    .hero-description {
        font-size: var(--font-l);
    }

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

    .section-subtitle {
        font-size: var(--font-l);
    }

    .features {
        padding: 100px 0;
    }

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

    .how-it-works {
        padding: 100px 0;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .download {
        padding: 100px 0;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .download-info {
        text-align: center;
    }

    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-l);
    }

    .download-btn img {
        height: 55px;
        max-width: 160px;
    }

    .download-btn.google img {
        height: 65px;
        max-width: 180px;
    }

    .footer {
        padding: 100px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-stats {
        justify-content: center;
    }
}

/* Tablet Portrait (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        max-width: 767px;
        padding: 0 var(--spacing-m);
    }

    .header-container {
        padding: 0 var(--spacing-m);
    }

    .hero {
        padding: 90px 0;
    }

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

    .hero-description {
        font-size: var(--font-m);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-m);
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-l);
    }

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

    .section-subtitle {
        font-size: var(--font-m);
    }

    .features {
        padding: 90px 0;
    }

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

    .feature-card {
        padding: var(--spacing-l);
    }

    .how-it-works {
        padding: 90px 0;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-card {
        padding: var(--spacing-l);
    }

    .download {
        padding: 90px 0;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .download-info {
        text-align: center;
    }

    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-m);
    }

    .download-btn img {
        height: 50px;
        max-width: 150px;
    }

    .download-btn.google img {
        height: 60px;
        max-width: 170px;
    }

    .footer {
        padding: 90px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-stats {
        flex-direction: column;
        gap: var(--spacing-m);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-m);
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile Large (401px - 480px) */
@media (min-width: 401px) and (max-width: 480px) {
    .container {
        max-width: 480px;
        padding: 0 var(--spacing-s);
    }

    .header-container {
        padding: 0 var(--spacing-s);
    }

    .hero {
        padding: 80px 0;
    }

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

    .hero-description {
        font-size: var(--font-m);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-s);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-m);
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: var(--font-s);
    }

    .features {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-m);
    }

    .feature-card {
        padding: var(--spacing-m);
    }

    .how-it-works {
        padding: 80px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-m);
    }

    .step-card {
        padding: var(--spacing-m);
    }

    .download {
        padding: 80px 0;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-l);
    }

    .download-info {
        text-align: center;
    }

    .download-buttons {
        flex-direction: column;
        gap: var(--spacing-m);
    }

    .download-btn img {
        height: 45px;
        max-width: 140px;
    }

    .download-btn.google img {
        height: 55px;
        max-width: 160px;
    }

    .footer {
        padding: 80px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-l);
    }

    .footer-brand {
        text-align: center;
        margin-bottom: var(--spacing-l);
    }

    .footer-stats {
        flex-direction: column;
        gap: var(--spacing-m);
    }

    .footer-section {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-m);
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-s);
    }

    .social-link {
        flex: 1;
        min-width: 100px;
        justify-content: center;
    }
}

/* Mobile Small (321px - 400px) */
@media (min-width: 321px) and (max-width: 400px) {
    .container {
        max-width: 400px;
        padding: 0 var(--spacing-s);
    }

    .header-container {
        padding: 0 var(--spacing-s);
    }

    .hero {
        padding: 70px 0;
    }

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

    .hero-description {
        font-size: var(--font-s);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-s);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-s);
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: var(--font-s);
    }

    .features {
        padding: 70px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-s);
    }

    .feature-card {
        padding: var(--spacing-s);
    }

    .how-it-works {
        padding: 70px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-s);
    }

    .step-card {
        padding: var(--spacing-s);
    }

    .download {
        padding: 70px 0;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-m);
    }

    .download-info {
        text-align: center;
    }

    .download-buttons {
        flex-direction: column;
        gap: var(--spacing-s);
    }

    .download-btn img {
        height: 42px;
        max-width: 130px;
    }

    .download-btn.google img {
        height: 50px;
        max-width: 145px;
    }

    .footer {
        padding: 70px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-m);
    }

    .footer-brand {
        text-align: center;
        margin-bottom: var(--spacing-m);
    }

    .footer-stats {
        flex-direction: column;
        gap: var(--spacing-s);
    }

    .footer-section {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-s);
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-xs);
    }

    .social-link {
        flex: 1;
        min-width: 90px;
        justify-content: center;
        padding: var(--spacing-xs);
    }

    .social-link span {
        font-size: var(--font-xs);
    }
}

/* Mobile Extra Small (320px) - Footer Fix */
@media (max-width: 320px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-xs);
    }

    .header-container {
        padding: 0 var(--spacing-xs);
    }

    .header {
        padding: var(--spacing-s) 0;
    }

    .logo-text {
        display: none;
    }

    .nav-menu {
        gap: var(--spacing-s);
    }

    .nav-text {
        font-size: var(--font-xs);
    }

    .cta-button {
        padding: var(--spacing-s) var(--spacing-m);
        font-size: var(--font-xs);
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: var(--font-s);
        margin-bottom: var(--spacing-l);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-s);
    }

    .btn {
        padding: var(--spacing-s) var(--spacing-m);
        font-size: var(--font-s);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-s);
    }

    .stat {
        text-align: center;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: var(--font-s);
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-m);
    }

    .feature-card {
        padding: var(--spacing-m);
    }

    .feature-title {
        font-size: var(--font-m);
    }

    .feature-description {
        font-size: var(--font-s);
    }

    .how-it-works {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-m);
    }

    .step-card {
        padding: var(--spacing-m);
    }

    .step-title {
        font-size: var(--font-m);
    }

    .step-description {
        font-size: var(--font-s);
    }

    .download {
        padding: 60px 0;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-l);
    }

    .download-title {
        font-size: var(--font-l);
    }

    .download-description {
        font-size: var(--font-s);
    }

    .download-features {
        gap: var(--spacing-s);
    }

    .download-feature {
        padding: var(--spacing-s);
    }

    .download-feature span {
        font-size: var(--font-s);
    }

    .download-buttons {
        flex-direction: column;
        gap: var(--spacing-s);
    }

    .download-btn img {
        height: 40px;
        max-width: 120px;
    }

    .download-btn.google img {
        height: 45px;
        max-width: 130px;
    }

    /* Footer - Complete Fix */
    .footer {
        padding: 60px 0 0;
        overflow-x: hidden;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-l);
        width: 100%;
        max-width: 100%;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: var(--spacing-l);
        width: 100%;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: var(--spacing-s);
    }

    .footer-brand-name {
        font-size: var(--font-l);
    }

    .footer-description {
        font-size: var(--font-s);
        line-height: 1.4;
        max-width: 100%;
        word-wrap: break-word;
    }

    .footer-section {
        text-align: center;
        width: 100%;
        margin-bottom: var(--spacing-m);
    }

    .footer-title {
        font-size: var(--font-m);
        margin-bottom: var(--spacing-s);
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: center;
    }

    .footer-links a {
        font-size: var(--font-s);
        text-align: center;
        white-space: nowrap;
    }

    .social-links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-xs);
        width: 100%;
    }

    .social-link {
        flex: 0 0 auto;
        min-width: 70px;
        max-width: 80px;
        justify-content: center;
        padding: var(--spacing-xs);
        text-align: center;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    .social-link span {
        font-size: 10px;
        line-height: 1.2;
    }

    .footer-bottom {
        width: 100%;
        overflow-x: hidden;
    }

    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-s);
        text-align: center;
        width: 100%;
    }

    .footer-copyright {
        font-size: var(--font-s);
        line-height: 1.3;
        word-wrap: break-word;
    }

    .footer-legal {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: center;
        width: 100%;
    }

    .footer-legal a {
        font-size: var(--font-s);
        text-align: center;
        white-space: nowrap;
    }
}

/* Global overflow prevention */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(171, 247, 50, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(171, 247, 50, 0.6);
    }
}

.feature-card {
    animation: fadeInUp 0.8s ease-out;
}

.step {
    animation: slideInLeft 0.8s ease-out;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.btn-primary {
    animation: glow 2s ease-in-out infinite;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-s);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--success);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--dark-background);
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}


