/* ============ THEME TOKENS ============ */
:root {
    --navy: #183b50;
    --navy-2: #22506b;
    --amber: #f5a83c;
    --amber-2: #e8912a;
    --bg: #fdfeff;
    --bg-2: #f2f6fa;
    --panel: #0e2130;
    --panel-2: #0a1926;
    --card: #ffffff;
    --ink: #10293a;
    --muted: #5a7488;
    --line: #e3ebf1;
    --chip: #ffffff;
    --glow: rgba(245, 168, 60, 0.22);
    --shadow: 0 24px 60px rgba(16, 41, 58, 0.12);
    --hero-a: #fdfeff;
    --hero-b: #edf4f9;
}
html[data-theme="dark"] {
    --bg: #0a141d;
    --bg-2: #0d1a26;
    --panel: #0d1b28;
    --panel-2: #0a1522;
    --card: #12222f;
    --ink: #eaf3fa;
    --muted: #93acbe;
    --line: #1e3444;
    --chip: #16293a;
    --glow: rgba(245, 168, 60, 0.15);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    --hero-a: #0a141d;
    --hero-b: #0f2233;
}
/* ============ BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    transition:
        background 0.5s,
        color 0.5s;
    font-size: 16px;
    line-height: 1.6;
}
h1,
h2,
h3,
h4 {
    font-family: "Sora", sans-serif;
    letter-spacing: -0.02em;
}
img {
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
}
section {
    padding: 110px 6vw;
    position: relative;
}
.wrap {
    max-width: 1220px;
    margin: 0 auto;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
    font-family: "Sora", sans-serif;
}
.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), transparent);
}
h2.title {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 16px;
}
h2.title em {
    font-style: normal;
    color: var(--amber);
}
p.lead {
    color: var(--muted);
    font-size: 1.06rem;
    /*max-width: 660px;*/
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 16px 32px;
    border-radius: 60px;
    cursor: pointer;
    border: none;
    transition: 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.6s;
}
.btn:hover::after {
    left: 130%;
}
.btn-amber {
    background: linear-gradient(120deg, var(--amber), var(--amber-2));
    color: #0e2130;
    box-shadow: 0 12px 32px var(--glow);
}
.btn-amber:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 44px rgba(245, 168, 60, 0.45);
}
.btn-line {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-line:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-3px);
}

/* ============ HEADER ============ */
header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    padding: 16px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.4s;
}
header.scrolled {
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.1);
    padding: 10px 5vw;
    border-bottom: 1px solid var(--line);
}
.logo-link img {
    height: 30px;
    display: block;
    transition: 0.3s;
}
header.scrolled .logo-link img {
    height: 26px;
}
nav.main {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 500;
    font-size: 0.9rem;
}
nav.main a {
    position: relative;
    padding: 4px 0;
    color: var(--ink);
    opacity: 0.85;
    transition: 0.25s;
}
nav.main a:hover {
    opacity: 1;
    color: var(--amber);
}
nav.main a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: 0.3s;
    border-radius: 2px;
}
nav.main a:hover::after {
    width: 100%;
}
.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}
.nav-cta .login {
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 16px;
    opacity: 0.85;
}
.nav-cta .login:hover {
    color: var(--amber);
    opacity: 1;
}
.nav-cta .btn {
    padding: 12px 24px;
    font-size: 0.82rem;
}
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: var(--chip);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s;
    color: var(--ink);
}
.theme-toggle:hover {
    border-color: var(--amber);
    transform: rotate(20deg) scale(1.06);
}
.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.7rem;
    cursor: pointer;
    color: var(--amber);
}
@media (max-width: 1020px) {
    nav.main {
        display: none;
    }
    .burger {
        display: block;
    }
    .nav-cta .login {
        display: none;
    }
    .nav-cta .register {
        display: none;
    }
}

/* mobile nav */
.m-nav {
    position: fixed;
    inset: 0;
    background: color-mix(in srgb, var(--panel-2) 97%, transparent);
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    font-size: 1.25rem;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    transform: translateX(100%);
    transition: 0.45s;
}
.m-nav.on {
    transform: none;
}
.m-nav .close {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    background:
        radial-gradient(900px 500px at 85% 0%, var(--glow), transparent 60%),
        radial-gradient(
            700px 500px at -10% 100%,
            color-mix(in srgb, var(--navy-2) 14%, transparent),
            transparent 60%
        ),
        linear-gradient(160deg, var(--hero-a), var(--hero-b));
    overflow: hidden;
}
.hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    width: 100%;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--chip);
    border: 1.5px solid var(--line);
    padding: 9px 18px;
    border-radius: 60px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 26px;
    animation: fadeUp 0.8s 0.1s both;
}
.hero-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    animation: blip 2s infinite;
}
@keyframes blip {
    0%,
    100% {
        box-shadow: 0 0 0 0 var(--glow);
    }
    50% {
        box-shadow: 0 0 0 8px transparent;
    }
}
.hero h1 {
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    font-weight: 800;
    line-height: 1.06;
    animation: fadeUp 0.8s 0.2s both;
}
.hero h1 .spot {
    color: var(--navy);
}
html[data-theme="dark"] .hero h1 .spot {
    color: #7fb2d4;
}
.hero h1 .check {
    color: var(--amber);
}
.hero h1 .underline {
    position: relative;
    white-space: nowrap;
}
.hero h1 .underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 0.28em;
    background: var(--glow);
    z-index: -1;
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    animation: grow 1s 1s forwards cubic-bezier(0.2, 0.7, 0.3, 1);
}
@keyframes grow {
    to {
        transform: scaleX(1);
    }
}
.hero .sub {
    margin: 24px 0 30px;
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 540px;
    animation: fadeUp 0.8s 0.35s both;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.5s both;
}
.trusted {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    animation: fadeUp 0.8s 0.65s both;
}
.avatars {
    display: flex;
}
.avatars span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid var(--bg);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    font-family: "Sora", sans-serif;
}
.avatars span:first-child {
    margin-left: 0;
}
.trusted .t-txt {
    font-size: 0.88rem;
    line-height: 1.45;
}
.trusted .t-txt b {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
}
.trusted .stars {
    color: var(--amber);
    letter-spacing: 2px;
    font-size: 0.8rem;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* hero orbit visual */
.orbit-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    animation: fadeUp 1s 0.4s both;
}
.orbit-core {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: var(--card);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}
.orbit-core img {
    width: 150px;
    animation: coreFloat 5s ease-in-out infinite;
}
@keyframes coreFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed color-mix(in srgb, var(--amber) 40%, transparent);
}
.ring.r1 {
    width: 340px;
    height: 340px;
    animation: spin 30s linear infinite;
}
.ring.r2 {
    width: 470px;
    height: 470px;
    border-color: color-mix(in srgb, var(--navy-2) 35%, transparent);
    animation: spin 50s linear infinite reverse;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.pulse {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 2px solid var(--amber);
    opacity: 0;
    animation: pulseOut 3.4s ease-out infinite;
}
.pulse.p2 {
    animation-delay: 1.7s;
}
@keyframes pulseOut {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}
.orb-chip {
    position: absolute;
    background: var(--card);
    border: 1.5px solid var(--line);
    border-radius: 60px;
    padding: 10px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    box-shadow: var(--shadow);
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 4;
    animation: chipFloat 6s ease-in-out infinite;
}
.orb-chip b {
    color: var(--amber);
}
.oc1 {
    top: 8%;
    left: 6%;
    animation-delay: 0s;
}
.oc2 {
    top: 16%;
    right: 2%;
    animation-delay: 1.4s;
}
.oc3 {
    bottom: 16%;
    left: 0%;
    animation-delay: 2.8s;
}
.oc4 {
    bottom: 6%;
    right: 8%;
    animation-delay: 4.2s;
}
@keyframes chipFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
@media (max-width: 980px) {
    .hero .wrap {
        grid-template-columns: 1fr;
    }
    .orbit-wrap {
        display: none;
    }
}

/* ticker */
.ticker {
    background: var(--panel-2);
    color: #8fb2c9;
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker .track {
    display: inline-flex;
    gap: 64px;
    animation: marquee 28s linear infinite;
    padding-left: 100%;
}
.ticker span {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.ticker b {
    color: var(--amber);
}
@keyframes marquee {
    to {
        transform: translateX(-100%);
    }
}

/* ============ REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.on {
    opacity: 1;
    transform: none;
}
.reveal.d1 {
    transition-delay: 0.12s;
}
.reveal.d2 {
    transition-delay: 0.24s;
}
.reveal.d3 {
    transition-delay: 0.36s;
}

/* ============ DERMOSCOPY COMPARE ============ */
.derm {
    background: linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%);
    color: #eaf3fa;
    overflow: hidden;
}
.derm .lead,
.derm p {
    color: #9fb9cc;
}
.derm .wrap {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 64px;
    align-items: center;
}
.derm-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.derm-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 16px 18px;
    transition: 0.3s;
}
.derm-point:hover {
    border-color: rgba(245, 168, 60, 0.5);
    transform: translateX(6px);
}
.derm-point .ic {
    color: var(--amber);
    font-size: 1.1rem;
    margin-top: 2px;
}
.derm-point b {
    font-family: "Sora", sans-serif;
    font-size: 0.92rem;
    display: block;
    margin-bottom: 2px;
    color: #eaf3fa;
}
.derm-point span {
    font-size: 0.84rem;
    color: #9fb9cc;
    line-height: 1.55;
}
.derm-warn {
    margin-top: 26px;
    padding: 16px 20px;
    border-left: 3px solid var(--amber);
    background: rgba(245, 168, 60, 0.08);
    border-radius: 0 12px 12px 0;
    font-size: 0.92rem;
    color: #f3d9ae;
}
/* compare widget */
.cmp-shell {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    padding: 22px;
    backdrop-filter: blur(6px);
}
.cmp {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
    background: #0a1522;
}
.cmp img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.cmp .top {
    clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.cmp-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos, 50%);
    width: 3px;
    background: var(--amber);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 20px rgba(245, 168, 60, 0.7);
}
.cmp-handle::after {
    content: "◂ ▸";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--amber);
    color: #0e2130;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}
.cmp-tag {
    position: absolute;
    top: 14px;
    font-family: "Sora", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 40px;
    backdrop-filter: blur(6px);
    z-index: 5;
    pointer-events: none;
}
.cmp-tag.cl {
    left: 14px;
    background: rgba(14, 33, 48, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.cmp-tag.dm {
    right: 14px;
    background: rgba(245, 168, 60, 0.9);
    color: #0e2130;
}
.cmp-note {
    text-align: center;
    font-size: 0.76rem;
    color: #7e99ad;
    margin-top: 12px;
    font-style: italic;
}
.cmp-ctrl {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.cmp-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #cfe2ef;
    border-radius: 40px;
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    cursor: pointer;
    transition: 0.3s;
}
.cmp-btn:hover,
.cmp-btn.on {
    background: var(--amber);
    border-color: var(--amber);
    color: #0e2130;
}
@media (max-width: 980px) {
    .derm .wrap {
        grid-template-columns: 1fr;
    }
}

/* ============ OFFERS ============ */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin-top: 52px;
}
.card {
    background: var(--card);
    border: 1.5px solid var(--line);
    border-radius: 22px;
    padding: 36px 30px;
    transition: 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    inset: auto auto 100% 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        340px 200px at 50% 0%,
        var(--glow),
        transparent 70%
    );
    transition: 0.5s;
    opacity: 0;
}
.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--amber) 50%, var(--line));
}
.card:hover::before {
    inset: 0;
    opacity: 1;
}
.card .ico {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(140deg, var(--navy), var(--navy-2));
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 22px;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}
.card:hover .ico {
    transform: rotate(-8deg) scale(1.1);
    background: linear-gradient(140deg, var(--amber), var(--amber-2));
    color: #0e2130;
}
.card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ============ STEPS ============ */
.steps {
    background: var(--bg-2);
}
.step-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
}
.step-line::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--amber) 0 8px,
        transparent 8px 16px
    );
    opacity: 0.5;
}
.step {
    text-align: center;
    padding: 0 10px;
}
.step .n {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--amber);
    color: var(--amber);
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: 0.35s;
    box-shadow: 0 0 0 8px var(--bg-2);
}
.step:hover .n {
    background: var(--amber);
    color: #0e2130;
    transform: scale(1.12);
    box-shadow:
        0 0 0 8px var(--bg-2),
        0 14px 30px var(--glow);
}
.step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.step p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.6;
}
@media (max-width: 880px) {
    .step-line {
        grid-template-columns: 1fr 1fr;
    }
    .step-line::before {
        display: none;
    }
}

/* ============ WHO FOR ============ */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.chip {
    background: var(--chip);
    border: 1.5px solid var(--line);
    padding: 12px 20px;
    border-radius: 44px;
    font-size: 0.87rem;
    font-weight: 500;
    transition: 0.3s;
    cursor: default;
}
.chip:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-4px);
    box-shadow: 0 10px 22px var(--glow);
}
.who-visual {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.who-visual img {
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: 1.2s;
}
.who-visual:hover img {
    transform: scale(1.07);
}
.who-visual .badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: color-mix(in srgb, var(--card) 88%, transparent);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}
.who-visual .badge b {
    color: var(--amber);
    font-family: "Sora", sans-serif;
}
@media (max-width: 980px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ TRUST ============ */
.trust {
    background: linear-gradient(165deg, var(--panel), var(--panel-2));
    color: #eaf3fa;
    overflow: hidden;
}
.trust .lead {
    color: #9fb9cc;
}
.trust-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 56px;
}
.big-num {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: clamp(4rem, 9vw, 7rem);
    line-height: 1;
    background: linear-gradient(120deg, var(--amber), #ffd08a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.big-num small {
    font-size: 0.35em;
    vertical-align: super;
}
.trust-hero .cap {
    font-size: 1.15rem;
    color: #cfe2ef;
    max-width: 440px;
    line-height: 1.6;
}
.trust-hero .cap b {
    color: var(--amber);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 16px;
}
.t-item {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 22px;
    transition: 0.35s;
}
.t-item:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-6px);
    border-color: rgba(245, 168, 60, 0.55);
}
.t-item .em {
    font-size: 1.4rem;
}
.t-item h4 {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #eaf3fa;
}
.t-item p {
    color: #9fb9cc;
    font-size: 0.85rem;
    line-height: 1.6;
}
@media (max-width: 760px) {
    .trust-hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============ BENEFITS ============ */
.bene-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 52px;
}
.bene {
    border-radius: 24px;
    padding: 40px 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: 0.45s;
}
.bene::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    top: -80px;
    right: -80px;
    transition: 0.5s;
}
.bene:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.bene:hover::after {
    transform: scale(1.5);
}
.bene.b-navy {
    background: linear-gradient(150deg, var(--navy), var(--navy-2));
}
.bene.b-amber {
    background: linear-gradient(150deg, var(--amber-2), var(--amber));
    color: #0e2130;
}
.bene h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.bene ul {
    list-style: none;
    position: relative;
    z-index: 1;
}
.bene li {
    padding: 9px 0 9px 30px;
    position: relative;
    font-size: 0.93rem;
    line-height: 1.55;
}
.bene li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 800;
    opacity: 0.85;
}
@media (max-width: 840px) {
    .bene-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ TESTIMONIALS ============ */
.testi {
    background: var(--bg-2);
    overflow: hidden;
}
.t-carousel {
    position: relative;
    max-width: 880px;
    margin: 56px auto 0;
}
.t-slides {
    display: flex;
    transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.t-slide {
    min-width: 100%;
    padding: 0 10px;
}
.t-card {
    background: var(--card);
    border-radius: 26px;
    padding: 50px 52px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 1.5px solid var(--line);
}
.t-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 32px;
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--amber);
    opacity: 0.22;
    line-height: 1;
}
.t-stars {
    color: var(--amber);
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.t-quote {
    font-size: 1.07rem;
    line-height: 1.85;
    max-width: 660px;
    margin: 0 auto 28px;
}
.t-who {
    font-family: "Sora", sans-serif;
    font-weight: 700;
}
.t-role {
    font-size: 0.84rem;
    color: var(--muted);
}
.t-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.t-dot.on {
    background: var(--amber);
    transform: scale(1.4);
}
.t-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
.t-arrow {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card);
    border: 1.5px solid var(--line);
    color: var(--ink);
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: 0.3s;
    margin: 0 -62px;
}
.t-arrow:hover {
    background: var(--amber);
    color: #0e2130;
    border-color: var(--amber);
}
@media (max-width: 1040px) {
    .t-arrow {
        margin: 0 4px;
    }
}

/* ============ GALLERY ============ */
.g-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.g-filter {
    background: var(--chip);
    border: 1.5px solid var(--line);
    border-radius: 44px;
    padding: 11px 24px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Sora", sans-serif;
    color: var(--ink);
}
.g-filter.on,
.g-filter:hover {
    background: var(--amber);
    color: #0e2130;
    border-color: var(--amber);
}
.g-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: 18px;
    margin-top: 32px;
}
.g-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-2);
    border: 1.5px solid var(--line);
}
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}
.g-item:hover img {
    transform: scale(1.1);
}
.g-item .g-cap {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(transparent, rgba(10, 20, 29, 0.92));
    color: #fff;
    padding: 40px 18px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(12px);
    transition: 0.4s;
}
.g-item:hover .g-cap {
    opacity: 1;
    transform: none;
}
.g-item.add {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--line);
    background: var(--bg-2);
    color: var(--muted);
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}
.g-item.add span {
    font-size: 2rem;
    color: var(--amber);
}
.gallery-load-more{
    display:flex;
    justify-content:center;
    margin-top:40px;
}
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 13, 19, 0.95);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 5vw;
}
.lightbox.on {
    display: flex;
    animation: fadeIn 0.3s;
}
.lightbox img {
    max-height: 82vh;
    border-radius: 16px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.lb-close {
    position: absolute;
    top: 26px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.1rem;
    cursor: pointer;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
}

/* ============ ACCREDITATIONS (single line) ============ */
.accred {
    padding: 54px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
}
.acc-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
}
.acc-label {
    flex-shrink: 0;
    max-width: 240px;
}
.acc-label h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.acc-label p {
    font-size: 0.78rem;
    color: var(--muted);
}
/* .acc-marquee {
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
} */

.acc-marquee {
    flex: 1;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
}
.acc-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: accScroll 36s linear infinite;
    align-items: center;
}
.acc-marquee:hover .acc-track {
    animation-play-state: paused;
}
@keyframes accScroll {
    to {
        transform: translateX(-50%);
    }
}
.acc-logo {
    width: 86px;
    height: 86px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
    transition: 0.35s;
    border: 1.5px solid var(--line);
}
.acc-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.35s;
}
.acc-logo:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow: var(--shadow);
}
.acc-logo:hover img {
    filter: none;
    opacity: 1;
}
@media (max-width: 760px) {
    .acc-inner {
        flex-direction: column;
        gap: 22px;
    }
    .acc-label {
        text-align: center;
        max-width: none;
    }
    .accred {
        padding: 40px 0;
    }

    .acc-inner {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .acc-label {
        max-width: 100%;
        text-align: center;
    }

    .acc-marquee {
        width: 100%;
    }

    .acc-track {
        gap: 12px;
    }

    .acc-logo {
        width: 64px;
        height: 64px;
        padding: 10px;
    }
}

/* ============ SUPPORT ============ */
.sup-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
    margin-top: 24px;
}
.sup-info .step-i {
    display: flex;
    gap: 16px;
    margin-top: 26px;
}
.sup-info .s-n {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(140deg, var(--navy), var(--navy-2));
    color: var(--amber);
    font-family: "Sora", sans-serif;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sup-info h4 {
    font-size: 0.98rem;
    margin-bottom: 4px;
}
.sup-info p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}
.sup-form {
    background: var(--card);
    border: 1.5px solid var(--line);
    border-radius: 26px;
    padding: 42px;
    box-shadow: var(--shadow);
}
.error {
    display: none;
    margin-top: 6px;
    color: #dc3545;
    font-size: 13px;
    min-height: 18px;
}
.error.show {
    display: block;
}
.is-invalid {
    border: 1px solid #dc3545 !important;
}

.sup-ok.success {
    color: #198754;
}

.sup-ok.error {
    color: #dc3545;
}
.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.f-group {
    margin-bottom: 16px;
}
.f-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 7px;
    font-family: "Sora", sans-serif;
}
.f-group input,
.f-group select,
.f-group textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 13px;
    padding: 14px 16px;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    transition: 0.3s;
    background: var(--bg);
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 4px var(--glow);
}
.f-group textarea {
    min-height: 110px;
    resize: vertical;
}
.sup-ok {
    display: none;
    background: color-mix(in srgb, #2eae5b 12%, var(--card));
    border: 1.5px solid #2eae5b;
    color: #2eae5b;
    border-radius: 14px;
    padding: 18px;
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}
.sup-ok.on {
    display: block;
    animation: fadeIn 0.4s;
}
@media (max-width: 960px) {
    .sup-grid {
        grid-template-columns: 1fr;
    }
    .f-row {
        grid-template-columns: 1fr;
    }
}

/* ============ FAQ ============ */
.faq-item {
    border: 1.5px solid var(--line);
    border-radius: 18px;
    margin-top: 14px;
    overflow: hidden;
    transition: 0.3s;
    background: var(--card);
    box-shadow: 0 12px 34px var(--glow);
}
.faq-item.open {
    border-color: var(--amber);
    box-shadow: 0 12px 34px var(--glow);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 26px;
    cursor: pointer;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--ink);
    text-align: left;
    gap: 16px;
}
.faq-q .pm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--amber);
    transition: 0.35s;
    flex-shrink: 0;
}
.faq-item.open .pm {
    background: var(--amber);
    color: #0e2130;
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: 0.45s ease;
}
.faq-a p {
    padding: 0 26px 24px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============ CTA ============ */
.cta-band {
    background: linear-gradient(
        120deg,
        var(--navy) 0%,
        var(--navy-2) 55%,
        #2e6786 100%
    );
    color: #fff;
    text-align: center;
    border-radius: 32px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 78px 8vw;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245, 168, 60, 0.18);
    filter: blur(80px);
    top: -160px;
    right: -100px;
    animation: drift 12s ease-in-out infinite alternate;
}
@keyframes drift {
    to {
        transform: translate(-60px, 60px) scale(1.2);
    }
}
.cta-band h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
}
.cta-band h2 .check {
    color: var(--amber);
}
.cta-band p {
    color: #b9d2e1;
    margin-bottom: 32px;
    position: relative;
}
.cta-band .btn {
    position: relative;
}

/* breadcrumb */

.page-banner {
    padding: 100px 0 60px;
    background: var(--bg-2);
    text-align: center;
}

.page-banner h1 {
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 700;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.page-breadcrumb li {
    color: #666;
}

.page-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #999;
}

.page-breadcrumb a {
    color: #0d6efd;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

/* 404 */

.error-page {
    min-height: 70vh;
    display: grid;

    padding-top: 200px;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;

    padding: 20px;
}

.error-content h1 {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.error-content h2 {
    margin: 20px 0;
    font-size: 36px;
}

.error-content p {
    margin-bottom: 30px;
    color: var(--muted);
}

.error-content .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
}

/* ============ FOOTER ============ */
footer {
    background: var(--panel-2);
    color: #8fa9bd;
    padding: 76px 6vw 30px;
    margin-top: 110px;
}
.foot-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
}
.foot-logo img {
    height: 70px;
    display: block;
    margin-bottom: 20px;
}
footer h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 18px;
}
footer li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 0.88rem;
}
footer a:hover {
    color: var(--amber);
}
.foot-note {
    max-width: 1220px;
    margin: 46px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 24px;
    font-size: 0.78rem;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
@media (max-width: 840px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ FLOATING ============ */
.float-btns {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}
.wa-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    transition: 0.35s;
    animation: pulseWa 2.6s infinite;
}
.wa-btn:hover {
    transform: scale(1.12);
}
.wa-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}
@keyframes pulseWa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--amber), var(--amber-2));
    border: none;
    color: #0e2130;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 12px 30px var(--glow);
    transition: 0.35s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-btn:hover {
    transform: scale(1.12) rotate(8deg);
}

/* ============ CHATBOT ============ */
.chat-panel {
    position: fixed;
    right: 22px;
    bottom: 100px;
    width: min(384px, calc(100vw - 32px));
    height: 545px;
    max-height: calc(100vh - 140px);
    background: var(--card);
    border: 1.5px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(24px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.chat-panel.on {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}
.chat-head {
    background: linear-gradient(120deg, var(--navy), var(--navy-2));
    color: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-head .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.chat-head .avatar img {
    width: 100%;
}
.chat-head h4 {
    font-size: 0.95rem;
}
.chat-head small {
    color: #b9d2e1;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.chat-head small::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
}
.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}
.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    background: var(--bg-2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.msg {
    max-width: 84%;
    padding: 12px 16px;
    border-radius: 17px;
    font-size: 0.86rem;
    line-height: 1.6;
    animation: msgIn 0.35s;
}
@keyframes msgIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
}
.msg.bot {
    background: var(--card);
    border: 1.5px solid var(--line);
    border-bottom-left-radius: 5px;
    align-self: flex-start;
}
.msg.user {
    background: var(--navy);
    color: #fff;
    border-bottom-right-radius: 5px;
    align-self: flex-end;
}
.msg a {
    color: var(--amber);
    font-weight: 600;
}
.quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.quick button {
    background: var(--card);
    border: 1.5px solid var(--amber);
    color: var(--amber);
    border-radius: 30px;
    padding: 8px 14px;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}
.quick button:hover {
    background: var(--amber);
    color: #0e2130;
}
.typing {
    display: inline-flex;
    gap: 4px;
    padding: 14px 18px;
}
.typing i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--muted);
    animation: blink 1.2s infinite;
}
.typing i:nth-child(2) {
    animation-delay: 0.2s;
}
.typing i:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes blink {
    0%,
    80%,
    100% {
        opacity: 0.3;
    }
    40% {
        opacity: 1;
    }
}
.chat-input {
    display: flex;
    gap: 10px;
    padding: 14px;
    border-top: 1.5px solid var(--line);
    background: var(--card);
}
.chat-input input {
    flex: 1;
    border: 1.5px solid var(--line);
    border-radius: 44px;
    padding: 12px 18px;
    font-size: 0.88rem;
    background: var(--bg);
    color: var(--ink);
}
.chat-input input:focus {
    outline: none;
    border-color: var(--amber);
}
.chat-input button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--amber);
    border: none;
    color: #0e2130;
    font-size: 1.05rem;
    cursor: pointer;
    transition: 0.3s;
}
.chat-input button:hover {
    transform: scale(1.1);
}
