/* ===== CSS Variables (from App Icon) ===== */
:root {
    /* Backgrounds — deep navy palette from icon bg */
    --bg-primary: #F8FAFC;
    --bg-secondary: #EFF4F9;
    --bg-card: #FFFFFF;
    --bg-dark: #0B1628;

    /* Accent colors — from the gradient blob */
    --accent: #3B82F6;
    --accent-cyan: #22D3EE;
    --accent-warm: #FBBF24;
    --accent-pink: #F472B6;
    --accent-navy: #1E3A5F;
    --accent-dim: rgba(59, 130, 246, 0.08);

    /* Gradients inspired by icon blob */
    --gradient-blob: linear-gradient(135deg, #67E8F9 0%, #A5F3FC 20%, #FEFEFE 40%, #FDE68A 65%, #FB923C 85%, #F472B6 100%);
    --gradient-hero: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(59, 130, 246, 0.10) 0%, rgba(34, 211, 238, 0.06) 50%, transparent 80%);
    --gradient-glow: radial-gradient(circle at 70% 60%, rgba(251, 191, 36, 0.12), rgba(244, 114, 182, 0.08), transparent 60%);

    /* Text */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --text-on-dark: #E2E8F0;

    /* Borders */
    --border: rgba(15, 23, 42, 0.07);
    --border-strong: rgba(15, 23, 42, 0.14);

    /* Radius & Font */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Shadows with color tint */
    --shadow-soft: 0 2px 40px rgba(11, 22, 40, 0.04);
    --shadow-card: 0 8px 40px rgba(11, 22, 40, 0.08);
    --shadow-glow: 0 8px 32px rgba(59, 130, 246, 0.18);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Subtle gradient overlay on body */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
    z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Typography ===== */
.serif {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.highlight {
    font-style: italic;
    color: var(--text-secondary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--text-primary);
    color: #FFF;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.2);
}

.btn-ghost {
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== Language Switcher ===== */
.lang-switcher { position: relative; }

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.lang-trigger:hover {
    border-color: var(--border-strong);
    background: var(--bg-secondary);
}

.lang-arrow { transition: transform 0.2s ease; }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 4px;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: left;
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.lang-option.active {
    background: var(--accent);
    color: #FFF;
}

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

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

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 58, 95, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 95, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 80%);
}

/* Gradient glow orbs in hero */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-bg::before {
    width: 500px;
    height: 500px;
    top: -10%;
    right: 10%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15), transparent 70%);
}

.hero-bg::after {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12), transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(30, 58, 95, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-navy);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2.5s infinite;
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero-title span {
    display: block;
}

.hero-title .highlight {
    font-style: italic;
    color: var(--text-secondary);
}

.hero-desc {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 0 40px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: left;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.02em;
    display: block;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ===== Phone Mockup ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.hero-video {
    width: 380px;
    max-width: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: rotateY(-8deg) rotateX(2deg);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    -webkit-mask-image: linear-gradient(to bottom, black 99%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 99%, transparent 100%);
}

.hero-video:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

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

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

.screen-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2px 0 6px;
    font-size: 11px;
    font-weight: 600;
}

.screen-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    background: #1A1A1A;
    border-radius: 0 0 12px 12px;
}

.screen-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px;
}

.demo-chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.chat-msg:nth-child(odd) { align-items: flex-start; }
.chat-msg:nth-child(even) { align-items: flex-end; }

.chat-bubble {
    max-width: 85%;
    padding: 7px 11px;
    border-radius: 13px;
    font-size: 11px;
    line-height: 1.5;
}

.chat-msg:nth-child(odd) .chat-bubble {
    background: #F0F0F0;
    color: #000;
    border-bottom-left-radius: 3px;
}

.chat-msg:nth-child(even) .chat-bubble {
    background: #000;
    color: #FFF;
    border-bottom-right-radius: 3px;
}

.translated-badge {
    font-size: 9px;
    color: #999;
    padding: 2px 6px;
    background: #F5F5F5;
    border-radius: var(--radius-full);
}

.screen-footer {
    display: flex;
    justify-content: flex-end;
    padding: 6px;
}

.kaca-fab {
    width: 40px;
    height: 40px;
    background: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

/* ===== Section Base ===== */
.section {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

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

.section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-title .highlight {
    font-style: italic;
    color: var(--text-secondary);
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.65;
}

/* ===== Feature Row (alternating) ===== */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row-reverse .feature-row-text {
    order: 2;
}

.feature-row-text h3 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.feature-row-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--text-primary);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.feature-row-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 24px;
    transition: var(--transition);
}

.feature-row-link:hover {
    gap: 10px;
}

/* Feature Visual */
.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.feature-card-icon {
    width: 52px;
    height: 52px;
    background: var(--text-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    margin-bottom: 24px;
}

.feature-card-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fc-msg {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    background: var(--bg-secondary);
}

.fc-msg-trans {
    background: #F0F0F0;
    border: 1px solid var(--border);
}

/* ===== Stats Grid (Quick Features) ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-cell {
    padding: 48px 32px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-cell:last-child {
    border-right: none;
}

.stat-cell-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 6px;
}

.stat-cell-label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== Reviews ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.review-text {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
}

.review-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover { color: var(--text-secondary); }

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    background: #1A1A1A;
    color: #FFF;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta-title .highlight {
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
}

.cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta .btn-primary {
    background: #FFF;
    color: #000;
}

.cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* ===== Footer ===== */
.footer {
    padding: 72px 0 32px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-full);
    background: var(--text-primary);
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--text-primary);
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
}

.footer-email {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-email:hover {
    color: var(--text-primary);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-copy {
    font-variant-numeric: tabular-nums;
}

/* ===== Reveal Animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header,
.feature-row,
.review-card,
.faq-item,
.stat-cell {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-header.visible,
.feature-row.visible,
.review-card.visible,
.faq-item.visible,
.stat-cell.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card:nth-child(1) { transition-delay: 0s; }
.review-card:nth-child(2) { transition-delay: 0.1s; }
.review-card:nth-child(3) { transition-delay: 0.2s; }

.stat-cell:nth-child(1) { transition-delay: 0s; }
.stat-cell:nth-child(2) { transition-delay: 0.1s; }
.stat-cell:nth-child(3) { transition-delay: 0.2s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 52px; }
    .section-title { font-size: 42px; }
    .cta-title { font-size: 44px; }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .hero-content { text-align: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .stat { text-align: center; }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .feature-row-reverse .feature-row-text {
        order: 0;
    }

    .feature-row-text h3 { font-size: 32px; }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-video { width: 240px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav-links { display: none; }

    .lang-trigger span { display: none; }
    .lang-trigger { padding: 8px; min-width: 36px; justify-content: center; }
    .lang-dropdown { right: -8px; }

    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-title { font-size: 38px; }
    .hero-desc { font-size: 16px; }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .section { padding: 80px 0; }
    .section-title { font-size: 34px; }
    .feature-row-text h3 { font-size: 26px; }

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

    .stat-cell {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 32px 20px;
    }

    .stat-cell:last-child { border-bottom: none; }

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

    .review-text { font-size: 17px; }

    .cta { padding: 80px 0; }
    .cta-title { font-size: 34px; }

    .footer { padding: 64px 0 28px; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-brand { align-items: center; text-align: center; }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-col { align-items: center; text-align: center; }

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}