/* ════════════════════════════════════════════
   NEGVE — glavna.css
════════════════════════════════════════════ */

:root {
    --em:   #10B981;
    --em2:  rgba(16,185,129,.35);
    --bg:   #000;
    --bg2:  #0a0a0a;
    --bg3:  #111;
    --txt:  #fff;
    --muted: rgba(255,255,255,.4);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--txt);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Mobile nav padding */
@media (max-width: 768px) {
    body { padding-bottom: 88px; }
}

h1, h2, h3, .font-syne {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0;
}

/* ── GRAIN (CSS-only, no external URL) ── */
.grain::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .03;
    pointer-events: none;
    z-index: 9999;
}

/* ── CURSOR BLOB ── */
#cursor-blob {
    position: fixed;
    width: 360px; height: 360px;
    background: radial-gradient(circle, var(--em2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
    opacity: .5;
    /* positioned via JS top/left */
    transform: translate(-50%, -50%);
    transition: left .08s linear, top .08s linear;
}
@media (hover: none) { #cursor-blob { display: none; } }

/* ════════════════════════════════════════════
   DESKTOP NAV
════════════════════════════════════════════ */
.g-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px;
    mix-blend-mode: difference;
}
@media (max-width: 768px) { .g-nav { padding: 20px 24px; } }

.g-nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 28px; font-weight: 800;
    letter-spacing: -0.04em; text-transform: uppercase;
    color: var(--txt);
}

.g-nav-links { display: flex; gap: 40px; }
@media (max-width: 768px) { .g-nav-links { display: none; } }

.g-nav-link {
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .2em;
    color: rgba(255,255,255,.5);
    transition: color .25s;
}
.g-nav-link:hover { color: #fff; }

.g-nav-btn {
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .18em;
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    color: var(--txt);
    transition: background .25s, color .25s;
}
.g-nav-btn:hover { background: #fff; color: #000; }

/* ── MOBILE BOTTOM NAV ── */
.g-mob-nav {
    display: none;
    position: fixed;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    gap: 4px;
    background: rgba(10,10,10,.9);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    padding: 10px 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
@media (max-width: 768px) { .g-mob-nav { display: flex; } }

.g-mob-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 3px;
    padding: 8px 14px; border-radius: 100px;
    color: rgba(255,255,255,.35);
    font-size: 9px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em;
    transition: color .25s, background .25s;
}
.g-mob-item i { font-size: 18px; }
.g-mob-item.active,
.g-mob-item:hover { color: var(--em); background: rgba(16,185,129,.1); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.g-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 48px 80px;
}
@media (max-width: 768px) { .g-hero { padding: 120px 24px 100px; } }

.g-hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.g-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .25;
    filter: blur(4px);
    scale: 1.08;
}
.g-hero-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 60%, transparent 30%, var(--bg) 80%);
}

.g-hero-content {
    position: relative; z-index: 10;
    text-align: center;
    max-width: 1100px; width: 100%;
}

/* Badge */
.g-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px;
    border: 1px solid rgba(16,185,129,.3);
    border-radius: 100px;
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .28em;
    color: var(--em);
    margin-bottom: 40px;
}
.g-badge-dot {
    width: 6px; height: 6px;
    background: var(--em); border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(1.5); }
}

/* Hero title — CSS animation, no JS required */
.g-hero-title {
    font-size: clamp(64px, 13vw, 180px);
    margin-bottom: 32px;
}

.g-line {
    display: block;
    overflow: hidden;
}
.g-line--em { color: var(--em); }

.g-word {
    display: block;
    animation: wordUp .9s cubic-bezier(.16,1,.3,1) both;
}
.g-word:nth-child(1) { animation-delay: 0.05s; }
.g-word:nth-child(2) { animation-delay: 0.12s; }
.g-word:nth-child(3) { animation-delay: 0.19s; }

/* For nested .g-line > .g-word, match by position in DOM */
.g-line:nth-child(1) .g-word { animation-delay: 0.05s; }
.g-line:nth-child(2) .g-word { animation-delay: 0.13s; }
.g-line:nth-child(3) .g-word { animation-delay: 0.21s; }

@keyframes wordUp {
    from { transform: translateY(110%); }
    to   { transform: translateY(0); }
}

.g-hero-sub {
    font-size: clamp(15px, 1.6vw, 19px);
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin: 0 auto 48px;
    max-width: 520px;
    animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .35s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.g-hero-cta {
    display: flex; gap: 16px;
    justify-content: center; flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .45s both;
}

.g-btn-main {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 44px;
    background: var(--txt); color: var(--bg);
    border-radius: 100px;
    font-size: 13px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .12em;
    transition: background .35s, color .35s, transform .35s, box-shadow .35s;
}
.g-btn-main:hover {
    background: var(--em); color: var(--txt);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--em2);
}

.g-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 36px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    font-size: 13px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--txt);
    transition: border-color .3s, color .3s, transform .35s;
}
.g-btn-ghost:hover { border-color: var(--em); color: var(--em); transform: translateY(-4px); }

/* Service pills */
.g-hero-services {
    display: flex; gap: 10px; flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .55s both;
}
.g-svc-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,.5);
    transition: border-color .3s, color .3s, background .3s;
}
.g-svc-pill:hover { border-color: var(--em); color: var(--txt); background: rgba(16,185,129,.07); }

/* Scroll hint */
.g-scroll-hint {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.2);
    font-size: 22px;
    z-index: 10;
    animation: bob 2s ease-in-out infinite, fadeUp .8s .8s both;
}
@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* Disable all animations for reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .g-word, .g-hero-sub, .g-hero-cta,
    .g-hero-services, .g-scroll-hint,
    .g-badge-dot { animation: none; }
}

/* ════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════ */
.g-marquee {
    background: var(--em);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}
.g-marquee-track {
    display: inline-flex; gap: 0;
    animation: marquee 30s linear infinite;
    font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .2em;
    color: var(--bg);
}
.g-marquee-track span { padding: 0 8px; }
.g-sep { opacity: .5; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .g-marquee-track { animation: none; }
}

/* ════════════════════════════════════════════
   SHOWCASE
════════════════════════════════════════════ */
.g-showcase { padding: 100px 48px 80px; background: var(--bg); }
@media (max-width: 768px) { .g-showcase { padding: 80px 20px 60px; } }

.g-showcase-inner { max-width: 1280px; margin: 0 auto; }

.g-showcase-header { margin-bottom: 48px; }

.g-label-tag {
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .3em;
    color: var(--em); margin: 0 0 16px;
}

.g-showcase-title,
.g-section-title {
    font-size: clamp(40px, 6vw, 80px);
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: .9; margin: 0;
}

/* ── SERVICE ANCHOR NAV ── */
.g-svc-nav {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 56px;
}
.g-svc-nav-item {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,.45);
    transition: border-color .25s, color .25s, background .25s;
    white-space: nowrap;
}
.g-svc-nav-item:hover {
    border-color: var(--em); color: #fff;
    background: rgba(16,185,129,.07);
}

/* ── SERVICE BLOCK ── */
.g-svc-block {
    padding: 64px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
@media (max-width: 768px) { .g-svc-block { padding: 48px 0; } }

.g-svc-block-hdr {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-bottom: 28px; gap: 16px;
}
.g-svc-block-meta { display: flex; align-items: center; gap: 20px; }

.g-svc-block-num {
    font-size: 11px; font-weight: 800;
    letter-spacing: .18em; color: var(--em);
    flex-shrink: 0;
}
.g-svc-block-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 800; text-transform: uppercase;
    letter-spacing: -0.03em; line-height: 1;
}
.g-svc-block-sub {
    font-size: 12px; color: rgba(255,255,255,.35);
    margin-top: 5px; font-weight: 500;
}
.g-svc-block-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 800;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--em);
    border: 1px solid rgba(16,185,129,.3);
    padding: 10px 20px; border-radius: 100px;
    white-space: nowrap; flex-shrink: 0;
    transition: background .25s, border-color .25s;
}
.g-svc-block-link:hover { background: rgba(16,185,129,.1); border-color: var(--em); }

/* ── BEFORE / AFTER SLIDER (CSS-var driven) ── */
.g-svc-slider {
    position: relative;
    --sp: 50%;
    border-radius: 20px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    background: var(--bg3);
    border: 1px solid rgba(255,255,255,.07);
    flex-shrink: 0;
}

.g-svc-after {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    pointer-events: none; display: block;
}

.g-svc-before {
    position: absolute; inset: 0;
    clip-path: inset(0 calc(100% - var(--sp)) 0 0);
    pointer-events: none; z-index: 10;
}
.g-svc-before img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    pointer-events: none; display: block;
}

.g-svc-divider {
    position: absolute; top: 0; bottom: 0;
    left: var(--sp);
    width: 2px;
    background: rgba(255,255,255,.9);
    transform: translateX(-50%);
    z-index: 20; pointer-events: none;
    box-shadow: 0 0 10px rgba(0,0,0,.35);
    display: flex; align-items: center; justify-content: center;
}
.g-svc-knob {
    width: 40px; height: 40px;
    background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #000; font-size: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

.g-svc-lbl {
    position: absolute; top: 14px; z-index: 30;
    font-size: 9px; font-weight: 800;
    letter-spacing: .18em; text-transform: uppercase;
    padding: 5px 12px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
    color: #fff; pointer-events: none;
}
.g-svc-lbl-l { left: 14px; }
.g-svc-lbl-r { right: 14px; }

.g-svc-slider input[type=range] {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: 0; cursor: ew-resize;
    z-index: 40; margin: 0;
    -webkit-appearance: none; appearance: none;
}

/* Sliders row (horizontal scroll) */
.g-sliders-row {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    justify-content: safe center;
}
.g-sliders-row::-webkit-scrollbar { height: 3px; }
.g-sliders-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 2px; }

.g-sliders-row .g-svc-slider {
    height: 360px;
    scroll-snap-align: start;
}
@media (max-width: 768px) {
    .g-sliders-row .g-svc-slider { height: 280px; }
}

/* Wide slider (full width, landscape) */
.g-svc-slider--wide {
    width: 100%;
    aspect-ratio: 16/7;
    height: auto;
}
@media (max-width: 768px) {
    .g-svc-slider--wide { aspect-ratio: 4/3; }
}

/* ── AI PHOTOSHOOT STYLE ROW ── */
.g-style-row {
    display: flex; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}
.g-style-row::-webkit-scrollbar { height: 3px; }
.g-style-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 2px; }

.g-style-card {
    position: relative;
    flex-shrink: 0;
    height: 380px;
    aspect-ratio: 2/3;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    scroll-snap-align: start;
    cursor: pointer;
}
.g-style-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.g-style-card:hover img { transform: scale(1.04); }
.g-style-lbl {
    position: absolute; bottom: 14px; left: 14px;
    font-size: 10px; font-weight: 800;
    letter-spacing: .16em; text-transform: uppercase;
    padding: 5px 12px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px; color: #fff;
}
@media (max-width: 768px) {
    .g-style-card { height: 280px; }
}

/* ── INFOGRAPHICS FAN-OUT ── */
.g-infograph-row {
    display: flex; gap: 48px;
    justify-content: center; align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px 0;
}

.g-fanout-wrap {
    display: flex; flex-direction: column;
    align-items: center; gap: 20px;
    position: relative; z-index: 1;
}
.g-fanout-wrap:hover { z-index: 10; }
.g-fanout-hint {
    font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,.25);
    letter-spacing: .05em;
    margin: 0 0 4px;
    display: flex; align-items: center; gap: 6px;
}

.g-fanout {
    position: relative;
    width: 220px;
    aspect-ratio: 3/4;
    cursor: pointer;
}
@media (max-width: 768px) { .g-fanout { width: 160px; } }

.g-fanout-card {
    position: absolute; inset: 0;
    border-radius: 18px; overflow: hidden;
    border: 3px solid rgba(255,255,255,.1);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
    transition: transform .5s cubic-bezier(.25,1,.5,1), opacity .4s, box-shadow .4s;
    transform-origin: bottom center;
    background: var(--bg3);
}
.g-fanout-card img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* Default: back cards are hidden, front card (--orig) is visible */
.g-fanout-card:not(.g-fanout-card--orig) { opacity: 0; }

/* On hover: fan out all cards */
.g-fanout:hover .g-fanout-card:nth-child(1) {
    transform: translateX(140%) rotate(12deg) scale(0.88);
    opacity: 0.8;
}
.g-fanout:hover .g-fanout-card:nth-child(2) {
    transform: translateX(75%) rotate(6deg) scale(0.94);
    opacity: 0.9;
}
.g-fanout:hover .g-fanout-card:nth-child(3) {
    transform: translateX(10%) rotate(0deg);
    opacity: 1;
}
.g-fanout:hover .g-fanout-card.g-fanout-card--em {
    transform: translateX(-55%) rotate(-6deg);
    border-color: var(--em);
    box-shadow: 0 0 32px rgba(16,185,129,.4);
    opacity: 1;
}
.g-fanout:hover .g-fanout-card.g-fanout-card--orig {
    transform: translateX(-120%) rotate(-12deg) scale(0.84);
    opacity: 0.5;
}

.g-fanout-label {
    font-family: 'Syne', sans-serif;
    font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: -0.02em;
    color: rgba(255,255,255,.5);
    margin: 0;
    transition: color .3s;
}
.g-fanout-wrap:hover .g-fanout-label { color: var(--em); }

/* Touch/no-hover fallback: show spread */
@media (hover: none) {
    .g-fanout-card:nth-child(1) { transform: translateX(28%) rotate(6deg) scale(0.92); opacity: 0.6; }
    .g-fanout-card:nth-child(2) { transform: translateX(14%) rotate(3deg) scale(0.96); opacity: 0.75; }
    .g-fanout-card:nth-child(3) { opacity: 0.88; }
    .g-fanout-card.g-fanout-card--em { opacity: 0.94; }
    .g-fanout-card.g-fanout-card--orig { opacity: 1; }
}

/* ── REMOVE-BG SWITCHER ── */
.g-rbg-checker { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Crect width='10' height='10' fill='%23999'/%3E%3Crect x='10' y='10' width='10' height='10' fill='%23999'/%3E%3Crect x='10' width='10' height='10' fill='%23eee'/%3E%3Crect y='10' width='10' height='10' fill='%23eee'/%3E%3C/svg%3E"); }
.g-rbg-white  { background: #fff; }
.g-rbg-black  { background: #000; }
.g-rbg-green  { background: #00ff00; }

.g-bg-switcher {
    display: flex; align-items: center; gap: 10px;
    margin-top: 16px;
}
.g-bg-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.3);
}
.g-bg-btn {
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,.15);
    cursor: pointer;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.g-bg-btn:hover  { transform: scale(1.15); border-color: rgba(255,255,255,.5); }
.g-bg-btn.active { border-color: var(--em); box-shadow: 0 0 0 3px rgba(16,185,129,.3); }
.g-bg-checker { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Crect width='10' height='10' fill='%23999'/%3E%3Crect x='10' y='10' width='10' height='10' fill='%23999'/%3E%3Crect x='10' width='10' height='10' fill='%23eee'/%3E%3Crect y='10' width='10' height='10' fill='%23eee'/%3E%3C/svg%3E"); }
.g-bg-white  { background: #fff; }
.g-bg-black  { background: #111; border-color: rgba(255,255,255,.25); }
.g-bg-green  { background: #00c800; }

/* ════════════════════════════════════════════
   STATS
════════════════════════════════════════════ */
.g-stats {
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.g-stats-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    max-width: 1280px; margin: 0 auto;
}
@media (max-width: 1024px) { .g-stats-inner { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .g-stats-inner { grid-template-columns: repeat(2, 1fr); } }

.g-stat {
    padding: 48px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.05);
    transition: background .3s, opacity .5s, transform .5s;
}
.g-stat:last-child { border-right: none; }
.g-stat:hover { background: rgba(16,185,129,.04); }

/* Scroll reveal */
.g-stat, .g-plan, .g-ecard-item, .g-faq-item {
    opacity: 0;
    transform: translateY(20px);
}
.g-stat.revealed, .g-plan.revealed,
.g-ecard-item.revealed, .g-faq-item.revealed {
    opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .g-stat, .g-plan, .g-ecard-item, .g-faq-item {
        opacity: 1; transform: none;
    }
}

.g-stat-val {
    font-family: 'Syne', sans-serif;
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 800; letter-spacing: -0.04em;
    color: var(--em); line-height: 1; margin-bottom: 10px;
}
.g-stat-val span { font-size: .55em; }
.g-stat-lbl {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .18em;
    color: rgba(255,255,255,.3);
}

/* ════════════════════════════════════════════
   ECONOMY
════════════════════════════════════════════ */
.g-economy { padding: 100px 48px; background: var(--bg2); }
@media (max-width: 768px) { .g-economy { padding: 80px 24px; } }

.g-economy-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
@media (max-width: 900px) { .g-economy-inner { grid-template-columns: 1fr; gap: 48px; } }

.g-economy-text .g-label-tag { margin-bottom: 16px; }
.g-section-title { margin-bottom: 24px; }
.g-economy-body {
    font-size: 16px; color: rgba(255,255,255,.55);
    line-height: 1.75; max-width: 440px; margin: 0;
}
.g-economy-body strong { color: var(--txt); }

/* Economy card */
.g-economy-card {
    position: relative;
    background: rgba(16,185,129,.04);
    border: 1px solid rgba(16,185,129,.12);
    border-radius: 40px;
    padding: 8px;
    overflow: hidden;
    display: grid; gap: 8px;
}
.g-ecard-glow {
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(16,185,129,.15) 0%, transparent 70%);
    pointer-events: none;
}
.g-ecard-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.g-ecard-item {
    padding: 32px 24px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 28px;
    text-align: center;
    transition: background .3s, opacity .5s, transform .5s;
}
.g-ecard-item:hover { background: rgba(16,185,129,.05); }

.g-ecard-val {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800; letter-spacing: -0.04em;
    color: var(--em); line-height: 1; margin-bottom: 8px;
}
.g-ecard-val small { font-size: .5em; }
.g-ecard-lbl {
    font-size: 9px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .25em;
    color: rgba(255,255,255,.3);
}

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.g-pricing { padding: 100px 48px; background: var(--bg); }
@media (max-width: 768px) { .g-pricing { padding: 80px 20px; } }
.g-pricing-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.g-pricing-inner .g-label-tag { margin-bottom: 16px; }
.g-pricing-inner .g-section-title { margin-bottom: 48px; }

/* Toggle */
.g-period-toggle {
    display: inline-flex; gap: 4px;
    background: rgba(255,255,255,.05);
    border-radius: 100px; padding: 5px;
    margin-bottom: 48px;
}
.g-period-toggle button {
    padding: 10px 24px; border-radius: 100px;
    font-size: 12px; font-weight: 800;
    background: transparent; border: none; cursor: pointer;
    color: rgba(255,255,255,.45);
    transition: background .3s, color .3s;
}
.g-period-toggle button em { color: var(--em); font-style: normal; }
.g-period-toggle button.active { background: var(--em); color: var(--bg); }
.g-period-toggle button.active em { color: var(--bg); }

/* Plans */
.g-plans {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px; align-items: end;
}
@media (max-width: 1100px) { .g-plans { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .g-plans { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; } }

.g-plan {
    position: relative;
    padding: 28px 24px;
    background: rgb(18,18,20);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 24px;
    display: flex; flex-direction: column;
    text-align: left;
    transition: border-color .3s, opacity .5s, transform .5s;
}
.g-plan:hover { border-color: rgba(255,255,255,.2); }

.g-plan--feat {
    background: #fff; color: #000;
    border-color: transparent;
    transform: scaleY(1.04); transform-origin: bottom;
    box-shadow: 0 40px 100px rgba(16,185,129,.18);
    border-radius: 28px; z-index: 2;
}
/* Override scroll-reveal transform for featured */
.g-plan--feat.revealed { transform: scaleY(1.04); }

.g-plan-badge {
    position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--em); color: var(--bg);
    font-size: 9px; font-weight: 900;
    text-transform: uppercase; letter-spacing: .2em;
    padding: 4px 14px; border-radius: 100px;
    white-space: nowrap;
}
.g-plan-tier {
    font-size: 9px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .3em;
    color: rgba(255,255,255,.3); margin-bottom: 6px;
}
.g-plan--feat .g-plan-tier { color: rgba(0,0,0,.35); }

.g-plan-name {
    font-family: 'Syne', sans-serif;
    font-size: 22px; font-weight: 800;
    letter-spacing: -.04em; text-transform: uppercase;
    margin: 0 0 12px;
}
.g-plan-price {
    font-family: 'Syne', sans-serif;
    font-size: 28px; font-weight: 800;
    letter-spacing: -.03em; margin-bottom: 24px;
}
.g-plan-features {
    list-style: none; padding: 0; margin: 0 0 28px;
    flex: 1; display: flex; flex-direction: column; gap: 10px;
}
.g-plan-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,.45);
}
.g-plan-features li i { color: var(--em); font-size: 14px; }
.g-plan--feat .g-plan-features li { color: rgba(0,0,0,.55); }
.g-plan--feat .g-plan-features li i { color: #059669; }

.g-plan-btn {
    display: block; text-align: center;
    padding: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    font-size: 10px; font-weight: 900;
    text-transform: uppercase; letter-spacing: .15em;
    color: #fff;
    transition: background .3s, color .3s;
}
.g-plan-btn:hover { background: #fff; color: #000; }
.g-plan-btn--feat { background: #000; border-color: transparent; color: #fff; }
.g-plan-btn--feat:hover { background: var(--em); color: #000; }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.g-faq { padding: 100px 48px; background: var(--bg2); border-top: 1px solid rgba(255,255,255,.05); }
@media (max-width: 768px) { .g-faq { padding: 80px 24px; } }
.g-faq-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
}
@media (max-width: 900px) { .g-faq-inner { grid-template-columns: 1fr; gap: 40px; } }

.g-faq-list { display: flex; flex-direction: column; }

.g-faq-item {
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: opacity .5s, transform .5s;
}

.g-faq-q {
    width: 100%; text-align: left;
    display: flex; justify-content: space-between;
    align-items: center; gap: 16px;
    padding: 24px 0;
    font-size: 15px; font-weight: 800;
    color: var(--txt); background: none; border: none;
    cursor: pointer; transition: color .25s;
}
.g-faq-q:hover,
.faq-open .g-faq-q { color: var(--em); }

.g-faq-ico {
    font-size: 18px; flex-shrink: 0; color: var(--em);
    transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.faq-open .g-faq-ico { transform: rotate(45deg); }

/* Pure max-height accordion — no 'hidden' attribute needed */
.g-faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s cubic-bezier(.16,1,.3,1);
    font-size: 14px; color: rgba(255,255,255,.5);
    line-height: 1.75;
}
/* JS sets max-height inline when open */
.g-faq-a p { margin: 0; padding-bottom: 24px; max-width: 580px; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.g-footer {
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 80px 48px 48px;
    position: relative; overflow: hidden;
}
@media (max-width: 768px) { .g-footer { padding: 60px 24px 48px; } }

.g-footer-inner { max-width: 1280px; margin: 0 auto; }

.g-footer-brand {
    font-family: 'Syne', sans-serif;
    font-size: clamp(80px, 14vw, 200px);
    font-weight: 800; letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.03);
    line-height: 1; margin-bottom: 48px;
    user-select: none; pointer-events: none;
    text-align: center;
}

.g-footer-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px; margin-bottom: 60px;
}
@media (max-width: 900px) { .g-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .g-footer-grid { grid-template-columns: 1fr; } }

.g-footer-h {
    font-size: 10px; font-weight: 900;
    text-transform: uppercase; letter-spacing: .3em;
    color: var(--em); margin: 0 0 20px;
}
.g-footer-ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.g-footer-ul a {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: rgba(255,255,255,.3); transition: color .2s;
}
.g-footer-ul a:hover { color: #fff; }

.g-footer-social { display: flex; gap: 20px; }
.g-footer-social a {
    font-size: 24px; color: rgba(255,255,255,.2);
    transition: color .2s, transform .3s;
}
.g-footer-social a:hover { color: #fff; transform: translateY(-3px); }

.g-footer-copy {
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .3em;
    color: rgba(255,255,255,.1);
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 32px; text-align: center;
}

/* Footer glow */
.g-footer::after {
    content: '';
    position: absolute; bottom: -200px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: rgba(16,185,129,.07);
    filter: blur(120px); border-radius: 50%;
    pointer-events: none;
}
