
:root {
    --navy: #1A3560;
    --navy-dark: #112248;
    --navy-mid: #1E3E72;
    --navy-light: #2A4E8A;
    --red: #C8222A;
    --red-hover: #A81820;
    --red-dim: rgba(200, 34, 42, 0.08);
    --bg: #F4F6FA;
    --bg2: #FFFFFF;
    --bg3: #EEF2F8;
    --surface: #FFFFFF;
    --border: #D8E2F0;
    --border2: #E8EDF6;
    --text: #0F1E36;
    --text2: #3D567A;
    --text3: #7A94B8;
    --text4: #B0C3D8;
    --mono: 'JetBrains Mono', monospace;
    --display: 'Outfit', sans-serif;
    --body: 'Outfit', sans-serif;
    --shadow: 0 4px 16px rgba(26, 53, 96, 0.1);
    --shadow-lg: 0 12px 40px rgba(26, 53, 96, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* TOP BAR */
.topbar {
    background: var(--navy-dark);
    padding: 7px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-left a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s;
}

.topbar-left a:hover {
    color: #fff;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-pill {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    padding: 3px 8px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}

.lang-pill:hover, .lang-pill.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* NAV */
nav {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(17, 35, 72, 0.4);
    border-bottom: 3px solid var(--red);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    transition: transform 0.25s ease;
}

/* main links */
.nav-menu > li {
    position: relative; /* IMPORTANT for submenu positioning */
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    transition: all 0.18s;
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    min-width: 200px;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

/* submenu items */
.submenu li a {
    display: block;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: 0.18s;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* show on hover */
.nav-menu > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    transition: all 0.18s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-btn {
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.18s;
}

.nav-btn:hover {
    background: var(--red-hover);
    box-shadow: 0 4px 14px rgba(200, 34, 42, 0.4);
}


/* HIDE TOGGLE ON DESKTOP */
.nav-toggle {
    display: none;
    font-size: 22px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* =========================
   MOBILE NAV IMPROVEMENT
========================= */
@media (max-width: 900px) {

    .nav-inner {
        padding: 0 16px;
        height: 60px;
    }

    /* show hamburger */
    .nav-toggle {
        display: block;
    }

    /* turn menu into drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 70px 16px 20px;
        gap: 0;

        transform: translateX(-100%);
        transition: transform 0.25s ease;
        box-shadow: var(--shadow-lg);
        z-index: 9999;
    }

    /* open state */
    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        width: 100%;
        padding: 14px 12px;
        border-radius: 8px;
        font-size: 15px;
    }

    /* disable hover dropdown on mobile */
    .nav-menu > li:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* submenu becomes accordion */
    .submenu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding-left: 20px;
    }

    .nav-menu > li.open .submenu {
        display: block;
    }

    .submenu li a {
        padding: 5px 0;
        font-size: 14px;
    }

    /* overlay feel optional */
    body.menu-open {
        overflow: hidden;
    }

    /* IMPORTANT: submenu default hidden on mobile */
    .has-submenu.open .submenu {
        display: block;
    }

    html {
        overflow: auto;
    }
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 48px 90px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 6px #4ADE80;
    animation: blink 2s infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: 0.3
    }
}

h1.hero-title {
    font-family: var(--display);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 20px;
}

h1.hero-title em {
    font-style: normal;
    color: #FF9A3C;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-red:hover {
    background: var(--red-hover);
    box-shadow: 0 6px 20px rgba(200, 34, 42, 0.4);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 500;
    padding: 13px 24px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-decoration: none;
    transition: all 0.2s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 36px;
}

.hstat {
    flex: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 24px;
}

.hstat:last-child {
    border-right: none;
    margin-right: 0;
}

.hstat-num {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 800;
    color: #FF9A3C;
    line-height: 1;
    margin-bottom: 4px;
}

.hstat-lbl {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.42);
}

/* STRATEGIES PANEL — replaces live feed */
.strat-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
}

.strat-hdr {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.strat-title {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.strat-subtitle {
    display: flex;
    gap: 16px;
}

.strat-col-lbl {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.06em;
}

.strat-body {
    padding: 8px 0;
}

.strat-row {
    display: grid;
    grid-template-columns: 1fr 64px 64px;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s;
}

.strat-row:last-child {
    border-bottom: none;
}

.strat-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.strat-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.score-cell {
    text-align: center;
}

.score-bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.score-num {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
}

.score-bar {
    width: 44px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 2px;
}

/* profitability = green scale */
.prof .score-num {
    color: #4ADE80;
}

.prof .score-fill {
    background: #4ADE80;
}

/* toxicity = red/amber scale */
.tox-high .score-num {
    color: #FF6B6B;
}

.tox-high .score-fill {
    background: #FF6B6B;
}

.tox-mid .score-num {
    color: #FFBD2E;
}

.tox-mid .score-fill {
    background: #FFBD2E;
}

.tox-low .score-num {
    color: #4ADE80;
}

.tox-low .score-fill {
    background: #4ADE80;
}

.strat-ftr {
    padding: 11px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.strat-ftr-txt {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--mono);
}

.strat-ftr-link {
    font-size: 12px;
    font-weight: 600;
    color: #FF9A3C;
    text-decoration: none;
}

.strat-ftr-link:hover {
    text-decoration: underline;
}

/* CONTAINER */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* SECTION COMMONS */
.section-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
    display: block;
}

h2.section-title {
    font-family: var(--display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 12px;
}

h2.section-title span {
    color: var(--navy);
}

h2.section-title em {
    font-style: normal;
    color: var(--red);
}

.section-sub {
    font-size: 15.5px;
    color: var(--text2);
    max-width: 560px;
    font-weight: 400;
    line-height: 1.65;
}

/* TRUST STRIP */
.trust-strip {
    background: var(--navy-dark);
    padding: 0 48px;
}

.trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.t-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding-right: 24px;
    margin-right: 24px;
}

.t-item:last-child {
    border-right: none;
    margin-right: 0;
}

.t-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.t-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1px;
}

.t-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
}

/* CATEGORIES */
.cats-section {
    padding: 40px 0;
}

.cats-hdr {
    margin-bottom: 44px;
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 34px 30px;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.cat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(26, 53, 96, 0.2);
}

.cat-card:hover::after {
    transform: scaleX(1);
}

.cat-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

h3.cat-title {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.cat-desc {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 18px;
}

.cat-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cat-arrow {
    transition: transform 0.2s;
}

.cat-card:hover .cat-arrow {
    transform: translateX(5px);
}

/* PRODUCTS */
.products-section {
    padding: 40px 0;
    background: var(--bg3);
}

.prod-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px;
}

.view-all {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 2px;
    transition: all 0.2s;
    white-space: nowrap;
    margin-bottom: 4px;
}

.view-all:hover {
    color: var(--red);
    border-color: var(--red);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.22s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(26, 53, 96, 0.25);
}

.product-card.featured {
    border-color: var(--navy);
    box-shadow: 0 0 0 2px rgba(26, 53, 96, 0.12);
}

.prod-badge {
    position: absolute;
    top: -1px;
    right: 18px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0 0 6px 6px;
}

.prod-badge.popular {
    background: var(--navy);
}

.prod-badge.sale {
    background: var(--red);
}

.prod-badge.free {
    background: #16803A;
}

.prod-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text3);
    background: var(--bg3);
    border-radius: 4px;
    padding: 3px 8px;
    margin-bottom: 14px;
}

h3.product-name {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.35;
}

.product-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.product-price del {
    font-size: 13px;
    color: var(--text4);
    text-decoration: line-through;
    margin-right: 4px;
    font-weight: 400;
}

.product-price ins {
    color: var(--red);
    text-decoration: none;
}

.price-free {
    color: #16803A;
}

.prod-arrow {
    width: 34px;
    height: 34px;
    background: var(--bg3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 14px;
    transition: all 0.2s;
    border: 1px solid var(--border);
}

.product-card:hover .prod-arrow {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* ABOUT */
.about-section {
    padding: 40px 0;
    background: var(--bg2);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-left h2 {
    margin-bottom: 18px;
}

.about-left p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-left p strong {
    color: var(--text);
    font-weight: 600;
}

.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.pillar {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px 20px;
    border-left: 3px solid var(--navy);
}

.pillar-num {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3px;
}

.pillar-lbl {
    font-size: 12.5px;
    color: var(--text2);
}

.terminal {
    background: var(--navy-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.term-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 11px 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.td {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.td:nth-child(1) {
    background: #FF5F57
}

.td:nth-child(2) {
    background: #FFBD2E
}

.td:nth-child(3) {
    background: #28CA41
}

.term-ttl {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 8px;
}

.term-body {
    padding: 20px 24px;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 2;
}

.tc {
    color: rgba(255, 255, 255, 0.2);
}

.tk {
    color: #7DBBFF;
}

.tv {
    color: #FF9A3C;
}

.ts {
    color: #FFD580;
}

.tn {
    color: #FF8C9E;
}

.tb {
    color: rgba(255, 255, 255, 0.5);
}

.tg {
    color: #4ADE80;
}

/* FAQ */
.faq-section {
    padding: 40px 0;
}

.faq-inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq-hdr {
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-btn h3 {
    font-family: var(--display);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.25s;
}

.faq-item.open .faq-icon {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: rotate(45deg);
}

.faq-item.open .faq-btn h3 {
    color: var(--navy);
}

.faq-answer {
    display: none;
    font-size: 14.5px;
    color: var(--text2);
    line-height: 1.7;
    padding-bottom: 22px;
    max-width: 680px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* BLOG */
.blog-section {
    padding: 40px 0;
    background: var(--bg3);
}

.blog-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.22s;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.blog-thumb {
    height: 155px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
}

.blog-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 34, 72, 0.5) 0%, transparent 50%);
}

.blog-body {
    padding: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
}

.blog-cat {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-dim);
    padding: 2px 8px;
    border-radius: 3px;
}

.blog-date {
    font-size: 11.5px;
    color: var(--text3);
}

h3.blog-title {
    font-family: var(--display);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-card:hover h3.blog-title {
    color: var(--navy);
}

.blog-excerpt {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 80px 48px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin-bottom: 16px;
}

.cta-inner h2 em {
    font-style: normal;
    color: #FF9A3C;
}

.cta-inner p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-white:hover {
    background: #EEF4FF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* FOOTER */
footer {
    background: var(--navy-dark);
    padding: 60px 48px 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.footer-brand img {
    height: 34px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-middle {
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 20px;
}

.footer-copy {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.22);
    white-space: nowrap;
}

/* Restricted countries */
.footer-restricted {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1.65;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-restricted strong {
    color: rgba(255, 255, 255, 0.35);
}

/* Legal disclaimer block */
.footer-legal {
    background: rgba(0, 0, 0, 0.25);
    margin: 0 -48px;
    padding: 28px 48px;
}

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

.footer-legal p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    margin-bottom: 12px;
}

.footer-legal p:last-child {
    margin-bottom: 0;
}

.footer-legal strong {
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal .risk-caps {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-trademark {
    text-align: center;
    padding: 16px 48px;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.3);
    margin: 0 -48px;
}

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

.hero-content {
    animation: fadeUp 0.6s ease both;
}

.hero-panel {
    animation: fadeUp 0.65s 0.12s ease both;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

    .cats-grid, .products-grid, .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .topbar .topbar-left, .trust-strip, .nav-inner .nav-right {
        display: none;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .hero {
        padding: 60px 20px 70px;
    }

    .container {
        padding: 0 20px;
    }

    .cats-grid, .products-grid, .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    h1.hero-title {
        font-size: 34px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    footer {
        padding: 48px 20px 28px;
    }

    .topbar-right {
        justify-content: center;
        width: 100%;
        gap: 8px;
        flex-wrap: wrap; /* allows multiple lines if needed */
    }

    .lang-pill {
        padding: 2px 4px;
        font-size: 12px;
        text-align: center;
        min-width: 22px;
    }
}

.blog-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* 🔥 key */
    overflow: hidden;
    border-radius: 12px; /* optional */
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 prevents distortion */
    display: block;
}

.top_baner {
    text-align: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
    padding: 0;
    overflow: hidden;
}

/* make image responsive */
.top_baner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* optional: nicer hover on desktop */
.top_baner a {
    display: block;
}

.hero.has-top-baner {
    padding-top: 10px;
}