/* ─── Reset & Base ─── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #070b56;
    --navy-light: #0f1470;
    --gold: #ffd800;
    --gold-dim: rgba(255, 216, 0, 0.12);
    --gold-glow: rgba(255, 216, 0, 0.25);
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.92);
    --white-muted: rgba(255, 255, 255, 0.55);
    --white-dim: rgba(255, 255, 255, 0.25);
    --border: rgba(255, 216, 0, 0.10);
    --radius: 20px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--navy);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ═══════════════════════════════════════════════════
   NAVBAR — SHRINKS HORIZONTALLY ON SCROLL
   ═══════════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 92%;
    max-width: 1380px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 2.8rem;
    background: #070b56;
    backdrop-filter: blur(28px) saturate(220%);
    -webkit-backdrop-filter: blur(28px) saturate(220%);
    border: 1px solid rgba(255, 216, 0, 0.10);
    border-radius: 90px;
    box-shadow:
        0 8px 48px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(255, 216, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 0.5rem;
}

/* Premium inner glow border */
nav::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 90px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 216, 0, 0.18) 0%,
            transparent 40%,
            rgba(255, 216, 0, 0.05) 60%,
            transparent 80%,
            rgba(255, 216, 0, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Secondary glow — subtle golden aura */
nav::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 92px;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 216, 0, 0.04), transparent 60%);
    pointer-events: none;
    z-index: -1;
    filter: blur(12px);
    opacity: 0.6;
    transition: opacity 0.6s;
}

/* ─── SHRINK HORIZONTALLY ON SCROLL ─── */
nav.scrolled {
    top: 0.8rem;
    width: 80%;
    max-width: 1100px;
    padding: 1rem 2.4rem;
    background: rgba(7, 11, 86, 0.75);
    border-color: rgba(255, 216, 0, 0.18);
    box-shadow:
        0 12px 56px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 216, 0, 0.04);
    backdrop-filter: blur(32px) saturate(240%);
    -webkit-backdrop-filter: blur(32px) saturate(240%);
    border-radius: 80px;
}

nav.scrolled::after {
    opacity: 0.8;
}

/* ─── Nav Logo ─── */
.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.025em;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: font-size 0.4s ease;
}
.nav-logo span {
    color: var(--gold);
    font-weight: 800;
}
nav.scrolled .nav-logo {
    font-size: 1rem;
}

/* Small decorative dot after logo */
.nav-logo .logo-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    margin-left: 4px;
    opacity: 0.6;
    transition: all 0.4s ease;
}
nav.scrolled .nav-logo .logo-dot {
    width: 4px;
    height: 4px;
}

/* ─── Nav Links ─── */
.nav-links {
    display: flex;
    gap: 2.6rem;
    list-style: none;
    align-items: center;
    margin: 0 1.2rem;
    flex-shrink: 0;
}
.nav-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.80rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
    white-space: nowrap;
}
.nav-links a:hover {
    color: var(--gold);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(255, 216, 0, 0.3));
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
}
.nav-links a:hover::after {
    width: 100%;
}
nav.scrolled .nav-links a {
    font-size: 0.72rem;
}
nav.scrolled .nav-links {
    gap: 1.8rem;
}

/* Active link indicator */
.nav-links a.active {
    color: var(--gold);
}
.nav-links a.active::after {
    width: 100%;
    opacity: 1;
}

/* ─── Get Started Button ─── */
.nav-cta {
    background: linear-gradient(145deg, #ffd700 0%, #f5a623 100%);
    color: var(--navy) !important;
    padding: 0.8rem 2.8rem;
    border-radius: 60px;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    flex-shrink: 0;
    box-shadow: 0 4px 24px rgba(255, 216, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    cursor: pointer;
}

/* Shrink button on scroll */
nav.scrolled .nav-cta {
    padding: 0.65rem 2.2rem !important;
    font-size: 0.7rem !important;
    border-radius: 50px;
    gap: 0.5rem;
}

/* Glossy overlay */
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.nav-cta:hover::before {
    opacity: 1;
}

/* Arrow animation */
.nav-cta .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.nav-cta:hover .arrow {
    transform: translateX(5px);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 48px rgba(255, 216, 0, 0.5);
    background: linear-gradient(145deg, #ffe44d 0%, #f5a623 100%);
    color: var(--navy) !important;
}
.nav-cta::after {
    display: none !important;
}

/* ─── Mobile Menu Toggle ─── */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.2rem 0.4rem;
    transition: all 0.25s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.menu-toggle:hover {
    color: var(--gold);
    background: rgba(255, 216, 0, 0.06);
    border-color: rgba(255, 216, 0, 0.12);
}
nav.scrolled .menu-toggle {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — NAVBAR
   ═══════════════════════════════════════════════════ */

/* Large desktops: even wider */
@media (min-width: 1600px) {
    nav {
        width: 88%;
        max-width: 1560px;
        padding: 1.25rem 3.5rem;
    }
    nav.scrolled {
        width: 75%;
        max-width: 1200px;
        padding: 1rem 2.8rem;
    }
    .nav-logo {
        font-size: 1.25rem;
    }
    nav.scrolled .nav-logo {
        font-size: 1.05rem;
    }
    .nav-links {
        gap: 3.2rem;
    }
    .nav-links a {
        font-size: 0.88rem;
    }
    nav.scrolled .nav-links a {
        font-size: 0.78rem;
    }
    nav.scrolled .nav-links {
        gap: 2.2rem;
    }
    .nav-cta {
        padding: 1rem 3.8rem !important;
        font-size: 0.9rem !important;
        border-radius: 70px;
    }
    nav.scrolled .nav-cta {
        padding: 0.8rem 2.8rem !important;
        font-size: 0.78rem !important;
        border-radius: 60px;
    }
}

/* Desktops & laptops */
@media (max-width: 1399px) {
    nav {
        width: 90%;
        padding: 1rem 2.4rem;
    }
    nav.scrolled {
        width: 82%;
        max-width: 1100px;
        padding: 0.85rem 2rem;
    }
    .nav-links {
        gap: 2rem;
    }
    nav.scrolled .nav-links {
        gap: 1.6rem;
    }
    .nav-cta {
        padding: 0.8rem 2.6rem !important;
        font-size: 0.78rem !important;
    }
    nav.scrolled .nav-cta {
        padding: 0.6rem 1.8rem !important;
        font-size: 0.68rem !important;
    }
}

/* Small desktops / large tablets */
@media (max-width: 1100px) {
    nav {
        width: 92%;
        padding: 0.9rem 2rem;
        border-radius: 80px;
    }
    nav.scrolled {
        width: 85%;
        max-width: 900px;
        padding: 0.7rem 1.6rem;
        border-radius: 70px;
    }
    .nav-links {
        gap: 1.6rem;
    }
    nav.scrolled .nav-links {
        gap: 1.2rem;
    }
    .nav-links a {
        font-size: 0.75rem;
    }
    nav.scrolled .nav-links a {
        font-size: 0.68rem;
    }
    .nav-cta {
        padding: 0.7rem 2rem !important;
        font-size: 0.68rem !important;
    }
    nav.scrolled .nav-cta {
        padding: 0.5rem 1.4rem !important;
        font-size: 0.58rem !important;
    }
    .nav-logo {
        font-size: 1rem;
    }
    nav.scrolled .nav-logo {
        font-size: 0.85rem;
    }
}

/* Tablets & below — mobile menu */
@media (max-width: 820px) {
    nav {
        top: 1rem;
        width: 94%;
        padding: 0.7rem 1.5rem;
        border-radius: 60px;
        gap: 0.3rem;
    }
    nav.scrolled {
        width: 90%;
        max-width: 600px;
        padding: 0.6rem 1.2rem;
        border-radius: 50px;
        top: 0.8rem;
    }
    .nav-logo {
        font-size: 0.92rem;
    }
    nav.scrolled .nav-logo {
        font-size: 0.82rem;
    }
    .nav-logo .logo-dot {
        width: 4px;
        height: 4px;
    }
    nav.scrolled .nav-logo .logo-dot {
        width: 3px;
        height: 3px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.8rem);
        left: 0.5rem;
        right: 0.5rem;
        flex-direction: column;
        background: rgba(7, 11, 86, 0.95);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        padding: 1.4rem 1.8rem;
        gap: 0.7rem;
        border-radius: 28px;
        border: 1px solid rgba(255, 216, 0, 0.08);
        margin: 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        align-items: stretch;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-links a::after {
        display: none;
    }
    nav.scrolled .nav-links a {
        font-size: 0.8rem;
    }

    .nav-cta {
        align-self: stretch;
        text-align: center;
        justify-content: center;
        margin-top: 0.4rem;
        padding: 0.6rem 1.4rem !important;
        font-size: 0.65rem !important;
        border-radius: 40px;
    }
    nav.scrolled .nav-cta {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.58rem !important;
    }
    .menu-toggle {
        display: flex;
    }
    nav.scrolled .menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* Phones */
@media (max-width: 480px) {
    nav {
        top: 0.7rem;
        width: 96%;
        padding: 0.6rem 1rem;
        border-radius: 50px;
        gap: 0.2rem;
    }
    nav.scrolled {
        width: 92%;
        max-width: 400px;
        padding: 0.5rem 0.8rem;
        border-radius: 40px;
        top: 0.5rem;
    }
    .nav-logo {
        font-size: 0.8rem;
    }
    nav.scrolled .nav-logo {
        font-size: 0.72rem;
    }
    .nav-logo .logo-dot {
        width: 3px;
        height: 3px;
        margin-left: 2px;
    }
    nav.scrolled .nav-logo .logo-dot {
        width: 2px;
        height: 2px;
    }
    .menu-toggle {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }
    nav.scrolled .menu-toggle {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    .nav-links {
        padding: 1rem 1.2rem;
        gap: 0.4rem;
        border-radius: 22px;
        top: calc(100% + 0.6rem);
        left: 0.3rem;
        right: 0.3rem;
    }
    .nav-links a {
        font-size: 0.78rem;
        padding: 0.4rem 0;
    }
    nav.scrolled .nav-links a {
        font-size: 0.72rem;
    }
    .nav-cta {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.55rem !important;
        gap: 0.4rem;
    }
    nav.scrolled .nav-cta {
        padding: 0.4rem 0.9rem !important;
        font-size: 0.48rem !important;
        gap: 0.3rem;
    }
    .nav-cta .arrow {
        font-size: 0.7rem;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    nav {
        padding: 0.5rem 0.7rem;
        width: 97%;
        border-radius: 40px;
    }
    nav.scrolled {
        padding: 0.4rem 0.6rem;
        width: 94%;
        border-radius: 32px;
    }
    .nav-logo {
        font-size: 0.7rem;
    }
    nav.scrolled .nav-logo {
        font-size: 0.62rem;
    }
    .nav-links a {
        font-size: 0.72rem;
    }
    nav.scrolled .nav-links a {
        font-size: 0.66rem;
    }
    .nav-cta {
        padding: 0.4rem 0.9rem !important;
        font-size: 0.5rem !important;
    }
    nav.scrolled .nav-cta {
        padding: 0.3rem 0.7rem !important;
        font-size: 0.44rem !important;
    }
}

/* ─── Utility ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

.gold-text {
    color: var(--gold);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}
.section-tag::before {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--gold);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-title .gold {
    color: var(--gold);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--white-muted);
    max-width: 620px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-desc {
        font-size: 0.95rem;
    }
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #f5a623);
    color: var(--navy);
    padding: 0.85rem 2.2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 24px rgba(255, 216, 0, 0.2);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(255, 216, 0, 0.35);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white-soft);
    padding: 0.85rem 2.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid var(--border);
    cursor: pointer;
    text-align: center;
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 {
    transition-delay: 0.08s;
}
.reveal-d2 {
    transition-delay: 0.16s;
}
.reveal-d3 {
    transition-delay: 0.24s;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 40%, rgba(255, 216, 0, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 216, 0, 0.02) 0%, transparent 50%),
        var(--navy);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.hero-orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 216, 0, 0.03);
    top: -200px;
    right: -100px;
}
.hero-orb--2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 216, 0, 0.02);
    bottom: -100px;
    left: -80px;
}

.hero-wrapper {
    width: 100%;
    padding-left: 5%;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 1400px) {
    .hero-wrapper {
        padding-left: 6%;
        padding-right: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.hero-content {
    max-width: 820px;
    margin: 0;
    padding: 0;
}

.hero-tag {
    display: inline-block;
    border: 1px solid rgba(255, 216, 0, 0.3);
    border-radius: 60px;
    padding: 0.35rem 1.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.8rem;
    background: rgba(255, 216, 0, 0.04);
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}
.hero-title .gold {
    color: var(--gold);
}

.hero-desc {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--white-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    color: var(--white-muted);
    font-weight: 400;
}
.hero-badge-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 7rem 0 3rem;
    }
    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.6rem);
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-badge-row {
        gap: 0.8rem;
    }
    .hero-badge-item {
        font-size: 0.65rem;
    }
    .hero-content {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 6rem 0 2.5rem;
    }
    .hero-title {
        font-size: clamp(2rem, 12vw, 2.8rem);
    }
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    .btn-group .btn-primary,
    .btn-group .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ─── PRODUCTS SECTION ─── */
.products {
    background: radial-gradient(ellipse at 60% 20%, rgba(255, 216, 0, 0.015) 0%, transparent 60%), var(--navy);
    border-top: 1px solid var(--border);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.product-card:hover {
    border-color: rgba(255, 216, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.4);
}
.product-card:hover::before {
    opacity: 1;
}

.product-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--white);
}
.product-card h3 .gold {
    color: var(--gold);
}

.product-card p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.2rem;
}

.product-card .product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: gap 0.3s;
}
.product-card .product-link:hover {
    gap: 0.8rem;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-card {
        padding: 2rem 1.5rem;
    }
}

/* ─── DECISION SYSTEMS ─── */
.systems {
    border-top: 1px solid var(--border);
    background: radial-gradient(ellipse at 40% 70%, rgba(255, 216, 0, 0.015) 0%, transparent 60%), var(--navy);
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.system-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}
.system-item:hover {
    border-color: rgba(255, 216, 0, 0.2);
    transform: translateY(-3px);
    background: rgba(255, 216, 0, 0.03);
}
.system-item .icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
    display: block;
}
.system-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.system-item p {
    font-size: 0.8rem;
    color: var(--white-muted);
    line-height: 1.5;
}

/* ─── CONSULTING ─── */
.consulting {
    border-top: 1px solid var(--border);
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 216, 0, 0.015) 0%, transparent 50%), var(--navy);
}

.consulting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1.5rem;
}

.consulting-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.consulting-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--white-muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}
.consulting-list li:last-child {
    border-bottom: none;
}
.consulting-list li .check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.consulting-cta {
    background: rgba(255, 216, 0, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
}
.consulting-cta h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}
.consulting-cta p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .consulting-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .consulting-cta {
        padding: 1.8rem;
    }
}

/* ─── CLARITY (WHY GGU) ─── */
.clarity-section {
    border-top: 1px solid var(--border);
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 216, 0, 0.02) 0%, transparent 60%), var(--navy);
    text-align: center;
}

.clarity-section .section-desc {
    margin: 0 auto 1.5rem;
}

.clarity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.clarity-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 2rem 1.5rem;
    transition: all 0.3s;
}
.clarity-item:hover {
    border-color: rgba(255, 216, 0, 0.2);
    transform: translateY(-3px);
}
.clarity-item .num {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    display: block;
    margin-bottom: 0.5rem;
}
.clarity-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.clarity-item p {
    font-size: 0.85rem;
    color: var(--white-muted);
    line-height: 1.6;
}

/* ─── ABOUT ─── */
.about-section {
    border-top: 1px solid var(--border);
    background: radial-gradient(ellipse at 60% 40%, rgba(255, 216, 0, 0.015) 0%, transparent 50%), var(--navy);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1rem;
}

.about-text p {
    color: var(--white-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-text p:last-child {
    margin-bottom: 0;
}

.about-founder {
    background: rgba(255, 216, 0, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
}
.about-founder .quote-mark {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    display: block;
}
.about-founder blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--white-soft);
    line-height: 1.7;
    margin: 0.5rem 0 1rem;
}
.about-founder .founder-name {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}
.about-founder .founder-title {
    font-size: 0.75rem;
    color: var(--white-muted);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-text p {
        font-size: 0.95rem;
    }
    .about-founder {
        padding: 1.8rem;
    }
    .about-founder blockquote {
        font-size: 1rem;
    }
}

/* ─── FINAL CTA ─── */
.final-cta {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 4rem 1.5rem;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 216, 0, 0.04) 0%, transparent 60%), var(--navy);
}
.final-cta .section-title {
    max-width: 700px;
    margin: 0 auto 0.8rem;
}
.final-cta .section-desc {
    margin: 0 auto 2rem;
}

/* ─── FOOTER ─── */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem clamp(1.5rem, 5vw, 4rem) 1.5rem;
    background: rgba(7, 11, 86, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand .brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.footer-brand .brand-name span {
    color: var(--gold);
}
.footer-brand p {
    color: var(--white-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer-col a {
    display: block;
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}
.footer-social a {
    color: var(--white-muted);
    font-size: 1.2rem;
    transition: all 0.2s;
}
.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.7rem;
    color: var(--white-dim);
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 1.5rem;
    }
    .footer-col h4 {
        margin-bottom: 0.6rem;
    }
}

/* ─── Responsive tweaks ─── */
@media (max-width: 480px) {
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }
    .section-desc {
        font-size: 0.9rem;
    }
    .hero-tag {
        font-size: 0.55rem;
        padding: 0.25rem 1rem;
    }
    .product-card {
        padding: 1.5rem 1.2rem;
    }
    .product-card h3 {
        font-size: 1.3rem;
    }
    .consulting-cta {
        padding: 1.5rem;
    }
    .consulting-cta h3 {
        font-size: 1.2rem;
    }
    .clarity-item {
        padding: 1.5rem 1rem;
    }
    .about-founder {
        padding: 1.5rem;
    }
    .about-founder .quote-mark {
        font-size: 2.5rem;
    }
    .final-cta {
        padding: 3rem 1rem;
    }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}