/* ============================================
   EKILI LANDING PAGE — STYLES
   Brand Colors:
     Red: #FF4E42
     Magenta: #FF7DFF
     Green: #46E691
     Black: #1A1A1A
     White: #FFFFFF
   ============================================ */

/* ---------- FONTS ---------- */
@font-face {
    font-family: 'Champagne';
    src: url('./fonts/champagne.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Champagne';
    src: url('./fonts/champagne-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'NTVoice';
    src: url('./fonts/ntvoice.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', 'NTVoice', system-ui, -apple-system, sans-serif;
    color: #1A1A1A;
    background: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* RTL support */
html[dir="rtl"] body {
    direction: rtl;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ---------- UTILITIES ---------- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #FF4E42, #FF7DFF, #46E691);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FF4E42, #FF7DFF);
    color: #fff;
    box-shadow: 0 4px 24px rgba(255, 78, 66, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 78, 66, 0.5);
}

.btn-outline {
    background: transparent;
    color: #1A1A1A;
    border: 2px solid #e0e0e0;
}
.btn-outline:hover {
    border-color: #FF7DFF;
    color: #FF7DFF;
    transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}
.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF7DFF, #FF4E42);
    border-radius: 2px;
    transition: width 0.3s ease;
}
html[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link:hover {
    color: #1A1A1A;
}

.nav-cta {
    background: linear-gradient(135deg, #FF4E42, #FF7DFF);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
}
.nav-cta::after {
    display: none;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 78, 66, 0.4);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 100px;
}
.lang-btn {
    padding: 6px 14px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #888;
}
.lang-btn.active {
    background: #1A1A1A;
    color: #fff;
}
.lang-btn:hover:not(.active) {
    color: #1A1A1A;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1A1A1A;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.shape-1 {
    width: 600px;
    height: 600px;
    background: #FF7DFF;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}
.shape-2 {
    width: 400px;
    height: 400px;
    background: #46E691;
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}
.shape-3 {
    width: 300px;
    height: 300px;
    background: #FF4E42;
    top: 50%;
    left: 50%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(15px, 15px); }
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(70, 230, 145, 0.1);
    border: 1px solid rgba(70, 230, 145, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2a8f58;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: 'Champagne', 'Inter', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: 'Champagne', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1A1A1A;
}
.stat-label {
    font-size: 0.82rem;
    color: #999;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: #ddd;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-image-wrapper {
    position: relative;
}

.hero-phone {
    width: 380px;
    border-radius: 24px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    animation: phoneFloat 6s ease-in-out infinite;
}

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

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    animation: cardFloat 4s ease-in-out infinite;
    white-space: nowrap;
}
.card-icon {
    font-size: 1.2rem;
}
.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}
.card-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 1s;
}
.card-3 {
    bottom: 5%;
    right: -10px;
    animation-delay: 2s;
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ---------- SECTIONS SHARED ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(255, 125, 255, 0.1), rgba(255, 78, 66, 0.1));
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FF7DFF;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Champagne', 'Inter', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.7;
}

/* ---------- FEATURES ---------- */
.features {
    padding: 100px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.feature-card {
    background: #fafafa;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 125, 255, 0.2);
}

.feature-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.feature-card-content {
    padding: 40px;
}

.feature-card-image {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}
.feature-icon-wrap.magenta {
    background: linear-gradient(135deg, #FF7DFF, #e066cc);
}
.feature-icon-wrap.green {
    background: linear-gradient(135deg, #46E691, #38b575);
}
.feature-icon-wrap.red {
    background: linear-gradient(135deg, #FF4E42, #e03a2e);
}

.feature-title {
    font-family: 'Champagne', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    color: #777;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Mini features */
.features-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mini-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(70, 230, 145, 0.3);
}

.mini-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.mini-icon.bg-magenta {
    background: linear-gradient(135deg, #FF7DFF, #e066cc);
}
.mini-icon.bg-green {
    background: linear-gradient(135deg, #46E691, #38b575);
}
.mini-icon.bg-red {
    background: linear-gradient(135deg, #FF4E42, #e03a2e);
}
.mini-icon.bg-coral {
    background: linear-gradient(135deg, #FF6B6B, #ee5a5a);
}
.mini-icon.bg-teal {
    background: linear-gradient(135deg, #4DD0E1, #26C6DA);
}
.mini-icon.bg-amber {
    background: linear-gradient(135deg, #FFB74D, #FFA726);
}

.mini-card h4 {
    font-family: 'Champagne', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.mini-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
    padding: 100px 0;
    background: #fafafa;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.step-card {
    text-align: center;
    max-width: 280px;
    padding: 40px 24px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-family: 'Champagne', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF7DFF, #FF4E42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 125, 255, 0.1), rgba(70, 230, 145, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF7DFF;
}

.step-card h3 {
    font-family: 'Champagne', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
}

.step-connector {
    margin-top: 80px;
    flex-shrink: 0;
}

/* ---------- SUSTAINABILITY ---------- */
.sustainability {
    padding: 100px 0;
    background: #fff;
}

.sustainability-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.sustainability-content .section-tag {
    margin-bottom: 20px;
}
.sustainability-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}
html[dir="rtl"] .sustainability-content .section-title {
    text-align: right;
}
.sustainability-content .section-subtitle {
    text-align: left;
    margin-bottom: 36px;
}
html[dir="rtl"] .sustainability-content .section-subtitle {
    text-align: right;
}

.sustainability-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sus-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.sus-stat:hover {
    background: #f0fdf4;
    border-color: rgba(70, 230, 145, 0.3);
}

.sus-stat-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(70, 230, 145, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.sus-stat strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.sus-stat span {
    font-size: 0.82rem;
    color: #999;
}

.sustainability-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.earth-graphic {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earth-emoji {
    font-size: 6rem;
    position: relative;
    z-index: 2;
    animation: earthSpin 20s linear infinite;
}

@keyframes earthSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(70, 230, 145, 0.3);
    animation: pulse 3s ease-out infinite;
}
.pulse-ring.delay-1 { animation-delay: 1s; }
.pulse-ring.delay-2 { animation-delay: 2s; }

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

/* ---------- BRAND STORY ---------- */
.brand-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
    color: #fff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content blockquote {
    position: relative;
    margin-bottom: 32px;
}

.story-content blockquote::before {
    content: '"';
    font-family: 'Champagne', serif;
    font-size: 6rem;
    color: #FF7DFF;
    position: absolute;
    top: -30px;
    left: -10px;
    opacity: 0.5;
    line-height: 1;
}
html[dir="rtl"] .story-content blockquote::before {
    left: auto;
    right: -10px;
}

.story-content blockquote p {
    font-family: 'Champagne', serif;
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.story-tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.7;
}

.story-motto strong {
    font-family: 'Champagne', serif;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #FF4E42, #FF7DFF, #46E691);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- DOWNLOAD CTA ---------- */
.download-cta {
    padding: 100px 0;
    background: #fafafa;
}

.download-card {
    background: linear-gradient(135deg, #FF7DFF 0%, #FF4E42 50%, #FF7DFF 100%);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.download-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}
.download-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -80px;
    left: 10%;
}

.download-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.download-content h2 {
    font-family: 'Champagne', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.download-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.store-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.store-btn small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}
.store-btn strong {
    display: block;
    font-size: 1rem;
}

.download-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.download-phone-wrap {
    position: relative;
}

.download-phone {
    width: 280px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: phoneFloat 6s ease-in-out infinite;
}

/* ---------- FOOTER ---------- */
.footer {
    padding: 60px 0 30px;
    background: #1A1A1A;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}
.social-link:hover {
    background: #FF7DFF;
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    color: #fff;
    font-family: 'Champagne', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
}
.footer-col a:hover {
    color: #FF7DFF;
    transform: translateX(4px);
}
html[dir="rtl"] .footer-col a:hover {
    transform: translateX(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

/* ---- Tablet (max 968px) ---- */
@media (max-width: 968px) {
    .hero {
        min-height: 100vh;
        padding: 90px 0 40px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-phone {
        width: 280px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-large {
        grid-template-columns: 1fr;
    }
    .feature-card-image img {
        max-width: 240px;
    }
    .features-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    .step-connector {
        transform: rotate(90deg);
        margin: -10px 0;
    }

    .sustainability-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sustainability-content .section-title,
    .sustainability-content .section-subtitle {
        text-align: center;
    }

    .download-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }
    .download-buttons {
        justify-content: center;
    }
    .download-phone {
        width: 220px;
    }

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

/* ---- Mobile (max 640px) ---- */
@media (max-width: 640px) {
    /* --- Nav --- */
    .nav-container {
        height: 56px;
        padding: 0 16px;
    }
    .logo-img {
        height: 26px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
        z-index: 999;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }
    .nav-links .nav-link {
        font-size: 1.3rem;
        font-weight: 600;
    }
    .hamburger {
        display: flex;
    }
    .lang-switcher {
        padding: 2px;
    }
    .lang-btn {
        padding: 4px 9px;
        font-size: 0.72rem;
    }

    /* --- Hero (full screen mobile) --- */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 60px 0 24px;
    }
    .hero-container {
        gap: 16px;
    }
    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
        margin-bottom: 10px;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
        line-height: 1.15;
    }
    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    .btn {
        width: auto;
        max-width: none;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.82rem;
        border-radius: 100px;
    }
    .hero-phone {
        width: 180px;
    }
    .hero-floating-card {
        display: none;
    }
    .hero-stats {
        flex-direction: row;
        gap: 14px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.68rem;
    }
    .stat-divider {
        width: 1px;
        height: 28px;
    }

    /* --- Sections shared --- */
    .section-container {
        padding: 0 20px;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .section-tag {
        font-size: 0.78rem;
        padding: 5px 14px;
    }

    /* --- Features --- */
    .features {
        padding: 60px 0;
    }
    .features-grid {
        gap: 16px;
        margin-bottom: 24px;
    }
    .feature-card-content {
        padding: 24px;
    }
    .feature-card-image {
        padding: 12px;
    }
    .feature-card-image img {
        max-width: 200px;
        margin: 0 auto;
    }
    .feature-title {
        font-size: 1.2rem;
    }
    .feature-desc {
        font-size: 0.85rem;
    }
    .feature-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: 14px;
    }
    .feature-icon-wrap svg {
        width: 24px;
        height: 24px;
    }

    .features-mini-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .mini-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .mini-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    .mini-icon svg {
        width: 22px;
        height: 22px;
    }
    .mini-card h4 {
        font-size: 0.92rem;
        margin-bottom: 4px;
    }
    .mini-card p {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    /* --- How It Works --- */
    .how-it-works {
        padding: 60px 0;
    }
    .steps-grid {
        gap: 0;
    }
    .step-connector {
        display: none;
    }
    .step-card {
        max-width: 100%;
        width: 100%;
        padding: 28px 20px;
        border-radius: 20px;
        margin-bottom: 12px;
    }
    .step-number {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    .step-icon-wrap {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin-bottom: 12px;
    }
    .step-icon-wrap svg {
        width: 32px;
        height: 32px;
    }
    .step-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    .step-card p {
        font-size: 0.85rem;
    }

    /* --- Sustainability --- */
    .sustainability {
        padding: 60px 0;
    }
    .sustainability-layout {
        gap: 32px;
    }
    .sustainability-content .section-tag {
        margin-bottom: 12px;
    }
    .sustainability-content .section-title {
        font-size: 1.7rem;
    }
    .sustainability-content .section-subtitle {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }
    .sus-stat {
        padding: 12px 16px;
        border-radius: 12px;
    }
    .sus-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .sus-stat strong {
        font-size: 0.88rem;
    }
    .sus-stat span {
        font-size: 0.75rem;
    }
    .earth-graphic {
        width: 160px;
        height: 160px;
    }
    .earth-emoji {
        font-size: 4rem;
    }

    /* --- Brand Story --- */
    .brand-story {
        padding: 60px 0;
    }
    .story-content blockquote p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    .story-content blockquote::before {
        font-size: 4rem;
        top: -20px;
    }
    .story-tagline {
        font-size: 0.9rem;
    }
    .story-motto strong {
        font-size: 1.4rem;
    }

    /* --- Download CTA --- */
    .download-cta {
        padding: 60px 0;
    }
    .download-card {
        border-radius: 24px;
        padding: 32px 24px;
        gap: 24px;
    }
    .download-content h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    .download-content p {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .store-btn {
        width: 100%;
        max-width: 240px;
        padding: 12px 20px;
        border-radius: 12px;
        justify-content: center;
    }
    .download-phone {
        width: 180px;
    }

    /* --- Footer --- */
    .footer {
        padding: 36px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .footer-brand {
        order: -1;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-logo {
        height: 24px;
        margin: 0 auto 8px;
    }
    .footer-brand p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    .social-links {
        justify-content: center;
        gap: 10px;
    }
    .social-link {
        width: 34px;
        height: 34px;
    }
    .footer-links-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        text-align: center;
    }
    .footer-col {
        padding: 0;
    }
    .footer-col h4 {
        font-size: 0.75rem;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    .footer-col a {
        font-size: 0.72rem;
        margin-bottom: 5px;
    }
    .footer-col a:hover {
        transform: none;
    }
    .footer-bottom {
        padding-top: 16px;
        margin-top: 8px;
        font-size: 0.72rem;
    }
}

/* ---- Small phones (max 380px) ---- */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-phone {
        width: 180px;
    }
    .hero-stats {
        gap: 10px;
    }
    .stat-number {
        font-size: 1.1rem;
    }
    .stat-label {
        font-size: 0.65rem;
    }
    .features-mini-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .download-card {
        padding: 24px 16px;
    }
}

