/* ============================================
   GenerujWWW — Design System
   main.css — Core styles & variables
   ============================================ */

/* ── CSS Variables — GenerujWWW Design System ── */
:root {
    /* Background — dark neutral grays */
    --gwww-bg-primary: #0A0B0F;
    --gwww-bg-section: #0E0F14;
    --gwww-bg-card: rgba(22, 23, 30, 0.80);
    --gwww-bg-card-solid: #16171E;
    --gwww-bg-card-hover: #1C1D26;
    --gwww-bg-input: #121318;

    /* Borders — neutral gray tones */
    --gwww-border: rgba(140, 145, 160, 0.12);
    --gwww-border-hover: rgba(140, 145, 160, 0.22);
    --gwww-border-light: rgba(140, 145, 160, 0.08);
    --gwww-border-nav: rgba(140, 145, 160, 0.15);
    --gwww-border-card: rgba(160, 165, 180, 0.1);

    /* Text — clean whites and grays */
    --gwww-text-primary: #EAEDF2;
    --gwww-text-secondary: #B0B7C8;
    --gwww-text-muted: #6B7280;
    --gwww-text-tertiary: #565C6A;

    /* Brand — neutral silver/white accent */
    --gwww-accent: #9CA3AF;
    --gwww-accent-light: #D1D5DB;
    --gwww-accent-dark: #6B7280;
    --gwww-accent-hover: #D1D5DB;
    --gwww-accent-glow: rgba(156, 163, 175, 0.18);

    /* Button gradient — subtle gray-to-white */
    --gwww-btn-gradient: linear-gradient(135deg, #E5E7EB 0%, #9CA3AF 100%);
    --gwww-btn-gradient-hover: linear-gradient(135deg, #F3F4F6 0%, #B0B7C8 100%);

    /* CTA green */
    --gwww-cta: #22c55e;
    --gwww-cta-hover: #16a34a;
    --gwww-cta-glow: rgba(34, 197, 94, 0.25);

    /* Status */
    --gwww-error: #ef4444;
    --gwww-error-bg: rgba(239, 68, 68, 0.1);
    --gwww-success: #22c55e;
    --gwww-warning: #f59e0b;

    /* Gradients — subtle neutral glow */
    --gwww-gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(156,163,175,0.08) 0%, transparent 60%);
    --gwww-gradient-section: radial-gradient(ellipse at 80% 50%, rgba(156,163,175,0.04) 0%, transparent 50%);

    /* Typography — BetterStack font stack */
    --gwww-font-body: 'Helvetica Now Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --gwww-font-display: 'Helvetica Now Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --gwww-font-size-xs: 0.75rem;     /* 12px */
    --gwww-font-size-sm: 0.8125rem;   /* 13px — BetterStack nav size */
    --gwww-font-size-base: 0.875rem;  /* 14px — BetterStack body */
    --gwww-font-size-md: 1rem;        /* 16px */
    --gwww-font-size-lg: 1.125rem;    /* 18px */
    --gwww-font-size-xl: 1.25rem;     /* 20px */
    --gwww-font-size-2xl: 1.5rem;     /* 24px */
    --gwww-font-size-3xl: 1.75rem;    /* 28px */
    --gwww-font-size-4xl: 2.5rem;     /* 40px */
    --gwww-font-size-hero: clamp(2.5rem, 5vw, 3.3125rem); /* 40px → 53px */

    /* Line heights — BetterStack */
    --gwww-leading-hero: 1.1;    /* 110% */
    --gwww-leading-tight: 1.2;
    --gwww-leading-normal: 1.45; /* 145% body */
    --gwww-leading-relaxed: 1.65;

    /* Spacing */
    --gwww-section-py: clamp(3.75rem, 8vw, 7.5rem);
    --gwww-container-max: 1110px; /* BetterStack exact */
    --gwww-container-px: clamp(1rem, 4vw, 2rem);
    --gwww-gap: 1.5rem;
    --gwww-gap-lg: 2.5rem;

    /* Border radius — BetterStack */
    --gwww-radius-sm: 6px;
    --gwww-radius: 10px;
    --gwww-radius-lg: 12px;  /* rounded-xl */
    --gwww-radius-xl: 16px;
    --gwww-radius-full: 9999px;

    /* Shadows */
    --gwww-shadow: 0 2px 8px rgba(0,0,0,0.3);
    --gwww-shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --gwww-shadow-glow: 0 0 20px var(--gwww-accent-glow);

    /* Transitions */
    --gwww-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gwww-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-index */
    --gwww-z-header: 40; /* BetterStack z-40 */
    --gwww-z-modal: 200;
    --gwww-z-toast: 300;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: #2A2B33 #0A0B0F;
}

/* Custom scrollbar — sleek gray */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0B0F;
}
::-webkit-scrollbar-thumb {
    background: #2A2B33;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3A3B44;
}

body {
    font-family: var(--gwww-font-body);
    font-size: var(--gwww-font-size-base);
    line-height: var(--gwww-leading-normal);
    color: var(--gwww-text-primary);
    background-color: var(--gwww-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--gwww-accent);
    text-decoration: none;
    transition: color var(--gwww-transition);
}
a:hover { color: var(--gwww-accent-light); }

button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gwww-font-display);
    font-weight: 500;
    line-height: var(--gwww-leading-tight);
    color: var(--gwww-text-primary);
}
h1 { font-size: var(--gwww-font-size-hero); line-height: var(--gwww-leading-hero); }
h2 { font-size: var(--gwww-font-size-4xl); }
h3 { font-size: var(--gwww-font-size-3xl); }
h4 { font-size: var(--gwww-font-size-2xl); }
h5 { font-size: var(--gwww-font-size-xl); }
h6 { font-size: var(--gwww-font-size-lg); }

p {
    color: var(--gwww-text-secondary);
    line-height: var(--gwww-leading-normal);
}

/* ── Layout ── */
.gwww-container {
    width: 100%;
    max-width: var(--gwww-container-max);
    margin: 0 auto;
    padding-left: var(--gwww-container-px);
    padding-right: var(--gwww-container-px);
}

.gwww-section {
    padding-top: var(--gwww-section-py);
    padding-bottom: var(--gwww-section-py);
    position: relative;
}
.gwww-section--dark { background-color: var(--gwww-bg-section); }

.gwww-section__header {
    text-align: center;
    margin-bottom: var(--gwww-gap-lg);
}
.gwww-section__subtitle {
    font-family: var(--gwww-font-body);
    font-size: var(--gwww-font-size-xl);
    color: var(--gwww-text-secondary);
    margin-top: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* ── Separator gradient ── */
.gwww-separator-gradient {
    height: 1px;
    border: none;
    background: linear-gradient(to right, transparent, rgba(140,145,160,0.20), transparent);
    max-width: 1110px;
    margin: 0 auto;
}

/* ── Grid ── */
.gwww-grid { display: grid; gap: var(--gwww-gap); }
.gwww-grid--2 { grid-template-columns: 1fr; }
.gwww-grid--3 { grid-template-columns: 1fr; }
.gwww-grid--4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .gwww-grid--2 { grid-template-columns: repeat(2, 1fr); }
    .gwww-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .gwww-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .gwww-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .gwww-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1440px) {
    .gwww-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Cards — BetterStack style with backdrop-blur ── */
.gwww-card {
    background: var(--gwww-bg-card);
    border: 1px solid var(--gwww-border-card);
    border-radius: var(--gwww-radius-lg);
    padding: var(--gwww-gap);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform var(--gwww-transition), box-shadow var(--gwww-transition), border-color var(--gwww-transition);
}
.gwww-card:hover {
    transform: scale(1.01);
    border-color: var(--gwww-border-hover);
}
.gwww-card--glow:hover {
    box-shadow: var(--gwww-shadow-glow);
}

/* ── Buttons — BetterStack gradient ── */
.gwww-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-family: var(--gwww-font-body);
    font-size: var(--gwww-font-size-base);
    font-weight: 500;
    border-radius: var(--gwww-radius);
    transition: all var(--gwww-transition);
    white-space: nowrap;
    min-height: 44px;
    text-decoration: none;
    line-height: 1;
}

.gwww-btn-primary {
    background: var(--gwww-btn-gradient);
    color: #111;
    border: none;
    box-shadow: 0 2px 12px var(--gwww-accent-glow);
    font-weight: 600;
}
.gwww-btn-primary:hover {
    background: var(--gwww-btn-gradient-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 24px var(--gwww-accent-glow);
    color: #000;
}

.gwww-btn-secondary {
    background: transparent;
    color: var(--gwww-text-primary);
    border: 1px solid var(--gwww-border);
}
.gwww-btn-secondary:hover {
    border-color: var(--gwww-accent);
    color: var(--gwww-accent);
    background: rgba(156, 163, 175, 0.05);
}

.gwww-btn-cta {
    background: var(--gwww-cta);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px var(--gwww-cta-glow);
}
.gwww-btn-cta:hover {
    background: var(--gwww-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--gwww-cta-glow);
    color: #fff;
}

.gwww-btn--lg { padding: 0.75rem 2rem; font-size: var(--gwww-font-size-md); }
.gwww-btn--sm { padding: 0.375rem 1rem; font-size: var(--gwww-font-size-sm); }

/* ── Form Elements ── */
.gwww-input {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--gwww-bg-input);
    border: 1px solid var(--gwww-border);
    border-radius: var(--gwww-radius);
    color: var(--gwww-text-primary);
    font-size: var(--gwww-font-size-base);
    transition: border-color var(--gwww-transition), box-shadow var(--gwww-transition);
    min-height: 44px;
}
.gwww-input:focus {
    outline: none;
    border-color: var(--gwww-accent);
    box-shadow: 0 0 0 3px var(--gwww-accent-glow);
}
.gwww-input::placeholder { color: var(--gwww-text-muted); }
.gwww-input--error { border-color: var(--gwww-error); box-shadow: 0 0 0 3px var(--gwww-error-bg); }

.gwww-label {
    display: block;
    font-size: var(--gwww-font-size-sm);
    font-weight: 500;
    color: var(--gwww-text-secondary);
    margin-bottom: 0.375rem;
}
.gwww-error-msg { font-size: var(--gwww-font-size-xs); color: var(--gwww-error); margin-top: 0.25rem; }

/* ── Badge ── */
.gwww-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: var(--gwww-font-size-xs);
    font-weight: 600;
    border-radius: var(--gwww-radius-full);
    background: rgba(156, 163, 175, 0.1);
    color: var(--gwww-accent);
    border: 1px solid rgba(156, 163, 175, 0.2);
}
.gwww-badge--success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--gwww-cta);
    border-color: rgba(34, 197, 94, 0.2);
}

/* ── Focus (WCAG) ── */
:focus-visible { outline: 2px solid var(--gwww-accent); outline-offset: 2px; }

/* ── SR Only ── */
.gwww-sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Divider ── */
.gwww-divider { height: 1px; background: var(--gwww-border); border: none; margin: var(--gwww-gap-lg) 0; }

/* ── Text Utilities ── */
.gwww-text-center { text-align: center; }
.gwww-text-accent { color: var(--gwww-accent); }
.gwww-text-muted { color: var(--gwww-text-muted); }
.gwww-text-sm { font-size: var(--gwww-font-size-sm); }
.gwww-text-lg { font-size: var(--gwww-font-size-lg); }
.gwww-font-bold { font-weight: 700; }
.gwww-font-semibold { font-weight: 600; }
.gwww-font-medium { font-weight: 500; }

/* Gradient text — subtle white-to-gray */
.gwww-text-gradient {
    background: linear-gradient(135deg, #fff, #9CA3AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Spacing ── */
.gwww-mt-1 { margin-top: 0.5rem; }
.gwww-mt-2 { margin-top: 1rem; }
.gwww-mt-3 { margin-top: 1.5rem; }
.gwww-mt-4 { margin-top: 2rem; }
.gwww-mb-1 { margin-bottom: 0.5rem; }
.gwww-mb-2 { margin-bottom: 1rem; }
.gwww-mb-3 { margin-bottom: 1.5rem; }
.gwww-mb-4 { margin-bottom: 2rem; }

/* ── Flex ── */
.gwww-flex { display: flex; }
.gwww-flex-center { display: flex; align-items: center; justify-content: center; }
.gwww-flex-between { display: flex; align-items: center; justify-content: space-between; }
.gwww-flex-col { flex-direction: column; }
.gwww-flex-wrap { flex-wrap: wrap; }
.gwww-gap-1 { gap: 0.5rem; }
.gwww-gap-2 { gap: 1rem; }
.gwww-gap-3 { gap: 1.5rem; }

/* ============================================
   Header — z-40, 52px, backdrop-blur-2xl
   ============================================ */
.gwww-main {
    overflow-x: hidden;
    position: relative;
}

/* Global ambient background — continuous glow across all sections */
.gwww-main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 3%, rgba(180, 190, 210, 0.07) 0%, transparent 35%),
        radial-gradient(ellipse at 20% 20%, rgba(140, 155, 175, 0.04) 0%, transparent 30%),
        radial-gradient(ellipse at 80% 15%, rgba(140, 155, 175, 0.04) 0%, transparent 30%),
        radial-gradient(ellipse at 60% 40%, rgba(150, 165, 185, 0.035) 0%, transparent 25%),
        radial-gradient(ellipse at 30% 60%, rgba(140, 155, 175, 0.03) 0%, transparent 25%),
        radial-gradient(ellipse at 70% 80%, rgba(140, 155, 175, 0.025) 0%, transparent 20%);
    pointer-events: none;
    z-index: 0;
}

.gwww-main > * {
    position: relative;
    z-index: 1;
}

.gwww-header {
    z-index: 40;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    position: fixed;
    background: rgba(10, 11, 15, 0.80);
}
/* Offset for WordPress admin bar */
body.admin-bar .gwww-header {
    top: 32px;
}
@media (max-width: 782px) {
    body.admin-bar .gwww-header {
        top: 46px;
    }
}
.gwww-header::before {
    content: '';
    position: absolute;
    z-index: -10;
    inset: 0;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.gwww-header__nav-wrap {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(140, 145, 160, 0.15);
    margin: 0 1.25rem;
    max-width: 1110px;
    height: 52px;
    font-size: 13px;
    line-height: 100%;
    color: #B0B7C8;
}

.gwww-header__left {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
}

.gwww-header__logo {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    text-decoration: none;
}
.gwww-header__logo-text {
    font-family: var(--gwww-font-display);
    font-size: 18px;
    font-weight: 700;
    color: #EAEDF2;
    letter-spacing: -0.02em;
}
.gwww-header__logo-accent { color: #D1D5DB; }

.gwww-header__links {
    display: none;
    align-items: stretch;
    gap: 1rem;
}
.gwww-header__links a {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: #B0B7C8;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.15s ease;
    text-decoration: none;
}
.gwww-header__links a:hover { color: #fff; }
.gwww-header__link--active {
    color: #fff !important;
    position: relative;
}
.gwww-header__link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: var(--gwww-text-primary);
    border-radius: 1px;
}

@media (min-width: 768px) {
    .gwww-header__links { display: flex; }
    .gwww-header__hamburger { display: none !important; }
    .gwww-header__close { display: none !important; }
}

.gwww-header__right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* CTA button in header — small rounded gradient */
.gwww-header__panel-link {
    padding: 0 0.5rem;
    color: #B0B7C8;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.15s ease;
}
.gwww-header__panel-link:hover { color: #fff; }

.gwww-header__cta-btn {
    padding: 0 0.5rem;
    height: 27px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    background: var(--gwww-btn-gradient);
    color: #111;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: filter 0.15s ease;
}
.gwww-header__cta-btn:hover { filter: brightness(1.15); color: #000; }

/* Hamburger & close */
.gwww-header__hamburger,
.gwww-header__close {
    padding: 0.5rem;
    color: #B0B7C8;
    background: none;
    border: none;
    cursor: pointer;
}
@media (min-width: 768px) {
    .gwww-header__hamburger,
    .gwww-header__close { display: none !important; }
}

/* Mobile menu — fixed panel, backdrop-blur */
.gwww-mobile-menu {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    top: 52px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    background: rgba(20, 21, 28, 0.80);
    color: #B0B7C8;
    max-height: calc(100dvh - 52px);
    overflow-y: auto;
}
.gwww-mobile-menu__inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem;
}
.gwww-mobile-menu__inner a {
    display: block;
    padding: 0.75rem;
    font-size: 16px;
    color: #B0B7C8;
    text-decoration: none;
    transition: color 0.15s ease;
}
.gwww-mobile-menu__inner a:hover { color: #fff; }
.gwww-mobile-menu__cta {
    margin-top: 1rem;
    text-align: center;
    width: 100%;
    height: 44px;
    font-size: 15px;
    border-radius: 8px;
}
/* (mobile menu styles are in header section above) */

/* ============================================
   Footer
   ============================================ */
.gwww-footer {
    border-top: 1px solid rgba(140,145,160,0.08);
    padding: 4rem 0 0;
}

.gwww-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .gwww-footer__top {
        grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
        gap: 2.5rem;
    }
}

.gwww-footer__brand { max-width: 260px; }
.gwww-footer__logo { display: inline-block; margin-bottom: 1rem; text-decoration: none; }

.gwww-footer__desc {
    font-size: 13px;
    color: var(--gwww-text-muted);
    line-height: 165%;
    margin-bottom: 1.25rem;
}

.gwww-footer__social {
    display: flex;
    gap: 8px;
}
.gwww-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(140,145,160,0.10);
    color: var(--gwww-text-muted);
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.gwww-footer__social a:hover {
    color: var(--gwww-text-primary);
    border-color: rgba(140,145,160,0.25);
}

.gwww-footer__heading {
    font-size: 12px;
    font-weight: 600;
    color: var(--gwww-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.gwww-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.gwww-footer__links a,
.gwww-footer__links span {
    color: var(--gwww-text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.gwww-footer__links a:hover { color: var(--gwww-text-primary); }

.gwww-footer__contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.gwww-footer__contact i {
    color: var(--gwww-text-muted);
    font-size: 12px;
    width: 14px;
    text-align: center;
    opacity: 0.6;
}

/* Trust + payments boxes */
.gwww-footer__trust-box {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(140,145,160,0.12);
    background: rgba(140,145,160,0.03);
    margin-bottom: 12px;
}
.gwww-footer__trust-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--gwww-text-primary);
    margin-bottom: 8px;
}
.gwww-footer__trust-header span { color: var(--gwww-text-muted); }
.gwww-footer__trust-rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gwww-footer__trust-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--gwww-text-primary);
    font-size: 11px;
}
.gwww-footer__trust-score {
    font-size: 13px;
    font-weight: 700;
    color: var(--gwww-text-primary);
    margin-left: 6px;
}
.gwww-footer__trust-count {
    font-size: 10px;
    color: var(--gwww-text-muted);
}
.gwww-footer__pay-box {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(140,145,160,0.12);
    background: rgba(140,145,160,0.03);
}
.gwww-footer__pay-label {
    font-size: 10px;
    color: var(--gwww-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
    opacity: 0.7;
}
.gwww-footer__pay-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.gwww-footer__pay-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--gwww-text-muted);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(140,145,160,0.12);
    background: rgba(140,145,160,0.04);
}

/* Blog heading link */
.gwww-footer__heading-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.gwww-footer__heading-link:hover { color: var(--gwww-text-primary); }

.gwww-footer__divider {
    height: 1px;
    background: rgba(140,145,160,0.08);
}

.gwww-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
}
.gwww-footer__bottom p {
    font-size: 11px;
    color: var(--gwww-text-muted);
    opacity: 0.6;
}
.gwww-footer__docs {
    display: flex;
    gap: 1.5rem;
}
.gwww-footer__docs a {
    font-size: 11px;
    color: var(--gwww-text-muted);
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.gwww-footer__docs a:hover { opacity: 1; }

@media (max-width: 767px) {
    .gwww-footer__bottom { flex-direction: column; text-align: center; }
    .gwww-footer__docs { justify-content: center; }
}


/* Header counter */
.gwww-header__counter {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--gwww-text-muted);
    white-space: nowrap;
    position: relative;
}
.gwww-header__counter-num {
    font-weight: 700;
    color: var(--gwww-text-primary);
    font-variant-numeric: tabular-nums;
    font-size: 12px;
    position: relative;
}

/* AI sparkles animation */
.gwww-header__counter-sparkles {
    display: inline-flex;
    align-items: center;
    width: 18px;
    height: 12px;
    position: relative;
    margin-left: 2px;
    flex-shrink: 0;
}
.gwww-sparkle {
    position: absolute;
    color: #D1D5DB;
    animation: gwww-sparkle-pulse 2s ease-in-out infinite;
    display: block;
}
.gwww-sparkle--1 {
    top: -1px;
    left: 2px;
    animation-delay: 0s;
}
.gwww-sparkle--2 {
    top: 4px;
    left: 10px;
    animation-delay: 0.5s;
}
.gwww-sparkle--3 {
    top: -3px;
    left: 8px;
    animation-delay: 1s;
}
@keyframes gwww-sparkle-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.7); }
    50% { opacity: 1; transform: scale(1.1); }
}

@media (max-width: 767px) {
    .gwww-header__counter { display: none; }
}


/* Header divider */
.gwww-header__divider {
    width: 1px;
    height: 16px;
    background: rgba(140,145,160,0.15);
    margin: 0 0.25rem;
}
@media (max-width: 767px) {
    .gwww-header__divider { display: none; }
}


/* Back to top */
.gwww-back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(140,145,160,0.15);
    background: #0E0F14;
    color: var(--gwww-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    z-index: 30;
    pointer-events: none;
}
.gwww-back-top--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.gwww-back-top:hover {
    border-color: rgba(140,145,160,0.3);
    color: var(--gwww-text-primary);
}
