/* =====================================================================
   Metal Next Bazar - design system
   Light is the primary theme; dark is a full industrial repaint.
   Every colour is a token so both themes stay consistent.
   ===================================================================== */

/* ---------- Tokens ------------------------------------------------ */
:root {
    --brand:          #0B6E4F;
    --brand-strong:   #075139;
    --brand-bright:   #10B981;
    --brand-soft:     #E9F6F0;
    --brand-line:     #BFE3D3;

    --ink:            #0A0F0D;
    --ink-2:          #21302B;
    --muted:          #5C6E68;
    --muted-2:        #849690;

    --bg:             #FFFFFF;
    --bg-soft:        #F6F9F8;
    --bg-sunk:        #EEF3F1;
    --surface:        #FFFFFF;
    --surface-2:      #FBFCFC;

    --line:           #E3EAE7;
    --line-strong:    #D2DCD8;

    --steel:          #64748B;
    --silver:         #CBD5D1;
    --amber:          #D97706;
    --danger:         #DC2626;
    --success:        #059669;

    --shadow-sm:  0 1px 2px rgba(10, 25, 20, .06), 0 1px 3px rgba(10, 25, 20, .04);
    --shadow-md:  0 4px 12px rgba(10, 25, 20, .07), 0 2px 4px rgba(10, 25, 20, .04);
    --shadow-lg:  0 18px 40px rgba(10, 25, 20, .10), 0 4px 12px rgba(10, 25, 20, .05);
    --shadow-xl:  0 32px 70px rgba(10, 25, 20, .14), 0 8px 20px rgba(10, 25, 20, .06);

    --glass-bg:     rgba(255, 255, 255, .72);
    --glass-border: rgba(255, 255, 255, .65);

    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --font-display: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    --font-body:    'Plus Jakarta Sans', 'Noto Sans Devanagari', 'Segoe UI', system-ui, -apple-system, sans-serif;

    --container: 1200px;
    --nav-h: 74px;

    --ease: cubic-bezier(.22, .61, .36, 1);

    color-scheme: light;
}

html[data-theme="dark"] {
    --brand:          #10B981;
    --brand-strong:   #34D399;
    --brand-bright:   #34D399;
    --brand-soft:     #0F2A22;
    --brand-line:     #1C4A3B;

    --ink:            #ECF3F0;
    --ink-2:          #C6D5D0;
    --muted:          #8FA39D;
    --muted-2:        #6E837D;

    --bg:             #060909;
    --bg-soft:        #0B100F;
    --bg-sunk:        #0E1514;
    --surface:        #101817;
    --surface-2:      #141D1B;

    --line:           #1D2927;
    --line-strong:    #2A3936;

    --silver:         #3A4A46;

    --shadow-sm:  0 1px 2px rgba(0, 0, 0, .5);
    --shadow-md:  0 4px 14px rgba(0, 0, 0, .5);
    --shadow-lg:  0 20px 44px rgba(0, 0, 0, .55);
    --shadow-xl:  0 34px 76px rgba(0, 0, 0, .62);

    --glass-bg:     rgba(16, 24, 23, .72);
    --glass-border: rgba(255, 255, 255, .07);

    color-scheme: dark;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background .35s var(--ease), color .35s var(--ease);
}

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.02em;
    margin: 0 0 .6em;
    color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.9rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.1vw, 2.7rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.2rem, 1rem + .8vw, 1.55rem); }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1.1em; color: var(--ink-2); }

a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-strong); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; color: var(--ink-2); }

:focus-visible {
    outline: 3px solid var(--brand-bright);
    outline-offset: 3px;
    border-radius: 6px;
}

::selection { background: var(--brand); color: #fff; }

/* ---------- Layout ------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 22px;
}

.section { padding: clamp(56px, 7vw, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--sunk { background: var(--bg-sunk); }

.section-head {
    max-width: 720px;
    margin: 0 auto clamp(34px, 4vw, 58px);
    text-align: center;
}
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }
.section-head--left { margin-inline: 0; text-align: left; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    padding: 7px 15px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-bright);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-bright) 25%, transparent);
}

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------- Buttons ----------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: -.01em;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease),
                background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    color: #fff;
    box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--brand) 70%, transparent);
}
.btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -12px color-mix(in srgb, var(--brand) 80%, transparent);
}

.btn--wa {
    background: #25D366;
    color: #06301A;
    box-shadow: 0 10px 24px -12px rgba(37, 211, 102, .8);
}
.btn--wa:hover { background: #1FBE5B; color: #06301A; transform: translateY(-2px); }

.btn--ghost {
    background: var(--surface);
    color: var(--ink);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.btn--glass {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.btn--glass:hover { background: rgba(255, 255, 255, .24); color: #fff; transform: translateY(-2px); }

.btn--sm { padding: 9px 18px; font-size: .86rem; }
.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Header ------------------------------------------------ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    height: var(--nav-h);
}

.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand__mark {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: linear-gradient(140deg, var(--brand) 0%, var(--brand-strong) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: -.04em;
    box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--brand) 75%, transparent);
    flex: none;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.04rem;
    letter-spacing: -.03em;
    color: var(--ink);
}
.brand__sub {
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav a {
    position: relative;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink-2);
    transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--brand); background: var(--brand-soft); }
.nav a.is-active { color: var(--brand); font-weight: 600; }
.nav a.is-active::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 3px;
    height: 2px;
    border-radius: 2px;
    background: var(--brand-bright);
}

.header-actions { display: flex; align-items: center; gap: 8px; flex: none; }

.social-links { display: flex; gap: 4px; }
.social-links a {
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 9px;
    color: var(--muted);
    transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.social-links a:hover { color: var(--brand); background: var(--brand-soft); transform: translateY(-2px); }
.social-links svg { width: 17px; height: 17px; }

/* Theme toggle */
.theme-toggle {
    position: relative;
    width: 58px; height: 31px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: var(--bg-sunk);
    cursor: pointer;
    padding: 0;
    flex: none;
    transition: background .3s var(--ease), border-color .3s var(--ease);
}
.theme-toggle__thumb {
    position: absolute;
    top: 2px; left: 2px;
    width: 25px; height: 25px;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    display: grid; place-items: center;
    transition: transform .38s var(--ease), background .3s var(--ease);
}
html[data-theme="dark"] .theme-toggle__thumb { transform: translateX(27px); }
.theme-toggle svg { width: 14px; height: 14px; color: var(--brand); }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun  { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    border-radius: 11px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex: none;
}
.nav-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    position: relative;
    transition: background .2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .28s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero -------------------------------------------------- */
.hero {
    position: relative;
    isolation: isolate;
    padding: clamp(72px, 9vw, 132px) 0 clamp(64px, 8vw, 108px);
    overflow: hidden;
    background: #06110D;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .62;
    transform: scale(1.06);
    animation: heroPan 26s var(--ease) infinite alternate;
}
@keyframes heroPan {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to   { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}
.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(85% 65% at 16% 22%, rgba(9, 92, 66, .58) 0%, transparent 64%),
        linear-gradient(180deg, rgba(4, 12, 9, .70) 0%, rgba(4, 12, 9, .52) 42%, rgba(4, 12, 9, .90) 100%);
}
.hero__grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: radial-gradient(70% 60% at 50% 35%, #000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(70% 60% at 50% 35%, #000 0%, transparent 78%);
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: clamp(34px, 4vw, 62px);
    align-items: center;
}

.hero__content { max-width: 640px; }
.hero .eyebrow {
    color: #9BF0CE;
    background: rgba(16, 185, 129, .13);
    border-color: rgba(16, 185, 129, .3);
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent {
    background: linear-gradient(100deg, #34D399 0%, #6EE7B7 55%, #A7F3D0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__sub {
    font-size: clamp(1rem, .95rem + .3vw, 1.16rem);
    color: rgba(233, 244, 240, .82);
    max-width: 560px;
    margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 34px; }

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}
.hero__proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .87rem;
    color: rgba(233, 244, 240, .72);
}
.hero__proof-item svg { width: 17px; height: 17px; color: #34D399; flex: none; }

/* Live rate ticker card in the hero */
.rate-panel {
    background: rgba(14, 24, 20, .58);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    box-shadow: 0 34px 70px -28px rgba(0, 0, 0, .8);
}
.rate-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.rate-panel__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.rate-panel__date { font-size: .76rem; color: rgba(233, 244, 240, .6); }

.live-dot {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #6EE7B7;
}
.live-dot::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #34D399;
    animation: pulse 1.9s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, .7); }
    70%  { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.rate-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .08);
}
.rate-row:last-of-type { border-bottom: 0; }
.rate-row__icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, .07);
    flex: none;
}
.rate-row__icon svg { width: 17px; height: 17px; color: #A7F3D0; }
.rate-row__name { flex: 1; min-width: 0; }
.rate-row__name strong {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rate-row__name span { font-size: .74rem; color: rgba(233, 244, 240, .55); }
.rate-row__price { text-align: right; flex: none; }
.rate-row__price b {
    display: block;
    font-family: var(--font-display);
    font-size: .96rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
}
.rate-row__price span { font-size: .72rem; color: rgba(233, 244, 240, .5); }

.trend {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
}
.trend svg { width: 11px; height: 11px; }
.trend--up   { color: #34D399; background: rgba(52, 211, 153, .14); }
.trend--down { color: #F87171; background: rgba(248, 113, 113, .14); }
.trend--flat { color: #94A3B8; background: rgba(148, 163, 184, .14); }

.rate-panel__foot {
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.rate-panel__note {
    font-size: .72rem;
    color: rgba(233, 244, 240, .5);
    margin: 11px 0 0;
    line-height: 1.5;
}

/* ---------- Stats / counters -------------------------------------- */
.stats {
    position: relative;
    margin-top: -1px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stat {
    padding: clamp(30px, 4vw, 46px) 26px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 1.4rem + 1.9vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 9px;
}
.stat__label {
    font-size: .87rem;
    color: var(--muted);
    font-weight: 500;
    margin: 0;
}

/* ---------- Cards ------------------------------------------------- */
.card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-bright) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-line);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
    width: 52px; height: 52px;
    border-radius: 15px;
    display: grid; place-items: center;
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    margin-bottom: 18px;
}
.card__icon svg { width: 25px; height: 25px; color: var(--brand); }

.card h3 { margin-bottom: 8px; font-size: 1.16rem; }
.card p { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }

.card__rate {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--line-strong);
}
.card__rate b {
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--ink);
}
.card__rate span { font-size: .82rem; color: var(--muted); }

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .89rem;
    font-weight: 600;
    color: var(--brand);
}
.card__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Steps ------------------------------------------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    gap: 26px;
    counter-reset: step;
}
.step {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 28px 28px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step__num {
    position: absolute;
    top: -19px; left: 28px;
    width: 42px; height: 42px;
    border-radius: 13px;
    display: grid; place-items: center;
    background: linear-gradient(140deg, var(--brand) 0%, var(--brand-strong) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 22px -10px color-mix(in srgb, var(--brand) 80%, transparent);
}
.step h3 { margin: 12px 0 8px; font-size: 1.14rem; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- Feature split ----------------------------------------- */
.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.split__media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4 / 3;
    background: var(--bg-sunk);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 13px;
    color: var(--ink-2);
    font-size: .96rem;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0; top: .34em;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
}
.check-list li::after {
    content: "";
    position: absolute;
    left: 7px; top: .62em;
    width: 5px; height: 9px;
    border-right: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(42deg);
}

/* ---------- Blog cards -------------------------------------------- */
.post-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    height: 100%;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-line); }

.post-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-sunk);
}
.post-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
}
.post-card:hover .post-card__media img { transform: scale(1.06); }

.post-card__tag {
    position: absolute;
    top: 13px; left: 13px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--brand);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 10px;
}
.post-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.post-card__meta svg { width: 13px; height: 13px; }
.post-card h3 {
    font-size: 1.09rem;
    line-height: 1.35;
    margin-bottom: 9px;
}
.post-card h3 a { color: var(--ink); }
.post-card:hover h3 a { color: var(--brand); }
.post-card p { font-size: .9rem; color: var(--muted); margin-bottom: 16px; flex: 1; }

/* ---------- Article ----------------------------------------------- */
.article { max-width: 780px; margin: 0 auto; }
.article__hero {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 34px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    background: var(--bg-sunk);
}
.article__hero img { width: 100%; height: 100%; object-fit: cover; }

.article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 18px;
    padding-bottom: 22px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--line);
    font-size: .87rem;
    color: var(--muted);
}
.article__meta span { display: inline-flex; align-items: center; gap: 6px; }
.article__meta svg { width: 15px; height: 15px; }

.article__body { font-size: 1.05rem; line-height: 1.82; }
.article__body h2 { margin-top: 1.9em; font-size: 1.62rem; }
.article__body h3 { margin-top: 1.6em; font-size: 1.26rem; }
.article__body img { border-radius: var(--radius); margin: 1.8em 0; box-shadow: var(--shadow-md); }
.article__body blockquote {
    margin: 1.8em 0;
    padding: 18px 26px;
    border-left: 3px solid var(--brand);
    background: var(--brand-soft);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--ink-2);
}
.article__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.6em 0;
    font-size: .95rem;
}
.article__body th, .article__body td {
    padding: 11px 14px;
    border: 1px solid var(--line);
    text-align: left;
}
.article__body th { background: var(--bg-soft); font-weight: 600; }

.article__poster {
    margin: 36px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 540px;
}

.share-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 22px 0;
    margin-top: 32px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.share-row strong { font-size: .9rem; margin-right: 4px; }
.share-btn {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    transition: transform .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.share-btn:hover { transform: translateY(-3px); color: var(--brand); border-color: var(--brand); }
.share-btn svg { width: 17px; height: 17px; }

/* ---------- Forms ------------------------------------------------- */
.field { margin-bottom: 17px; }
.field label {
    display: block;
    font-size: .86rem;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 7px;
}
.field label .req { color: var(--danger); }

.input, .textarea, .select {
    width: 100%;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 12px 15px;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .textarea:focus, .select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 14%, transparent);
}
.textarea { resize: vertical; min-height: 118px; line-height: 1.6; }
.select { appearance: none; cursor: pointer; padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C6E68' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.field-error { display: block; font-size: .8rem; color: var(--danger); margin-top: 6px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 17px;
    border-radius: var(--radius-sm);
    font-size: .91rem;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.alert svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.alert--success { background: var(--brand-soft); border-color: var(--brand-line); color: var(--brand-strong); }
.alert--error   { background: color-mix(in srgb, var(--danger) 9%, transparent); border-color: color-mix(in srgb, var(--danger) 30%, transparent); color: var(--danger); }
.alert--info    { background: var(--bg-sunk); border-color: var(--line-strong); color: var(--ink-2); }

/* ---------- Popup ------------------------------------------------- */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(6, 14, 11, .62);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .34s var(--ease), visibility .34s var(--ease);
}
.popup-overlay.is-open { opacity: 1; visibility: visible; }

.popup {
    position: relative;
    width: 100%;
    max-width: 430px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: translateY(24px) scale(.96);
    opacity: 0;
    transition: transform .42s var(--ease), opacity .42s var(--ease);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}
.popup-overlay.is-open .popup { transform: translateY(0) scale(1); opacity: 1; }

.popup__head {
    position: relative;
    padding: 30px 30px 22px;
    background: linear-gradient(140deg, var(--brand) 0%, var(--brand-strong) 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.popup__head::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}
.popup__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .17);
    border: 1px solid rgba(255, 255, 255, .26);
    padding: 5px 13px;
    border-radius: 999px;
    margin-bottom: 13px;
    position: relative;
    z-index: 1;
}
.popup__head h3 { color: #fff; font-size: 1.32rem; margin-bottom: 7px; position: relative; z-index: 1; }
.popup__head p { color: rgba(255, 255, 255, .84); font-size: .89rem; margin: 0; position: relative; z-index: 1; }

.popup__close {
    position: absolute;
    top: 13px; right: 13px;
    width: 33px; height: 33px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: background .2s var(--ease), transform .2s var(--ease);
}
.popup__close:hover { background: rgba(255, 255, 255, .28); transform: rotate(90deg); }
.popup__close svg { width: 15px; height: 15px; }

.popup__body { padding: 26px 30px 30px; }
.popup__foot {
    font-size: .76rem;
    color: var(--muted);
    text-align: center;
    margin: 14px 0 0;
    line-height: 1.55;
}

/* ---------- Floating WhatsApp ------------------------------------- */
.wa-float {
    position: fixed;
    right: 20px; bottom: 20px;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 20px 12px 13px;
    border-radius: 999px;
    background: #25D366;
    color: #06301A;
    font-weight: 600;
    font-size: .92rem;
    box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .6);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); color: #06301A; box-shadow: 0 20px 42px -12px rgba(37, 211, 102, .7); }
.wa-float svg { width: 25px; height: 25px; flex: none; }
.wa-float__ring {
    position: absolute;
    left: 8px; top: 50%;
    transform: translateY(-50%);
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .55);
    animation: waRing 2.3s var(--ease) infinite;
    pointer-events: none;
}
@keyframes waRing {
    0%   { transform: translateY(-50%) scale(.85); opacity: .9; }
    100% { transform: translateY(-50%) scale(1.9); opacity: 0; }
}

/* ---------- Footer ------------------------------------------------ */
.site-footer {
    background: #070D0B;
    color: rgba(233, 244, 240, .68);
    padding: clamp(48px, 6vw, 76px) 0 0;
}
html[data-theme="dark"] .site-footer { background: #040706; border-top: 1px solid var(--line); }

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(150px, 1fr));
    gap: 38px;
    padding-bottom: 42px;
}
.site-footer h4 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 16px;
    letter-spacing: -.01em;
}
.site-footer p { color: rgba(233, 244, 240, .6); font-size: .9rem; }
.site-footer a { color: rgba(233, 244, 240, .68); font-size: .9rem; }
.site-footer a:hover { color: #6EE7B7; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }

.site-footer .brand__name { color: #fff; }
.site-footer .brand__sub  { color: rgba(233, 244, 240, .5); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .9rem;
    color: rgba(233, 244, 240, .68);
}
.footer-contact svg { width: 16px; height: 16px; color: #34D399; flex: none; margin-top: 3px; }

.footer-social { display: flex; gap: 9px; margin-top: 18px; }
.footer-social a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 11px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(233, 244, 240, .78);
    transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}
.footer-social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: .84rem;
    color: rgba(233, 244, 240, .5);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }

.footer-disclaimer {
    font-size: .78rem;
    line-height: 1.6;
    color: rgba(233, 244, 240, .42);
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 4px;
}

/* ---------- Page header (inner pages) ----------------------------- */
.page-head {
    position: relative;
    padding: clamp(52px, 6vw, 84px) 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.page-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(color-mix(in srgb, var(--brand) 6%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--brand) 6%, transparent) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(60% 70% at 50% 0%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(60% 70% at 50% 0%, #000, transparent 75%);
}
.page-head .container { position: relative; }
.page-head h1 { margin-bottom: 12px; }
.page-head p { color: var(--muted); font-size: 1.04rem; max-width: 660px; margin: 0; }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    font-size: .84rem;
    color: var(--muted);
    margin-bottom: 16px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb svg { width: 13px; height: 13px; opacity: .5; }

/* ---------- CTA band ---------------------------------------------- */
.cta-band {
    position: relative;
    border-radius: var(--radius-xl);
    padding: clamp(36px, 5vw, 60px);
    background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 55%, #0E8A63 100%);
    color: #fff;
    overflow: hidden;
    text-align: center;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 34px 34px;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, .84); max-width: 560px; margin: 0 auto 26px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Pagination -------------------------------------------- */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-top: 44px;
}
.pagination a, .pagination span {
    min-width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    padding: 0 13px;
    border-radius: 11px;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--ink-2);
    font-size: .9rem;
    font-weight: 500;
    transition: all .2s var(--ease);
}
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination .is-current {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    font-weight: 600;
}
.pagination .is-disabled { opacity: .4; pointer-events: none; }

/* ---------- Reveal animation -------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities --------------------------------------------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 28px; }
.muted { color: var(--muted); }
.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;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Responsive -------------------------------------------- */
@media (max-width: 1040px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__content { max-width: 100%; }
    .rate-panel { max-width: 520px; }
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .social-links { display: none; }

    .nav {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 16px 22px 26px;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s var(--ease);
        max-height: calc(100vh - var(--nav-h));
        overflow-y: auto;
    }
    .nav.is-open { transform: none; opacity: 1; visibility: visible; }
    .nav a { padding: 13px 14px; font-size: 1rem; }
    .nav a.is-active::after { display: none; }

    .stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(odd) { border-right: 1px solid var(--line); }

    .footer-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

@media (max-width: 620px) {
    .container { padding-inline: 18px; }
    .hero { padding-top: 54px; }
    .hero__cta .btn { width: 100%; }
    .card, .step { padding: 24px 21px; }
    .popup__head, .popup__body { padding-inline: 22px; }
    .wa-float { padding: 12px; right: 16px; bottom: 16px; }
    .wa-float span { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Print -------------------------------------------------- */
@media print {
    .site-header, .site-footer, .wa-float, .popup-overlay, .share-row { display: none !important; }
    body { background: #fff; color: #000; }
}
