/* ============================================
   CSS Variables - Colors from Banner
   ============================================ */
:root {
    /* Brand Colors from Banner */
    --primary-navy: #1a2847;
    --primary-cyan: #00d4ff;
    --secondary-navy: #2d3e6f;
    --light-cyan: #7de7ff;
    --dark-navy: #0d1729;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #e2e8f0;
    --gray: #94a3b8;
    --dark-gray: #334155;
    --black: #0f172a;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-navy) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(26, 40, 71, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 40, 71, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 40, 71, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 40, 71, 0.16);
    --shadow-xl: 0 16px 48px rgba(26, 40, 71, 0.24);
    --shadow-cyan: 0 8px 32px rgba(0, 212, 255, 0.3);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-md);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-cyan);
}

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

.btn.large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar {
    padding: var(--space-md) 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--primary-navy);
    font-size: 1.25rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    color: var(--primary-cyan);
    animation: float 3s ease-in-out infinite;
}

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

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    margin: 0;
}

.nav-menu li a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-cyan);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 12px;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width var(--transition-base);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: calc(100% - 24px);
}

.btn-app-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-cyan);
}

.btn-app-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-images {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.85) 0%, rgba(0, 212, 255, 0.6) 100%);
    z-index: 1;
}

.hero-logo-overlay {
    position: absolute;
    top: 120px;
    right: 5%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-logo-overlay .logo-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-cyan);
}

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

.hero-logo-overlay .logo-main {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.hero-logo-overlay .logo-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-2xl) 0;
}

.hero-text {
    animation: slideInRight 0.8s ease-out;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 20px;
    height: 20px;
}

.hero-title {
    margin-bottom: var(--space-md);
    color: var(--white);
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-cyan);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.95rem;
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Store Delivery Section */
.store-delivery-section {
    padding: var(--space-2xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.store-delivery-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.store-delivery-text h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.store-delivery-text .lead {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

.store-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.store-feature-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border-right: 4px solid var(--primary-cyan);
}

.sf-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.sf-content h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.sf-content p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

.store-delivery-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.store-visual-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.store-visual-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-10px);
}

.svc-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.store-visual-card h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.store-visual-card p {
    opacity: 0.9;
    font-size: 0.9rem;
    margin: 0;
}

/* Merchant Form Section */
.merchant-form-section {
    padding: var(--space-2xl) 0;
    background: var(--off-white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-container h2 {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.form-container .form-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: var(--space-xl);
}

.merchant-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-navy);
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: var(--space-md);
    background: var(--gradient-glow);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-cyan);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    margin: 0;
}

.conditional-fields {
    display: none;
    padding: var(--space-md);
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--radius-md);
    border-right: 4px solid var(--primary-cyan);
}

.conditional-fields.active {
    display: block;
}

.radio-group {
    display: flex;
    gap: var(--space-lg);
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-option label {
    cursor: pointer;
    margin: 0;
    font-weight: 500;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gradient-glow);
    border: 2px dashed var(--primary-cyan);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--primary-navy);
    font-weight: 600;
}

.file-upload-label:hover {
    background: rgba(0, 212, 255, 0.15);
}

.file-name {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-submit {
    margin-top: var(--space-md);
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
}

.form-note {
    text-align: center;
    margin-top: var(--space-md);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   Hero Section
   ============================================ */

/* ============================================
   Sections Common Styles
   ============================================ */
section {
    padding: var(--space-2xl) 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-glow);
    border: 1px solid var(--primary-cyan);
    border-radius: var(--radius-full);
    color: var(--primary-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

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

.section-desc {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   App Download Section
   ============================================ */
.app-download-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.app-download-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 40, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(26, 40, 71, 0.1));
    border-radius: var(--radius-full);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.section-badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary-cyan);
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.app-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

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

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

.app-card.featured {
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

.app-card.featured::before {
    transform: scaleX(1);
}

.app-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-cyan);
    animation: pulse 2s ease-in-out infinite;
}

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

.app-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(26, 40, 71, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.app-card:hover .app-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: var(--shadow-md);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.app-info {
    text-align: center;
    margin-bottom: 25px;
}

.app-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.app-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.app-features span {
    font-size: 0.875rem;
    color: var(--dark-gray);
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--radius-sm);
    border-right: 3px solid var(--primary-cyan);
}

.app-download-btns {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.btn-download {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-download.android {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-download.android:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cyan);
}

.btn-download.android svg {
    width: 24px;
    height: 24px;
}

.btn-download.ios {
    background: linear-gradient(135deg, #555, #333);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-download.ios:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-download.disabled {
    background: var(--light-gray);
    color: var(--gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-download.disabled:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.app-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(26, 40, 71, 0.05));
    border-radius: var(--radius-lg);
    border: 2px dashed var(--primary-cyan);
}

.app-cta p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .apps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .app-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .app-download-section {
        padding: 60px 0;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .app-card {
        padding: 30px 25px;
    }
    
    .app-download-btns {
        flex-direction: column;
    }
    
    .btn-download {
        width: 100%;
    }
}

/* ============================================
   Why Section
   ============================================ */
.why-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-navy);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Services Quick Section
   ============================================ */
.services-quick {
    background: var(--off-white);
}

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

.service-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-box:hover::before {
    opacity: 1;
}

.service-box.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-box.highlight h3,
.service-box.highlight p {
    color: var(--white);
}

.service-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon-big {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.service-box p {
    color: var(--gray);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-cyan);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-box.highlight .service-link {
    color: var(--white);
}

.service-link:hover {
    gap: 10px;
}

/* ============================================
   Delivery Methods Section
   ============================================ */
.delivery-methods {
    background: var(--white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.method-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.method-card.featured {
    border-color: var(--primary-cyan);
    transform: scale(1.05);
    box-shadow: var(--shadow-cyan);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-cyan);
}

.method-visual {
    margin-bottom: var(--space-md);
}

.method-icon {
    font-size: 5rem;
    margin-bottom: var(--space-sm);
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.method-features {
    list-style: none;
    text-align: right;
    margin-bottom: var(--space-md);
}

.method-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.method-capacity {
    background: var(--gradient-glow);
    border: 1px solid var(--primary-cyan);
    padding: 10px;
    border-radius: var(--radius-md);
    color: var(--primary-cyan);
    font-weight: 700;
}

.method-note {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(26, 40, 71, 0.1));
    border-right: 4px solid var(--primary-cyan);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    color: var(--dark-gray);
    font-size: 1rem;
}

/* ============================================
   App Download Section
   ============================================ */
.app-section {
    background: var(--gradient-primary);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.app-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.badge-icon {
    font-size: 1.2rem;
}

.app-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.app-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.app-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
}

.app-feature-icon {
    font-size: 1.5rem;
}

.app-download-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-icon svg {
    width: 32px;
    height: 32px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.btn-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.btn-store {
    font-size: 1rem;
    font-weight: 700;
}

.app-qr {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 10px;
    margin: 0 auto var(--space-sm);
}

.qr-code svg {
    width: 100%;
    height: 100%;
}

.app-visual {
    position: relative;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    background: var(--dark-navy);
    border-radius: 30px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

.app-screenshot {
    padding: var(--space-md);
}

.app-header-demo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
}

.demo-logo {
    font-weight: 800;
    color: var(--primary-navy);
    font-size: 1.2rem;
}

.demo-menu {
    font-size: 1.5rem;
    color: var(--primary-navy);
}

.app-hero-demo {
    padding: var(--space-md) 0;
}

.app-hero-demo h3 {
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.demo-input {
    background: var(--off-white);
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}

.demo-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: var(--space-md);
}

.app-features-demo {
    display: flex;
    gap: 8px;
    margin-top: var(--space-md);
}

.demo-feature {
    flex: 1;
    background: var(--gradient-glow);
    padding: 8px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.7rem;
    color: var(--primary-navy);
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(20px);
}

.float-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.float-icon.icon-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.float-icon.icon-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 0.7s;
}

.float-icon.icon-3 {
    top: 50%;
    right: -5%;
    animation-delay: 1.4s;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: var(--off-white);
    padding: var(--space-2xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.stat-label {
    color: var(--dark-gray);
    font-size: 1.125rem;
    font-weight: 600;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--primary-navy);
    color: var(--white);
    text-align: center;
    padding: var(--space-2xl) 0;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
}

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

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-cyan);
    transform: translateY(-3px);
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-cyan);
    padding-right: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary-cyan);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: all var(--transition-base);
}

.footer-store-btn:hover {
    background: rgba(0, 212, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom-text p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.designer-credit {
    font-size: 0.85rem !important;
    color: rgba(0, 212, 255, 0.8) !important;
    font-weight: 600;
}

.footer-badges {
    display: flex;
    gap: var(--space-md);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid var(--primary-cyan);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--primary-cyan);
}

/* ============================================
   Floating Elements
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.app-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 12px var(--space-md);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 998;
    display: none;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.sticky-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.sticky-text strong {
    font-size: 1rem;
    font-weight: 700;
}

.sticky-text span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.sticky-btn {
    background: var(--white);
    color: var(--primary-navy);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    white-space: nowrap;
}

/* ============================================
   Animations
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.8); }
}

@keyframes moveRight {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(20px); opacity: 0; }
}

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

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

/* ============================================
   Page Header (Internal Pages)
   ============================================ */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span:last-child {
    color: var(--white);
    font-weight: 600;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* ============================================
   About Page Specific Styles
   ============================================ */
.about-story {
    padding: var(--space-2xl) 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.story-text .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: var(--space-md);
}

.story-text p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--off-white);
    border-radius: var(--radius-lg);
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.story-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    position: relative;
}

.visual-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.visual-card.card-1 {
    animation: float 3s ease-in-out infinite;
}

.visual-card.card-2 {
    animation: float 3s ease-in-out infinite 0.5s;
}

.visual-card.card-3 {
    animation: float 3s ease-in-out infinite 1s;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.visual-card h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--primary-navy);
}

.visual-card p {
    color: var(--primary-cyan);
    font-weight: 600;
    margin: 0;
}

/* Vision & Mission */
.vision-mission {
    background: var(--off-white);
    padding: var(--space-2xl) 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.vm-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.vm-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
}

.vm-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--primary-navy);
}

.vm-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: var(--space-2xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-navy);
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Coverage Section */
.coverage-section {
    background: var(--off-white);
    padding: var(--space-2xl) 0;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.coverage-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    border-right: 4px solid var(--primary-cyan);
}

.coverage-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.coverage-item strong {
    display: block;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.coverage-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.coverage-note {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(26, 40, 71, 0.1));
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-right: 4px solid var(--primary-cyan);
}

.coverage-map {
    text-align: center;
}

.map-placeholder {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.map-placeholder svg {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.map-caption {
    margin-top: var(--space-md);
    color: var(--gray);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: var(--space-2xl) 0;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.team-feature {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.team-feature:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tf-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
}

.team-feature h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-navy);
}

.team-feature p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.team-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
}

.team-cta h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.team-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

/* Why Choose Section */
.why-choose {
    background: var(--off-white);
    padding: var(--space-2xl) 0;
}

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

.why-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    transform: scaleY(1);
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-glow);
    color: var(--primary-cyan);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    border: 2px solid var(--primary-cyan);
}

.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-navy);
}

.why-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   Pricing Page Styles
   ============================================ */
.pricing-note-section {
    padding: var(--space-xl) 0;
    background: var(--gradient-glow);
}

.pricing-note-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid var(--primary-cyan);
}

.note-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.pricing-note-card h3 {
    color: var(--primary-navy);
    margin-bottom: var(--space-sm);
}

.pricing-note-card p {
    color: var(--gray);
    margin-bottom: var(--space-lg);
}

.pricing-section {
    padding: var(--space-2xl) 0;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-cyan);
    transform: scale(1.02);
    box-shadow: var(--shadow-cyan);
}

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

.pricing-header {
    padding: var(--space-xl);
    text-align: center;
    background: var(--gradient-glow);
}

.vehicle-icon {
    font-size: 4rem;
    margin-bottom: var(--space-sm);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--primary-navy);
}

.vehicle-capacity {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-body {
    padding: var(--space-lg);
}

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

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

.distance {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

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

.pricing-footer {
    padding: var(--space-md) var(--space-lg);
    background: var(--off-white);
    text-align: center;
}

.ideal-for {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-notes {
    background: var(--gradient-glow);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--primary-cyan);
}

.pricing-notes h4 {
    color: var(--primary-navy);
    margin-bottom: var(--space-sm);
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.pricing-notes li::before {
    content: '• ';
    color: var(--primary-cyan);
    font-weight: bold;
    margin-left: 8px;
}

.intercity-pricing {
    padding: var(--space-2xl) 0;
    background: var(--off-white);
}

.intercity-table {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.intercity-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.intercity-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.intercity-card h3 {
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
}

.intercity-card.highlight h3 {
    color: var(--white);
}

.destination-prices {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.dest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    background: var(--gradient-glow);
    border-radius: var(--radius-md);
}

.dest-name {
    font-weight: 600;
    color: var(--primary-navy);
}

.dest-price {
    color: var(--primary-cyan);
    font-weight: 700;
}

.min-charge {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    background: rgba(231, 76, 60, 0.1);
    border-radius: var(--radius-md);
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
}

.discount-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.discount-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
}

.discount-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.discount-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.discount-item p {
    color: var(--primary-cyan);
    font-weight: 700;
    margin: 0;
}

.pricing-disclaimer {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-right: 4px solid #e74c3c;
    color: #c0392b;
    font-size: 0.95rem;
}

.factors-section {
    padding: var(--space-2xl) 0;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.factor-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.factor-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.factor-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.factor-card h4 {
    color: var(--primary-navy);
    margin-bottom: var(--space-xs);
}

.factor-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   Services Page Styles
   ============================================ */
.services-main {
    padding: var(--space-2xl) 0;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.main-service-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.main-service-card.featured {
    border-color: var(--primary-cyan);
    transform: scale(1.02);
    box-shadow: var(--shadow-cyan);
    position: relative;
}

.main-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-cyan);
}

.service-header {
    padding: var(--space-xl);
    text-align: center;
    background: var(--gradient-glow);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.service-header h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-navy);
}

.service-tagline {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 1rem;
}

.service-body {
    padding: var(--space-xl);
    flex-grow: 1;
}

.service-body > p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.service-features-list h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--primary-navy);
}

.service-features-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.service-features-list li {
    padding: 10px 0;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

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

.service-specs {
    background: var(--off-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.spec-item strong {
    color: var(--primary-navy);
    font-size: 0.95rem;
}

.spec-item span {
    color: var(--gray);
    font-size: 0.95rem;
}

.service-footer {
    padding: var(--space-lg) var(--space-xl);
    background: var(--off-white);
    text-align: center;
}

/* Business Services */
.business-services {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-2xl) 0;
}

.business-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.business-text h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.business-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.benefit-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.benefit-item p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

.stats-showcase {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

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

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Vehicles Section */
.vehicles-section {
    padding: var(--space-2xl) 0;
    background: var(--off-white);
}

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

.vehicle-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.vehicle-card.featured {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-cyan);
}

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

.vehicle-visual {
    margin-bottom: var(--space-md);
}

.vehicle-icon {
    font-size: 5rem;
    margin-bottom: var(--space-sm);
}

.vehicle-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-navy);
}

.vehicle-desc {
    color: var(--gray);
    margin-bottom: var(--space-lg);
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.v-spec {
    text-align: center;
}

.v-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.v-value {
    display: block;
    font-weight: 700;
    color: var(--primary-navy);
}

.vehicle-ideal {
    text-align: right;
    padding: var(--space-md);
    background: var(--gradient-glow);
    border-radius: var(--radius-md);
}

.vehicle-ideal strong {
    display: block;
    margin-bottom: var(--space-sm);
    color: var(--primary-navy);
}

.vehicle-ideal ul {
    list-style: none;
    padding: 0;
}

.vehicle-ideal li {
    padding: 4px 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.vehicle-ideal li::before {
    content: '✓ ';
    color: var(--primary-cyan);
    font-weight: bold;
}

.vehicle-note {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(26, 40, 71, 0.1));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border-right: 4px solid var(--primary-cyan);
}

/* Process Section */
.process-section {
    padding: var(--space-2xl) 0;
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-cyan);
}

.step-content h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-navy);
}

.step-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .app-content,
    .story-content,
    .coverage-content,
    .business-content,
    .store-delivery-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .story-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: none;
    }
    
    .hero-logo-overlay {
        top: 100px;
        right: 50%;
        transform: translateX(50%);
        padding: 15px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-table,
    .intercity-table {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .services-grid,
    .methods-grid,
    .features-grid,
    .values-grid,
    .team-features,
    .why-grid,
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .app-download-buttons {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 70px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    
    .app-sticky-mobile {
        display: block;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
    }
    
    .vehicle-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-logo-overlay {
        top: 90px;
        padding: 12px 16px;
    }
    
    .hero-logo-overlay .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .hero-logo-overlay .logo-main {
        font-size: 1.25rem;
    }
    
    .hero-logo-overlay .logo-sub {
        font-size: 0.7rem;
    }
    
    .form-container {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .method-card.featured,
    .vehicle-card.featured,
    .main-service-card.featured {
        transform: scale(1);
    }
    
    .story-highlights {
        padding: var(--space-md);
    }
    
    .hero-logo-overlay {
        top: 85px;
        padding: 10px 14px;
    }
    
    .hero-logo-overlay .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .hero-logo-overlay .logo-main {
        font-size: 1rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ============================================
   Logo Image Support
   ============================================ */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* ============================================
   Enhanced Mobile Responsiveness
   ============================================ */
@media (max-width: 768px) {
    /* Hide hero logo overlay on mobile - too big */
    .hero-logo-overlay {
        display: none;
    }
    
    /* Better hero on mobile */
    .hero {
        min-height: 70vh;
        padding-top: 80px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Store delivery section mobile */
    .store-delivery-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .store-feature-item {
        padding: var(--space-sm);
    }
    
    .sf-icon {
        font-size: 2rem;
    }
    
    /* Merchant form mobile */
    .form-container {
        padding: var(--space-md);
        margin: 0 10px;
    }
    
    .form-container h2 {
        font-size: 1.5rem;
    }
    
    /* Better buttons on mobile */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .btn.large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile fixes */
    .hero {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .hero-cta .btn {
        flex: 1;
        justify-content: center;
    }
    
    .store-features {
        gap: var(--space-sm);
    }
    
    .sf-content h4 {
        font-size: 1rem;
    }
    
    .sf-content p {
        font-size: 0.85rem;
    }
}

/* ============================================
   CRITICAL: Fix Horizontal Scroll on Mobile
   ============================================ */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
}

/* Fix any elements that might cause overflow */
img {
    max-width: 100%;
    height: auto;
}

.hero-bg-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Animated Trucks Section
   ============================================ */
.form-header-with-trucks {
    margin-bottom: 30px;
    padding: 20px 0;
}

.truck-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.truck-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.3;
    transform: scale(0.85);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.truck-item.active {
    opacity: 1;
    transform: scale(1.15);
}

.truck-item .truck-icon {
    font-size: 3.5rem;
    transition: all 0.6s ease;
    filter: grayscale(100%);
}

.truck-item.active .truck-icon {
    filter: grayscale(0%);
    animation: truckBounce 0.6s ease;
}

.truck-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    transition: all 0.4s ease;
}

.truck-item.active span {
    color: var(--primary-cyan);
    font-size: 1rem;
}

/* Traffic light indicator */
.truck-item::before {
    content: '';
    position: absolute;
    top: -15px;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.truck-item.active::before {
    background: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

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

/* Mobile responsive for trucks */
@media (max-width: 768px) {
    .truck-animation {
        gap: 25px;
    }
    
    .truck-item .truck-icon {
        font-size: 2.5rem;
    }
    
    .truck-item span {
        font-size: 0.8rem;
    }
    
    .truck-item.active span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .truck-animation {
        gap: 15px;
    }
    
    .truck-item .truck-icon {
        font-size: 2rem;
    }
    
    .truck-item span {
        font-size: 0.75rem;
    }
}

/* ============================================
   Enhanced Mobile Fixes - CRITICAL
   ============================================ */
@media (max-width: 768px) {
    /* Fix hero section overflow */
    .hero {
        overflow: hidden;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Fix form section */
    .merchant-form-section {
        overflow: hidden;
    }
    
    .form-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Fix store delivery section */
    .store-delivery-section {
        overflow: hidden;
    }
    
    .store-delivery-content {
        width: 100%;
    }
    
    .store-delivery-visual {
        width: 100%;
        gap: 15px;
    }
    
    .store-visual-card {
        flex: 1;
        min-width: 0;
    }
    
    /* Fix stats section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Fix footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Fix app section */
    .app-content {
        flex-direction: column;
    }
    
    .app-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Extra safety for very small screens */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        word-break: break-word;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* ============================================
   Installation Instructions & FAQ
   ============================================ */
.install-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.install-step {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.install-step:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-lg);
}

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

.step-content h3 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.step-content code {
    background: rgba(0, 212, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-navy);
    font-size: 0.9rem;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.step-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--dark-gray);
    line-height: 1.7;
}

.step-list li::before {
    content: '←';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 1.25rem;
}

.note-box {
    padding: 20px 25px;
    border-radius: var(--radius-md);
    margin-top: 15px;
    border-right: 4px solid;
}

.note-box.warning {
    background: rgba(255, 193, 7, 0.1);
    border-right-color: #ffc107;
}

.note-box.security {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(26, 40, 71, 0.05));
    border-right-color: var(--primary-cyan);
}

.note-box strong {
    color: var(--primary-navy);
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-cyan);
    transition: transform var(--transition-base);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    margin-top: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .install-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
