/* ========================================
   MaxTech — Dark Navy + Orange Theme
   Complete Redesign 2026
   ======================================== */

/* ── Reset & Base ── */
html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body {
    background: #0A0E1A;
    overflow-x: hidden;
    color: #E0E4EF;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0E1A; }
::-webkit-scrollbar-thumb { background: #2A3050; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #FF6B2C; }

::selection { background: rgba(255, 107, 44, 0.3); color: #fff; }

/* ── Navbar ── */
.navbar {
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-link {
    position: relative;
    color: #A0A8C0;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar-link:hover {
    color: #ffffff;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B2C;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.navbar-link:hover::after {
    width: 100%;
}

.logo-star {
    color: #FF6B2C;
    font-size: 1.25rem;
    filter: drop-shadow(0 0 6px rgba(255, 107, 44, 0.6));
    transition: filter 0.3s ease;
}

.logo-star:hover {
    filter: drop-shadow(0 0 12px rgba(255, 107, 44, 0.9));
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: #FF6B2C;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    background: #E85D1F;
    box-shadow: 0 8px 30px rgba(255, 107, 44, 0.35);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary .arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: #A0A8C0;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-outline:hover {
    border-color: #FF6B2C;
    color: #FF6B2C;
    box-shadow: 0 0 20px rgba(255, 107, 44, 0.1);
}

/* ── Hero Section ── */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 44, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.hero-title .accent {
    color: #FF6B2C;
    text-shadow: 0 0 40px rgba(255, 107, 44, 0.3);
}

.hero-subtitle {
    color: #8892AC;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
}

/* Hero badges */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B2C;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-badge-text {
    font-size: 0.8rem;
    color: #8892AC;
    line-height: 1.3;
}

/* Hero price block */
.price-block {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.price-currency {
    font-size: 0.85rem;
    color: #FF6B2C;
    font-weight: 600;
}

.price-period {
    font-size: 0.75rem;
    color: #6B7290;
}

/* ── Gemini Diamond + Orbital Icons ── */
.hero-diamond-container {
    position: relative;
    width: 100%;
    max-width: 650px; /* Increased from 480px */
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-diamond-img {
    position: relative;
    width: 65%; /* Adjusted so it fits well in the larger container */
    height: 65%;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 0 40px rgba(255, 217, 61, 0.4));
    animation: diamondPulse 4s ease-in-out infinite;
}

.diamond-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.3) 0%, rgba(255, 140, 0, 0.1) 40%, transparent 70%);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 217, 61, 0.3)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 60px rgba(255, 217, 61, 0.7)); transform: scale(1.05); }
}

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

/* Orbital rings (Atom style 3D) */


/* Orbital icons container */
.orbital-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.orbital-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    margin-left: -24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: auto;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
}

.orbital-icon img {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.orbital-icon:hover {
    z-index: 20;
    box-shadow: 0 0 0 4px rgba(255,255,255,.08), 0 10px 28px rgba(0,0,0,.38);
}

/* ── Inline icon system ── */
.site-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.site-icon { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.hero-badge-icon .site-icon { width: 1.3rem; height: 1.3rem; }
.chat-welcome-icon { width: 2rem; height: 2rem; color: #ff8f5c; margin-bottom: .75rem; }
.tariff-warning-icon { width: 1rem; height: 1rem; flex: 0 0 1rem; }
.rating-stars { display: flex; justify-content: center; gap: .25rem; margin-bottom: .9rem; color: #ffb649; }
.rating-stars .site-icon { width: 1.25rem; height: 1.25rem; fill: currentColor; stroke-width: 1; }
.review-stars { color: #ffb649; letter-spacing: .12rem; font-size: .85rem; }
.orbital-icon { background: rgba(13,18,39,.76); border: 1px solid rgba(255,255,255,.18); }

/* ── Feature highlight ── */
.feature-highlight-section { padding: 1.5rem 0 4.5rem; }
.feature-highlight { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(220px, .8fr) 1.5fr; gap: 1.25rem 2rem; padding: clamp(1.5rem, 4vw, 2.75rem); border: 1px solid rgba(255,143,92,.2); border-radius: 28px; background: radial-gradient(circle at 10% 0%, rgba(255,107,44,.18), transparent 38%), linear-gradient(135deg, rgba(20,26,53,.98), rgba(15,20,40,.82)); box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.feature-highlight::after { content: ''; position: absolute; width: 220px; height: 220px; right: -90px; bottom: -110px; border-radius: 50%; border: 1px solid rgba(255,143,92,.18); box-shadow: 0 0 0 24px rgba(255,143,92,.03), 0 0 0 48px rgba(255,143,92,.02); pointer-events: none; }
.eyebrow, .benefit-kicker, .why-card-label { display: inline-block; color: #ff9a66; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.feature-highlight-copy h2, .section-heading h2 { margin: .55rem 0 .65rem; color: #fff; font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.1; font-weight: 800; }
.feature-highlight-copy p, .section-heading p { max-width: 32rem; margin: 0; color: #97a0ba; line-height: 1.7; font-size: .94rem; }
.feature-brand-cloud { display: flex; align-items: center; margin-top: 1.35rem; padding-left: .45rem; }
.feature-brand-cloud span { display: grid; place-items: center; width: 3.15rem; height: 3.15rem; margin-left: -.45rem; border-radius: 50%; background: #111733; border: 2px solid #20284d; box-shadow: 0 8px 22px rgba(0,0,0,.28); transition: transform .25s ease, z-index .25s ease; }
.feature-brand-cloud span:first-child { margin-left: 0; }
.feature-brand-cloud span:hover { position: relative; z-index: 3; transform: translateY(-4px) scale(1.06); }
.feature-brand-cloud img { width: 2.7rem; height: 2.7rem; object-fit: contain; border-radius: 50%; }
.feature-checklist { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .65rem .8rem; align-content: center; }
.feature-checklist > div { display: flex; align-items: center; gap: .65rem; padding: .75rem .85rem; color: #f6f7fb; font-weight: 650; font-size: .9rem; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.035); }
.feature-checklist .site-icon { width: 1rem; height: 1rem; color: #7ee1a8; }
.feature-proof-row { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: .75rem; padding-top: .2rem; }
.feature-proof-row span { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem .85rem; color: #dce5f7; font-size: .82rem; font-weight: 700; border-radius: 999px; background: rgba(126,225,168,.09); border: 1px solid rgba(126,225,168,.2); }
.feature-proof-row .site-icon { width: 1rem; height: 1rem; color: #7ee1a8; }

/* ── Benefits showcase ── */
.benefits-showcase-section { padding: 3rem 0 5rem; }
.section-heading { text-align: center; margin: 0 auto 2.25rem; }
.section-heading p { margin: 0 auto; }
.benefits-title { margin: .55rem 0 .65rem; font-size: clamp(1.55rem, 3vw, 2.25rem); }
.benefits-showcase-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.benefit-showcase-card { position: relative; min-height: 225px; overflow: hidden; display: flex; flex-direction: column; gap: .65rem; padding: 1.5rem; border-radius: 22px; border: 1px solid rgba(255,255,255,.08); background: linear-gradient(145deg, rgba(26,32,64,.96), rgba(15,20,40,.82)); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.benefit-showcase-card:hover { transform: translateY(-5px); border-color: rgba(255,143,92,.35); box-shadow: 0 18px 45px rgba(0,0,0,.24); }
.benefit-showcase-card--wide { grid-column: span 2; min-height: 260px; background: radial-gradient(circle at 95% 0%, rgba(255,107,44,.2), transparent 42%), linear-gradient(145deg, rgba(26,32,64,.96), rgba(15,20,40,.82)); }
.benefit-showcase-card--accent { background: linear-gradient(145deg, rgba(255,107,44,.18), rgba(20,26,53,.96) 52%); }
.benefit-showcase-icon, .why-card-icon { display: grid; place-items: center; width: 2.9rem; height: 2.9rem; color: #ff9a66; border-radius: 14px; border: 1px solid rgba(255,143,92,.24); background: rgba(255,107,44,.1); }
.benefit-showcase-icon .site-icon, .why-card-icon .site-icon { width: 1.45rem; height: 1.45rem; }
.benefit-showcase-card h3 { margin: .15rem 0 0; color: #fff; font-size: 1.22rem; font-weight: 800; }
.benefit-showcase-card p { max-width: 32rem; margin: 0; color: #9aa4bd; font-size: .86rem; line-height: 1.6; }
.benefit-number, .why-card-mark { position: absolute; right: 1.25rem; bottom: 1rem; color: rgba(255,255,255,.2); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }

/* ── Why MaxTech: editorial layout ── */
.why-section { padding: 4rem 0 5rem; }
.why-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: .55rem 2rem; margin-bottom: 2rem; }
.why-heading .eyebrow { grid-column: 1 / -1; }
.why-heading h2 { margin: 0; color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1; font-weight: 900; letter-spacing: -.035em; }
.why-heading p { max-width: 30rem; margin: 0; color: #939db8; font-size: .95rem; line-height: 1.65; }
.why-editorial { display: grid; grid-template-columns: 1.05fr 1.2fr .95fr; gap: 1rem; }
.why-story { position: relative; min-height: 330px; overflow: hidden; padding: 1.65rem; border-radius: 24px; border: 1px solid rgba(255,255,255,.09); background: #151b38; box-shadow: 0 18px 45px rgba(4,7,20,.2); }
.why-story::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .8; }
.why-story--proof::before { background: radial-gradient(circle at 15% 18%, rgba(255,107,44,.25), transparent 38%); }
.why-story--process::before { background: radial-gradient(circle at 85% 10%, rgba(106,104,255,.19), transparent 40%); }
.why-story--support::before { background: radial-gradient(circle at 75% 15%, rgba(28,203,169,.18), transparent 38%); }
.why-story > * { position: relative; z-index: 1; }
.why-index { color: #828ba6; font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.why-big-number { margin: 2.1rem 0 .15rem; color: #fff; font-size: clamp(4.6rem, 9vw, 6.5rem); line-height: .86; font-weight: 950; letter-spacing: -.09em; }
.why-big-number span { color: #ff713b; }
.why-story h3 { margin: .7rem 0 .65rem; color: #fff; font-size: 1.2rem; font-weight: 800; }
.why-story p { margin: 0; color: #9ca6be; font-size: .85rem; line-height: 1.65; }
.why-story--proof a { display: inline-flex; gap: .45rem; margin-top: 1.2rem; color: #ff9b70; font-size: .8rem; font-weight: 800; text-decoration: none; }
.why-steps { display: grid; gap: 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.why-steps li { display: grid; grid-template-columns: 2.3rem 1fr; align-items: center; gap: .85rem; padding: .85rem; border-radius: 15px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); }
.why-steps li > span { display: grid; place-items: center; width: 2.3rem; height: 2.3rem; color: #fff; font-weight: 900; border-radius: 11px; background: linear-gradient(135deg, #756cff, #4e75ff); box-shadow: 0 7px 18px rgba(88,105,255,.25); }
.why-steps strong, .why-steps small { display: block; }
.why-steps strong { color: #f5f7ff; font-size: .85rem; }
.why-steps small { margin-top: .18rem; color: #8791ac; font-size: .7rem; line-height: 1.35; }
.why-support-icon { display: grid; place-items: center; width: 4.25rem; height: 4.25rem; margin-top: 2rem; color: #8bf1d7; border-radius: 21px; background: linear-gradient(145deg, rgba(28,203,169,.27), rgba(28,203,169,.07)); border: 1px solid rgba(87,232,196,.25); box-shadow: 0 12px 30px rgba(18,173,145,.14); }
.why-support-icon .site-icon { width: 2rem; height: 2rem; }
.why-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.25rem; }
.why-chips span { padding: .45rem .6rem; color: #b9c4d9; font-size: .66rem; font-weight: 700; border-radius: 999px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07); }

/* ── Compact in-card badge ── */
.gift-popular-badge { position: absolute; top: .7rem; right: .7rem; z-index: 5; }
.gift-popular-badge > span { display: inline-flex; align-items: center; justify-content: center; min-height: 1.4rem; padding: .22rem .55rem; color: #ff8e8e; font-size: .58rem; line-height: 1; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; border-radius: 999px; background: rgba(239,68,68,.12); border: 1px solid rgba(248,113,113,.28); backdrop-filter: blur(8px); }
.tariff-warning-row { margin-top: .25rem; padding-top: .8rem; border-top: 1px dashed rgba(250,204,21,.16); }

@media (max-width: 900px) {
    .feature-highlight { grid-template-columns: 1fr; }
    .benefits-showcase-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .benefit-showcase-card--wide { grid-column: span 2; }
    .why-editorial { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .why-story--support { grid-column: 1 / -1; min-height: 260px; }
}
@media (max-width: 560px) {
    .feature-checklist { grid-template-columns: 1fr; }
    .feature-proof-row { flex-direction: column; align-items: stretch; }
    .feature-proof-row span { justify-content: center; }
    .benefits-showcase-grid { grid-template-columns: 1fr; }
    .benefit-showcase-card--wide { grid-column: auto; }
    .why-heading { grid-template-columns: 1fr; }
    .why-heading .eyebrow { grid-column: auto; }
    .why-editorial { grid-template-columns: 1fr; }
    .why-story--support { grid-column: auto; }
}

/* Keyframes for revolving around center */
/* Formula: rotate(a) translateX(r) rotate(-a) */
/* We define variables --a (start angle) and --r (radius) */
@keyframes revolve {
    from {
        transform: rotate(var(--a)) translateX(var(--r)) rotate(calc(-1 * var(--a)));
    }
    to {
        transform: rotate(calc(var(--a) + 360deg)) translateX(var(--r)) rotate(calc(-1 * calc(var(--a) + 360deg)));
    }
}

/* Uniform circular orbit around the logo */
.icon-pos-1 { --a: 0deg; --r: 200px; animation: revolve 38s linear infinite; }
.icon-pos-2 { --a: 40deg; --r: 200px; animation: revolve 38s linear infinite; }
.icon-pos-3 { --a: 80deg; --r: 200px; animation: revolve 38s linear infinite; }
.icon-pos-4 { --a: 120deg; --r: 200px; animation: revolve 38s linear infinite; }
.icon-pos-5 { --a: 160deg; --r: 200px; animation: revolve 38s linear infinite; }
.icon-pos-6 { --a: 200deg; --r: 200px; animation: revolve 38s linear infinite; }
.icon-pos-7 { --a: 240deg; --r: 200px; animation: revolve 38s linear infinite; }
.icon-pos-8 { --a: 280deg; --r: 200px; animation: revolve 38s linear infinite; }
.icon-pos-9 { --a: 320deg; --r: 200px; animation: revolve 38s linear infinite; }

/* ── Service Cards (3x3 grid) ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    --service-accent: 255, 107, 44;
    position: relative;
    display: grid;
    grid-template-columns: 4.25rem 1fr;
    align-items: start;
    gap: 1rem;
    min-height: 160px;
    padding: 1.35rem;
    border-radius: 22px;
    background: radial-gradient(circle at 0 0, rgba(var(--service-accent), .14), transparent 45%), rgba(15, 20, 40, .86);
    border: 1px solid rgba(var(--service-accent), .18);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    overflow: hidden;
}

.service-card--blue { --service-accent: 65, 151, 255; }
.service-card--yellow { --service-accent: 255, 204, 61; }
.service-card--violet { --service-accent: 151, 103, 255; }
.service-card--cyan { --service-accent: 48, 210, 230; }
.service-card--green { --service-accent: 77, 211, 135; }
.service-card--purple { --service-accent: 182, 104, 255; }
.service-card--pink { --service-accent: 244, 98, 178; }
.service-card--orange { --service-accent: 244, 132, 68; }
.service-card--mint { --service-accent: 77, 218, 166; }

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(480px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--service-accent), .12), transparent 42%);
    pointer-events: none;
}

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

.service-card:hover {
    border-color: rgba(var(--service-accent), .45);
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0,0,0,.3), 0 0 28px rgba(var(--service-accent), .07);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

/* Image-based service icons */
.service-icon-img {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--service-accent), .11);
    border: 1px solid rgba(var(--service-accent), .3);
    box-shadow: 0 9px 26px rgba(var(--service-accent), .12);
}

.service-icon-img img {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: .15rem 0 .45rem;
}

.service-card p {
    font-size: .78rem;
    color: #929bb5;
    line-height: 1.55;
    margin: 0;
}

.service-context { display: inline-block; color: rgba(var(--service-accent), .95); font-size: .56rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

/* ── Benefits Section ── */
.benefits-section {
    position: relative;
    padding: 3rem 0;
}

.benefits-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B2C;
    margin-bottom: 2.5rem;
}

.benefits-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 180px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: auto;
    max-width: 178px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.05);
}

.benefit-text {
    font-size: 0.75rem;
    color: #6B7290;
    line-height: 1.4;
}

/* ── CTA Section ── */
.cta-section {
    padding: 4rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(15, 20, 40, 0.8), rgba(20, 25, 50, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 44, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: #6B7290;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #6B7290;
}

.cta-badge svg {
    width: 16px;
    height: 16px;
    color: #FF6B2C;
}

/* ── Order Section ── */
.order-section {
    padding: 4rem 0;
}

.order-card {
    border-radius: 20px;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.order-card:hover {
    border-color: rgba(255, 107, 44, 0.2);
    box-shadow: 0 0 40px rgba(255, 107, 44, 0.05);
}

.order-card.premium-card {
    border-color: rgba(255, 107, 44, 0.3);
    background: linear-gradient(135deg, rgba(15, 20, 40, 0.8), rgba(255, 107, 44, 0.03));
}

.order-card.premium-card:hover {
    border-color: rgba(255, 107, 44, 0.5);
    box-shadow: 0 0 60px rgba(255, 107, 44, 0.1);
}

/* ── Tariff card styles ── */
.tariff-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.tariff-card:hover {
    transform: translateY(-4px);
}

/* ── Section title ── */
.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
}

.section-title .accent {
    color: #FF6B2C;
}

/* ── Section divider ── */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 44, 0.3), transparent);
}

/* ── Reveal animations ── */
.reveal-up { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-scale { opacity: 0; transform: scale(0.9); }

/* ── Footer ── */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 14, 26, 0.8);
    padding: 1.5rem 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: #6B7290;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B2C;
}

/* ── Input styles ── */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #4A5070;
}

.form-input:focus {
    border-color: rgba(255, 107, 44, 0.4);
    box-shadow: 0 0 20px rgba(255, 107, 44, 0.08);
}

/* ── FAQ styles ── */
.faq-block {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(15, 20, 40, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-block:hover {
    border-color: rgba(255, 107, 44, 0.2);
}

.faq-block-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(15, 20, 40, 0.8);
}

.faq-block-body {
    padding: 1.25rem 1.5rem;
    color: #8892AC;
    line-height: 1.7;
}

/* ── Prose / FAQ content overrides ── */
.faq-content * { background-color: transparent !important; background: transparent !important; }
.faq-content span, .faq-content p, .faq-content li, .faq-content div { color: #8892AC !important; }
.faq-content h1, .faq-content h2, .faq-content h3, .faq-content h4, .faq-content strong, .faq-content b { color: #E0E4EF !important; }
.faq-content h2 { margin-top: 2rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.faq-content h3 { color: #FF6B2C !important; }
.faq-content a { color: #FF6B2C !important; }
.faq-content ul li::marker { color: #FF6B2C; }
.faq-content ol li::marker { color: #E85D1F; }

.hero-description p { margin-bottom: 1rem; }
.hero-description p:last-child { margin-bottom: 0; }

/* ── Mobile nav ── */
.mobile-nav {
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open {
    transform: translateX(0);
}

/* ── Chat popup ── */
#chatPopup {
    background: #0F1428 !important;
    border-color: rgba(255, 107, 44, 0.15) !important;
}

/* ── Neon button shimmer ── */
.neon-button { position: relative; overflow: hidden; }
.neon-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.neon-button:hover::before { transform: translateX(100%); }

/* ── Stat number ── */
.stat-number {
    background: linear-gradient(135deg, #FF6B2C, #FF8F5C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Price frequency text ── */
.price-block-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price-frequency {
    font-size: 0.7rem;
    color: #6B7290;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ── Reviews Section ── */
.reviews-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Review card */
.review-card {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(255, 107, 44, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.review-date {
    font-size: 0.72rem;
    color: #6B7290;
}

.review-stars {
    color: #FFB400;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-tag {
    font-size: 0.72rem;
    color: #8892AC;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.review-text {
    font-size: 0.85rem;
    color: #C8CDE0;
    line-height: 1.6;
}

/* ── Rating sidebar ── */
.reviews-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
}

.rating-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.rating-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.rating-stars-big {
    color: #FFB400;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 0.4rem 0;
}

.rating-count {
    font-size: 0.8rem;
    color: #6B7290;
    margin-bottom: 1rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-bar-label {
    font-size: 0.65rem;
    color: #FFB400;
    min-width: 60px;
    text-align: right;
    letter-spacing: 1px;
}

.rating-bar {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #FFB400, #FF6B2C);
    transition: width 0.6s ease;
}

.rating-bar-num {
    font-size: 0.7rem;
    color: #6B7290;
    min-width: 20px;
    text-align: right;
}

/* ── Avito block ── */
.avito-block {
    padding: 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 175, 80, 0.08), rgba(15, 20, 40, 0.6));
    border: 1px solid rgba(0, 175, 80, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.avito-block:hover {
    border-color: rgba(0, 175, 80, 0.4);
    box-shadow: 0 0 30px rgba(0, 175, 80, 0.1);
}

.avito-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00AF50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.avito-link:hover {
    color: #00D460;
    text-shadow: 0 0 12px rgba(0, 175, 80, 0.4);
}

.avito-logo {
    width: 24px;
    height: 24px;
}

.avito-desc {
    font-size: 0.72rem;
    color: #6B7290;
    margin-top: 0.35rem;
}

/* ── Telegram block ── */
.telegram-block {
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.telegram-block:hover {
    border-color: rgba(0, 136, 204, 0.3);
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.08);
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #29B6F6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.telegram-link:hover {
    color: #4FC3F7;
    text-shadow: 0 0 10px rgba(41, 182, 246, 0.3);
}

/* ── Gradient shimmer ── */
.gradient-shimmer {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── Grid pattern (subtle) ── */
.grid-pattern {
    background-image:
        linear-gradient(rgba(255, 107, 44, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 44, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ── Particles ── */
.particles-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; width: 2px; height: 2px; background: rgba(255, 107, 44, 0.25); border-radius: 50%; animation: particleFloat linear infinite; }
.particle:nth-child(1) { left: 10%; animation-duration: 22s; animation-delay: 0s; width: 3px; height: 3px; }
.particle:nth-child(2) { left: 25%; animation-duration: 28s; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; animation-duration: 20s; animation-delay: 4s; width: 3px; height: 3px; }
.particle:nth-child(4) { left: 55%; animation-duration: 24s; animation-delay: 1s; }
.particle:nth-child(5) { left: 70%; animation-duration: 30s; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; animation-duration: 21s; animation-delay: 5s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-sphere-container {
        max-width: 300px;
        margin-top: 2rem;
    }

    .orbital-icon {
        width: 36px;
        height: 36px;
        margin-top: -18px;
        margin-left: -18px;
    }

    .orbital-icon img { width: 33px; height: 33px; }
    .icon-pos-1, .icon-pos-2, .icon-pos-3, .icon-pos-4, .icon-pos-5,
    .icon-pos-6, .icon-pos-7, .icon-pos-8, .icon-pos-9 { --r: 145px; }

    .benefits-row {
        gap: 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
    }
}

/* ── Ready Text ── */
.ready-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.ready-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.ready-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #e2e8f0;
    line-height: 1.5;
}
