/* ========================================
   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: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(1.08);
}

.orbital-icon:hover {
    z-index: 20;
    transform: scale(1.15);
}

/* Specific fix for the nanobanana icon offset */
img[src*="nanobanana.png"] {
    transform: scale(1.15) translate(11%, 3%) !important;
}

/* 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 35s linear infinite; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); }
.icon-pos-2 { --a: 51deg;  --r: 200px; animation: revolve 35s linear infinite; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); }
.icon-pos-3 { --a: 102deg; --r: 200px; animation: revolve 35s linear infinite; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); }
.icon-pos-4 { --a: 154deg; --r: 200px; animation: revolve 35s linear infinite; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); }
.icon-pos-5 { --a: 205deg; --r: 200px; animation: revolve 35s linear infinite; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); }
.icon-pos-6 { --a: 257deg; --r: 200px; animation: revolve 35s linear infinite; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); }
.icon-pos-7 { --a: 308deg; --r: 200px; animation: revolve 35s linear infinite; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); }

/* ── 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 {
    position: relative;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    overflow: hidden;
}

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

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

.service-card:hover {
    border-color: rgba(255, 107, 44, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.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 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-img img {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.service-card p {
    font-size: 0.8rem;
    color: #6B7290;
    line-height: 1.5;
    margin: 0;
}

/* ── 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;
    }

    .benefits-row {
        gap: 1.5rem;
    }

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

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

/* Specific fix for the nanobanana icon offset */
img[src*="nanobanana.png"] {
    transform: scale(1.15) translate(11%, 3%) !important;
}

/* ── 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;
}
