/* 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;
}

/* Ambient Background Animations */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.6;
    animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    background: rgba(52, 211, 153, 0.3);
    width: 700px; height: 700px;
    top: -250px; left: -200px;
}

.blob-2 {
    background: rgba(110, 231, 183, 0.25);
    width: 600px; height: 600px;
    bottom: -150px; right: -100px;
    animation-delay: -5s;
    animation-duration: 25s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(120px, 60px) scale(1.15) rotate(45deg); }
    100% { transform: translate(-60px, 120px) scale(0.9) rotate(-45deg); }
}

@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* =====================
   PAGE HEADER
   ===================== */
header {
    text-align: center;
    padding: 5rem 0 3rem;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@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: -2px;
    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;
}

p.subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.header-stats {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 0;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    width: auto;
    max-width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

.stat-number {
    font-size: 1.55rem;
    font-weight: 800;
    font-family: 'Onest', sans-serif;
    color: var(--text-main);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.73rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.3rem;
    white-space: nowrap;
}

.stat-label .info-icon {
    width: 13px;
    height: 13px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color);
    flex-shrink: 0;
}

.toggle-nudge {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Period Toggle Switch (3-Way) */
.period-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.period-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.4rem;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.05);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.period-label {
    position: relative;
    z-index: 2;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: center;
    border-radius: 50px;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.period-label.active {
    color: #fff;
}

.period-label input {
    display: none;
}

.discount-badge {
    font-size: 0.7rem;
    background: #ff5b39;
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(255, 91, 57, 0.3);
}

.toggle-bg {
    position: absolute;
    top: 0.4rem;
    bottom: 0.4rem;
    left: 0.4rem;
    background: var(--accent-green);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

@media (max-width: 600px) {
    /* .period-toggle-wrapper is a column flexbox with no width of its
       own, so it shrinks to fit its widest child instead of filling
       .container. width: 100% alone isn't enough either — .container has
       its own 2rem side padding (shared by every section on every page,
       so not something to change here), and a percentage width resolves
       against .container's content box, i.e. still inside that padding.
       Bleeding into it with a negative margin is scoped to just this
       toggle instead. Both pages using this toggle now reduce their own
       page-specific wrapper's padding to match (.pricing-header /
       .pricing-page-wrap below), so the same 1rem bleed here lands at
       the same final inset on both. */
    .period-toggle-wrapper {
        width: calc(100% + 2rem);
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .period-toggle {
        border-radius: 12px;
        padding: 0.3rem;
        gap: 0.2rem;
        width: 100%;
        max-width: 100%;
    }

    .period-label {
        flex: 1;
        min-width: 0;
        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;
    }
}

/* Tooltip Styles */
.feature-wrap {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    flex: 1;
    line-height: 1.45;
}

.feature-wrap span {
    flex: 1;
    min-width: 0;
}

.feature-wrap .info-icon {
    margin-top: 2px;
    flex-shrink: 0;
}

/* The glyph svg inside .info-icon is sized/colored via an inline style=
   attribute in the HTML, not a class here — ".features-list li svg"
   below otherwise cascades onto it (any svg descendant of that list),
   and inline style is the only thing guaranteed to beat that. */
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: #cbd5e1;
    color: white;
    border-radius: 50%;
    cursor: help;
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.info-icon:hover {
    background-color: var(--text-main);
    transform: scale(1.15);
}

/* Raw tooltip text lives inline in the HTML until script.js reads it into
   the portal and removes the span — hide it by default so it can't flash
   visible (breaking layout) before that script runs. */
.info-tooltip {
    display: none;
}

/* Portal tooltip — appended to body, escapes all overflow/stacking contexts */
.tooltip-portal {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    max-width: 260px;
    background: #1a2332;
    color: #f1f5f9;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.55;
    font-family: 'Onest', sans-serif;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.tooltip-portal.visible {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-portal::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #1a2332;
    transform: translateX(-50%) rotate(45deg);
    left: var(--arrow-x, 50%);
}

.tooltip-portal.arrow-down::after {
    bottom: -4px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.08);
}

.tooltip-portal.arrow-up::after {
    top: -4px;
    box-shadow: -1px -1px 2px rgba(0,0,0,0.06);
}

/* Pricing Grid - 3 Columns */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    row-gap: 0;
    padding-bottom: 3rem;
    align-items: stretch;   /* all cards share the tallest height */
}

/* Card internals stretch, CTA pinned to the bottom */
.pricing-card > .card-content { height: 100%; }
.pricing-card .features-list { flex-grow: 1; }
.pricing-card .btn { margin-top: auto; }

/* Keep the feature lists starting on the same line across cards */
@media (min-width: 1101px) {
    .pricing-card .plan-desc { min-height: 4.2em; }
    .pricing-card .savings-label { min-height: 1.2em; }
}

/* Full billed total under the per-month price */
.price-total {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted, #6b7280);
    margin-top: 0.15rem;
    min-height: 1.2em;
}
.pricing-card.disabled .price-total { opacity: 0.5; }

.plan-footnote {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted, #6b7280);
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* BONUS row in the feature lists */
.features-list li.feature-bonus {
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(16, 185, 129, 0.35);
}
.features-list li.feature-bonus strong {
    display: block;
    margin-bottom: 2px;
    color: #10b981;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.features-list li.feature-bonus + li.feature-bonus {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        row-gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px; 
    padding: 2rem 1.5rem;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.4s ease, filter 0.4s ease;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}

.pricing-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Prevent hover effect on disabled card */
.pricing-card.disabled:hover {
    border-color: var(--border-color);
    box-shadow: var(--card-shadow);
    transform: scale(0.98);
}

.card-content { 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-icon {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    color: var(--accent-green);
}

.plan-name {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    font-weight: 700;
    padding-right: 2rem;
}

.plan-price {
    font-size: 3.5rem; 
    font-weight: 300; 
    color: var(--text-main);
    margin: 0.5rem 0 0;
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.currency { 
    font-size: 2.2rem; 
    margin-right: 0.2rem; 
    font-weight: 300;
    color: var(--text-main); 
}

.period { 
    font-size: 1rem; 
    color: var(--text-muted); 
    font-weight: 400; 
    margin-left: 0.2rem; 
    align-self: flex-end;
    padding-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    margin-bottom: 2rem;
    min-height: 40px;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.features-list li svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-top: 1px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.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;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.btn-dark {
    background: var(--btn-dark);
    color: #fff;
    border: none;
    border-radius: 2px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.btn-dark:hover {
    background: #111827;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 rgba(0,0,0,0.4);
}

/* Improved Expansion & Disclaimer Section */
.comparison-section {
    padding-bottom: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-box {
    display: grid;
    grid-template-columns: auto 1fr;
    border-radius: 14px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid #d1fae5;
}

.disclaimer-icon {
    background: linear-gradient(160deg, #0f2d1f, #134a30);
    color: #6ee7b7;
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-shrink: 0;
    min-width: 80px;
}

.disclaimer-icon svg {
    opacity: 0.9;
}

.disclaimer-icon-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6ee7b7;
    opacity: 0.7;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.disclaimer-content {
    background: #f0fdf8;
    padding: 1.6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.disclaimer-content h4 {
    color: #064e3b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.disclaimer-content h4::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    flex-shrink: 0;
}

.disclaimer-content p {
    color: #1e4035;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0;
}

.disclaimer-content p strong {
    color: #064e3b;
    font-weight: 600;
}

@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;
    }
}

.expand-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: white;
    color: var(--text-main);
    padding: 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.expand-btn:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background: #f8fafc;
}

.expand-btn svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.expand-btn.active svg {
    transform: rotate(180deg);
}

.comparison-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    background: var(--card-bg);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.05);
    margin-top: -6px; 
    border: 1px solid var(--border-color);
    border-top: none;
    opacity: 0;
}

.comparison-wrapper.open {
    opacity: 1;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.15s;
}

/* =====================
   FEATURED CARD STYLES
   ===================== */
.pricing-card.card-featured {
    border-color: var(--accent-green);
    border-top: 1px solid var(--accent-green);
    background: linear-gradient(160deg, #ffffff 60%, rgba(16, 185, 129, 0.04) 100%);
    box-shadow: 0 0 0 0px transparent, 0 20px 40px -10px rgba(16, 185, 129, 0.2);
    position: relative;
    padding-top: 3rem;
}

.pricing-card.card-featured:hover {
    border-color: var(--accent-green);
    border-top: 1px solid var(--accent-green);
    box-shadow: 0 0 0 0px transparent, 0 24px 50px -10px rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    letter-spacing: 0.02em;
}

.card-icon-featured {
    color: var(--accent-green) !important;
}
.btn-featured {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    cursor: pointer;
    font-size: 1rem;
    margin-top: auto;
    background: var(--accent-green);
    color: white;
    border: none;
    box-shadow: 4px 4px 0 #065f46;
    letter-spacing: 0.03em;
}

.btn-featured:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #065f46;
}

/* Savings label shown on non-monthly periods */
.savings-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-green);
    min-height: 1.2em;
    margin-bottom: 0.25rem;
    transition: opacity 0.3s ease;
}

/* =====================
   MOBILE RESPONSIVENESS
   ===================== */
@media (max-width: 768px) {
    h1 { font-size: 2.4rem; letter-spacing: -1px; }
    header { padding: 3rem 0 2rem; }

    .period-toggle {
        /* nowrap, explicitly: this and the @media (max-width: 600px) block
           below both target this element, and this one used to say `wrap`
           with nothing to override it below 600px — three labels that
           didn't quite fit their share of the width would drop onto a
           second row instead of shrinking, which is what actually caused
           the mangled layout. .period-label already has min-width: 0 so
           it can shrink to fit instead. */
        flex-wrap: nowrap;
        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;
    }

    /* Еднократно (#card-one) first, featured card second */
    #card-one { order: 1; }
    .pricing-card.card-featured { order: 2; transform: none; }
    .pricing-card:not(#card-one):not(.card-featured) { order: 3; }

    /* Switching to На 6 месеца / Годишно greys #card-one out and blocks
       clicks on it — script.js/wp-plans.html's own inline script both set
       this directly via element.style, since Еднократно почистване is a
       one-time fee with no period variant. On mobile the cards are
       stacked, not side-by-side, so a greyed-out card mid-scroll reads as
       "unavailable" rather than "not affected by this toggle" — force it
       back to normal regardless of which period is selected. Only
       !important reliably beats inline styles set directly by JS. */
    #card-one {
        opacity: 1 !important;
        filter: none !important;
        pointer-events: auto !important;
        transform: scale(1) !important;
    }
    .col-disabled {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .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; }
}

.table-responsive {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Scroll shadow hint on right edge */
    background:
        linear-gradient(to right, white 20px, transparent 20px),
        linear-gradient(to left, white 20px, transparent 20px) 100% 0,
        radial-gradient(ellipse at left, rgba(0,0,0,0.08) 0%, transparent 70%) 0 50%,
        radial-gradient(ellipse at right, rgba(0,0,0,0.08) 0%, transparent 70%) 100% 50%;
    background-repeat: no-repeat;
    background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
    background-attachment: local, local, scroll, scroll;
}

/* Mobile scroll hint label */
.table-scroll-hint {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.6rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.table-scroll-hint svg { flex-shrink: 0; }

@media (max-width: 768px) {
    .table-scroll-hint { display: flex; }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    min-width: 680px;
}

/* Sticky header */
.comparison-table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 1.4rem 1rem;
    background: #ffffff;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--border-color);
    width: 18%;
    transition: background 0.2s;
}

.comparison-table thead th:first-child {
    text-align: left;
    width: 28%;
    padding-left: 2rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Featured column header highlight */
.comparison-table thead th.col-featured {
    color: var(--accent-green);
    background: #f0fdf8;
    border-bottom-color: var(--accent-green);
}

.comparison-table thead th.col-featured::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-green);
}

/* Category section headers */
.comparison-table tr.category-header th {
    background: transparent;
    text-align: left;
    padding: 2rem 2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-green);
    border-bottom: none;
    border-top: 1px solid #e2e8f0;
}

.comparison-table tr.category-header:first-child th {
    border-top: none;
}

/* Data rows */
.comparison-table td {
    padding: 1rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-muted);
    font-size: 0.92rem;
    position: relative;
    transition: background 0.15s ease;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-main);
    padding-left: 2rem;
}

/* Featured column cells — persistent tint */
.comparison-table td.col-featured,
.comparison-table thead th.col-featured {
    background: rgba(16, 185, 129, 0.04);
    position: relative;
}

/* Row hover — full row highlight + left accent bar */
.comparison-table tbody tr:not(.category-header):hover td {
    background: #f8fffe;
}

.comparison-table tbody tr:not(.category-header):hover td:first-child {
    box-shadow: inset 3px 0 0 var(--accent-green);
}

.comparison-table tbody tr:not(.category-header):hover td.col-featured {
    background: rgba(16, 185, 129, 0.08);
}

/* Staggered row animation — triggered by JS adding .table-animate class */
.comparison-table.table-animate tbody tr {
    opacity: 0;
    transform: translateY(8px);
    animation: rowReveal 0.35s ease forwards;
}

@keyframes rowReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Disabled column */
.col-disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* Check icon — filled green circle */
.icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(5, 150, 105, 0.15);
    border-radius: 50%;
    color: #059669;
    padding: 3px;
}

/* Cross icon — soft red pill */
.icon-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    color: #ff5b39;
    padding: 4px;
}

.text-value {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #0f766e;
    font-size: 0.78rem;
    background: rgba(13, 148, 136, 0.08);
    border: 1.5px solid rgba(13, 148, 136, 0.25);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.text-value-contact {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
}
.text-value-neutral {
    color: #334155;
    background: rgba(100, 116, 139, 0.10);
    border-color: rgba(100, 116, 139, 0.30);
}
.text-value-maybe {
    color: #92400e;
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

/* =====================
   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;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    margin-top: 0.25rem;
}
.hero-badge svg {
    background: var(--accent-green);
    border-radius: 6px;
    padding: 3px;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: #fff;
}
.hero-badge strong { font-weight: 700; }
.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;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-hero-outline {
    padding: 0.85rem 1.8rem;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}
.btn-hero-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}
.btn-hero-green {
    padding: 0.85rem 1.8rem;
    background: var(--accent-green);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    box-shadow: 4px 4px 0 #065f46;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    display: inline-block;
}
.btn-hero-green:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #065f46;
}

/* 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); }
}

/* ═══════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════ */
.how-section {
    background: #fff;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.5px;
}
.how-dash { color: var(--accent-green); font-weight: 800; }
.brand-name { color: var(--accent-green); }
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: var(--border-color);
}
.how-card {
    background: #fff;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: background 0.2s ease;
}
.how-card:hover { background: #f8fffe; }
.how-icon-img {
    width: 90px;
    height: 90px;
    margin-bottom: 0.25rem;
    flex-shrink: 0;
}
.how-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.how-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}
.how-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}
.how-btn {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
    align-self: flex-start;
    margin-top: 0.25rem;
}
.how-btn-green        { background: var(--accent-green); color: #fff; }
.how-btn-green:hover  { background: #0ea271; transform: translateY(-1px); }
.how-btn-outline      { border: 1.5px solid var(--accent-green); color: var(--accent-green); background: transparent; }
.how-btn-outline:hover{ background: rgba(16,185,129,0.07); }
.how-btn-outline-dark { border: 1.5px solid var(--text-main); color: var(--text-main); background: transparent; }
.how-btn-outline-dark:hover { background: rgba(17,25,23,0.05); }
.how-btn-orange       { background: #ff5b39; color: #fff; }
.how-btn-orange:hover { background: #e04e2e; transform: translateY(-1px); }

/* 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; }
}

/* ═══════════════════════════════════
   PRICING SECTION HEADER
═══════════════════════════════════ */
.pricing-header {
    text-align: center;
    padding: 2rem 2rem 3rem;
    /* Explicit width, not just max-width + margin:auto — without it this
       box has no definite width of its own to resolve against (it's
       sized by shrink-to-fit), so a percentage width on .period-toggle-
       wrapper below resolves against an earlier, smaller intermediate
       value instead of this box's actual final rendered width. */
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 600px) {
    /* This has to live here, after the base rule above, not up with the
       other .period-toggle mobile overrides — a media-scoped longhand
       placed earlier in the file loses to this file-order-later
       unconditional shorthand at equal specificity, which silently reset
       it back to 2rem/2rem. The 2rem side padding here (stacked on top
       of .container's own) was eating 64px of the already-tight mobile
       width before the toggle even got a share of it. */
    .pricing-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.pricing-eyebrow {
    display: inline-block;
    border: 1.5px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.pricing-title-accent {
    color: var(--accent-green);
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════
   MORE THAN CLEANING SECTION
═══════════════════════════════════ */
.more-section {
    background: linear-gradient(90deg, #0b201a 0%, #10b981 100%);
    padding: 5rem 2rem;
}

.more-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.more-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.more-dash {
    color: #fff;
    font-weight: 800;
}

.more-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.more-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.more-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.more-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.more-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.more-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.more-content p:last-child { margin-bottom: 0; }

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.more-link:hover { color: #0ea271; }
.more-link svg { flex-shrink: 0; transition: transform 0.2s; }
.more-link:hover svg { transform: translateX(3px); }

@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 {
    /* Generous cap, not a target height — max-height only ever clips
       content taller than this; shorter answers render at their own
       natural height regardless. Needs headroom for the longest
       (multi-paragraph) answer, not just the typical one-liners. */
    max-height: 600px;
}

.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; }
.hero-plus-icon  { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; }
.plan-plus-icon  { width: 28px; height: 28px; object-fit: contain; vertical-align: middle; margin-right: 4px; }


/* ============================================================
   WordPress Support Page (wordpress-support.html)
============================================================ */
/* ── Page-specific styles ── */

/* Hero */
.support-hero {
    background: linear-gradient(90deg, #0b201a 0%, #10b981 100%);
    position: relative;
    overflow: hidden;
}
.support-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;
}
.support-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.support-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.support-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
}
.support-hero-badge img {
    width: 26px; height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}
.support-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}
.support-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.support-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.support-hero-right img {
    width: 300px;
    max-width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.25));
    animation: lock-float 5s ease-in-out infinite;
}

/* The fixed 360px second column never had a responsive override, so
   below ~768px it was squeezing the text column down to a sliver
   (~170px on a 375px phone) while the decorative lock image tried to
   keep its own space — hence the badge line wrapping into 5 cramped
   lines with a wall of empty space next to it. Stack to one column and
   drop the decorative image, matching the same pattern already used for
   .hero-right elsewhere on the site. */
@media (max-width: 768px) {
    .support-hero-inner { grid-template-columns: 1fr; }
    .support-hero-right { display: none; }
}

/* Why section */
.why-sitefix {
    padding: 0 2rem 4rem;
    background: #fafffd;
}
.why-sitefix-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.why-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(--accent-green);
    margin-bottom: 0.75rem;
}
.why-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--accent-green);
    border-radius: 2px;
}
.why-sitefix h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.why-left p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.why-left p strong { color: var(--text-main); }
.btn-outline-green {
    display: inline-block;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}
.btn-outline-green:hover {
    background: var(--accent-green);
    color: #fff;
}
.btn-outline-orange {
    display: inline-block;
    border: 2px solid #ff5b39;
    color: #ff5b39;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}
.btn-outline-orange:hover {
    background: #ff5b39;
    color: #fff;
}
.why-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.why-card {
    border: 1.5px solid var(--border-color);
    border-left: 4px solid #ff5b39;
    border-radius: 0;
    padding: 1.5rem 1.75rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
    border-color: rgba(16,185,129,0.4);
    box-shadow: 0 4px 20px rgba(16,185,129,0.08);
}
.why-card-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}
.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}
.why-card p strong { color: var(--text-main); }
.why-card.card-solution { border-color: rgba(16,185,129,0.3); border-left: 4px solid var(--accent-green); }
.why-card.card-solution .why-card-title { border-color: rgba(16,185,129,0.2); }
/* Stats / why protection section */
.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(90deg, #ffffff 0%, #cdefe3 100%);
}
.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.stats-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.stats-accent { color: var(--accent-green); }
.stats-source { color: var(--accent-green); font-style: normal; }
.stats-left p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}
.stats-left p strong { color: var(--text-main); }
.stat-fact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.stat-fact {
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-left: 4px solid var(--accent-green);
    border-radius: 0;
    padding: 2rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.stat-fact h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin: 0;
}
.stat-fact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.stat-source {
    font-size: 0.72rem;
    color: #94a3b8;
}
.stat-source a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
}
.stat-source a:hover { text-decoration: underline; }

/* Pricing embed */
.pricing-embed-section {
    padding: 4rem 0 5rem;
    background: #fafffd;
}
.pricing-embed-header {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1024px) {
    .stats-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
    .stat-fact-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   About Page (about.html)
============================================================ */
/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.about-hero {
    background: #214c3a;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
}

/* Grid texture */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16,185,129,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,185,129,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Large decorative numeral */
.about-hero::after {
    content: '01';
    position: absolute;
    right: -0.05em;
    bottom: -0.15em;
    font-family: 'Onest', sans-serif;
    font-size: 28vw;
    font-weight: 800;
    color: rgba(16,185,129,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-green-light);
    margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green-light);
}

.about-hero h1 {
    font-family: 'Onest', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.about-hero h1 em {
    font-style: normal;
    color: var(--accent-green-light);
    display: block;
}

.hero-desc {
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 2.5rem;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Hero right — stat 2x2 grid */
.hero-stats-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.07);
}

.hstat {
    padding: 2rem 1.75rem;
    background: #214c3a;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: background 0.2s ease;
}

.hstat:hover { background: rgba(16,185,129,0.06); }

.hstat-num {
    font-family: 'Onest', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent-green-light);
    line-height: 1;
}

.hstat-text strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.hstat-text span {
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    line-height: 1.4;
    display: block;
}

/* ═══════════════════════════════════
   SECTION SHARED
═══════════════════════════════════ */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--accent-green);
    border-radius: 2px;
}

.section-title {
    font-family: 'Onest', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
}

/* ═══════════════════════════════════
   STORY TIMELINE
═══════════════════════════════════ */
.story-section { background: #fff; }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.story-left { position: sticky; top: 100px; }

.story-left .section-lead { max-width: 380px; margin-bottom: 2rem; }

/* Mission pillars */
.mission-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.pillar-card {
    position: relative;
    padding: 1.6rem 1.85rem;
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-left: 4px solid var(--border-color);
    border-radius: 4px 14px 14px 4px;
    transition: all 0.25s ease;
}

.pillar-card:hover { transform: translateX(4px); }

.pillar-label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom: 1.5px solid var(--border-color);
}

.pillar-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-family: 'Onest', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.pillar-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.pillar-problem { border-left-color: #ff5b39; }
.pillar-problem .pillar-index { background: rgba(255,91,57,0.1); color: #ff5b39; }
.pillar-problem:hover { border-color: rgba(255,91,57,0.3); box-shadow: 0 4px 20px rgba(255,91,57,0.08); }

.pillar-solution { border-left-color: var(--accent-green); }
.pillar-solution .pillar-index { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.pillar-solution:hover { border-color: rgba(16,185,129,0.3); box-shadow: 0 4px 20px rgba(16,185,129,0.08); }

.pillar-goal { border-left-color: #3b82f6; }
.pillar-goal .pillar-index { background: rgba(59,130,246,0.1); color: #3b82f6; }
.pillar-goal:hover { border-color: rgba(59,130,246,0.3); box-shadow: 0 4px 20px rgba(59,130,246,0.08); }

/* ═══════════════════════════════════
   CONTACT CARDS (za-nas)
═══════════════════════════════════ */
.contact-cards-section { padding: 0 2rem 6rem; background: var(--bg-color); }

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ccard {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.ccard:hover {
    box-shadow: 0 12px 30px -8px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.ccard-icon-wrap { position: relative; width: 56px; height: 56px; margin-bottom: 1.75rem; }
.ccard-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ccard-dot-1 { position: absolute; width: 8px; height: 8px; border-radius: 50%; top: -3px; right: -12px; }
.ccard-dot-2 { position: absolute; width: 12px; height: 12px; border-radius: 50%; border: 2px solid; top: 12px; right: -20px; }

.ccard-eyebrow {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.ccard h3 {
    font-family: 'Onest', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 0.75rem;
}

.ccard p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ccard-divider { width: 32px; height: 3px; border-radius: 2px; margin-bottom: 1rem; }

.ccard-value {
    display: block;
    font-family: 'Onest', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.ccard-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.2s ease, color 0.2s ease;
}

.ccard-green .ccard-icon { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.ccard-green .ccard-dot-1 { background: var(--accent-green); }
.ccard-green .ccard-dot-2 { border-color: rgba(16,185,129,0.3); }
.ccard-green .ccard-eyebrow, .ccard-green .ccard-value { color: var(--accent-green); }
.ccard-green .ccard-divider { background: var(--accent-green); }
.ccard-green .ccard-btn { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.ccard-green:hover { border-color: rgba(16,185,129,0.3); }
.ccard-green .ccard-btn:hover { background: var(--accent-green); color: #fff; }

.ccard-blue .ccard-icon { background: rgba(59,130,246,0.1); color: #3b82f6; }
.ccard-blue .ccard-dot-1 { background: #3b82f6; }
.ccard-blue .ccard-dot-2 { border-color: rgba(59,130,246,0.3); }
.ccard-blue .ccard-eyebrow, .ccard-blue .ccard-value { color: #3b82f6; }
.ccard-blue .ccard-divider { background: #3b82f6; }
.ccard-blue .ccard-btn { background: rgba(59,130,246,0.1); color: #3b82f6; }
.ccard-blue:hover { border-color: rgba(59,130,246,0.3); }
.ccard-blue .ccard-btn:hover { background: #3b82f6; color: #fff; }

.ccard-violet .ccard-icon { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.ccard-violet .ccard-dot-1 { background: #8b5cf6; }
.ccard-violet .ccard-dot-2 { border-color: rgba(139,92,246,0.3); }
.ccard-violet .ccard-eyebrow, .ccard-violet .ccard-value { color: #8b5cf6; }
.ccard-violet .ccard-divider { background: #8b5cf6; }
.ccard-violet .ccard-btn { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.ccard-violet:hover { border-color: rgba(139,92,246,0.3); }
.ccard-violet .ccard-btn:hover { background: #8b5cf6; color: #fff; }

.ccard-amber .ccard-icon { background: rgba(245,158,11,0.12); color: #d97706; }
.ccard-amber .ccard-dot-1 { background: #f59e0b; }
.ccard-amber .ccard-dot-2 { border-color: rgba(245,158,11,0.35); }
.ccard-amber .ccard-eyebrow, .ccard-amber .ccard-value { color: #d97706; }
.ccard-amber .ccard-divider { background: #f59e0b; }
.ccard-amber .ccard-btn { background: rgba(245,158,11,0.12); color: #d97706; }
.ccard-amber:hover { border-color: rgba(245,158,11,0.35); }
.ccard-amber .ccard-btn:hover { background: #f59e0b; color: #fff; }

@media (max-width: 980px) {
    .contact-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .contact-cards-grid { grid-template-columns: 1fr; }
    .contact-cards-section { padding: 0 1.5rem 4rem; }
}

/* ═══════════════════════════════════
   VALUES
═══════════════════════════════════ */
.values-section {
    background: #214c3a;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16,185,129,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,185,129,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.values-section .section-title { color: #fff; }
.values-section .section-lead { color: rgba(255,255,255,0.45); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    border: 1.5px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
}

.value-card {
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.02);
    border-right: 1.5px solid rgba(255,255,255,0.05);
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:last-child { border-right: none; }

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover { background: rgba(16,185,129,0.05); }
.value-card:hover::before { opacity: 1; }

.value-number {
    font-family: 'Onest', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(52,211,153,0.35);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.value-card:hover .value-number { color: rgba(52,211,153,0.5); }

.value-title {
    font-family: 'Onest', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.value-body {
    color: #fff;
    font-size: 1rem;
    line-height: 1.75;
}

/* ═══════════════════════════════════
   WHY US — alternating split sections
═══════════════════════════════════ */
.why-section { background: #fff; }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.why-grid + .why-grid {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.why-grid-single { align-items: start; }

.why-content-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-content-stack .why-content + .why-content {
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
}

.why-visual {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-content h3 {
    font-family: 'Onest', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.8px;
    margin-bottom: 0.9rem;
    line-height: 1.2;
}

.why-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.why-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.why-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.why-checklist li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ═══════════════════════════════════
   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; }
}

@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; }
}

/* ═══════════════════════════════════
   SCROLL REVEAL (JS driven)
═══════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   Contact Page (contact.html)
============================================================ */
body { overflow-x: hidden; }

    /* ─────────────────────────────
       HERO SPLIT
    ───────────────────────────── */
    .contact-hero {
        display: grid;
        grid-template-columns: 420px 1fr;
        min-height: calc(100vh - 68px);
    }

    /* LEFT — dark panel */
    .contact-left {
        background: linear-gradient(160deg, #214c3a 0%, #0b3d26 55%, #0f4d32 100%);
        padding: 5rem 3.5rem 4rem;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .contact-left::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(16,185,129,0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(16,185,129,0.06) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

    .contact-left::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
        pointer-events: none;
    }

    .contact-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent-green-light);
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }

    .contact-eyebrow-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent-green-light);
        animation: pulse-dot 2s ease-in-out infinite;
    }

    .contact-left h1 {
        font-family: 'Onest', sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.08;
        letter-spacing: -1.5px;
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 1;
    }

    .contact-left h1 em {
        font-style: normal;
        color: var(--accent-green-light);
    }

    .contact-left p.intro {
        color: rgba(255,255,255,0.5);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 3rem;
        max-width: 300px;
        position: relative;
        z-index: 1;
    }

    .contact-info-list {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        margin-bottom: auto;
        position: relative;
        z-index: 1;
    }

    .contact-info-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.25rem;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .contact-info-item:hover {
        background: rgba(16,185,129,0.1);
        border-color: rgba(16,185,129,0.3);
        transform: translateX(4px);
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(16,185,129,0.15);
        border: 1px solid rgba(16,185,129,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--accent-green-light);
    }

    .contact-info-text strong {
        display: block;
        color: #fff;
        font-size: 0.88rem;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .contact-info-text span {
        color: rgba(255,255,255,0.4);
        font-size: 0.78rem;
    }

    @keyframes ping {
        0%   { transform: scale(1);   opacity: 0.6; }
        100% { transform: scale(2.2); opacity: 0; }
    }

    /* RIGHT — contact form */
    .contact-right {
        background: #fff;
        padding: 4.5rem 4rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
    }

    .contact-right::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 100% 0%, rgba(16,185,129,0.04) 0%, transparent 60%);
        pointer-events: none;
    }

    .form-header h2 {
        font-family: 'Onest', sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--text-main);
        letter-spacing: -0.5px;
        line-height: 1.15;
        margin-bottom: 0.4rem;
        white-space: nowrap;
    }

    .form-header p { color: var(--text-muted); font-size: 0.92rem; }

    .existing-client-note {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0.85rem 1.1rem;
        background: rgba(16,185,129,0.06);
        border: 1px solid rgba(16,185,129,0.18);
        border-radius: 10px;
        font-size: 0.84rem;
        color: var(--text-muted);
    }

    .existing-client-note svg { color: var(--accent-green); flex-shrink: 0; }
    .existing-client-note a { color: var(--accent-green); font-weight: 600; text-decoration: none; }
    .existing-client-note a:hover { text-decoration: underline; }

    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; position: relative; z-index: 1; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

    .form-group label {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text-main);
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.82rem 1rem;
        border: 1.5px solid var(--border-color);
        border-radius: 10px;
        font-family: 'Onest', sans-serif;
        font-size: 0.93rem;
        color: var(--text-main);
        background: #fafafa;
        transition: all 0.2s ease;
        outline: none;
        -webkit-appearance: none;
        /* .form-group is a column flexbox, which stretches children to
           fill its width by default — but a <select> is sized to its
           widest <option> first and doesn't reliably honor that stretch
           the way <input>/<textarea> do, so it needs an explicit width. */
        width: 100%;
        min-width: 0;
    }

    .form-group select {
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
    }

    .form-group select:focus {
        border-color: var(--accent-green);
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
        outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--accent-green);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
    }

    .form-group input.has-value,
    .form-group textarea.has-value { border-color: rgba(16,185,129,0.4); background: #fff; }

    .form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

    .input-with-icon { position: relative; }
    .input-with-icon svg { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: #94a3b8; pointer-events: none; }
    .input-with-icon input { padding-left: 2.5rem; }

    /* Urgency selector cards */
    .urgency-selector {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }
    .urgency-option {
        position: relative;
    }
    .urgency-option input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }
    .urgency-option label {
        display: flex;
        flex-direction: column;
        gap: 3px;
        padding: 0.85rem 1rem;
        border: 1.5px solid var(--border-color);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.2s ease;
        background: #fafafa;
    }
    .urgency-option label:hover {
        border-color: rgba(16,185,129,0.4);
        background: #fff;
    }
    .urgency-option input[type="radio"]:checked + label {
        border-color: var(--accent-green);
        background: rgba(16,185,129,0.05);
        box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
    }
    .urgency-option .urgency-emoji {
        font-size: 1.1rem;
        line-height: 1;
    }
    .urgency-option .urgency-title {
        font-size: 0.83rem;
        font-weight: 700;
        color: var(--text-main);
        text-transform: none;
        letter-spacing: 0;
    }
    .urgency-option .urgency-sub {
        font-size: 0.73rem;
        color: var(--text-muted);
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0;
    }
    @media (max-width: 480px) {
        .urgency-selector { grid-template-columns: 1fr; }
    }

    .form-submit-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 0.25rem;
    }

    .form-privacy { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
    .form-privacy a { color: var(--accent-green); text-decoration: none; }

    .btn-submit {
        background: var(--accent-green);
        color: #fff;
        border: none;
        padding: 0.95rem 2rem;
        border-radius: 2px;
        font-family: 'Onest', sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 4px 4px 0 #065f46;
        transition: box-shadow 0.15s ease, transform 0.15s ease;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .btn-submit:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #065f46; }
    .btn-submit:active { transform: translate(0,0); box-shadow: 2px 2px 0 #065f46; }
    .btn-submit svg { transition: transform 0.2s ease; }
    .btn-submit:hover svg { transform: translateX(3px); }

    .form-success {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 3rem 2rem;
        gap: 1rem;
        flex: 1;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(16,185,129,0.3);
    }

    .form-success h3 { font-family: 'Onest', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--text-main); }
    .form-success p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

    /* ─────────────────────────────
       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; }
        /* .form-header h2's white-space: nowrap keeps the heading on one
           line at desktop widths, but a CSS Grid track won't shrink below
           an unbreakable child's width — that single "Изпратете съобщение"
           line was forcing the whole grid (and the page) wider than the
           viewport on mobile. */
        .form-header h2 { white-space: normal; }
        .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; }
    }

/* ── Included / Not Included section (wordpress-support.html) ── */
.included-section {
    padding: 5rem 2rem;
    background: linear-gradient(90deg, #ffffff 0%, #cdefe3 100%);
    border-top: 1px solid var(--border-color);
}
.included-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.included-inner h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.8px;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.included-inner > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 640px;
}
.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.included-card {
    border-radius: 14px;
    padding: 2rem 2rem 1.75rem;
    border: 2px solid;
}
.included-yes { border-color: rgba(16,185,129,0.35); background: #fafffd; }
.included-no  { border-color: rgba(255,91,57,0.25);  background: #fafffd; }

.included-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}
.included-tag-yes { border: 1.5px solid rgba(16,185,129,0.4); color: var(--accent-green); }
.included-tag-no  { border: 1.5px solid rgba(255,91,57,0.35); color: #ff5b39; }

.included-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.included-list li {
    font-size: 0.9rem;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.included-list li::before {
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 700;
    font-size: 0.85rem;
}
.inc-yes { color: var(--text-main); font-size: 0.95rem; }
.inc-yes::before { content: '✓'; color: var(--accent-green); }
.inc-no  { color: var(--text-main); font-size: 0.95rem; }
.inc-no::before  { content: '×'; color: #ff5b39; font-size: 1rem; }

@media (max-width: 768px) {
    .included-grid { grid-template-columns: 1fr; }
}

.why-sitefix .why-eyebrow {
    margin-top: 3rem;
}
.why-sitefix .why-grid {
    margin-top: 0;
    align-items: start;
    gap: 2.5rem;
}
.pricing-page-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 600px) {
    /* Mirrors the .pricing-header reduction on index.html — same reason:
       stacked with .container's own 2rem padding, this page-specific
       wrapper's full 2rem was the other half of what made the toggle on
       this page end up narrower than on index.html despite the same
       .period-toggle-wrapper bleed. Placed after the base rule above,
       not with the other .period-toggle mobile overrides — a later,
       unconditional shorthand always wins over an earlier media-scoped
       longhand at equal specificity. */
    .pricing-page-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ── НОВО / Marketing Consultation section ── */
.novo-section {
    background: linear-gradient(180deg, #ffffff 0%, #dffff4 100%);
    padding: 4rem 2rem 5rem;
    border-top: 1px solid var(--border-color);
}
.novo-inner {
    max-width: 860px;
    margin: 0 auto;
}
.novo-eyebrow {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.novo-eyebrow .more-dash { color: var(--accent-green); }
.novo-badge {
    display: inline-block;
    background: linear-gradient(90deg, #0b201a 0%, #10b981 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.75rem;
    line-height: 1.3;
}
.novo-content p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

/* ══ Terms of Service / Legal Page ══ */
.tos-hero {
    background: linear-gradient(160deg, #214c3a 0%, #0b3d26 55%, #0f4d32 100%);
    padding: 4.5rem 2rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tos-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16,185,129,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,185,129,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.tos-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.tos-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.tos-meta {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}

.tos-body { padding: 4rem 2rem 5rem; }
.tos-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: start;
}

.tos-toc-sticky { position: sticky; top: 96px; }
.tos-toc-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}
.tos-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
}
.tos-toc-nav a {
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    border-left: 2px solid transparent;
}
.tos-toc-nav a:hover {
    color: var(--accent-green);
    background: rgba(16,185,129,0.06);
    border-left-color: var(--accent-green);
}

.tos-content { max-width: 760px; min-width: 0; }
.tos-content p {
    margin-bottom: 0.9rem;
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text-main);
}
.tos-content p.tos-lead {
    font-weight: 700;
    margin-top: 1.6rem;
}
.tos-content h2.tos-h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 3rem 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}
.tos-content h2.tos-h2:first-child { margin-top: 0; }
.tos-content h3.tos-h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-green);
    margin: 2rem 0 0.9rem;
}
.tos-content .tos-list {
    margin: 0 0 1rem;
    padding-left: 0;
    list-style: none;
}
.tos-content .tos-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.55rem;
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--text-main);
}
.tos-content .tos-list li::before {
    content: '';
    position: absolute;
    left: 0.2rem;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-green);
}
.tos-content a {
    color: var(--accent-green);
    text-decoration: underline;
    text-decoration-color: rgba(16,185,129,0.35);
}
.tos-content a:hover { text-decoration-color: var(--accent-green); }
.tos-blank {
    display: inline-block;
    min-width: 220px;
    border-bottom: 1px solid var(--border-color);
    margin: 0 2px -3px;
}

@media (max-width: 1024px) {
    .tos-layout { grid-template-columns: 1fr; gap: 2rem; }
    .tos-toc { display: none; }
}
@media (max-width: 768px) {
    .tos-hero { padding: 3.5rem 1.25rem 2.5rem; }
    .tos-hero h1 { font-size: 2rem; }
    .tos-body { padding: 2.5rem 1.25rem 3.5rem; }
    .tos-content h2.tos-h2 { font-size: 1.25rem; }
}
.novo-content p strong { color: var(--text-main); }
.novo-content p:last-child { margin-bottom: 0; }

/* ══ Legal page tables (privacy policy field/data tables) ══ */
.tos-content table.tos-field-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}
.tos-content table.tos-field-table tr:not(:last-child) th,
.tos-content table.tos-field-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--border-color);
}
.tos-content table.tos-field-table th {
    text-align: left;
    vertical-align: top;
    width: 130px;
    padding: 0.7rem 1rem;
    background: var(--bg-color);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green);
    white-space: nowrap;
}
.tos-content table.tos-field-table td {
    padding: 0.7rem 1rem;
    font-size: 0.93rem;
    line-height: 1.65;
    color: var(--text-main);
}
.tos-table-wrap { overflow-x: auto; margin: 0 0 1.25rem; }
.tos-content table.tos-data-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}
.tos-content table.tos-data-table th,
.tos-content table.tos-data-table td {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.tos-content table.tos-data-table th {
    background: var(--bg-color);
    color: var(--text-main);
    font-weight: 700;
    white-space: nowrap;
}
.tos-content table.tos-data-table td { color: var(--text-muted); }
.tos-content table.tos-data-table td:first-child { color: var(--text-main); font-weight: 700; }
.tos-content table.tos-data-table tr:last-child th,
.tos-content table.tos-data-table tr:last-child td { border-bottom: none; }

@media (max-width: 560px) {
    .tos-content table.tos-field-table,
    .tos-content table.tos-field-table tbody,
    .tos-content table.tos-field-table tr {
        display: block;
        width: 100%;
    }
    .tos-content table.tos-field-table th,
    .tos-content table.tos-field-table td {
        display: block;
        width: auto;
        white-space: normal;
    }
    .tos-content table.tos-field-table th {
        padding-bottom: 0.2rem;
        border-bottom: none !important;
    }
    .tos-content table.tos-field-table td {
        padding-top: 0;
    }
}