﻿:root {
    --site-ink: #101828;
    --site-muted: #667085;
    --site-paper: #ffffff;
    --site-soft: #f5f6fa;
    --site-navy: #111827;
    --site-orange: #f47b20;
    --site-orange-dark: #dc6410;
    --site-shadow: 0 24px 70px rgba(17, 24, 39, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--site-ink);
    background: var(--site-paper);
    font-family: "Ubuntu", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.guest-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--site-soft);
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

/* ── Header / Nav ───────────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    color: #fff;
    background: rgba(17, 24, 39, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

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

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(145deg, #ff923f, var(--site-orange-dark));
    box-shadow: 0 8px 22px rgba(244, 123, 32, .24);
    font-size: 17px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    padding: 9px 12px;
    color: #cbd1dc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 650;
    border-radius: 9px;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,.07);
}

.nav-links .nav-register {
    color: #fff;
    background: linear-gradient(145deg, #ff923f, var(--site-orange-dark));
    border: 1px solid rgba(244, 123, 32, .35);
    box-shadow: 0 10px 24px rgba(244, 123, 32, .20);
}

.nav-links .nav-register:hover {
    background: linear-gradient(145deg, #ffa65e, #c95308);
    border-color: rgba(244, 123, 32, .46);
    box-shadow: 0 14px 30px rgba(244, 123, 32, .24);
}

.nav-links .nav-cta {
    color: #fff;
    background: linear-gradient(145deg, #ff923f, var(--site-orange-dark));
    box-shadow: 0 10px 24px rgba(244, 123, 32, .24);
}

.nav-links .nav-cta:hover {
    color: #fff;
    background: linear-gradient(145deg, #ffa65e, #c95308);
    box-shadow: 0 14px 30px rgba(244, 123, 32, .30);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 8px;
    cursor: pointer;
}

/* ── Guest / Auth Form Pages ────────────────────── */

main { flex: 1 0 auto; }

.guest-main {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.guest-main-full {
    align-items: flex-start;
    justify-content: stretch;
}

.guest-card {
    width: 100%;
    max-width: 520px;
    border: 0;
    border-radius: 22px;
    box-shadow: var(--site-shadow);
}

.guest-card .card-body {
    padding: 40px 44px 36px;
}

.guest-card .text-center {
    margin-bottom: 28px;
}

.guest-card .badge {
    display: inline-block;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.guest-card .badge.text-bg-secondary {
    background: rgba(244, 123, 32, .12) !important;
    color: var(--site-orange-dark) !important;
}

.guest-card .badge.text-bg-primary {
    background: rgba(37, 99, 235, .12) !important;
    color: #2563eb !important;
}

.guest-card .badge.text-bg-info {
    background: rgba(13, 148, 136, .12) !important;
    color: #0d9488 !important;
}

.guest-card .h4,
.guest-card h1 {
    margin-bottom: 6px;
    font-size: 26px;
    line-height: 1.12;
    letter-spacing: -.04em;
    font-weight: 800;
}

.guest-card .text-body-secondary {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.guest-card .form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #344054;
}

.guest-card .form-control {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #111827;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    transition: border-color .2s ease, box-shadow .2s ease;
    outline: none;
}

.guest-card .form-control:focus {
    border-color: var(--site-orange);
    box-shadow: 0 0 0 3px rgba(244, 123, 32, .12);
}

.guest-card .form-control::placeholder {
    color: #9ca3af;
}

.guest-card .d-grid {
    display: grid;
    gap: 18px;
}

.guest-card .btn-primary {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, #ff923f, var(--site-orange-dark));
    box-shadow: 0 10px 24px rgba(244, 123, 32, .24);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.guest-card .btn-primary:hover,
.guest-card .btn-primary:focus {
    transform: translateY(-1px);
    background: linear-gradient(145deg, #ffa65e, #c95308);
    box-shadow: 0 14px 30px rgba(244, 123, 32, .30);
}

.guest-card .btn-outline-secondary {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 0 24px;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}

.guest-card .btn-outline-secondary:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

/* ── Alert messages ─────────────────────────────── */

.alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* ── Page titles ────────────────────────────────── */

.page-title {
    margin: 0;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -.05em;
    font-weight: 800;
}

.page-subtitle {
    margin: 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ── Footer ─────────────────────────────────────── */

.site-footer {
    margin-top: auto;
    padding: 28px 0 18px;
    color: #c5cad4;
    background: linear-gradient(180deg, #0c111b, #090d15);
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .9fr;
    gap: 34px;
    padding-bottom: 20px;
    align-items: start;
}

.footer-brand p {
    max-width: 440px;
    margin: 14px 0 0;
    color: #8a93a2;
    font-size: 13px;
    line-height: 1.7;
}

.footer-col h3 {
    margin: 4px 0 14px;
    color: #fff;
    font-size: 12px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    width: fit-content;
    margin: 0 0 10px;
    color: #95a0b0;
    text-decoration: none;
    font-size: 13px;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #6f7887;
    font-size: 12px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #30c884;
    box-shadow: 0 0 0 4px rgba(48,200,132,.12);
}

/* ── Supported Models page ──────────────────────── */

.supported-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 8px 0 24px;
}

.page-head {
    text-align: center;
    margin-bottom: 28px;
}

.page-head h1 {
    margin: 10px 0 12px;
    color: var(--site-orange);
    font-size: clamp(28px, 2.6vw, 36px);
    line-height: 1.06;
    letter-spacing: -.05em;
    font-weight: 800;
}

.page-head p {
    margin: 0 auto;
    max-width: 760px;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.7;
}

.brand-section {
    margin-top: 22px;
    padding-bottom: 4px;
}

.brand-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 0 0 12px;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, .10);
    background: transparent;
    color: var(--site-orange-dark);
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.brand-toggle::-webkit-details-marker {
    display: none;
}

.brand-title {
    display: inline-block;
    color: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.brand-caret {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
    margin-right: 4px;
}

.brand-section[open] .brand-caret {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.model-list {
    display: grid;
    gap: 2px;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.model-list li {
    color: #111827;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.42;
}

.empty-state {
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ── Landing page ───────────────────────────────── */

.hero {
    position: relative;
    overflow: hidden;
    padding: 34px 0 46px;
    color: var(--site-ink);
    background: #fff;
}

.hero .hero-grid {
    position: relative;
    min-height: 560px;
    padding: 26px 0 34px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 48px;
}

.hero-copy { padding-top: 18px; }

.hero-copy h1 {
    max-width: 650px;
    margin: 0;
    color: #050505;
    font-size: clamp(46px, 5.7vw, 74px);
    line-height: .96;
    letter-spacing: -.065em;
}

.hero-copy h2 {
    margin: 18px 0 16px;
    color: #111827;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.12;
    letter-spacing: -.03em;
}

.hero-copy p {
    max-width: 560px;
    margin: 0 0 28px;
    color: #3f4a5a;
    font-size: 16px;
    line-height: 1.8;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(145deg, var(--site-orange), var(--site-orange-dark));
    box-shadow: 0 12px 28px rgba(244, 123, 32, .24);
    transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
}

.button:hover { transform: translateY(-2px); }

.button-ghost {
    color: #111827;
    border-color: rgba(17,24,39,.18);
    background: #fff;
    box-shadow: 0 10px 24px rgba(17,24,39,.06);
}

.button-ghost:hover {
    color: #111827;
    border-color: rgba(17,24,39,.28);
    background: #fff;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.phone-stack {
    position: relative;
    width: min(100%, 520px);
    height: 500px;
}

.phone-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 440px;
    border-radius: 48px;
    border: 4px solid rgba(17,24,39,.95);
    box-shadow: 0 30px 70px rgba(17,24,39,.18);
    overflow: hidden;
    transform-origin: center;
}

.phone-card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 90px;
    height: 22px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #121212;
    z-index: 2;
}

.phone-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 22%, rgba(255,255,255,.38), transparent 24%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,.30), transparent 28%),
        linear-gradient(155deg, rgba(18, 29, 94, .98), rgba(31, 103, 255, .84));
}

.phone-card.back {
    transform: translate(-82%, -56%) rotate(-32deg);
    z-index: 1;
}

.phone-card.front {
    transform: translate(-8%, -54%) rotate(18deg);
    z-index: 2;
}

.phone-screen {
    position: absolute;
    inset: 14px;
    border-radius: 38px;
    background: rgba(255,255,255,.04);
    z-index: 3;
}

.phone-screen.back {
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
        radial-gradient(circle at 50% 22%, rgba(255,255,255,.48), transparent 18%),
        linear-gradient(145deg, #0f204f 0%, #5a4cf0 52%, #7c8fe9 100%);
}

.phone-screen.front {
    background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,.32), transparent 20%),
        linear-gradient(180deg, #ff3bc2 0%, #40106e 44%, #0d2b8f 100%);
}

.phone-screen .brand-badge {
    position: absolute;
    left: 50%;
    bottom: 122px;
    width: 118px;
    height: 48px;
    transform: translateX(-50%) rotate(-6deg);
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.96);
    color: #151a35;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.04em;
    box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.phone-screen .apple-badge {
    position: absolute;
    left: 50%;
    top: 92px;
    width: 94px;
    height: 94px;
    transform: translateX(-50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 52px;
    font-weight: 900;
    text-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.phone-screen .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.phone-screen .glow.one { width: 170px; height: 170px; left: 18px; top: 16px; background: rgba(255,255,255,.22); }
.phone-screen .glow.two { width: 190px; height: 190px; right: 0; bottom: 58px; background: rgba(255,255,255,.16); }

.section { padding: 82px 0; }
.section-soft { background: var(--site-soft); }

.brand-strip {
    padding: 18px 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,.54), rgba(247,248,251,1));
}

.brand-row {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
    opacity: .76;
}

.brand-pill {
    display: grid;
    place-items: center;
    min-height: 42px;
    border-radius: 999px;
    color: #1f2937;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(17,24,39,.06);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 46px;
    text-align: center;
}

.kicker { display: block; margin-bottom: 13px; color: var(--site-orange-dark); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }

.section-heading h2 { margin: 0 0 16px; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p { margin: 0 auto; max-width: 760px; color: var(--site-muted); font-size: 17px; line-height: 1.7; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.step-card {
    min-height: 520px;
    padding: 22px 22px 28px;
    border: 1px solid #e6e9ef;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #fcfdff 100%);
    box-shadow: 0 10px 34px rgba(16,24,40,.05);
    text-align: center;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}

.step-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(16,24,40,.09); }

.step-visual {
    position: relative;
    height: 286px;
    margin-bottom: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
    overflow: hidden;
}

.phone {
    position: absolute;
    left: 50%;
    top: 22px;
    width: 192px;
    height: 238px;
    transform: translateX(-50%);
    border: 5px solid #9b9b9b;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 24px 42px rgba(17,24,39,.10);
}

.phone::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 9px;
    width: 68px;
    height: 18px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #1f1f1f;
}

.screen {
    position: absolute;
    inset: 26px 14px 14px;
    border-radius: 20px;
    background: #f5f7ff;
    padding: 14px;
    text-align: left;
}

.screen .label { display: block; margin-bottom: 12px; color: #111827; font-size: 13px; font-weight: 850; }
.screen .chip { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(244,123,32,.12); color: var(--site-orange-dark); font-size: 20px; font-weight: 900; }
.screen .bar, .screen .line { height: 8px; margin-top: 11px; border-radius: 999px; background: #d9e0f5; }
.screen .line.short { width: 72%; }
.screen .line.mid { width: 84%; }
.screen .line.long { width: 92%; }

.screen .toggle {
    width: 48px;
    height: 24px;
    margin-left: auto;
    border-radius: 999px;
    background: var(--site-orange);
    position: relative;
}

.screen .toggle::after {
    content: "";
    position: absolute;
    top: 3px;
    right: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.18);
}

.screen .notice {
    margin-top: 18px;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(17,24,39,.08);
    font-size: 11px;
    color: #6b7280;
    line-height: 1.5;
}

.phone.one .screen { background: #f3f4ff; }
.phone.two .screen { background: #fff; }
.phone.three .screen { background: #f9fafb; }

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 30px;
    margin: 0 auto 12px;
    padding: 0 12px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(145deg, var(--site-orange), var(--site-orange-dark));
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .03em;
    box-shadow: 0 10px 22px rgba(244,123,32,.24);
    white-space: nowrap;
}

.step-card h3 { margin: 0 0 10px; font-size: 19px; letter-spacing: -.025em; }
.step-card p { margin: 0 auto; max-width: 280px; color: var(--site-muted); font-size: 14px; line-height: 1.72; }

.cta { padding: 0 0 82px; background: var(--site-soft); }

.cta-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 54px 58px;
    border-radius: 25px;
    color: #fff;
    background: var(--site-navy);
}

.cta-panel::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -170px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244,123,32,.8), rgba(255,180,110,.55));
    filter: blur(2px);
}

.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { margin: 0 0 10px; font-size: clamp(28px, 3.5vw, 42px); letter-spacing: -.04em; }
.cta-copy p { margin: 0; color: #aeb6c4; line-height: 1.65; }
.cta-panel .button { position: relative; z-index: 1; flex: 0 0 auto; }

/* ── Reseller directory page ────────────────────── */

.directory-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 26px;
    text-align: center;
}

.directory-head h1,
.directory-head h2 {
    margin: 0;
    font-size: clamp(24px, 2.8vw, 36px);
    letter-spacing: -.04em;
}

.directory-head p {
    margin: 0;
    color: #5b6575;
    font-size: 14px;
    line-height: 1.65;
    max-width: 580px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 18px 18px;
    border: 1px solid rgba(17,24,39,.08);
    border-top: 4px solid var(--site-orange);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(16,24,40,.05);
    transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
    text-align: center;
    min-height: 258px;
}

.card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(16,24,40,.08); }

.card-top { width: 100%; display: flex; justify-content: center; }
.card-body { display: grid; justify-items: center; gap: 6px; width: 100%; }

.logo {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 4px solid #ece7ff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 22px rgba(16,24,40,.05);
}

.logo img { width: 100%; height: 100%; object-fit: contain; }
.logo-fallback { color: #fff; background: linear-gradient(145deg, var(--site-orange), var(--site-orange-dark)); font-size: 28px; font-weight: 850; }

.type { margin-bottom: 4px; color: var(--site-orange-dark); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.country { display: inline-flex; align-items: center; gap: 5px; color: var(--site-muted); font-size: 12px; font-weight: 700; }
.country span:first-child { font-size: 13px; color: #a8afbb; line-height: 1; }
.card h2 { margin: 0; font-size: 18px; letter-spacing: -.03em; }

.contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(17,24,39,.06);
    width: 100%;
}

.contact {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 11px;
    color: var(--site-orange-dark);
    text-decoration: none;
    background: rgba(244,123,32,.08);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.contact:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(244,123,32,.16); }

.contact-telegram { color: #2b8eff; background: rgba(43,142,255,.10); }
.contact-whatsapp { color: #22c55e; background: rgba(34,197,94,.10); }
.contact-facebook { color: #2563eb; background: rgba(37,99,235,.10); }
.contact-website { color: var(--site-orange-dark); background: rgba(244,123,32,.10); }

.contact-telegram:hover { background: rgba(43,142,255,.18); }
.contact-whatsapp:hover { background: rgba(34,197,94,.18); }
.contact-facebook:hover { background: rgba(37,99,235,.18); }
.contact-website:hover { background: rgba(244,123,32,.18); }

.empty {
    padding: 56px 24px;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 22px;
    background: #fff;
    text-align: center;
    color: var(--site-muted);
    box-shadow: 0 10px 30px rgba(16,24,40,.05);
    grid-column: 1 / -1;
}

/* ── Responsive ─────────────────────────────────── */

@media (max-width: 1100px) {
    .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .hero .hero-grid { grid-template-columns: 1fr; padding: 48px 0 64px; gap: 26px; }
    .hero-copy { padding-top: 0; }
    .hero-visual { min-height: 460px; order: -1; }
    .phone-stack { height: 440px; }
    .phone-card { width: 250px; height: 390px; }
    .brand-row { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { min-height: auto; max-width: 720px; margin-inline: auto; }
}

@media (max-width: 768px) {
    .nav { min-height: 60px; gap: 16px; }
    .site-header .nav-wrap,
    .nav { flex-direction: column; align-items: flex-start; padding: 12px 0; }
    .nav-links { justify-content: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 22px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .supported-page { padding: 0 4px 16px; }
    .card { min-height: 0; padding: 18px; }
    .logo { width: 72px; height: 72px; }
    .grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 28px, 1160px); }
    .menu-toggle { display: block; }
    .nav-links { display: none; position: absolute; left: 14px; right: 14px; top: 63px; align-items: stretch; flex-direction: column; padding: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: #161f2e; box-shadow: 0 24px 70px rgba(17,24,39,.12); }
    .nav-links.open { display: flex; }
    .nav-links .nav-cta { margin-left: 0; text-align: center; }
    h1 { font-size: 44px; }
    .hero-copy h1 { font-size: 44px; }
    .hero .hero-grid { min-height: auto; padding: 42px 0 54px; }
    .hero-copy p { font-size: 15px; }
    .hero-copy h2 { font-size: 22px; }
    .hero-visual { min-height: 390px; }
    .phone-stack { height: 380px; }
    .phone-card { width: 220px; height: 346px; border-width: 4px; }
    .section { padding: 72px 0; }
    .brand-row { grid-template-columns: repeat(2, 1fr); }
    .cta { padding-bottom: 72px; }
    .cta-panel { align-items: flex-start; flex-direction: column; padding: 38px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 22px; }
    .step-visual { height: 272px; }
    .phone { width: 182px; height: 228px; }
}

@media (max-width: 440px) {
    .hero-copy h1 { font-size: 39px; }
    .button { width: 100%; }
    .hero-copy h2 { font-size: 20px; }
    .phone-stack { transform: scale(.86); transform-origin: center top; height: 360px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .brand-mark { width: 34px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
