/* ===== Variables & Reset ===== */
:root {
    --sage: #86A660;
    --sage-dark: #6d8f4a;
    --sage-light: #a3c278;
    --sage-glow: rgba(134,166,96,0.15);
    --cream: #F5F2EB;
    --cream-dark: #ebe7dd;
    --brown: #4A3F35;
    --brown-light: #7a6e62;
    --white: #ffffff;
    --card: #ffffff;
    --shadow-sm: 0 2px 8px rgba(74,63,53,0.06);
    --shadow-md: 0 8px 30px rgba(74,63,53,0.1);
    --shadow-lg: 0 20px 60px rgba(74,63,53,0.15);
    --shadow-xl: 0 30px 80px rgba(74,63,53,0.2);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --cream: #111110;
        --cream-dark: #1a1918;
        --brown: #e8e0d6;
        --brown-light: #a89e94;
        --white: #1e1d1c;
        --card: #252423;
        --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
        --shadow-md: 0 8px 30px rgba(0,0,0,0.25);
        --shadow-lg: 0 20px 60px rgba(0,0,0,0.35);
        --shadow-xl: 0 30px 80px rgba(0,0,0,0.4);
        --sage-glow: rgba(134,166,96,0.1);
    }
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: "SF Arabic", "Geeza Pro", "Noto Sans Arabic", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--cream);
    color: var(--brown);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
html[lang="en"] body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
}

html[lang="en"] .ar { display: none !important; }
html[lang="ar"] .en { display: none !important; }

a { color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== Floating Nav ===== */
.nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 32px);
    max-width: 800px;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    top: 10px;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    border: 1px solid rgba(134,166,96,0.15);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
@media (prefers-color-scheme: dark) {
    .nav-inner {
        background: rgba(30,29,28,0.85);
        border-color: rgba(134,166,96,0.1);
    }
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}
.nav-name {
    font-weight: 700;
    font-size: 1.05rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}
.nav-links a:hover {
    background: var(--sage-glow);
    color: var(--sage-dark);
}
.lang-btn {
    background: var(--sage);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lang-btn:hover { background: var(--sage-dark); transform: scale(1.1); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #96b86e 0%, #86A660 25%, #799757 50%, #5a7a3a 75%, #4a6830 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 1px, transparent 1px),
                       radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 1px, transparent 1px),
                       radial-gradient(circle at 40% 80%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: glowPulse 6s ease-in-out infinite alternate;
}
.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(163,194,120,0.5);
    top: -100px;
    right: -100px;
}
.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(90,122,58,0.4);
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}
@keyframes glowPulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.5; }
}

.hero-content { position: relative; z-index: 2; max-width: 600px; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,0.2);
}

.app-icon {
    width: 160px;
    height: 160px;
    border-radius: 38px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
    margin: 0 auto 32px;
    animation: iconFloat 5s ease-in-out infinite;
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.02); }
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.15);
    line-height: 1.1;
}
.tagline {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-primary {
    background: #000;
    color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.btn-appstore { padding: 0; background: none; }
.btn-appstore:hover { background: none; }
.appstore-badge-img { height: 48px; width: auto; display: block; }
.btn-lg .appstore-badge-img { height: 54px; }
.btn-secondary {
    background: rgba(255,255,255,0.18);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--sage);
    color: #fff;
    transition: all 0.3s var(--ease);
    margin-top: 20px;
}
.btn-outline:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(134,166,96,0.3); }
.btn-white {
    background: #fff;
    color: var(--brown);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

.coming-soon {
    margin-top: 14px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}

/* Hero floating emojis */
.hero-floating {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.float-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: emojiFloat 12s ease-in-out infinite;
}
.float-1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 2.5rem; }
.float-2 { top: 25%; right: 12%; animation-delay: 2s; }
.float-3 { bottom: 30%; left: 8%; animation-delay: 4s; font-size: 1.8rem; }
.float-4 { top: 60%; right: 8%; animation-delay: 1s; font-size: 2.2rem; }
.float-5 { bottom: 15%; right: 20%; animation-delay: 3s; }
.float-6 { top: 40%; left: 20%; animation-delay: 5s; font-size: 1.6rem; }
@keyframes emojiFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-25px) rotate(3deg); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ===== Stats ===== */
.stats {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.stat-item {
    padding: 36px 20px;
    text-align: center;
    border-inline-end: 1px solid rgba(134,166,96,0.1);
}
.stat-item:last-child { border: none; }
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--sage);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--brown-light);
    font-weight: 500;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    background: var(--sage-glow);
    color: var(--sage-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--brown-light);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Features ===== */
.features {
    padding: 120px 0 80px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: ltr; }
html[lang="ar"] .feature-row.reverse { direction: rtl; }
.feature-row.reverse .feature-visual { order: 2; }
.feature-row.reverse .feature-text { order: 1; }
html[lang="en"] .feature-row.reverse .feature-visual { order: 2; }
html[lang="en"] .feature-row.reverse .feature-text { order: 1; }

.feature-visual {
    display: flex;
    justify-content: center;
}
.feature-phone {
    width: 260px;
    padding: 12px;
    background: var(--card);
    border-radius: 36px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s var(--ease);
}
.feature-phone:hover {
    transform: translateY(-8px) rotate(1deg);
}
.phone-screen {
    border-radius: 26px;
    padding: 30px 20px;
    min-height: 380px;
    overflow: hidden;
}
.phone-mockup-content {
    color: #fff;
    text-align: center;
}
.mockup-header {
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.mockup-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.mockup-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.mockup-card {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 12px 8px;
    font-size: 0.75rem;
    font-weight: 600;
}
.mockup-list { display: flex; flex-direction: column; gap: 6px; }
.mockup-list-item {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: start;
}
.mockup-stories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
}
.mockup-story {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid rgba(255,255,255,0.4);
}
.mockup-post {
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    overflow: hidden;
}
.mockup-post-header {
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mockup-post-body {
    height: 80px;
    background: rgba(255,255,255,0.05);
}
.mockup-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.mockup-product {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 14px 6px 10px;
    font-size: 0.7rem;
    font-weight: 600;
}
.mockup-product-img {
    font-size: 1.8rem;
    margin-bottom: 6px;
}
.mockup-map {
    position: relative;
    height: 160px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}
.mockup-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}
.mockup-map-pin {
    position: absolute;
    top: 40%;
    left: 45%;
    font-size: 1.5rem;
    animation: pinBounce 2s ease-in-out infinite;
}
@keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.feature-text { }
.feature-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.feature-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.feature-text > p {
    font-size: 1.02rem;
    color: var(--brown-light);
    line-height: 1.85;
    margin-bottom: 18px;
}
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--brown-light);
}
.feature-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
}

/* ===== Stickers ===== */
.stickers {
    padding: 120px 0;
    background: var(--card);
}
.stickers-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.sticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.4s var(--bounce);
    cursor: pointer;
}
.sticker-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
    transition: all 0.4s var(--bounce);
}
.sticker-item:hover {
    transform: scale(1.18) rotate(-6deg);
}
.sticker-item:nth-child(even):hover {
    transform: scale(1.18) rotate(6deg);
}
.sticker-item:hover img {
    filter: drop-shadow(0 12px 24px rgba(134,166,96,0.35));
}
.sticker-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brown-light);
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.3s var(--ease);
}
.sticker-item:hover .sticker-name {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Mission ===== */
.mission {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.mission-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sage-glow) 0%, transparent 50%);
}
.mission-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.mission-text {
    margin-top: 32px;
}
.mission-text blockquote {
    position: relative;
    padding: 28px 32px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
    border-inline-start: 4px solid var(--sage);
}
.mission-text blockquote p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--brown-light);
    font-style: italic;
}
.mission-highlight {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 18px;
    color: var(--brown);
}
.mission-highlight strong {
    color: var(--sage-dark);
}
.mission-text > p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--brown-light);
    margin-bottom: 18px;
}
.mission-big {
    font-size: 1.2rem !important;
    color: var(--brown) !important;
    font-weight: 500;
}
.mission-big strong {
    color: var(--sage-dark);
}

/* ===== Social ===== */
.social {
    padding: 120px 0;
    background: var(--card);
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.social-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    background: var(--cream);
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}
.social-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.social-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}
.social-icon-wrap svg { width: 22px; height: 22px; }
.social-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.social-info span { font-size: 0.8rem; color: var(--brown-light); }

/* Social brand colors */
.social-youtube .social-icon-wrap { background: #ff000015; color: #FF0000; }
.social-youtube:hover { border-color: #ff000030; }
.social-tiktok .social-icon-wrap { background: #00000015; color: var(--brown); }
.social-tiktok:hover { border-color: #00000020; }
.social-instagram .social-icon-wrap { background: #E4405F15; color: #E4405F; }
.social-instagram:hover { border-color: #E4405F30; }
.social-x .social-icon-wrap { background: #00000015; color: var(--brown); }
.social-x:hover { border-color: #00000020; }
.social-snapchat .social-icon-wrap { background: #FFFC0015; color: #d4a800; }
.social-snapchat:hover { border-color: #FFFC0030; }

@media (prefers-color-scheme: dark) {
    .social-tiktok .social-icon-wrap { background: rgba(255,255,255,0.08); color: #fff; }
    .social-x .social-icon-wrap { background: rgba(255,255,255,0.08); color: #fff; }
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
}
.cta-card {
    text-align: center;
    padding: 64px 40px;
    background: linear-gradient(135deg, #86A660 0%, #6d8f4a 50%, #5a7a3a 100%);
    border-radius: 28px;
    color: #fff;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.cta-card > * { position: relative; }
.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.cta-card h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.cta-card > p {
    font-size: 1.05rem;
    opacity: 0.88;
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    padding: 48px 0 32px;
    background: var(--cream-dark);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(134,166,96,0.12);
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 24px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}
.footer-name {
    font-size: 1.2rem;
    font-weight: 800;
}
.footer-tagline {
    font-size: 0.82rem;
    color: var(--brown-light);
}
.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.footer-links a {
    text-decoration: none;
    font-size: 0.88rem;
    color: var(--brown-light);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--sage-dark); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.copyright {
    font-size: 0.82rem;
    color: var(--brown-light);
}
.lang-toggle {
    background: none;
    border: 1px solid rgba(134,166,96,0.3);
    color: var(--sage-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    font-family: inherit;
}
.lang-toggle:hover {
    background: var(--sage-glow);
    border-color: var(--sage);
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .feature-row.reverse .feature-visual { order: 1; }
    .feature-row.reverse .feature-text { order: 2; }
    .feature-list { align-items: center; }
    .feature-phone { width: 220px; }
    .phone-screen { min-height: 320px; }
}

@media (max-width: 768px) {
    .nav-links a:not(:last-child) { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid rgba(134,166,96,0.08); }
    .stat-item:nth-child(odd) { border-inline-end: 1px solid rgba(134,166,96,0.08); }
    .stat-item:nth-child(even) { border-inline-end: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .stickers-showcase { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .social-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 48px 24px; }
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero { padding: 100px 20px 80px; }
    .app-icon { width: 120px; height: 120px; border-radius: 30px; }
}

@media (max-width: 480px) {
    .stickers-showcase { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
