/* 
    HARISTYLE - Premium AR Experience 
    Brand Colors: #EF1E79 -> #66168B -> #0ECFF7
    Background: #0B0B12
*/

:root {
    /* Brand Colors */
    --primary: #EF1E79;
    --primary-light: #0ECFF7;
    --primary-dark: #66168B;
    --bg-dark: #0B0B12;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.55);
    --text-dim: rgba(255, 255, 255, 0.2);
    --primary-gradient: linear-gradient(135deg, #EF1E79, #66168B, #0ECFF7);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Grid & Spacing */
    --page-margin: max(6%, 48px);
    --max-content-width: 1300px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
p {
    margin: 0;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

p {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.6;
    color: var(--text-muted);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

/* ===== GRID & LAYOUT ===== */
.section {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.section-content {
    width: 100%;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 14px 28px;
    background: rgba(11, 11, 18, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-logo img {
    height: 56px;
    display: block;
}

.nav-btns {
    display: flex;
    gap: 12px;
}

.nav-store-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.nav-store-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.nav-store-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .nav-btns {
        display: none;
    }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger X animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 11, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 100px 40px;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.mobile-menu-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
}

.store-badge-mobile {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== STORE BADGES ===== */
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s var(--ease-out);
}

.store-badge:hover {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.store-icon {
    width: 28px;
    height: 28px;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.store-badge-nav {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-badge-nav .store-icon {
    width: 20px;
    height: 20px;
}

.store-badge-nav .store-label {
    font-size: 0.55rem;
}

.store-badge-nav .store-name {
    font-size: 0.85rem;
}

.store-badge-nav:hover {
    background: rgba(255, 255, 255, 0.1);
}

.store-badge-large {
    padding: 16px 32px;
}

.store-badge-large .store-icon {
    width: 32px;
    height: 32px;
}

.store-badge-large .store-name {
    font-size: 1.25rem;
}

.cta-store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-glow {
    background: var(--primary-gradient);
    color: var(--text-white);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 25px rgba(239, 30, 121, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(239, 30, 121, 0.6), 0 0 80px rgba(102, 22, 139, 0.4);
    }
}

/* ===== SECTION 0: SPLASHSCREEN ===== */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#splash-screen::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 22, 139, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

#splash-content {
    text-align: center;
    z-index: 1;
}

.splash-line {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
}

.splash-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== SECTION 1: HERO ===== */
#hero {
    padding-top: 120px;
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1,
.hero-content p {
    opacity: 0;
    transform: translateY(30px);
}

.hero-content p {
    margin-top: 1.5rem;
}

.cta-container {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== CSS PHONE FRAME ===== */
.phone-frame {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 48px;
    padding: 12px;
    position: relative;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0B0B12;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #0B0B12 100%);
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== SECTION 2: FEATURES ===== */
#features {
    width: 100vw;
    position: relative;
}

/* Features Intro */
.features-intro {
    text-align: center;
    position: relative;
    z-index: 2;
}

.features-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* Sticky Background Text - appears at intro, scrolls with features */
.features-bg-text {
    position: sticky;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateY(-50%);
    font-size: clamp(6rem, 18vw, 16rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    text-align: center;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    user-select: none;
    opacity: 0;
    height: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    opacity: 0;
    transform: translateX(-60px);
}

.feature-row-reverse {
    flex-direction: row-reverse;
    transform: translateX(60px);
}

.feature-text {
    flex: 1;
    max-width: 480px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 480px;
    height: 360px;
    background: linear-gradient(135deg, rgba(239, 30, 121, 0.1), rgba(14, 207, 247, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== SECTION 3: HOW IT WORKS ===== */
#how-it-works {
    min-height: 300vh;
    position: relative;
}

.hiw-container {
    display: flex;
    gap: 80px;
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.hiw-phone-wrapper {
    flex: 0 0 auto;
    width: 320px;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-phone-wrapper .phone-frame {
    opacity: 1;
    transform: none;
}

.hiw-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 50vh 0;
}

.step-block {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}

.step-block.active {
    opacity: 1;
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.step-block h2 {
    margin-bottom: 1rem;
}

/* ===== SECTION 4: COMPARISON ===== */
#comparison {
    padding: 0;
}

.comparison-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.comparison-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px var(--page-margin);
    position: relative;
}

.comparison-inner {
    max-width: 450px;
}

.comparison-bad {
    background: rgba(0, 0, 0, 0.3);
}

.comparison-good {
    background: linear-gradient(135deg, rgba(239, 30, 121, 0.08), rgba(14, 207, 247, 0.08));
    opacity: 0.3;
    filter: blur(10px);
}

.comparison-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.comparison-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.comparison-list li {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    transition: color 0.6s ease;
}

.comp-item.revealed,
.comp-item-good.revealed {
    color: var(--text-white);
}

.comparison-icon {
    font-size: 3rem;
    margin-top: 2rem;
    opacity: 0;
}

.comparison-bad .comparison-icon {
    color: #ef4444;
}

.comparison-good .comparison-icon {
    color: var(--primary-light);
}

/* ===== SECTION 5: TESTIMONIAL ===== */
#testimonial {
    text-align: center;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
}

.testimonial-content blockquote {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.testimonial-content cite {
    font-size: 1.2rem;
    font-style: normal;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== SECTION 6: FINAL CTA ===== */
#final-cta {
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 140px 0 80px;
    margin-top: 100px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo img {
    height: 72px;
    margin-bottom: 28px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 24px;
    margin-top: 36px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    fill: rgba(255, 255, 255, 0.4);
    transition: fill 0.2s ease;
}

.social-icon:hover svg {
    fill: var(--text-white);
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    margin-top: 100px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
}

/* ===== RESPONSIVE - TABLET (768px - 900px) ===== */
@media (max-width: 900px) and (min-width: 769px) {
    :root {
        --page-margin: 40px;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .feature-row {
        gap: 40px;
    }

    .features-bg-text {
        font-size: 5rem;
    }

    .comparison-title {
        font-size: 2rem;
    }

    .comparison-list li {
        font-size: 1.2rem;
    }

    .testimonial-content blockquote {
        font-size: 2.5rem;
    }

    .footer-cols {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
}

/* ===== RESPONSIVE - MOBILE (< 768px) ===== */
@media (max-width: 768px) {
    :root {
        --page-margin: 20px;
    }

    /* Navbar */
    .navbar {
        width: 95%;
        padding: 10px 16px;
        top: 16px;
    }

    .nav-logo img {
        height: 56px;
    }

    .nav-btns {
        display: none;
    }

    /* Hero */
    #hero {
        padding-top: 100px;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .store-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
    }

    .store-icon {
        width: 24px;
        height: 24px;
    }

    .store-name {
        font-size: 1rem;
    }

    .phone-frame {
        width: 220px;
        height: 460px;
    }

    /* Features */
    .features-bg-text {
        font-size: 3rem;
    }

    .feature-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }

    .feature-row,
    .feature-row-reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        transform: none;
    }

    .feature-text {
        max-width: 100%;
    }

    .feature-text h3 {
        font-size: 1.5rem;
    }

    .feature-text p {
        font-size: 1rem;
    }

    .image-placeholder {
        height: 240px;
        max-width: 100%;
    }

    /* More space between sections on mobile */
    .section {
        margin-bottom: 60px;
    }

    .feature-section {
        margin-bottom: 40px;
    }

    /* How It Works - Text scrolls, phone FIXED at bottom */
    #how-it-works {
        min-height: auto;
        padding: 0;
        position: relative;
    }

    .hiw-container {
        flex-direction: column;
        padding: 0 var(--page-margin);
        gap: 0;
        display: block;
    }

    .hiw-phone-wrapper {
        display: flex;
        position: fixed;
        top: auto !important;
        bottom: 0 !important;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: flex-end;
        padding: 0 0 30px 0;
        z-index: 100;
        pointer-events: none;
    }

    .hiw-phone-wrapper .phone-frame {
        width: 220px;
        height: 460px;
        box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.9);
        pointer-events: auto;
    }

    .hiw-steps {
        padding: 60px 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .step-block {
        min-height: 100vh;
        padding: 40px 0;
        padding-bottom: 400px;
        /* Space for fixed phone */
        text-align: center;
        opacity: 0.2;
        transition: opacity 0.5s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
    }

    .step-block.active {
        opacity: 1;
    }

    .step-block:last-child {
        border-bottom: none;
    }

    .step-block h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .step-block p {
        font-size: 0.95rem;
    }

    /* Comparison - Each side takes full 100vh */
    .comparison-wrapper {
        flex-direction: column;
    }

    .comparison-side {
        min-height: 100vh;
        padding: 60px var(--page-margin);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .comparison-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .comparison-list li {
        font-size: 1.1rem;
        padding: 10px 0;
        margin-bottom: 0.75rem;
    }

    .comparison-icon {
        font-size: 2rem;
    }

    /* Testimonial */
    #testimonial {
        min-height: 80vh;
    }

    .testimonial-content blockquote {
        font-size: 1.5rem;
    }

    .testimonial-content cite {
        font-size: 1rem;
    }

    /* Final CTA */
    #final-cta {
        min-height: 80vh;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-badge-large {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        justify-content: center;
    }

    .store-badge-large .store-icon {
        width: 28px;
        height: 28px;
    }

    .store-badge-large .store-name {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer {
        padding: 80px 0 60px;
        margin-top: 60px;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo img {
        height: 48px;
    }

    .footer-tagline {
        text-align: center;
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links h4 {
        margin-bottom: 16px;
    }

    .footer-bottom {
        margin-top: 60px;
    }

    /* Splashscreen */
    .splash-line {
        font-size: 1.75rem;
    }

    /* Text gradient fix for mobile */
    .text-gradient {
        text-align: inherit;
    }
}

/* ===== RESPONSIVE - SMALL MOBILE (< 400px) ===== */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .phone-frame {
        width: 180px;
        height: 380px;
    }

    .store-badge {
        padding: 10px 16px;
        gap: 10px;
    }

    .testimonial-content blockquote {
        font-size: 1.25rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}