﻿/* ================================================
   COMPREHENSIVE RESPONSIVE STYLES FOR GO.RAZOR
   Mobile-First Design with Progressive Enhancement
   ================================================ */

/* CSS VARIABLES */
:root {
    --bg: #fffdf9;
    --bg-alt: #faf5ef;
    --bg-accent: linear-gradient(135deg,#7d1231,#b2293f 55%,#d38a2d);
    --text: #332325;
    --muted: #ffffff;
    --primary: #8c1538;
    --primary-hover: #a51943;
    --accent: #cfa640;
    --accent-grad: linear-gradient(90deg,#d5ab42,#f5d67b);
    --radius: clamp(12px, 2vw, 18px);
    --shadow: 0 4px 16px -4px rgba(30,4,15,.22), 0 2px 8px -2px rgba(30,4,15,.15);
    --shadow-lg: 0 10px 40px -8px rgba(30,4,15,.28), 0 4px 20px -4px rgba(30,4,15,.2);
    --transition: .32s cubic-bezier(.4,0,.2,1);
    --container-max: 1400px;
    --spacing-xs: clamp(0.5rem, 1.5vw, 0.75rem);
    --spacing-sm: clamp(0.75rem, 2vw, 1.25rem);
    --spacing-md: clamp(1.25rem, 3vw, 2rem);
    --spacing-lg: clamp(2rem, 5vw, 4rem);
    --spacing-xl: clamp(3rem, 7vw, 6rem);
}

/* BASE RESETS */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 0.75em;
}

p {
    margin: 0 0 1em;
    line-height: 1.65;
}

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

    a:hover, a:focus {
        color: var(--primary-hover);
    }

    a:focus-visible {
        outline: 3px solid var(--accent);
        outline-offset: 3px;
        border-radius: 4px;
    }

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

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

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

.skip-link a {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: #000;
    color: #fff;
    padding: 0.875rem 1.5rem;
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

    .skip-link a:focus {
        top: 0;
    }

/* PROMO BANNER */
.promo-banner {
    background: var(--bg-accent);
    color: #fff;
    padding: clamp(0.75rem, 2vw, 1rem) var(--spacing-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.promo-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.promo-text {
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 600;
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-wrap: wrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

    .promo-text .highlight {
        background: rgba(255,255,255,.25);
        padding: 0.25rem 0.875rem;
        border-radius: 999px;
        font-weight: 700;
        border: 1px solid rgba(255,255,255,.35);
    }

.countdown {
    font-weight: 700;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    background: rgba(255,255,255,0.18);
    padding: 0.3rem 0.875rem;
    border-radius: 8px;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: clamp(550px, 90vh, 1000px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.12) saturate(1.08);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(60,10,20,.68) 0%, rgba(40,5,12,.78) 50%, rgba(30,8,15,.85) 100%);
    z-index: 2;
}

.hero-overlay {
    position: relative;
    max-width: min(92vw, 1200px);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    color: #fff;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay h1 {
    font-size: clamp(2rem, 7vw, 5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 3px 6px rgba(0,0,0,0.4), 0 6px 12px rgba(0,0,0,0.3);
}

.subheadline {
    font-size: clamp(1.1rem, 3vw, 1.85rem);
    font-weight: 500;
    margin: 0 0 var(--spacing-lg);
    color: var(--muted);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.trust-points {
    list-style: none;
    display: flex;
    /*gap: var(--spacing-sm);*/
    flex-wrap: wrap;
    justify-content: center;
    font-size: clamp(0.875rem, 2vw, 1.05rem);
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.4s both;
}

    .trust-points li {
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        white-space: nowrap;
        /* gap: 0.5rem;
        background: rgba(255,255,255,0.18);
        padding: var(--spacing-xs) var(--spacing-sm);
        border-radius: 9px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255,255,255,0.28);
        box-shadow: 0 4px 14px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.22);*/
    }

        .trust-points li:hover {
            transform: translateY(-4px);
            /*background: rgba(255,255,255,0.28);
            box-shadow: 0 8px 24px rgba(0,0,0,0.35);*/
        }

.tp-icon {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.hero-video-controls {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    display: flex;
    gap: 0.5rem;
    z-index: 15;
    opacity: 0.75;
    transition: opacity 0.3s;
}

    .hero-video-controls:hover {
        opacity: 1;
    }

.video-control-btn {
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    transition: all 0.3s;
    backdrop-filter: blur(12px);
}

    .video-control-btn:hover {
        background: rgba(255,255,255,0.35);
        transform: scale(1.12);
    }

/* SECTIONS */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 100%;
}

    .section.alt {
        background: var(--bg-alt);
    }

.section-title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #6b0f27, #c23c54, #d4a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: clamp(60px, 10vw, 100px);
        height: 5px;
        background: var(--accent-grad);
        border-radius: 3px;
    }

/* STATISTICS */
.stats {
    background: linear-gradient(135deg, #faf8f5, #f5f2ed);
}

.stats-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--spacing-md);
}

.stat-item {
    background: #fff;
    border-radius: 24px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
}

    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #8b2635, #d4a853);
        border-radius: 24px 24px 0 0;
    }

    .stat-item:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.stat-icon {
    width: clamp(56px, 9vw, 72px);
    height: clamp(56px, 9vw, 72px);
    display: grid;
    place-items: center;
    color: #8b2635;
    background: linear-gradient(135deg, rgba(140,21,56,0.12), rgba(207,166,64,0.12));
    border-radius: 18px;
    flex-shrink: 0;
}

.stat-number {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #6b0f27, #c23c54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--muted);
    font-weight: 600;
}

/* ACHIEVEMENT */
.achievement-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #faf8f5, #f5f2ed);
    border-radius: 32px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

    .achievement-container::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(207,166,64,0.18), transparent 70%);
        border-radius: 50%;
    }

.achievement-icon {
    width: clamp(72px, 12vw, 108px);
    height: clamp(72px, 12vw, 108px);
    background: var(--bg-accent);
    border-radius: 28px;
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 14px 38px rgba(139,38,53,0.35);
    position: relative;
    z-index: 1;
}

.achievement-brand {
    font-size: clamp(0.75rem, 1.8vw, 1rem);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.achievement-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.achievement-desc {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: var(--muted);
    line-height: 1.65;
}

/* FEATURES */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
    gap: var(--spacing-md);
    max-width: var(--container-max);
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(207,166,64,0.08), transparent);
        opacity: 0;
        transition: var(--transition);
    }

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

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

.icon-wrap {
    width: clamp(56px, 9vw, 70px);
    height: clamp(56px, 9vw, 70px);
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(140,21,56,0.1), rgba(207,166,64,0.1));
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.feature-card h3 {
    margin: 1.25rem 0 0.85rem;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
}

.feature-card p {
    font-size: clamp(0.925rem, 1.9vw, 1.05rem);
    color: var(--muted);
    line-height: 1.65;
}

/* STEPS */
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: var(--spacing-sm);
    max-width: var(--container-max);
    margin: 0 auto;
}

.step {
    background: #fff;
    border-radius: 18px;
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: var(--shadow);
    display: flex;
    gap: var(--spacing-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

    .step:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.step-index {
    width: clamp(44px, 7vw, 54px);
    height: clamp(44px, 7vw, 54px);
    flex: 0 0 clamp(44px, 7vw, 54px);
    border-radius: 16px;
    background: var(--bg-accent);
    color: #fff;
    font-weight: 700;
    display: grid;
    place-items: center;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    box-shadow: 0 6px 16px rgba(140,21,56,0.35);
}

.step-body h3 {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    margin: 0.3rem 0 0.6rem;
}

.step-body p {
    font-size: clamp(0.9rem, 1.9vw, 1rem);
    color: var(--muted);
    line-height: 1.55;
}

/* PRICING */
.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: var(--spacing-md);
    max-width: var(--container-max);
    margin: 0 auto;
}

.plan {
    background: #fff;
    border-radius: 28px;
    padding: var(--spacing-lg) var(--spacing-md);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .plan:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .plan.popular {
        border-color: var(--accent);
        box-shadow: var(--shadow-lg);
    }

.ribbon {
    position: absolute;
    top: 1.75rem;
    right: -2.25rem;
    background: var(--accent-grad);
    color: #3a1f05;
    padding: 0.5rem 3.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.plan h3 {
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    margin: 0 0 0.6rem;
}

.plan-tagline {
    font-size: clamp(0.825rem, 1.9vw, 0.95rem);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.8px;
    margin-bottom: 1.75rem;
}

.price {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
}

    .price .amount {
        background: linear-gradient(135deg, #6b0f27, #c23c54);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
    }

    .price .period {
        font-size: clamp(1.05rem, 2.2vw, 1.3rem);
        color: var(--muted);
        font-weight: 600;
        margin-bottom: 0.6rem;
    }

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 1.9vw, 1rem);
}

    .plan-features li {
        display: flex;
        gap: 0.85rem;
        align-items: flex-start;
    }

.check {
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

.plan-cta {
    margin-top: auto;
}

/* BUTTONS/CTA */
.cta {
    border: none;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    border-radius: 999px;
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2.25rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

    .cta.primary {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 4px 14px rgba(140,21,56,0.3);
    }

        .cta.primary:hover {
            background: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(140,21,56,0.4);
        }

    .cta.ghost {
        background: rgba(255,255,255,0);
        color: #8C1538;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.35);
    }

        .cta.ghost:hover {
            background: rgba(255,255,255,0.32);
            transform: translateY(-3px);
        }

    .cta.accent {
        background: var(--accent-grad);
        color: #3a1f05;
        box-shadow: 0 4px 14px rgba(207,166,64,0.3);
    }

        .cta.accent:hover {
            filter: brightness(1.1);
            transform: translateY(-3px);
        }

    .cta.outline {
        background: #fff;
        color: var(--primary);
        border: 2px solid var(--primary);
    }

        .cta.outline:hover {
            background: var(--primary);
            color: #fff;
        }

    .cta.lg {
        font-size: clamp(0.85rem, 2vw, 1rem);
        padding: clamp(1rem, 2.5vw, 1.35rem) clamp(2rem, 4vw, 2.75rem);
    }

    .cta.small {
        font-size: clamp(0.7rem, 1.6vw, 0.8rem);
        padding: clamp(0.65rem, 1.5vw, 0.85rem) clamp(1.25rem, 2.5vw, 1.75rem);
    }

    .cta.plan-cta {
        width: 100%;
    }

/* OFFER HIGHLIGHT */
.offer-highlight {
    text-align: center;
    background: linear-gradient(135deg, rgba(140,21,56,0.06), rgba(207,166,64,0.06));
    border-radius: var(--radius);
}

.offer-desc {
    max-width: 850px;
    margin: 1.25rem auto 2.25rem;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    line-height: 1.65;
}

.offer-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.25rem;
}

.badge {
    background: #fff;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 999px;
    font-size: clamp(0.85rem, 1.9vw, 0.975rem);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
    font-weight: 600;
    transition: all 0.3s;
}

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

/* TESTIMONIALS */
.testimonial-carousel {
    max-width: 850px;
    margin: var(--spacing-md) auto 2rem;
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.testimonial-slide {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-photo {
    width: clamp(80px, 13vw, 110px);
    height: clamp(80px, 13vw, 110px);
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.75rem;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    border: 5px solid #fff;
}

blockquote {
    font-size: clamp(1.1rem, 2.6vw, 1.45rem);
    font-weight: 500;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

    blockquote::before {
        content: '"';
        font-size: 4rem;
        color: var(--accent);
        opacity: 0.25;
        position: absolute;
        top: -1.5rem;
        left: -1.25rem;
    }

.author {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 -1rem;
}

    .carousel-controls .nav {
        background: #fff;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        font-size: 1.5rem;
        display: grid;
        place-items: center;
        color: var(--primary);
        transition: all 0.3s;
        border: 1px solid rgba(0,0,0,0.08);
    }

        .carousel-controls .nav:hover {
            background: var(--primary);
            color: #fff;
            transform: scale(1.12);
        }

.carousel-dots {
    display: flex;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 1.25rem;
}

    .carousel-dots .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #d4c3c5;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
    }

        .carousel-dots .dot.active {
            background: var(--primary);
            transform: scale(1.3);
            box-shadow: 0 2px 8px rgba(140,21,56,0.4);
        }

/* MOBILE APP SECTION */
.mobile-app {
    background: linear-gradient(135deg, #4a1a2e 0%, #6b2c47 35%, #8b2635 70%, #a53547 100%);
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

    .mobile-app::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 45%;
        height: 100%;
        background: linear-gradient(45deg, rgba(212,168,83,0.12), rgba(255,255,255,0.06));
        pointer-events: none;
    }

.mobile-app-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.mobile-app-text {
    color: #fff;
}

.qr-code {
    margin-bottom: 2.25rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.22);
}

.mobile-app-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2.25rem;
}

.app-name {
    background: linear-gradient(90deg, #d4a853, #f5d67b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.app-store-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(15px);
    min-width: 175px;
}

    .store-button:hover {
        background: rgba(255,255,255,0.22);
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-line1 {
    font-size: 0.725rem;
    opacity: 0.9;
}

.store-line2 {
    font-size: 0.975rem;
    font-weight: 600;
}

.app-rating {
    margin-top: 1.75rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.6rem;
}

.rating-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #d4a853;
}

.stars {
    display: flex;
    gap: 0.15rem;
}

.star {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.3);
}

    .star.filled {
        color: #d4a853;
    }

/* GET STARTED FORM */
.get-started .onboard-form {
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 1.35rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .field label {
        font-size: clamp(0.85rem, 1.8vw, 0.95rem);
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--muted);
    }

    .field input {
        padding: 1rem 1.25rem;
        border: 2px solid #e5d8d3;
        border-radius: 12px;
        font-size: clamp(0.95rem, 2vw, 1.05rem);
        transition: var(--transition);
    }

        .field input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(140,21,56,0.12);
        }

    .field select {
        padding: 1rem 1.25rem;
        border: 2px solid #e5d8d3;
        border-radius: 12px;
        font-size: clamp(0.95rem, 2vw, 1.05rem);
        transition: var(--transition);
    }

        .field select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(140,21,56,0.12);
        }

.success {
    color: #10b981;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    font-weight: 600;
    margin-top: 0.75rem;
    padding: 1rem;
    background: rgba(16,185,129,0.08);
    border-radius: 12px;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, #2e0b17, #56192a 45%, #7a2335);
    color: #f9f5f3;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: var(--spacing-lg);
}

.footer-col h3 {
    margin-bottom: 1.25rem;
    font-size: clamp(1rem, 2vw, 1.15rem);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

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

.footer-col a {
    color: rgba(255,255,255,0.85);
    font-size: clamp(0.9rem, 1.9vw, 1rem);
    transition: var(--transition);
}

    .footer-col a:hover {
        color: #fff;
        padding-left: 0.5rem;
    }

.newsletter-form {
    display: flex;
    gap: 0.65rem;
}

    .newsletter-form input {
        flex: 1;
        padding: 0.85rem 1.125rem;
        border-radius: 12px;
        border: 2px solid #814152;
        background: #40131f;
        color: #fff;
        font-size: clamp(0.9rem, 1.9vw, 1rem);
    }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(207,166,64,0.25);
        }

.app-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.store-btn {
    background: #fff;
    color: #3d0f1a;
    padding: 0.75rem 1.125rem;
    border-radius: 12px;
    font-size: clamp(0.75rem, 1.7vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.6px;
    transition: var(--transition);
}

    .store-btn:hover {
        background: var(--accent-grad);
        color: #351214;
        transform: translateY(-3px);
    }

.social {
    display: flex;
    gap: 0.85rem;
    font-size: 1.4rem;
}

    .social a {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        background: #3e1220;
        border-radius: 14px;
        transition: var(--transition);
    }

        .social a:hover {
            background: var(--accent-grad);
            transform: translateY(-4px) scale(1.1);
        }

.legal {
    text-align: center;
    font-size: clamp(0.725rem, 1.6vw, 0.825rem);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    opacity: 0.75;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* ================================================
   TESTIMONIALS SECTION - ENHANCED RESPONSIVE
   ================================================ */

.testimonials {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* Video Background */
.testimonial-video-wrapper {
    position: relative;
    max-width: clamp(300px, 90vw, 800px);
    margin: 0 auto var(--spacing-lg);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

.testimonial-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(140, 21, 56, 0.15) 0%, rgba(207, 166, 64, 0.1) 100% );
    pointer-events: none;
}

/* Carousel Container */
.testimonial-carousel {
    max-width: 900px;
    margin: var(--spacing-md) auto 2rem;
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.testimonial-slide {
    min-height: clamp(220px, 30vh, 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.5s ease;
}

    .testimonial-slide figure {
        margin: 0;
        width: 100%;
    }

/* Photo Styles */
.testimonial-photo {
    width: clamp(90px, 15vw, 120px);
    height: clamp(90px, 15vw, 120px);
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border: 5px solid #fff;
    transition: transform 0.3s ease;
}

    .testimonial-photo:hover {
        transform: scale(1.05);
    }

/* Quote Styles */
blockquote {
    font-size: clamp(1.15rem, 2.8vw, 1.5rem);
    font-weight: 500;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.75rem;
    position: relative;
    padding: 0 clamp(1rem, 3vw, 2rem);
    color: var(--text);
}

    blockquote::before {
        content: '"';
        font-size: clamp(3rem, 8vw, 5rem);
        color: var(--accent);
        opacity: 0.2;
        position: absolute;
        top: -2rem;
        left: 0;
        font-family: Georgia, serif;
        line-height: 1;
    }

/* Author Styles */
.author {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(-0.5rem, -2vw, -1rem);
    pointer-events: none;
}

    .carousel-controls .nav {
        background: #fff;
        width: clamp(44px, 8vw, 52px);
        height: clamp(44px, 8vw, 52px);
        border-radius: 50%;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
        font-size: 1.5rem;
        display: grid;
        place-items: center;
        color: var(--primary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid rgba(0, 0, 0, 0.06);
        pointer-events: auto;
        cursor: pointer;
    }

        .carousel-controls .nav:hover {
            background: var(--primary);
            color: #fff;
            transform: scale(1.15);
            box-shadow: 0 8px 24px rgba(140, 21, 56, 0.3);
        }

        .carousel-controls .nav:active {
            transform: scale(1.05);
        }

        .carousel-controls .nav svg {
            width: clamp(20px, 4vw, 24px);
            height: clamp(20px, 4vw, 24px);
        }

/* Carousel Dots */
.carousel-dots {
    display: flex;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

    .carousel-dots .dot {
        width: clamp(12px, 2.5vw, 16px);
        height: clamp(12px, 2.5vw, 16px);
        border-radius: 50%;
        background: #e0d5d7;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

        .carousel-dots .dot:hover {
            background: #c9b8ba;
            transform: scale(1.15);
        }

        .carousel-dots .dot.active {
            background: var(--primary);
            transform: scale(1.4);
            box-shadow: 0 3px 10px rgba(140, 21, 56, 0.4);
        }

            .carousel-dots .dot.active::after {
                content: '';
                position: absolute;
                inset: -4px;
                border: 2px solid var(--primary);
                border-radius: 50%;
                opacity: 0.3;
            }

/* MOBILE APP SECTION */
.mobile-app {
    background: linear-gradient(135deg, #2e0b17 0%, #4a1a2e 25%, #6b2c47 50%, #8b2635 75%, #a53547 100%);
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

    .mobile-app::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212,168,83,0.15), transparent 70%);
        border-radius: 50%;
        animation: pulse 8s ease-in-out infinite;
    }

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

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.mobile-app-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.mobile-app-text {
    color: #fff;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
}

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

.qr-code {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.22);
    position: relative;
    transition: all 0.3s ease;
}

    .qr-code:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    }

.qr-label {
    text-align: center;
    font-size: clamp(0.75rem, 1.6vw, 0.85rem);
    font-weight: 600;
    margin-top: 0.75rem;
    color: rgba(255,255,255,0.9);
}

.mobile-app-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.app-name {
    background: linear-gradient(90deg, #d4a853, #f5d67b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: block;
    margin-top: 0.5rem;
}

.app-description {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Store Buttons */
.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    min-width: clamp(160px, 20vw, 190px);
    position: relative;
    overflow: hidden;
}

    .store-button::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .store-button:hover::before {
        opacity: 1;
    }

    .store-button:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.4);
        border-color: rgba(255,255,255,0.5);
    }

    .store-button svg {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
    }

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-line1 {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
}

.store-line2 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* App Features */
.app-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    font-weight: 600;
    color: rgba(255,255,255,0.95);
}

    .app-feature-item svg {
        color: #d4a853;
    }

/* App Details */
.app-details {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.app-info {
    margin-bottom: 1.5rem;
}

.app-subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.app-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: rgba(255,255,255,0.9);
}

.app-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

    .app-stat svg {
        color: #d4a853;
    }

.app-stat-divider {
    color: rgba(255,255,255,0.5);
}

/* Rating */
.app-rating {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.15rem;
}

.star {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.3);
}

    .star.filled {
        color: #d4a853;
    }

    .star.half-filled {
        background: linear-gradient(90deg, #d4a853 50%, rgba(255,255,255,0.3) 50%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.rating-number {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #d4a853;
}

.rating-text {
    font-size: clamp(0.75rem, 1.6vw, 0.85rem);
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* Phone Showcase */
.phone-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.phone {
    position: relative;
    transition: all 0.3s ease;
}

.phone-main {
    z-index: 2;
}

.phone-secondary {
    position: absolute;
    right: -10%;
    top: 10%;
    transform: scale(0.85);
    z-index: 1;
}

.phone-frame {
    width: clamp(240px, 20vw, 280px);
    height: clamp(480px, 40vw, 560px);
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 1px rgba(255,255,255,0.1);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 2rem 1.25rem 1.25rem;
    height: 100%;
    overflow-y: auto;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
}

.screen-status svg {
    width: 14px;
    height: 14px;
    color: #10b981;
}

/* Profile Content */
.profile-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0d5d7, #d4c3c5);
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.profile-info h3 {
    font-size: 1rem;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.profile-info p {
    font-size: 0.75rem;
    color: #6a5559;
    margin: 0.25rem 0;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-primary, .btn-secondary {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #8c1538, #a51943);
    color: #fff;
}

.btn-secondary {
    background: rgba(140,21,56,0.1);
    color: #8c1538;
}

/* Matches Content */
.header-bar {
    margin-bottom: 1.5rem;
}

.user-badge {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.badge-regular, .badge-prime {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-regular {
    background: rgba(0,0,0,0.08);
    color: #666;
}

.badge-prime {
    background: linear-gradient(135deg, #d4a853, #f5d67b);
    color: #3a1f05;
}

.user-info span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2d2d2d;
}

.matches-section h4 {
    font-size: 0.75rem;
    color: #6a5559;
    margin: 1rem 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.match-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e0d5d7, #d4c3c5);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Phone Glow Effect */
.phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212,168,83,0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: -1;
}

.phone:hover .phone-glow {
    opacity: 1;
}

/* ================================================
   RESPONSIVE BREAKPOINTS FOR MOBILE APP
   ================================================ */

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    .mobile-app-content {
        gap: 4rem;
    }

    .phone-main {
        transform: translateX(-10%);
    }
}

/* Tablet Landscape (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .mobile-app-content {
        gap: 3rem;
    }

    .phone-secondary {
        right: -5%;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .mobile-app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .qr-code {
        margin-left: auto;
        margin-right: auto;
    }

    .app-store-buttons {
        justify-content: center;
    }

    .app-features {
        justify-content: center;
    }

    .app-rating {
        justify-content: center;
    }

    .phone-showcase {
        margin-top: 2rem;
    }

    .phone-secondary {
        right: 5%;
        transform: scale(0.75);
    }
}

/* Mobile Landscape (667px - 767px) */
@media (min-width: 667px) and (max-width: 767px) and (orientation: landscape) {
    .mobile-app-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .qr-code {
        padding: 1rem;
    }

    .phone-showcase {
        min-height: 350px;
    }

    .phone-secondary {
        display: none;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .mobile-app {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .app-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .qr-code {
        margin-left: auto;
        margin-right: auto;
        padding: 1rem;
    }

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

    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-button {
        width: 100%;
        max-width: 280px;
    }

    .app-features {
        justify-content: center;
    }

    .app-rating {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .phone-showcase {
        min-height: 400px;
    }

    .phone-main {
        transform: scale(0.9);
    }

    .phone-secondary {
        right: -15%;
        transform: scale(0.65);
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
    .mobile-app-title {
        font-size: 1.75rem;
    }

    .app-description {
        font-size: 0.95rem;
    }

    .app-features {
        flex-direction: column;
        gap: 1rem;
    }

    .app-feature-item {
        justify-content: center;
    }

    .phone-showcase {
        min-height: 350px;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
    }

    .phone-main {
        transform: scale(0.85);
    }

    .phone-secondary {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .store-button {
        padding: 1rem 1.5rem;
    }

        .store-button:active {
            transform: scale(0.98);
        }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .mobile-app::before,
    .phone,
    .phone-glow,
    .store-button,
    .qr-code {
        animation: none !important;
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .mobile-app::before,
    .phone-glow {
        display: none;
    }

    .mobile-app {
        background: #fff;
        color: #000;
    }

    .mobile-app-text {
        color: #000;
    }
}

/* Footer Bottom Section */
.footer-bottom {
    background: linear-gradient(135deg, #1a0508, #3d0f1a);
    padding: 2rem var(--spacing-md) 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-disclaimer {
    text-align: left;
}

    .footer-disclaimer p {
        font-size: clamp(0.8rem, 1.7vw, 0.9rem);
        color: rgba(255,255,255,0.8);
        margin-bottom: 0.75rem;
        font-weight: 500;
    }

.footer-achievements {
    display: flex;
    justify-content: center;
}

.limca-record {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.08);
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
}

.limca-badge {
    background: rgba(16,185,129,0.15);
    padding: 0.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.limca-text {
    color: #fff;
    text-align: left;
}

    .limca-text p {
        margin: 0;
        font-size: clamp(0.75rem, 1.6vw, 0.85rem);
        line-height: 1.3;
        font-weight: 600;
    }

        .limca-text p:nth-child(3) {
            font-weight: 700;
            color: #10b981;
        }

.footer-social {
    text-align: right;
    color: #fff;
}

    .footer-social p {
        margin: 0 0 0.75rem;
        font-size: clamp(0.85rem, 1.8vw, 0.95rem);
        font-weight: 600;
    }

/* Update footer-col h4 styles */
.footer-col h4 {
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-size: clamp(0.9rem, 1.9vw, 1rem);
    color: #f5d67b;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Responsive Design for Footer Bottom */
@media (max-width: 1023px) {
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

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

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        padding: 1.5rem var(--spacing-sm) 1rem;
    }

    .limca-record {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }

    .limca-text {
        text-align: center;
    }
}

@media (max-width: 479px) {
    .footer-col h3 {
        font-size: 0.95rem;
    }

    .footer-col ul li a {
        font-size: 0.85rem;
    }

    .footer-bottom-content {
        gap: 1.5rem;
    }
}
