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

:root {
    --blue: #20a0ff;
    --blue-light: #5bbcff;
    --blue-vivid: #0086e6;
    --blue-pale: #ebf5ff;
    --blue-glow: rgba(32, 160, 255, 0.25);
    --dark: #080f1c;
    --dark-2: #0d1b2e;
    --text: #0d1f38;
    --text-2: #476280;
    --text-3: #8aaabf;
    --line: #dce8f5;
    --white: #ffffff;
    --off: #f3f8ff;
    --grid: rgba(32, 160, 255, 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0 5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 4px 40px rgba(32, 160, 255, 0.08);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    height: 120px;
    display: flex;
    align-items: center;
}

.logo-mark img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.logo span {
    color: var(--blue);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-2);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--blue);
}

.btn-solid {
    padding: 0.5rem 1.35rem;
    background: var(--blue);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.81rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-solid:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--blue-glow);
}

/* ── HERO ── */
.hero-wrap {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-wrap::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(32, 160, 255, 0.18) 0%, transparent 65%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.hero {
    padding: 10rem 5rem 7rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(32, 160, 255, 0.12);
    color: var(--blue-light);
    border: 1px solid rgba(32, 160, 255, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    animation: up 0.7s ease both;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--blue);
    animation: blink 2s infinite;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: up 0.7s 0.08s ease both;
}

h1 em {
    font-style: normal;
    color: var(--blue);
    position: relative;
}

h1 em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 2px;
    opacity: 0.5;
}

.hero-p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 2.5rem;
    animation: up 0.7s 0.16s ease both;
}

.hero-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: up 0.7s 0.24s ease both;
}

.hero-btn-p {
    padding: 0.9rem 2rem;
    background: var(--blue);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    box-shadow: 0 0 32px rgba(32, 160, 255, 0.35);
}

.hero-btn-p:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(32, 160, 255, 0.5);
}

.hero-btn-s {
    padding: 0.9rem 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.hero-btn-s:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: up 0.7s 0.32s ease both;
}

.stat-n {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: block;
}

.stat-l {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

/* ── HERO CARD ── */
.hero-right {
    position: relative;
    animation: up 0.8s 0.2s ease both;
}

.float-pill {
    position: absolute;
    background: rgba(13, 27, 46, 0.8);
    border: 1px solid rgba(32, 160, 255, 0.3);
    border-radius: 100px;
    padding: 0.55rem 1rem;
    font-size: 0.73rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    z-index: 2;
}

.float-pill.top {
    top: -16px;
    right: 40px;
    animation: f1 4s ease-in-out infinite;
}

.float-pill.bot {
    bottom: -16px;
    left: 30px;
    animation: f2 4s 1s ease-in-out infinite;
}

.pill-dot {
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--blue);
}

.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(32, 160, 255, 0.2);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-head h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.live-badge {
    background: rgba(32, 160, 255, 0.15);
    color: var(--blue-light);
    border: 1px solid rgba(32, 160, 255, 0.3);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
}

.ch-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ch-row:last-of-type {
    border-bottom: none;
}

.ch-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.07);
}

.ch-meta {
    flex: 1;
}

.ch-n {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.ch-s {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

.ch-bar-w {
    flex: 1.5;
}

.ch-bar-bg {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    overflow: hidden;
}

.ch-bar-fill {
    height: 100%;
    border-radius: 99px;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    box-shadow: 0 0 8px var(--blue-glow);
    animation: grow 1.4s cubic-bezier(.4, 0, .2, 1) forwards;
}

.ch-pct {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--blue-light);
    min-width: 36px;
    text-align: right;
    font-family: 'Outfit', sans-serif;
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cf-l {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.35);
}

.cf-n {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
}

.cf-n span {
    color: var(--blue);
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--dark-2);
    border-bottom: 1px solid rgba(32, 160, 255, 0.1);
    padding: 1.35rem 5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.trust-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-logos {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logos span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.18);
    transition: color 0.2s;
    cursor: default;
}

.trust-logos span:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* ── CHANNELS ── */
.channels {
    padding: 7rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--blue);
    border-radius: 1px;
}

.sec-h {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.sec-h em {
    font-style: normal;
    color: var(--blue);
}

.sec-p {
    color: var(--text-2);
    font-size: 0.97rem;
    max-width: 500px;
    margin-bottom: 4rem;
    line-height: 1.75;
}

.ch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ch-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.ch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(32, 160, 255, 0.05), transparent);
    transition: height 0.35s;
}

.ch-card:hover {
    border-color: var(--blue);
    box-shadow: 0 16px 48px rgba(32, 160, 255, 0.1), 0 0 0 1px var(--blue);
    transform: translateY(-4px);
}

.ch-card:hover::before {
    height: 100%;
}

.ch-card-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}

.ch-card:hover .ch-card-ico {
    background: var(--blue);
    box-shadow: 0 8px 24px var(--blue-glow);
}

.ch-card:hover .ch-card-ico svg {
    stroke: white;
}

.ch-card-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.ch-card-desc {
    font-size: 0.835rem;
    color: var(--text-2);
    line-height: 1.65;
}

.ch-rate {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-pale);
    padding: 0.28rem 0.75rem;
    border-radius: 100px;
}

/* ── HOW IT WORKS ── */
.how-sec {
    background: var(--dark);
    border-top: 1px solid rgba(32, 160, 255, 0.08);
    border-bottom: 1px solid rgba(32, 160, 255, 0.08);
    padding: 7rem 5rem;
    position: relative;
    overflow: hidden;
}

.how-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(32, 160, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 160, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
}

.how-sec::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(32, 160, 255, 0.12), transparent 70%);
    bottom: -200px;
    left: -100px;
    pointer-events: none;
}

.how-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.how-sec .eyebrow {
    color: var(--blue-light);
}

.how-sec .eyebrow::before {
    background: var(--blue-light);
}

.how-sec .sec-h {
    color: #fff;
}

.how-sec .sec-h em {
    color: var(--blue-light);
}

.how-sec .sec-p {
    color: rgba(255, 255, 255, 0.45);
}

.steps {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 12px;
    cursor: default;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.step:hover {
    background: rgba(32, 160, 255, 0.06);
    border-color: rgba(32, 160, 255, 0.15);
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(32, 160, 255, 0.12);
    color: var(--blue-light);
    border: 1px solid rgba(32, 160, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.2s;
}

.step:hover .step-num {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    box-shadow: 0 4px 16px var(--blue-glow);
}

.step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.3rem;
}

.step p {
    font-size: 0.835rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── DASHBOARD MOCK ── */
.dash {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(32, 160, 255, 0.2);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.dash-top {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.d-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.d-dot.r {
    background: #FF5F57;
}

.d-dot.y {
    background: #FEBC2E;
}

.d-dot.g {
    background: #28C840;
}

.dash-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    margin-left: 0.75rem;
    font-family: monospace;
}

.dash-body {
    padding: 1.4rem;
}

.dash-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.dash-hd h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.dash-hd span {
    font-size: 0.7rem;
    color: var(--blue-light);
    font-weight: 600;
    cursor: pointer;
}

.camp {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.camp:last-of-type {
    border-bottom: none;
}

.camp-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.camp-info {
    flex: 1;
}

.camp-name {
    font-size: 0.77rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.camp-sub {
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.28);
    margin-top: 2px;
}

.camp-stat {
    text-align: right;
}

.camp-pct {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--blue-light);
}

.camp-lbl {
    font-size: 0.63rem;
    color: rgba(255, 255, 255, 0.28);
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-top: 1rem;
}

.dash-m {
    background: rgba(32, 160, 255, 0.08);
    border: 1px solid rgba(32, 160, 255, 0.15);
    border-radius: 10px;
    padding: 0.8rem;
}

.dm-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.dm-lbl {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.2rem;
}

/* ── CONTACT ── */
.contact-wrap {
    padding: 7rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    align-items: start;
}

.cl-h {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 2.9rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.cl-h em {
    font-style: normal;
    color: var(--blue);
}

.cl-p {
    color: var(--text-2);
    font-size: 0.93rem;
    max-width: 380px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.2rem;
    background: var(--off);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    transition: all 0.2s;
}

.info-item:hover {
    border-color: var(--blue);
    background: var(--blue-pale);
}

.ii-ico {
    width: 38px;
    height: 38px;
    background: var(--blue-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.info-item:hover .ii-ico {
    background: var(--blue);
    box-shadow: 0 4px 16px var(--blue-glow);
}

.info-item:hover .ii-ico svg {
    stroke: white;
}

.ii-lbl {
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ii-val {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 1px;
}

/* ── DISCLAIMER ── */
.disclaimer-box {
    margin-top: 28px;
    padding: 16px 20px;
    background: #f8fafc;
    border-left: 3px solid var(--blue);
    border-radius: 6px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.7;
}

.disclaimer-box a {
    color: var(--blue);
    text-decoration: underline;
}

/* ── FORM ── */
.form-box {
    background: white;
    border: 1.5px solid var(--line);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 16px 60px rgba(32, 160, 255, 0.07);
    position: relative;
    overflow: hidden;
}

.form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 20px 20px 0 0;
}

.form-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.form-box .f-sub {
    font-size: 0.8rem;
    color: var(--text-3);
    margin-bottom: 1.85rem;
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.f-g {
    margin-bottom: 1.1rem;
}

.f-g label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-2);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.f-g input,
.f-g select,
.f-g textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--off);
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--text);
    outline: none;
    transition: all 0.2s;
    appearance: none;
}

.f-g input::placeholder,
.f-g textarea::placeholder {
    color: var(--text-3);
}

.f-g input:focus,
.f-g select:focus,
.f-g textarea:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(32, 160, 255, 0.1);
}

.f-g select option {
    background: white;
}

.f-g textarea {
    resize: vertical;
    min-height: 100px;
}

.f-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 0.4rem;
}

.f-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.85rem;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-2);
    font-weight: 600;
    transition: all 0.2s;
    user-select: none;
    background: var(--off);
}

.f-check:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-pale);
}

.f-check input[type="checkbox"] {
    display: none;
}

.f-cb {
    width: 15px;
    height: 15px;
    border: 2px solid var(--line);
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.f-check input:checked~.f-cb {
    background: var(--blue);
    border-color: var(--blue);
}

.f-check input:checked~.f-cb::after {
    content: '✓';
    font-size: 0.58rem;
    color: white;
    font-weight: 800;
}

.f-check input:checked~span {
    color: var(--blue);
}

.f-err {
    display: none;
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

.consent-check span a {
    color: var(--blue);
    text-decoration: underline;
}

.f-submit {
    width: 100%;
    padding: 0.95rem;
    background: var(--blue);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 0.5rem;
}

.f-submit:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(32, 160, 255, 0.35);
}

.f-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.success-box {
    display: none;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: var(--blue-pale);
    border: 1.5px solid rgba(32, 160, 255, 0.3);
    border-radius: 10px;
    color: var(--blue-vivid);
    font-size: 0.84rem;
    font-weight: 600;
    text-align: center;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(32, 160, 255, 0.1);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.footer-contact {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links-col h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-col ul a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links-col ul a:hover {
    color: var(--blue-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 5rem;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.6;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── LEGAL PAGES ── */
.legal-hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding-top: 68px;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 48px 48px;
}

.legal-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(32, 160, 255, 0.14) 0%, transparent 65%);
    top: -200px;
    left: -100px;
    pointer-events: none;
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 5rem 0rem 4.5rem;
}

.legal-hero-inner .eyebrow {
    color: var(--blue-light);
}

.legal-hero-inner .eyebrow::before {
    background: var(--blue-light);
}

.legal-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.legal-wrap {
    background: var(--white);
    padding: 5rem 5rem 7rem;
}

.legal-body {
    max-width: 860px;
    margin: 0 auto;
}

.legal-body>p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.legal-body>p strong {
    color: var(--text);
    font-weight: 700;
}

.legal-body>p em {
    font-style: italic;
    color: var(--text);
}

.legal-body h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    margin-bottom: 0.9rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--line);
}

.legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--blue-pale);
    color: var(--blue-vivid);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.legal-body ul {
    margin: 0.75rem 0 1.1rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-body ul li {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.7;
    padding: 0.6rem 1rem 0.6rem 1rem;
    background: var(--off);
    border: 1.5px solid var(--line);
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
}

.legal-body a {
    color: var(--blue-vivid);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 134, 230, 0.25);
    transition: border-color 0.2s, color 0.2s;
}

.legal-body a:hover {
    color: var(--blue);
    border-color: var(--blue);
}

@media (max-width: 1024px) {
    .legal-hero-inner {
        padding: 4rem 2rem 3rem;
    }

    .legal-wrap {
        padding: 3rem 2rem 5rem;
    }
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.v {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.12s;
}

/* ── ANIMATIONS ── */
@keyframes up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

@keyframes grow {
    to {
        width: var(--w);
    }
}

@keyframes f1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes f2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    nav {
        padding: 0 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 8rem 2rem 4rem;
        min-height: auto;
        gap: 3rem;
    }

    .trust-bar {
        padding: 1.35rem 2rem;
    }

    .channels {
        padding: 5rem 2rem;
    }

    .ch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-sec {
        padding: 5rem 2rem;
    }

    .how-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
        gap: 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }

    .footer-bottom {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.4rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

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

    .f-row {
        grid-template-columns: 1fr;
    }

    .f-checks {
        grid-template-columns: 1fr;
    }

    .trust-logos {
        gap: 1.5rem;
    }

    .float-pill {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
    }

    .float-pill.top {
        right: 10px;
    }

    .float-pill.bot {
        left: 10px;
    }

    .dash-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}