/**
 * Template 2 — Emerald & Gold
 * Font: Outfit
 * Scheme: Dark charcoal + Emerald green + Gold accent
 */

/* ================================
   CSS Variables
   ================================ */
:root {
    --c-bg: #0A0F0D;
    --c-surface: #111812;
    --c-surface-2: #162019;
    --c-border: rgba(16, 185, 129, 0.15);

    --c-green: #10B981;
    --c-green-d: #059669;
    --c-green-l: #34D399;
    --c-gold: #F59E0B;
    --c-gold-d: #D97706;
    --c-gold-l: #FCD34D;
    --c-teal: #14B8A6;
    --c-rose: #F43F5E;

    --c-text: #F0FDF4;
    --c-muted: #6B8F7A;

    --font: 'Outfit', -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-green: 0 0 40px rgba(16, 185, 129, 0.3);
    --shadow-gold: 0 0 40px rgba(245, 158, 11, 0.3);

    --trans: 280ms cubic-bezier(0.4, 0, 0.2, 1);
    --z-header: 100;
    --z-cookie: 150;
}

/* ================================
   Reset & Base
   ================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--trans);
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-green);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    z-index: 999;
    transition: top var(--trans);
}

.skip-link:focus {
    top: 12px;
}

/* ================================
   Layout
   ================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

/* ================================
   Scroll Progress
   ================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--c-green), var(--c-gold));
    z-index: 9999;
    transition: width 80ms linear;
}

/* ================================
   Section helpers
   ================================ */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-green);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--c-text) 0%, var(--c-green-l) 50%, var(--c-gold-l) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--c-muted);
    margin-bottom: 48px;
    max-width: 560px;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--trans);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn--gold {
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-d));
    color: #0A0F0D;
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 55px rgba(245, 158, 11, 0.5);
}

.btn--ghost {
    background: transparent;
    color: var(--c-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    border-color: var(--c-green-l);
    color: var(--c-green-l);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--small {
    padding: 8px 18px;
    font-size: 0.875rem;
}

/* ================================
   Header
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(10, 15, 13, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--c-border);
    transition: all var(--trans);
}

.header.scrolled {
    background: rgba(10, 15, 13, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(16, 185, 129, 0.25);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
}

.logo-hex {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-hex--sm {
    width: 30px;
    height: 30px;
}

.header__logo-text {
    background: linear-gradient(135deg, var(--c-green-l), var(--c-gold-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav */
.header__nav {
    display: none;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color var(--trans);
    position: relative;
    padding: 4px 0;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-green), var(--c-gold));
    border-radius: 2px;
    transition: width var(--trans);
}

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

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

.header__nav-cta {
    padding: 8px 22px;
    font-size: 0.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-d));
    color: #0A0F0D;
    border-radius: var(--radius-full);
    transition: all var(--trans);
    letter-spacing: 0.03em;
}

.header__nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Burger */
.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    padding: 0;
    z-index: 10;
    align-items: flex-end;
}

.header__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-green-l);
    border-radius: 2px;
    transition: all var(--trans);
}

.header__burger-line:nth-child(2) {
    width: 70%;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
    .header__nav {
        display: block;
    }

    .header__burger {
        display: none;
    }
}

@media (max-width: 1023px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--c-surface);
        border-left: 1px solid rgba(16, 185, 129, 0.2);
        padding: 100px 32px 32px;
        transition: right var(--trans);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    }

    .header__nav.active {
        display: block;
        right: 0;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .header__nav-link {
        font-size: 1.2rem;
    }

    .header__nav-cta {
        margin-top: 12px;
    }
}

/* ================================
   Hero
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: clamp(110px, 16vh, 150px) 0 clamp(70px, 10vh, 120px);
    background: var(--c-bg);
    overflow: hidden;
}

.hero__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: glow-drift 12s ease-in-out infinite alternate;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    top: -15%;
    right: -10%;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -6s;
}

@keyframes glow-drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, 20px) scale(1.1);
    }
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 7vw, 80px);
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-gold-l);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.hero__tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-gold);
    box-shadow: 0 0 8px var(--c-gold);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero__title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--c-green-l), var(--c-gold-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--c-muted);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__trust-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-text);
}

.hero__trust-lbl {
    font-size: 0.75rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__trust-divider {
    width: 1px;
    height: 36px;
    background: var(--c-border);
}

/* Income card */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.income-card {
    background: linear-gradient(145deg, rgba(17, 24, 18, 0.95), rgba(22, 32, 25, 0.9));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(16, 185, 129, 0.08);
    width: 100%;
    max-width: 380px;
    transform: perspective(1000px) rotateY(5deg) rotateX(-3deg);
    transition: transform 0.5s ease;
}

.income-card:hover {
    transform: perspective(1000px) rotateY(2deg) rotateX(-1deg);
}

.income-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.income-card__icon {
    font-size: 1.5rem;
}

.income-card__label {
    font-size: 0.8rem;
    color: var(--c-muted);
    font-weight: 500;
}

.income-card__date {
    font-size: 0.72rem;
    color: rgba(107, 143, 122, 0.7);
}

.income-card__badge {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--c-green-l);
    font-size: 0.78rem;
    font-weight: 700;
}

.income-card__amount {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--c-green-l), var(--c-gold-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

/* Mini chart bars */
.income-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-bottom: 20px;
}

.income-chart__bar {
    flex: 1;
    height: var(--h);
    border-radius: 4px 4px 0 0;
    background: rgba(16, 185, 129, 0.3);
    transition: background var(--trans);
}

.income-chart__bar--active {
    background: linear-gradient(180deg, var(--c-green), var(--c-teal));
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.income-chart:hover .income-chart__bar {
    background: rgba(16, 185, 129, 0.2);
}

.income-chart:hover .income-chart__bar--active {
    background: linear-gradient(180deg, var(--c-gold), var(--c-gold-d));
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

.income-card__row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.income-row-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--c-muted);
}

.income-row-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.income-row-item__dot--green {
    background: var(--c-green);
    box-shadow: 0 0 6px var(--c-green);
}

.income-row-item__dot--gold {
    background: var(--c-gold);
    box-shadow: 0 0 6px var(--c-gold);
}

.income-row-item__dot--teal {
    background: var(--c-teal);
    box-shadow: 0 0 6px var(--c-teal);
}

.income-row-item__val {
    margin-left: auto;
    font-weight: 700;
    color: var(--c-green-l);
}

/* Floating mini cards */
.hero__mini-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 24, 18, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-text);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero__mini-card--1 {
    top: 5%;
    right: -5%;
    animation: float-y 4s ease-in-out infinite;
}

.hero__mini-card--2 {
    bottom: 20%;
    left: -8%;
    animation: float-y 5s ease-in-out infinite 1s;
}

.hero__mini-card--3 {
    top: 55%;
    right: -10%;
    animation: float-y 4.5s ease-in-out infinite 0.5s;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@media (max-width: 768px) {
    .hero__mini-card--1 {
        right: 0;
    }

    .hero__mini-card--2 {
        left: 0;
    }

    .hero__mini-card--3 {
        display: none;
    }
}

/* ================================
   Ticker
   ================================ */
.ticker {
    overflow: hidden;
    background: linear-gradient(90deg, var(--c-surface), var(--c-surface-2));
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 14px 0;
}

.ticker__track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 20s linear infinite;
}

.ticker__item {
    padding: 0 36px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-muted);
    border-right: 1px solid var(--c-border);
    transition: color var(--trans);
}

.ticker__item:hover {
    color: var(--c-green-l);
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ================================
   About
   ================================ */
.about {
    padding: clamp(80px, 12vw, 120px) 0;
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-surface) 50%, var(--c-bg) 100%);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    margin-top: 12px;
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--c-text) 0%, var(--c-green-l) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__text {
    color: var(--c-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about__list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-text);
    font-size: 0.95rem;
}

.about__check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--c-green-l);
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-card {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--trans);
}

.feature-card:hover {
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.feature-card__icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.feature-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card__text {
    font-size: 0.85rem;
    color: var(--c-muted);
    line-height: 1.6;
}

/* ================================
   Stats Band
   ================================ */
.stats-band {
    padding: 60px 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-band__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stats-band__item {
    text-align: center;
}

.stats-band__num {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--c-green-l), var(--c-gold-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-band__lbl {
    font-size: 0.85rem;
    color: var(--c-muted);
    font-weight: 500;
}

/* ================================
   How It Works + Services
   ================================ */
.how {
    padding: clamp(80px, 12vw, 120px) 0;
}

.how .section-label,
.how .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.how .section-title {
    margin-bottom: 48px;
}

.steps {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 64px;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    transition: all var(--trans);
}

.step:hover {
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.step__num {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-gold);
    margin-bottom: 12px;
}

.step__icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.step__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step__text {
    font-size: 0.875rem;
    color: var(--c-muted);
    line-height: 1.6;
}

.step__arrow {
    font-size: 1.5rem;
    color: var(--c-border);
    align-self: center;
    margin-top: -20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .step__arrow {
        display: none;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.svc-card {
    position: relative;
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--trans);
}

.svc-card:hover {
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.svc-card--featured {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(145deg, rgba(22, 32, 25, 0.95), rgba(30, 25, 12, 0.9));
}

.svc-card--featured:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: var(--shadow-gold);
}

.svc-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-green);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.svc-card__tag--gold {
    color: var(--c-gold);
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
}

.svc-card__icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.svc-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.svc-card__text {
    font-size: 0.875rem;
    color: var(--c-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.svc-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-green-l);
    transition: gap var(--trans);
}

.svc-card__link:hover {
    color: var(--c-gold-l);
}

/* ================================
   Compare Table (NEW)
   ================================ */
.compare {
    padding: clamp(80px, 12vw, 120px) 0;
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-surface) 100%);
}

.compare .section-label,
.compare .section-title,
.compare .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    background: var(--c-surface-2);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    white-space: nowrap;
}

.compare-table th,
.compare-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
    font-size: 0.9rem;
}

.compare-table th {
    font-weight: 700;
    color: var(--c-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(16, 185, 129, 0.05);
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--c-text);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:hover td {
    background: rgba(16, 185, 129, 0.04);
}

.compare-table__ours {
    background: rgba(16, 185, 129, 0.06) !important;
    border-left: 2px solid rgba(16, 185, 129, 0.3);
    border-right: 2px solid rgba(16, 185, 129, 0.3);
}

.compare-table__badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--c-green-l);
    font-size: 0.8rem;
    font-weight: 700;
}

.yes {
    color: var(--c-green-l);
    font-size: 1.1rem;
    font-weight: 700;
}

.no {
    color: #F43F5E;
    font-size: 1.1rem;
    font-weight: 700;
}

.half {
    color: var(--c-gold);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ================================
   Reviews
   ================================ */
.reviews {
    padding: clamp(80px, 12vw, 120px) 0;
}

.reviews .section-label,
.reviews .section-title {
    text-align: center;
    display: block;
}

.reviews .section-title {
    margin-bottom: 48px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.review-card {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--trans);
}

.review-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-3px);
}

.review-card--featured {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(145deg, var(--c-surface-2), rgba(30, 25, 12, 0.6));
}

.review-card__stars {
    color: var(--c-gold);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 0.9rem;
    color: var(--c-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.review-card__name {
    font-weight: 700;
    font-size: 0.9rem;
}

.review-card__city {
    font-size: 0.78rem;
    color: var(--c-muted);
}

/* ================================
   Partners (NEW)
   ================================ */
.partners {
    padding: 60px 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    text-align: center;
}

.partners__sub {
    color: var(--c-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    padding: 12px 28px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 800;
    color: rgba(107, 143, 122, 0.6);
    transition: all var(--trans);
    letter-spacing: -0.01em;
    background: var(--c-surface-2);
}

.partner-logo span {
    color: var(--c-green-l);
}

.partner-logo:hover {
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--c-text);
    transform: scale(1.04);
}

/* ================================
   FAQ (NEW)
   ================================ */
.faq {
    padding: clamp(80px, 12vw, 120px) 0;
}

.faq .section-label,
.faq .section-title {
    text-align: center;
    display: block;
}

.faq .section-title {
    margin-bottom: 48px;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--trans);
}

.faq-item.open {
    border-color: rgba(16, 185, 129, 0.35);
}

.faq-item__q {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-text);
    transition: color var(--trans);
}

.faq-item__q:hover {
    color: var(--c-green-l);
}

.faq-item.open .faq-item__q {
    color: var(--c-green-l);
}

.faq-item__icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--c-muted);
    flex-shrink: 0;
    transition: transform var(--trans);
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
    color: var(--c-green-l);
}

.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease, padding var(--trans);
    padding: 0 24px;
}

.faq-item__a p {
    font-size: 0.9rem;
    color: var(--c-muted);
    line-height: 1.75;
}

.faq-item.open .faq-item__a {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    padding: clamp(80px, 12vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.cta-section__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.cta-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, var(--c-surface-2), rgba(22, 32, 25, 0.8));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-xl);
    padding: clamp(48px, 8vw, 80px) clamp(32px, 6vw, 64px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(16, 185, 129, 0.1);
}

.cta-box__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-gold);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.cta-box__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--c-text) 0%, var(--c-green-l) 60%, var(--c-gold-l) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box__text {
    color: var(--c-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-box__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.cta-box__note {
    font-size: 0.8rem;
    color: rgba(107, 143, 122, 0.7);
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    padding-top: 60px;
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

@media (min-width: 640px) {
    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer__container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer__logo-text {
    background: linear-gradient(135deg, var(--c-green-l), var(--c-gold-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__desc {
    font-size: 0.875rem;
    color: var(--c-muted);
    line-height: 1.6;
}

.footer__title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-green);
    margin-bottom: 16px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    font-size: 0.875rem;
    color: var(--c-muted);
    transition: color var(--trans);
}

.footer__link:hover {
    color: var(--c-green-l);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--c-muted);
}

.footer__contact-icon {
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid var(--c-border);
    padding: 20px 0;
    background: rgba(10, 15, 13, 0.8);
}

.footer__copy {
    font-size: 0.8rem;
    color: rgba(107, 143, 122, 0.6);
    text-align: center;
}

/* ================================
   Cookie Popup
   ================================ */
.cookie-popup {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: var(--z-cookie);
    width: calc(100% - 48px);
    max-width: 520px;
    background: var(--c-surface-2);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.cookie-popup.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-popup__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cookie-popup__text {
    font-size: 0.85rem;
    color: var(--c-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-popup__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}