/* style.css */
:root {
    --bg-color: #fafffd;
    --text-main: #111917;
    --text-muted: #414543;
    --accent-green: #10b981; 
    --accent-green-light: #34d399;
    --accent-blue: #3b82f6;
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    
    --btn-dark: #1f2937;
    --btn-dark-hover: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Onest', sans-serif;
}

/* Anchor scrolling — clear the 72px sticky nav */
html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* =====================
   PAGE HEADER
   ===================== */
header {
    text-align: center;
    padding: 5rem 0 3rem;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.65); }
}

h1 {
    font-size: 3.6rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    font-family: 'Onest', sans-serif;
}

h1 span {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 600px) {
    .period-toggle {
        border-radius: 12px;
        padding: 0.3rem;
        gap: 0.2rem;
        width: 100%;
        max-width: 340px;
    }

    .period-label {
        flex: 1;
        padding: 0.75rem 0.5rem;
        font-size: 0.82rem;
        border-radius: 8px;
        flex-direction: column;
        gap: 4px;
        line-height: 1.2;
    }

    .discount-badge {
        display: inline-block;
        position: static;
        margin-left: 0;
        font-size: 0.65rem;
        padding: 0.1rem 0.4rem;
    }

    .toggle-bg {
        border-radius: 8px;
    }
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1.25rem;
    }
    .tier-label { display: none; }
    .pricing-grid > .pricing-card { grid-row: auto; }
    .hosting-badge { display: inline-flex; }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px; 
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    margin-top: auto;
}

@media (max-width: 600px) {
    .disclaimer-box {
        grid-template-columns: 1fr;
    }
    .disclaimer-icon {
        flex-direction: row;
        padding: 1rem 1.5rem;
        min-width: unset;
    }
    .disclaimer-icon-label {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 0.65rem;
    }
}

/* =====================
   MOBILE RESPONSIVENESS
   ===================== */
@media (max-width: 768px) {
    h1 { font-size: 2.4rem; letter-spacing: -1px; }
    header { padding: 3rem 0 2rem; }

    .period-toggle {
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0.35rem;
    }

    .period-label {
        flex: 1 1 auto;
        min-width: 0;
    }

    /* Stats bar — scrollable on mobile */
    .header-stats {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: flex-start;
        padding: 0.5rem 0;
        scrollbar-width: none;
    }
    .header-stats::-webkit-scrollbar { display: none; }
    .stat-item {
        padding: 0.75rem 1.25rem;
        flex-shrink: 0;
    }
    .stat-number { font-size: 1.2rem; }
    .stat-label { font-size: 0.72rem; white-space: nowrap; }

    /* Stack cards on mobile — Еднократно first */
    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Show hosting badge inside cards when tier labels are hidden */
    .hosting-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--text-main);
        background: rgba(15,23,42,0.06);
        border: 1px solid rgba(15,23,42,0.15);
        padding: 0.25rem 0.7rem;
        border-radius: 20px;
        margin-bottom: 0.5rem;
    }

    /* Mobile card order: Еднократно → Стартов → Професионален → Премиум */
    #card-one { order: 1; }
    .pricing-card:not(#card-one):not(.card-featured):not(.card-hosting) { order: 2; }
    .pricing-card.card-featured { order: 3; transform: none; }
    .pricing-card.card-hosting:not(.card-featured) { order: 4; }

    .pricing-card.card-featured:hover {
        transform: translateY(-4px);
    }

    /* Tighter table on mobile */
    .comparison-table thead th {
        padding: 1rem 0.6rem;
        font-size: 0.7rem;
    }
    .comparison-table thead th:first-child {
        padding-left: 1rem;
    }
    .comparison-table td {
        padding: 0.85rem 0.6rem;
        font-size: 0.82rem;
    }
    .comparison-table td:first-child {
        padding-left: 1rem;
    }
    .comparison-table tr.category-header th {
        padding: 1.5rem 1rem 0.5rem;
    }
    .expand-btn {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-item { padding: 0.75rem 1rem; }
    .stat-label { font-size: 0.68rem; }
    .stat-number { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .table-scroll-hint { display: flex; }
}

@keyframes rowReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* =====================
   NAV
   ===================== */
nav {
    padding: 0 2rem;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--accent-green);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.logo {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
}

.logo:focus { outline: none; }

.site-logo-img {
    height: 56px;
    width: auto;
    display: block;
}

/* =====================
   NAV COMPONENTS
   ===================== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
    padding: 0 1rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-link:hover {
    color: var(--accent-green);
    background: rgba(16,185,129,0.06);
}

/* =====================
   NAV DROPDOWN ("За нас")
   ===================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

.nav-dropdown-chevron {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown.open .nav-dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 210px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    padding: 0.4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.6rem 0.9rem;
    border-radius: 6px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-item:hover {
    background: rgba(16,185,129,0.06);
    color: var(--accent-green);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-login {
    color: var(--accent-green) !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: color 0.2s;
}
.nav-login:hover { color: #0ea271 !important; }

.auth-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.auth-link:hover { color: var(--accent-green); }

.auth-btn {
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.auth-btn:hover {
    background: #111827;
    transform: translateY(-1px);
}


.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    cursor: pointer;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.nav-mobile-drawer {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    position: sticky;
    top: 68px;
    z-index: 99;
}

.nav-mobile-drawer .nav-link {
    padding: 0.7rem 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.nav-mobile-drawer .auth-link {
    padding: 0.7rem 0.75rem;
    font-size: 0.95rem;
}

.nav-mobile-drawer .auth-btn {
    margin-top: 0.5rem;
    justify-content: center;
    padding: 0.8rem 1.2rem;
}

.nav-mobile-drawer.open { display: flex; }

/* Override media query — these must come AFTER */
@media (max-width: 768px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none !important; }
    .nav-auth { display: none !important; }
    .nav-hamburger { display: flex !important; }
}

/* =====================
   FOOTER CTA STRIP
   ===================== */
.footer-cta {
    background: linear-gradient(90deg, #0b201a 0%, #10b981 100%);
    position: relative;
    overflow: hidden;
}

.footer-cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.footer-cta-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.footer-cta-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 480px;
    line-height: 1.65;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.footer-cta-btn-primary {
    background: var(--accent-green);
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 1.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(16,185,129,0.35);
}

.footer-cta-btn-primary:hover {
    background: #0ea271;
    transform: translateY(-2px);
}

.footer-cta-btn-secondary {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.88rem 1.75rem;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.7);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.footer-cta-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* =====================
   SITE FOOTER
   ===================== */
.site-footer {
    background: #0b201a;
    border-top: 3px solid var(--accent-green);
    position: relative;
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
    gap: 3rem;
}

/* Brand column */
.footer-logo {
    display: block;
    text-decoration: none;
    margin-bottom: 1.25rem;
}
.footer-logo-img {
    height: 52px;
    width: auto;
}

.footer-tagline {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
    transform: translateY(-2px);
}

/* Link columns */
.footer-col-title {
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-col-title-green { color: var(--accent-green) !important; }

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.93rem;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #fff; }

/* Green pill CTA in footer */
.footer-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid rgba(16,185,129,0.5);
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-cta-pill:hover {
    background: rgba(16,185,129,0.1);
    border-color: var(--accent-green);
}

/* Contact column */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
}
.footer-contact svg { color: var(--accent-green); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }

/* Auth links in footer */
.footer-auth-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}
.footer-auth-item {
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-auth-login {
    color: var(--accent-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-auth-login:hover { color: var(--accent-green-light); }

/* Footer bottom bar */
.footer-bottom {
    background: var(--accent-green);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.footer-copy {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex: 1;
}

.footer-legal a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s ease;
}
.footer-legal a:hover { color: #fff; }

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-col-brand { grid-column: 1 / -1; }
    .footer-tagline { max-width: 100%; }
}

@media (max-width: 768px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }
    .footer-cta-text h2 { font-size: 1.6rem; }
    .footer-cta-text p { margin: 0 auto; }
    .footer-cta-actions { flex-direction: column; width: 100%; }
    .footer-cta-btn-primary,
    .footer-cta-btn-secondary { justify-content: center; width: 100%; }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 3rem 1.5rem 2rem;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }

    .footer-legal { gap: 1rem; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-col-brand { grid-column: auto; }
}

/* ═══════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════ */
.announce-bar {
    background: #0b201a;
    color: rgba(255,255,255,0.75);
    text-align: center;
    padding: 0.6rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 200;
}
.announce-cta {
    color: var(--accent-green);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.announce-cta:hover { color: var(--accent-green-light); }

/* Nav green CTA button */
.nav-cta-green {
    background: var(--accent-green) !important;
    color: #fff !important;
    border-radius: 2px !important;
    padding: 0.55rem 1.2rem !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase;
    border: none !important;
    box-shadow: 3px 3px 0 #065f46 !important;
    transition: box-shadow 0.15s ease, transform 0.15s ease !important;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.nav-cta-green:hover {
    transform: translate(-2px, -2px) !important;
    box-shadow: 5px 5px 0 #065f46 !important;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.site-hero {
    background: linear-gradient(90deg, #0b201a 0%, #10b981 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}
.site-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16,185,129,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,185,129,0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.site-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    max-width: 620px;
}
.hero-accent { color: var(--accent-green-light); }
.hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

/* Shield graphic */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-shield {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-lock-img {
    width: 340px;
    max-width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.25));
    animation: lock-float 5s ease-in-out infinite;
}
@keyframes lock-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-right   { display: none; }
    .how-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .how-grid { grid-template-columns: 1fr; }
    .announce-bar { font-size: 0.75rem; }
    .hero-btns { flex-direction: column; }
    .btn-hero-outline, .btn-hero-green { text-align: center; }
}

.more-dash {
    color: #fff;
    font-weight: 800;
}

@media (max-width: 640px) {
    .more-card { flex-direction: column; gap: 1rem; }
    .more-icon { width: 52px; height: 52px; }
}

/* ═══════════════════════════════════
   SITE FAQ SECTION
═══════════════════════════════════ */
.site-faq-section {
    background: var(--bg-color);
    padding: 5rem 2rem;
}

.site-faq-inner {
    max-width: 980px;
    margin: 0 auto;
}

.site-faq-title {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    margin-bottom: 2rem;
    line-height: 1.15;
}

.faq-title-accent { color: var(--accent-green); }

.faq-cat-tab {
    display: inline-block;
    border: 1.5px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    cursor: default;
}

.site-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.site-faq-item {
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.site-faq-item.open {
    border-color: rgba(16,185,129,0.35);
}

.site-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.75rem;
    cursor: pointer;
    user-select: none;
}

.site-faq-q span {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.4;
}

.faq-num {
    font-style: normal;
    color: var(--accent-green);
    margin-right: 4px;
}

.site-faq-chevron {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-green);
    transition: all 0.25s ease;
}

.site-faq-chevron svg {
    transition: transform 0.3s ease;
}

.site-faq-item.open .site-faq-chevron {
    background: rgba(255,91,57,0.08);
    border-color: rgba(255,91,57,0.3);
    color: #ff5b39;
}

.site-faq-item.open .site-faq-chevron svg {
    transform: rotate(180deg);
}

.site-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.site-faq-item.open .site-faq-a {
    max-height: 300px;
}

.site-faq-a p {
    padding: 0 1.75rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin: 0;
}

.faq-inline-link {
    color: var(--accent-green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-faq-title .more-dash { color: var(--accent-green); }

/* Plus icon sizes */
.nav-plus-icon   { width: 16px; height: 16px; object-fit: contain; vertical-align: middle; }

@media (max-width: 1024px) {
    .stats-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
    .stat-fact-grid { grid-template-columns: 1fr; }
}

.card-bg {
    width: 240px;
    height: 180px;
    top: 20px;
    left: 0;
    rotate: -3deg;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-stats-stack { display: grid; grid-template-columns: 1fr 1fr; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .story-left { position: static; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { border-right: none; border-bottom: 1.5px solid rgba(255,255,255,0.05); }
    .value-card:last-child { border-bottom: none; }
    .why-grid { grid-template-columns: 1fr; gap: 2rem; }
    .why-grid.reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .about-hero { min-height: auto; padding: 4rem 1.5rem; }
    .about-hero::after { display: none; }
    .section-wrap { padding: 4rem 1.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    .hero-stats-stack { grid-template-columns: 1fr; }
    .why-grid + .why-grid { margin-top: 3rem; padding-top: 3rem; }
    .story-img-stack { display: none; }
}

    /* ─────────────────────────────
       RESPONSIVE
    ───────────────────────────── */
    @media (max-width: 1024px) {
        .contact-hero { grid-template-columns: 340px 1fr; }
        .contact-left { padding: 4rem 2.5rem 3rem; }
        .contact-right { padding: 3rem 2rem 2.5rem; }
        .ticket-type-grid { grid-template-columns: 1fr 1fr; }
        .priority-grid { grid-template-columns: repeat(4, 1fr); }
        .contact-left h1 { font-size: 2.2rem; }
    }

    @media (max-width: 768px) {
        .contact-hero { grid-template-columns: 1fr; min-height: auto; }
        .contact-left { padding: 3rem 1.5rem 2.5rem; }
        .contact-left h1 { font-size: 2rem; }
        .contact-left p.intro { max-width: 100%; }
        .contact-right { padding: 2rem 1.25rem 2rem; }
        .ticket-type-grid { grid-template-columns: 1fr 1fr; }
        .tfield-row { grid-template-columns: 1fr; }
        .priority-grid { grid-template-columns: repeat(2, 1fr); }
        .ticket-steps { gap: 0.25rem; }
        .step-label { display: none; }
        .trust-strip-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 480px) {
        .trust-strip-inner { grid-template-columns: 1fr; }
        .faq-header h2 { font-size: 1.7rem; }
    }

@media (max-width: 768px) {
    .included-grid { grid-template-columns: 1fr; }
}
/* ── Shared step layout ── */
.check-step {
    padding: 4rem 2rem;
    background: #fff;
}
.check-step-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.step-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.step-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--accent-green);
    border-radius: 2px;
}
.step-eyebrow .eyebrow-accent {
    color: var(--accent-green);
}
.check-step h2,
.section-h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* ── Step 1: 6-card dark gradient grid ── */
.check-cards-grid {
    background: linear-gradient(135deg, #0b201a 0%, #0d4a30 40%, #10b981 100%);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.check-card {
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.75rem;
    border: 1px solid rgba(255,255,255,0.12);
    transition: filter 0.2s ease;
}
.check-card:hover { filter: brightness(1.12); }
.check-card-green { background: #004c36; border-color: rgba(255,255,255,0.15); }
.check-card-dark  { background: #0a0a0a; border-color: rgba(255,255,255,0.10); }
.check-card-num {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(16,185,129,0.8);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.check-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}
.check-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0;
}

/* ── Before / After ── */
.ba-section {
    padding: 4rem 2rem;
    background: var(--bg-color);
}
.ba-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.ba-lead {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
    max-width: 640px;
}
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.ba-card {
    border-radius: 14px;
    padding: 2rem;
    border: 2px solid;
}
.ba-before { border-color: #ff5b39; background: #fff; }
.ba-after  { border-color: #10b981;  background: #004c36; }
.ba-tag {
    display: inline-block;
    border: 1.5px solid #ff5b39;
    color: #ff5b39;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}
.ba-tag-after { border-color: rgba(255,255,255,0.4); color: #fff; }
.ba-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.ba-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-main);
    line-height: 1.4;
}
.ba-after .ba-item         { color: rgba(255,255,255,0.85); }
.ba-dot       { width: 10px; height: 10px; border-radius: 50%; background: #ff5b39; flex-shrink: 0; }
.ba-dot-after { background: #34d399; }

/* ── Step 2: 3-card verification row ── */
.check-step-2 {
    padding: 4rem 2rem;
    background: #fff;
}
.verify-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.verify-card {
    border-radius: 14px;
    padding: 1.75rem;
    border: 1.5px solid var(--border-color);
    background: var(--bg-color);
    transition: all 0.2s ease;
}
.verify-card:hover {
    border-color: rgba(16,185,129,0.3);
    box-shadow: 0 4px 18px rgba(16,185,129,0.08);
}
.verify-card.verify-featured {
    background: #004c36;
    border-color: #10b981;
}
.verify-card-num {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.06em;
    margin-bottom: 0.85rem;
}
.verify-featured .verify-card-num { color: rgba(16,185,129,0.85); }
.verify-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}
.verify-featured h3 { color: #fff; }
.verify-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}
.verify-featured p { color: rgba(255,255,255,0.7); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .check-hero-inner  { grid-template-columns: 1fr; }
    .check-hero-right  { display: none; }
    .check-cards-grid  { grid-template-columns: 1fr 1fr; }
    .verify-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .check-cards-grid  { grid-template-columns: 1fr; }
    .verify-cards-grid { grid-template-columns: 1fr; }
    .ba-grid           { grid-template-columns: 1fr; }
    .check-hero-btns   { flex-direction: column; }
}


/* ═══════════════════════════════════════════════════════════
   GLOBAL MOBILE IMPROVEMENTS
   Consolidated responsive fixes for all pages
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    /* Support page hero */
    .support-hero-inner {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }
    .support-hero-right { display: none; }
}

@media (max-width: 768px) {
    /* ── Announce bar ── */
    .announce-bar {
        flex-direction: column;
        gap: 0.15rem;
        padding: 0.6rem 1.25rem;
        line-height: 1.5;
    }

    /* ── Index hero h1 (was fixed 2.6rem — too big on mobile) ── */
    .site-hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.6rem);
        letter-spacing: -0.5px;
    }

    /* ── Support hero ── */
    .support-hero h1 {
        font-size: clamp(1.75rem, 6vw, 3rem);
        letter-spacing: -0.5px;
    }
    .support-hero-btns {
        flex-direction: column;
    }
    .support-hero-btns a {
        text-align: center;
    }

    /* ── Index hero ── */
    .hero-content {
        padding: 3.5rem 1.5rem;
    }
    .hero-sub { font-size: 0.95rem; }

    /* ── How-it-works section ── */
    .how-section { padding: 3rem 1.5rem; }
    .how-card { padding: 1.5rem; }

    /* ── More section ── */
    .more-section { padding: 3rem 1.5rem; }
    .more-inner { gap: 1.5rem; }
    .more-card { flex-direction: column; gap: 1rem; }
    .more-icon { width: 56px; height: 56px; }

    /* ── Pricing ── */
    .pricing-header { padding: 2rem 1.5rem 2.5rem; }
    .pricing-title  { font-size: 1.8rem; }
    .header-stats   { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .stat-divider   { display: none; }

    /* ── FAQ ── */
    .site-faq-section { padding: 3rem 1.5rem; }
    .site-faq-title   { font-size: 1.6rem; }
    .site-faq-q       { padding: 1.1rem 1.25rem; font-size: 0.93rem; }
    .site-faq-a       { padding: 0 1.25rem 1.25rem; }

    /* ── Check website hero ── */
    .check-hero-inner {
        padding: 3.5rem 1.5rem;
    }
    .check-hero h1 {
        font-size: clamp(1.75rem, 6vw, 3rem);
        letter-spacing: -0.5px;
    }
    .check-hero p { font-size: 0.93rem; }

    /* ── Step sections (checkwebsite) ── */
    .check-step   { padding: 3rem 1.5rem; }
    .check-step-2 { padding: 3rem 1.5rem; }
    .ba-section   { padding: 3rem 1.5rem; }

    /* ── Contact / About inner padding ── */
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 480px) {
    /* ── Nav ── */
    nav { padding: 0 1rem; min-height: 60px; }

    /* ── Hero buttons — full width on very small screens ── */
    .btn-hero-outline,
    .btn-hero-green,
    .support-hero-btns a,
    .check-hero-btns a {
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    .hero-btns,
    .support-hero-btns,
    .check-hero-btns {
        flex-direction: column;
    }

    /* ── Index hero ── */
    .site-hero h1 {
        font-size: 1.7rem;
        letter-spacing: -0.25px;
    }
    .hero-content { padding: 3rem 1.25rem; }

    /* ── Support hero ── */
    .support-hero-inner { padding: 3rem 1.25rem; }
    .support-hero h1 { font-size: 1.7rem; }

    /* ── Check hero ── */
    .check-hero-inner { padding: 3rem 1.25rem; }
    .check-hero h1 { font-size: 1.7rem; }

    /* ── How section ── */
    .how-grid { grid-template-columns: 1fr; }
    .how-card { padding: 1.25rem; }
    .how-section { padding: 2.5rem 1.25rem; }

    /* ── Pricing cards ── */
    .pricing-grid { padding: 0 0.25rem; }
    .pricing-card { padding: 1.5rem 1.25rem; }
    .plan-price .price-val { font-size: 2.5rem; }

    /* ── Step cards (checkwebsite) ── */
    .check-cards-grid  { padding: 1.25rem; gap: 0.75rem; }
    .verify-cards-grid { grid-template-columns: 1fr; }

    /* ── Before/After ── */
    .ba-grid { grid-template-columns: 1fr; }
    .ba-card { padding: 1.5rem; }

    /* ── FAQ ── */
    .site-faq-inner   { padding: 0; }
    .site-faq-title   { font-size: 1.4rem; }
    .faq-cat-tab      { font-size: 0.68rem; }

    /* ── Footer CTA ── */
    .footer-cta-inner { padding: 2.5rem 1.25rem; }
    .footer-cta-text h2 { font-size: 1.4rem; }

    /* ── Footer ── */
    .footer-main { padding: 2.5rem 1.25rem 1.5rem; }
    .footer-col-title { font-size: 0.75rem; }
}