:root {
    --bg: #ffffff;
    --bg-alt: #fafafa;
    --bg-elev: #f7f7f8;
    --border: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.14);
    --text: #0a0a0a;
    --text-muted: #6b7280;
    --text-dim: #9ca3af;
    --primary: #ff6b00;
    --primary-hover: #e85d00;
    --accent: #ff6b00;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --container: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ================== NAVBAR ================== */
.navbar {
    background: transparent;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 64px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.brand-logo {
    height: 44px;
    width: auto;
    display: block;
    margin: 6px 0;
}

.brand-logo-footer {
    height: 28px;
    margin: 0;
}

.brand-pill {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 7px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 1.4;
}

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

.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease;
}

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

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

.lang-switch {
    display: flex;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px;
}

.lang-btn {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.15s ease;
    letter-spacing: 0.04em;
}

.lang-btn[aria-pressed="true"] {
    background: var(--text);
    color: #fff;
}

.lang-btn:hover:not([aria-pressed="true"]) { color: var(--text); }

/* ================== HERO ================== */
.hero {
    position: relative;
    padding: 56px 0 96px;
    overflow: hidden;
}

.hero-bg {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 10px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.hero-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-title span { display: block; }

.gradient-text { color: var(--primary); }

.hero-subtitle {
    font-size: clamp(0.95rem, 1.6vw, 1.3rem);
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.store-link {
    display: inline-block;
    line-height: 0;
    transition: transform 0.15s ease, opacity 0.15s ease;
    opacity: 0.95;
}

.store-link:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.store-link img {
    height: 60px;
    width: auto;
    display: block;
}

/* OS detection: show only the relevant badge, bigger */
.hero-ctas.is-ios .store-link[aria-label="Google Play"],
.hero-ctas.is-android .store-link[aria-label="App Store"] {
    display: none;
}

.hero-ctas.is-ios .store-link img,
.hero-ctas.is-android .store-link img {
    height: 76px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.15s ease;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background: #1f1f1f;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #fff;
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-secondary:hover {
    background: var(--bg-elev);
}

/* ---------- Hero phones (5 phones, no rotation) ---------- */
.hero-phones {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 720px;
    margin: 40px auto 72px;
}

.hero-phone-pos {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    aspect-ratio: 9 / 19.5;
    animation: hero-phone-fade-in 0.8s ease-out backwards;
}

.hero-phone-pos-center    { z-index: 5; transform: translate(-50%, -50%); animation-delay: 0.05s; }
.hero-phone-pos-left      { z-index: 4; transform: translate(-110%, -50%) scale(0.96); animation-delay: 0.15s; }
.hero-phone-pos-right     { z-index: 4; transform: translate(10%, -50%) scale(0.96);   animation-delay: 0.20s; }
.hero-phone-pos-far-left  { z-index: 3; transform: translate(-170%, -50%) scale(0.88); animation-delay: 0.30s; }
.hero-phone-pos-far-right { z-index: 3; transform: translate(70%, -50%) scale(0.88);   animation-delay: 0.35s; }

@keyframes hero-phone-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hero-phone {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    padding: 7px;
    background: linear-gradient(145deg, #2a2a2d, #16161a);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-phone-inner {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: var(--bg);
    position: relative;
}


.hero-phone-screen {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #f7f7f8, #efefef);
}

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

.hero-phone-label {
    color: var(--text-dim);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.stat-value {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--text);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 8px;
    letter-spacing: 0.02em;
}

/* ================== SOURCES (dark) ================== */
.sources {
    --dark-bg: #0d0d0f;
    --dark-card: #18181b;
    --dark-card-hover: #1f1f23;
    --dark-border: rgba(255, 255, 255, 0.08);
    --dark-border-strong: rgba(255, 255, 255, 0.16);

    padding: 96px 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--border);
    color: #fff;
}

.sources .section-title { color: #fff; }
.sources .section-subtitle { color: rgba(255, 255, 255, 0.65); }

.sources-grid-wrap {
    position: relative;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    max-height: 220px;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.sources-grid.expanded {
    max-height: 2000px;
}

.sources-grid-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    background: linear-gradient(to bottom, rgba(13, 13, 15, 0) 0%, var(--dark-bg) 80%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sources-grid-wrap.expanded::after {
    opacity: 0;
}

.sources-toggle {
    display: block;
    margin: 24px auto 0;
    padding: 11px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--dark-border-strong);
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.sources-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.source-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    min-height: 64px;
}

.source-card:hover {
    background: var(--dark-card-hover);
    border-color: var(--dark-border-strong);
    transform: translateY(-1px);
}

.source-logo {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.source-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.source-info {
    min-width: 0;
    flex: 1;
}

.source-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.source-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.source-flag {
    width: 16px;
    height: auto;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.source-card-skel {
    background: linear-gradient(90deg, #18181b 0%, #1f1f23 50%, #18181b 100%);
    background-size: 200% 100%;
    border-color: transparent;
    animation: skel-shimmer 1.4s ease-in-out infinite;
    min-height: 64px;
}

.source-card-skel:hover {
    background: linear-gradient(90deg, #18181b 0%, #1f1f23 50%, #18181b 100%);
    background-size: 200% 100%;
    border-color: transparent;
    transform: none;
}

@keyframes skel-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.sources-error {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    grid-column: 1 / -1;
}

/* ================== WEB VERSION ================== */
.web-version {
    padding: 96px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.web-header {
    margin-bottom: 56px;
}

.web-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.web-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 11px 20px;
    background: var(--text);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s ease, transform 0.15s ease;
}

.web-link:hover {
    background: #1f1f1f;
    transform: translateY(-1px);
}

.web-link svg { flex-shrink: 0; }

.browser-mockup {
    max-width: 1080px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    overflow: hidden;
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #f5f5f7;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.browser-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d8d8db;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 4px 12px;
    max-width: 340px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
}

.browser-url svg { color: var(--text-dim); }

.browser-mockup img {
    display: block;
    width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
}

.section-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 4.2vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
}

/* ================== SHOWCASE ================== */
.showcase {
    padding: 128px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    padding: 72px 0;
}

.showcase-row + .showcase-row {
    border-top: 1px solid var(--border);
}

.showcase-row-reverse .showcase-text { order: 2; }
.showcase-row-reverse .showcase-visual { order: 1; }

.showcase-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.showcase-heading {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 3.4vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--text);
}

.showcase-desc {
    color: var(--text-muted);
    font-size: 16.5px;
    line-height: 1.6;
    margin-bottom: 26px;
}

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

.showcase-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text);
    font-size: 15.5px;
}

.showcase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #dd4b40;
}

.showcase-list li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 11px;
    width: 7px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

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

.screenshot-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 9.75;
    background: #fff;
    border: 1px dashed var(--border-strong);
    border-radius: 24px;
    display: grid;
    place-items: center;
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.showcase-visual img {
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.showcase-video {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 9.75;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    background: #000;
    display: block;
}

/* ================== DOWNLOAD ================== */
.download {
    padding: 128px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.download-inner {
    text-align: center;
    max-width: 680px;
}

.download-ctas {
    margin-top: 40px;
    margin-bottom: 0;
}

/* ================== FOOTER ================== */
.footer {
    border-top: 1px solid var(--border);
    padding: 28px 0;
    background: var(--bg);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

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

.footer-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--text-muted);
    font-size: 12px;
    flex-wrap: wrap;
}

.footer-meta a:hover { color: var(--text); }

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    transition: color 0.15s ease;
}

.footer-social:hover { color: var(--primary); }
.footer-social svg { flex-shrink: 0; }

/* ================== SCROLL REVEAL ================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1280px) {
    .hero-phone-pos { width: 280px; }
    .hero-phones { height: 640px; }
}

@media (max-width: 1100px) {
    .hero-phone-pos { width: 240px; }
    .hero-phones { height: 560px; }
    .sources-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); max-height: 220px; }
}

@media (max-width: 880px) {
    .sources-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); max-height: 220px; }
    .nav-links { display: none; }
    .showcase-row {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 0;
    }
    .showcase-row-reverse .showcase-text { order: 0; }
    .showcase-row-reverse .showcase-visual { order: 0; }
    .hero-stats { gap: 32px; padding-top: 28px; }
    .hero { padding: 40px 0 56px; }
    .showcase, .download, .web-version { padding: 64px 0; }
    .section-header { margin-bottom: 48px; }

    .hero-phone-pos-far-left,
    .hero-phone-pos-far-right { display: none; }
    .hero-phone-pos { width: 200px; }
    .hero-phones { height: 440px; margin: 24px auto 48px; }
}

@media (max-width: 520px) {
    .container { padding: 0 16px; }
    .nav-inner { height: 56px; gap: 12px; }
    .brand-logo { height: 32px; margin: 4px 0; }
    .lang-switch { padding: 2px; }
    .lang-btn { padding: 4px 10px; font-size: 11px; }

    .sources-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; max-height: 220px; }
    .source-card { padding: 10px 12px; gap: 10px; min-height: 56px; }
    .source-logo { width: 32px; height: 32px; }
    .source-name { font-size: 13px; }
    .source-country { font-size: 10px; }

    .hero { padding: 24px 0 40px; }
    .badge { font-size: 11px; padding: 4px 10px 4px 8px; margin-bottom: 18px; }
    .hero-subtitle { margin-bottom: 24px; font-size: 0.95rem; }

    .showcase, .download, .web-version { padding: 48px 0; }
    .web-header { margin-bottom: 32px; }
    .section-header { margin-bottom: 32px; }
    .showcase-row { gap: 24px; padding: 28px 0; }
    .showcase-tag { font-size: 10px; padding: 3px 8px; margin-bottom: 12px; }
    .showcase-desc { font-size: 14.5px; margin-bottom: 18px; line-height: 1.55; }
    .showcase-list { gap: 9px; }
    .showcase-list li { font-size: 14px; padding-left: 24px; }
    .showcase-list li::before { width: 12px; height: 12px; top: 7px; }
    .showcase-list li::after { left: 2.5px; top: 9.5px; width: 6px; height: 3px; }
    .showcase-visual img,
    .showcase-video,
    .screenshot-placeholder { max-width: 320px; border-radius: 20px; }

    .browser-mockup { border-radius: 10px; }
    .browser-bar { padding: 8px 10px; gap: 10px; }
    .browser-dots span { width: 9px; height: 9px; }
    .browser-url { font-size: 11px; padding: 3px 10px; }

    .web-tag { font-size: 10px; padding: 3px 10px; margin-bottom: 12px; }
    .web-link { padding: 9px 16px; font-size: 13px; margin-top: 16px; }

    .store-link img { height: 48px; }
    .hero-ctas.is-ios .store-link img,
    .hero-ctas.is-android .store-link img { height: 56px; }
    .hero-ctas .btn { width: 100%; padding: 12px 20px; font-size: 14px; }

    .hero-stats {
        gap: 0;
        flex-wrap: nowrap;
        padding-top: 24px;
    }
    .stat {
        flex: 1 1 0;
        min-width: 0;
        padding: 0 8px;
        text-align: center;
        border-left: 1px solid var(--border);
    }
    .stat:first-child { border-left: none; }
    .stat-value { font-size: 1.25rem; }
    .stat-label { font-size: 10.5px; line-height: 1.3; margin-top: 6px; }

    .hero-phone-pos { width: 168px; }
    .hero-phones { height: 380px; margin: 16px auto 32px; }
    .hero-phone-pos-left  { transform: translate(-105%, -50%) scale(0.92); }
    .hero-phone-pos-right { transform: translate(5%, -50%) scale(0.92); }
    .hero-phone { border-radius: 30px; padding: 5px; }
    .hero-phone-inner { border-radius: 26px; }

    .footer { padding: 20px 0; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-brand { gap: 10px; }
    .footer-tagline { font-size: 12px; }
    .footer-meta { font-size: 11px; gap: 14px; }

    .sources-toggle { padding: 9px 18px; font-size: 13px; }
}

@media (max-width: 380px) {
    .hero-phone-pos { width: 144px; }
    .hero-phones { height: 340px; }
    .sources-grid { grid-template-columns: 1fr; }
    .stat-value { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-in-up { opacity: 1; transform: none; }
}
