/**
 * Gsm Pay — Public Site
 */

:root {
    --primary: #5b6ef5;
    --primary-light: #7c8ff7;
    --secondary: #8b4fd9;
    --accent: #e8b84a;
    --bg: #0b1120;
    --bg-elevated: #131c31;
    --bg-card: #161f36;
    --bg-card-hover: #1c2847;
    --text: #eef2ff;
    --text-muted: #8b9cb8;
    --text-dim: #5a6d8a;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.14);
    --success: #22c55e;
    --telegram: #229ed9;
    --whatsapp: #25d366;
    --email: #3b82f6;
    --website: #7c3aed;
    --radius: 14px;
    --radius-lg: 20px;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    --header-h: 68px;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

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

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(91, 110, 245, 0.18), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(139, 79, 217, 0.1), transparent),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(91, 110, 245, 0.08), transparent);
    pointer-events: none;
    z-index: -1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

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

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--header-h);
    background: rgba(11, 17, 32, 0.82);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .site-header { background: var(--bg); }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.logo-mark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.logo-mark svg { width: 100%; height: 100%; display: block; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    border-radius: 9px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.nav-support {
    color: var(--telegram) !important;
}

.nav-support:hover {
    background: rgba(34, 158, 217, 0.12) !important;
}

.nav-wa {
    color: var(--whatsapp) !important;
    padding: 8px 12px !important;
}

.nav-wa:hover {
    background: rgba(37, 211, 102, 0.12) !important;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: #fff !important;
    margin-left: 4px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(91, 110, 245, 0.45);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 18px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 11px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 16px rgba(91, 110, 245, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(91, 110, 245, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-light);
}

.btn-telegram { background: var(--telegram); color: #fff; }
.btn-telegram:hover { background: #1a8bc4; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,158,217,0.4); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
}

/* ── Hero ── */
.hero {
    padding: 72px 0 48px;
    text-align: center;
}

.hero-home {
    padding: 64px 0 32px;
}

.hero-home h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 0.875rem;
}

.hero-quick-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

.hero-quick-links a:hover { color: var(--primary-light); }

.hero-quick-links .dot-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-dim);
}

/* ── Home networks strip ── */
.home-networks {
    padding-bottom: 48px;
}

.network-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.network-chips span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
}

.home-features { padding-top: 0; }

.features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-light);
}

.feature-link:hover { color: var(--text); }

.home-cta {
    padding-bottom: 64px;
}

.home-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

.home-cta-box h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.home-cta-box p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    background: linear-gradient(135deg, #fff 30%, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* ── Trust strip ── */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px 0 56px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 64px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-light);
    font-size: 1rem;
}

/* ── Sections ── */
.section {
    padding: 56px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ── Features ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-3px);
}

.feature-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(91, 110, 245, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-light);
    font-size: 18px;
}

.feature-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── API box ── */
.api-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    max-width: 640px;
    margin: 0 auto;
}

.endpoint {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 10px;
    transition: background 0.2s;
}

.endpoint:hover { background: rgba(255,255,255,0.03); }

.method {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 5px 9px;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
}

.method.post { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.method.get { background: rgba(34, 197, 94, 0.2); color: #4ade80; }

.endpoint code {
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.875rem;
    color: #a5b4fc;
    font-weight: 500;
}

.endpoint-desc {
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-top: 3px;
}

/* ── CTA Panel ── */
.cta-panel,
.support-banner {
    background: linear-gradient(135deg, rgba(91,110,245,0.12), rgba(139,79,217,0.08));
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin: 48px auto 64px;
    max-width: 800px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 100%;
}

.cta-panel h2,
.support-banner h2 {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.cta-panel p,
.support-banner p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-panel-actions,
.support-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.support-banner { text-align: center; }
.support-buttons { justify-content: center; margin-top: 20px; }

/* ── Page hero (inner pages) ── */
.page-hero {
    padding: 56px 0 36px;
    text-align: center;
}

.page-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.page-hero h1 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.page-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-dim);
}

.page-stats strong { color: var(--text); }

/* ── Resellers ── */
.resellers-section { padding-bottom: 24px; }

.resellers-toolbar {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 14px;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box input::placeholder { color: var(--text-dim); }

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 110, 245, 0.15);
}

.resellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.reseller-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px 22px;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.reseller-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.25s;
}

.reseller-card:hover::before { opacity: 1; }

.reseller-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow);
}

.reseller-avatar-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
}

.reseller-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.reseller-avatar.has-logo {
    background: #fff;
    padding: 10px;
}

.reseller-avatar.is-favicon {
    padding: 18px;
}

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

.reseller-avatar:not(.has-logo) .reseller-logo-img {
    object-fit: cover;
}

.avatar-fallback {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 26px;
    height: 26px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    border: 2px solid var(--bg-card);
}

.reseller-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.reseller-badge {
    display: inline-block;
    background: rgba(91, 110, 245, 0.15);
    color: var(--primary-light);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
    border: 1px solid rgba(91, 110, 245, 0.25);
}

.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 10px;
    border-radius: 9px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    transition: filter 0.2s, transform 0.2s;
}

.contact-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.contact-btn.full-width { grid-column: 1 / -1; }

.email-btn { background: var(--email); }
.whatsapp-btn { background: var(--whatsapp); }
.telegram-btn { background: var(--telegram); }
.website-btn { background: var(--website); }

.no-results {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 0;
    font-size: 0.95rem;
}

.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 48px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.empty-state h2 {
    color: var(--text);
    margin-bottom: 8px;
}

/* ── Support cards ── */
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    padding-bottom: 48px;
}

.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.support-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.support-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
    color: #fff;
}

.support-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.support-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.55;
}

.support-card .btn { width: 100%; }

.support-cards-highlight {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 24px;
}

.support-card-featured {
    border-color: var(--border-light);
    background: linear-gradient(160deg, rgba(91,110,245,0.08), rgba(22,31,54,1));
}

.support-card-featured:hover {
    box-shadow: 0 8px 32px rgba(91, 110, 245, 0.15);
}

.faq-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    max-width: 640px;
    margin: 0 auto 64px;
    text-align: left;
}

.faq-box h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.faq-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item:last-child { border-bottom: none; }

.faq-item strong { color: var(--text); display: block; margin-bottom: 4px; }

.faq-item a { color: var(--primary-light); text-decoration: underline; }

/* ── Floating contact (WhatsApp + Telegram) ── */
.float-contact {
    position: fixed;
    bottom: max(24px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    font-size: 0.8125rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.float-btn i { font-size: 20px; flex-shrink: 0; }

.float-wa {
    background: var(--whatsapp);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.float-tg {
    background: var(--telegram);
    box-shadow: 0 4px 20px rgba(34, 158, 217, 0.4);
}

.float-btn:hover {
    transform: translateX(-4px) scale(1.03);
}

.float-wa:hover { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
.float-tg:hover { box-shadow: 0 6px 28px rgba(34, 158, 217, 0.5); }

/* ── Footer ── */
.site-footer {
    border-top: 1px solid var(--border);
    margin-top: 24px;
    padding-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-top: 10px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.footer-links a,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 5px 0;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--text); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-dim);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; align-items: center; justify-content: center; }

    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 17, 32, 0.97);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px 24px 32px;
        gap: 6px;
        overflow-y: auto;
    }

    .main-nav.open { display: flex; }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 1rem;
    }

    .nav-cta { margin-left: 0 !important; }

    .hero { padding: 48px 0 32px; }
    .hero-buttons { margin-bottom: 40px; }

    .trust-strip { gap: 20px; padding: 20px 0 40px; margin-bottom: 48px; }

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

    .cta-panel { flex-direction: column; text-align: center; }
    .cta-panel-actions { justify-content: center; }

    .home-cta-box { flex-direction: column; text-align: center; }
    .home-cta-box .btn { width: 100%; }

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

    .float-label { display: none; }
    .float-btn {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .support-cards-highlight { grid-template-columns: 1fr; }

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

@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; }
}
