/* ---------------------------------------

[Main Style Sheet]

Project:    	Kechvest - Investment System
Version:    	1.0

------------------------------------------

[Table of Contents]

1. Fonts
2. Reset CSS
3. Global Settings
4. Section Styles
5. Colors
6. Margin and Padding
7. Background Overlay
8. Buttons Style
9. Preloader
10. ScrollUp Button

-------------------------------------------*/

@font-face {
    font-family: 'Fivo Sans Modern';
    src: url('../fonts/fivo-sans-modern/FivoSansModern-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fivo Sans Modern';
    src: url('../fonts/fivo-sans-modern/FivoSansModern-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fivo Sans Modern';
    src: url('../fonts/fivo-sans-modern/FivoSansModern-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #0E1627;
    --navy: #193A4F;
    --pine: #154F4B;
    --teal: #078A85;
    --teal-br: #0AA39D;
    --mist: #EAEAEA;
    --white: #FFFFFF;
    --teal-soft: rgba(7, 138, 133, .14);
    --teal-line: rgba(7, 138, 133, .4);
    --s0: #0B121F;
    --s1: #0E1627;
    --s2: #14283A;
    --s3: #193A4F;
    --bd: rgba(234, 234, 234, .09);
    --bd2: rgba(234, 234, 234, .16);
    --tx: #F4F7F8;
    --tx-soft: rgba(234, 234, 234, .70);
    --tx-mut: rgba(234, 234, 234, .45);
    --success: #1FA37A;
    --danger: #E5565B;
    --grad-hero: linear-gradient(135deg, #0E1627 0%, #193A4F 100%);
    --grad-teal: linear-gradient(135deg, #0AA39D 0%, #154F4B 100%);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 22px;
    --pill: 999px;
    --maxw: 1160px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-emp: cubic-bezier(.34, 1.56, .64, 1);
    --font: 'Fivo Sans Modern', system-ui, -apple-system, sans-serif;
}

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

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

body {
    font-family: var(--font);
    background: var(--s0);
    color: var(--tx);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 26px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    /*letter-spacing: 1.3px;*/
    color: var(--tx);
    background: var(--teal-soft);
    border: 1px solid var(--teal-line);
    padding: 6px 13px;
    border-radius: var(--pill);
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal-br);
}

.eyebrow-txt {
    color: var(--tx);
}

.qm {
    padding-top: 5px;
}

.h-sec {
    font-weight: 700;
    font-size: clamp(24px, 2.9vw, 34px);
    letter-spacing: -.5px;
    line-height: 1.15;
}

.h-sec .ac {
    color: var(--teal-br);
}

.sub {
    color: var(--tx-soft);
    max-width: 58ch;
    font-size: clamp(14px, 1.3vw, 16px);
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--pill);
    padding: 12px 22px;
    border: 1.5px solid transparent;
    transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: var(--white);
    color: var(--pine);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
}

.btn-teal {
    background: var(--pine);
    color: #fff;
}

.btn-teal:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(7, 138, 133, .35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: var(--teal);
}

.btn-outline:hover {
    background: var(--teal-soft);
    transform: translateY(-1px);
}

.btn-store {
    background: rgba(7, 138, 133, .16);
    border: 1px solid var(--teal-line);
    color: #fff;
}

.btn-store:hover {
    background: var(--teal-soft);
}

.btn-store .stores {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-right: 9px;
    margin-right: 3px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.btn:focus-visible {
    outline: 3px solid var(--teal-br);
    outline-offset: 3px;
}

.btn-lg {
    padding: 14px 26px;
    font-size: 15px;
}

/* nav */
header.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background .3s var(--ease), backdrop-filter .3s, border-color .3s, padding .3s;
    border-bottom: 1px solid transparent;
    padding: 16px 0;
}

header.nav.scrolled {
    background: rgba(11, 18, 31, .82);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--bd);
    padding: 10px 0;
}

.nav-in {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 26px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--tx-soft);
    position: relative;
    transition: color .2s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--teal-br);
    transition: width .25s var(--ease);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--tx);
    border-radius: 2px;
    transition: .3s;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(11, 18, 31, .97);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-size: 21px;
    font-weight: 700;
    padding: 12px;
    color: var(--tx);
}

.mobile-menu .btn {
    margin-top: 18px;
}

/* hero */
.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    overflow: hidden;
    padding: 120px 0 70px;
}

.hero::before, .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(7, 138, 133, .16), transparent 65%);
    top: -120px;
    left: -100px;
    filter: blur(20px);
}

.hero::after {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(10, 163, 157, .12), transparent 65%);
    bottom: -140px;
    right: 6%;
    filter: blur(20px);
}

.hero-in {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    margin-bottom: 22px;
}

.hero h1 {
    font-weight: 700;
    font-size: clamp(33px, 4.6vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.5px;
}

.brushed {
    position: relative;
    display: inline-block;
}

span.brushed img.stroke-img {
    filter: brightness(1.5) contrast(1.2) drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
    mix-blend-mode: screen;
    opacity: 1;
}

.stroke-img {
    position: absolute;
    left: 0;
    bottom: -.05em;
    width: 100%;
    height: auto;
}

.is-animated .stroke-img {
    clip-path: inset(0 100% 0 0);
}

.hero p.lead {
    margin: 22px 0 30px;
    font-size: clamp(15px, 1.4vw, 16px);
    color: var(--tx-soft);
    max-width: 44ch;
}

.hero p.lead b {
    color: var(--tx);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* phone mockup */
.phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 138, 133, .3), transparent 65%);
    filter: blur(28px);
}

.phone-shot {
    position: relative;
    width: 300px;
    max-width: 88%;
    height: auto;
    filter: drop-shadow(0 34px 70px rgba(0, 0, 0, .55));
}

/* sections */
section {
    position: relative;
}

.block {
    padding: clamp(56px, 7vw, 92px) 0;
}

.sec-head {
    max-width: 720px;
    margin-bottom: 44px;
}

.sec-head .eyebrow {
    margin-bottom: 16px;
}

.sec-head h2 {
    margin-bottom: 14px;
}

.sec-head.reveal {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head.reveal > * {
  margin-left: auto;
  margin-right: auto;
}

/* problem */
.problem {
    background: var(--s1);
}

.prob-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.prob-card {
    background: var(--s2);
    border: 1px solid var(--bd);
    border-radius: var(--r-lg);
    padding: 22px 20px;
    transition: transform .3s var(--ease), border-color .3s;
}

.prob-card:hover {
    transform: translateY(-4px);
    border-color: var(--teal-line);
}

.prob-card .ic {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.prob-card .ic svg {
    width: 21px;
    height: 21px;
    color: var(--teal-br);
}

.prob-card h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.changes {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--ink);
    border-radius: var(--pill);
    padding: 12px 22px;
    font-weight: 600;
    font-size: 13.5px;
    flex-wrap: wrap;
}

.changes b {
    font-weight: 700;
}

.changes .sep {
    color: var(--teal);
}

/* solutions */
.sol-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.sol-card {
    background: linear-gradient(165deg, #16304a, #102132);
    border: 1px solid var(--bd);
    border-radius: var(--r-xl);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.sol-card .ic {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sol-card .ic svg {
    width: 25px;
    height: 25px;
    color: var(--teal-br);
}

.sol-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sol-card p {
    color: var(--tx-soft);
    font-size: 14px;
    margin-bottom: 18px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--tx);
}

.checklist li svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--teal-br);
    margin-top: 1px;
}

.sol-divider {
    height: 1px;
    background: var(--bd);
    margin: 20px 0;
}

.howto .lab {
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--tx-mut);
    margin-bottom: 10px;
}

.howto ol {
    counter-reset: s;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.howto ol li {
    counter-increment: s;
    display: flex;
    gap: 11px;
    font-size: 13px;
    color: var(--tx-soft);
    align-items: flex-start;
}

.howto ol li::before {
    content: counter(s);
    flex: 0 0 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal-br);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock {
    margin-top: 20px;
    background: var(--s1);
    border: 1px solid var(--bd);
    border-radius: var(--r-md);
    padding: 16px;
}

.mock .mt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mock .mt .nm {
    font-weight: 700;
    font-size: 13px;
}

.mock .tag {
    font-size: 9px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 99px;
    background: rgba(31, 163, 122, .18);
    color: var (--txt);
}

.mock .stats {
    display: flex;
    gap: 18px;
}

.mock .stats div .k {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tx-mut);
}

.mock .stats div .v {
    font-size: 15px;
    font-weight: 700;
}

.mock .stats div .v.teal {
    color: var(--teal-br);
}

.mock .mprog {
    margin-top: 12px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.mock .mprog i {
    display: block;
    height: 100%;
    background: var(--grad-teal);
    border-radius: 99px;
}

.mid-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 42px;
}

/* trust */
.trust {
    background: var(--s1);
}

.trust-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: end;
    margin-bottom: 42px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bd);
    border: 1px solid var(--bd);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.feat {
    background: var(--s1);
    padding: 28px 26px;
    transition: background .3s var(--ease);
}

.feat:hover {
    background: var(--s2);
}

.feat .ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feat .ic svg {
    width: 21px;
    height: 21px;
    color: var(--teal-br);
}

.feat h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 9px;
    line-height: 1.3;
}

.feat p {
    font-size: 13.5px;
    color: var(--tx-soft);
}

/* sectors */
.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--s2);
    border: 1px solid var(--bd);
    border-radius: var(--pill);
    padding: 12px 18px;
    transition: transform .25s var(--ease), border-color .25s;
}

.sector:hover {
    transform: translateY(-3px);
    border-color: var(--teal-line);
}

.sector .sic {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector .sic svg {
    width: 16px;
    height: 16px;
    color: var(--teal-br);
}

.sector .nm {
    font-weight: 700;
    font-size: 14px;
}

.sector .badge {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 99px;
    letter-spacing: .3px;
}

.sector .badge.primary {
    background: rgba(10, 163, 157, .2);
    color: var(--teal-br);
}

.sector .badge.growth {
    background: rgba(31, 163, 122, .18);
    color: #3FCF9E;
}

/* early (light) */
.early {
    background: linear-gradient(180deg, #F4F7F7, #E9ECEC);
    color: var(--ink);
}

.early-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.early .eyebrow {
    background: rgba(7, 138, 133, .1);
    color: var(--pine);
    border-color: rgba(7, 138, 133, .28);
}

.early .eyebrow .dot {
    background: var(--teal);
}

.early h2 {
    font-weight: 700;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.15;
    letter-spacing: -.5px;
    margin: 16px 0 14px;
}

.early .lead {
    color: #3c4f56;
    font-size: 15px;
    margin-bottom: 22px;
}

.early .first-lab {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 14.5px;
}

.early-benefits li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 14px;
    color: #1f3038;
}

.early-benefits li svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--teal);
}

.priority-slots {
    margin-top: 22px;
    background: linear-gradient(135deg, #0E1627, #193A4F);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.priority-slots .trophy {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
}

.priority-slots .trophy svg {
    width: 23px;
    height: 23px;
    color: var(--teal-br);
}

.priority-slots .nm {
    font-weight: 700;
    font-size: 15px;
}

.priority-slots .tx {
    font-size: 12.5px;
    color: var(--tx-soft);
    margin-top: 2px;
}

/* form */
.form-card {
    background: linear-gradient(165deg, #16304a, #0f1f30);
    border: 1px solid var(--bd2);
    border-radius: var(--r-xl);
    padding: 30px 60px;
    color: var(--tx);
    box-shadow: 0 26px 60px rgba(14, 22, 39, .25);
}

.form-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* consent (GDPR) */
.consent {
    margin: 14px 0 18px;
}

label.consent-check {
  flex-shrink: 0;          /* Prevents the checkbox from squishing */
}

.consent-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.consent-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.consent-check .cb-ui {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid var(--tx-mut);
    background: transparent;
    flex: 0 0 18px;
    margin-top: 2px;
    position: relative;
    transition: .2s;
}

.consent-check input:checked + .cb-ui {
    border-color: var(--teal-br);
    background: rgba(10, 163, 157, .18);
}

.consent-check input:checked + .cb-ui::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 11px;
    border-right: 2px solid var(--teal-br);
    border-bottom: 2px solid var(--teal-br);
    transform: rotate(45deg);
}

.consent-text {
    width: auto;             /* Allows it to occupy the remaining space */
    display: block;
}

.consent-title {
    font-weight: 700;
    font-size: 13.5px;
    color: var(--tx);
}

.consent-desc {
    font-size: 10px;
    font-style: oblique;
    color: var(--tx-soft);
    max-width: 52ch;
}

.consent.invalid .err,
#f-consent.invalid .err {
    display: block;
}

#f-consent .err {
    font-size: 11.5px;
    color: var(--danger);
    margin-top: 8px;
    display: none;
}

div#f-consent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.consent.invalid .consent-check .cb-ui {
    border-color: var(--danger);
}


.form-card .fsub {
    color: var(--tx-soft);
    font-size: 13.5px;
    margin-bottom: 22px;
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: none/*block*/;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--tx-soft);
    margin-bottom: 7px;
}

.field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--r-md);
    background: var(--s1);
    border: 1px solid var(--bd2);
    color: var(--tx);
    font-size: 14px;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}

.field input::placeholder {
    color: var(--tx-mut);
}

.field input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-soft);
}

.field.invalid input {
    border-color: var(--danger);
}

.field .err {
    font-size: 11.5px;
    color: var(--danger);
    margin-top: 5px;
    display: none;
}

.field.invalid .err {
    display: block;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.choice {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    border: 1px solid var(--bd2);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: .2s;
    font-size: 13.5px;
}

.choice:hover {
    border-color: var(--teal-line);
}

.choice input {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid var(--tx-mut);
    flex: 0 0 17px;
    transition: .2s;
    position: relative;
}

.choice input:checked {
    border-color: var(--teal-br);
}

.choice input:checked::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--teal-br);
}

.choice:has(input:checked) {
    border-color: var(--teal);
    background: var(--teal-soft);
}

.form-card .btn {
    width: 100%;
    margin-top: 6px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 26px 8px;
}

.form-success.show {
    display: block;
}

.form-success .ck {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.form-success .ck svg {
    width: 30px;
    height: 30px;
    color: var(--teal-br);
}

.form-success h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-success p {
    color: var(--tx-soft);
    font-size: 13.5px;
}

.socials {
    display: flex;
    gap: 11px;
    justify-content: center;
    margin-top: 20px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.socials a:hover {
    background: var(--teal-soft);
    border-color: var(--teal-line);
    transform: translateY(-2px);
}

.socials a svg {
    width: 16px;
    height: 16px;
    color: var(--tx-soft);
}

/* priority counter */
.priority {
    background: var(--s0);
}

.counter-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 44px;
    align-items: center;
    background: linear-gradient(165deg, #13283c, #0c1925);
    border: 1px solid var(--bd);
    border-radius: var(--r-xl);
    padding: 40px;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 150px;
}

.bars .bar {
    flex: 1;
    background: var(--teal-soft);
    border-radius: 4px 4px 0 0;
}

.bars .bar.fill {
    background: var(--grad-teal);
}

.counter-num {
    text-align: center;
}

.counter-num .big {
    font-size: clamp(56px, 9vw, 96px);
    font-weight: 700;
    line-height: 1;
    color: var(--teal-br);
    letter-spacing: -2px;
}

.counter-num .rem {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tx-soft);
    margin-top: 6px;
}

.counter-num .of {
    font-size: 13px;
    color: var(--tx-mut);
    margin-top: 3px;
}

.pri-note {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    margin-top: 22px;
    font-size: 12.5px;
    color: var(--tx-soft);
    background: var(--s2);
    border: 1px solid var(--bd);
    border-radius: var(--pill);
    padding: 8px 16px;
}

.pri-note svg {
    width: 15px;
    height: 15px;
    color: var(--teal-br);
}

/* final cta */
.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0E1627, #15384B);
    border-radius: var(--r-xl);
    padding: 52px;
    text-align: center;
}

.cta-band::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 138, 133, .2), transparent 65%);
    top: -180px;
    right: -90px;
}

.cta-band h2 {
    position: relative;
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 12px;
}

.cta-band p {
    position: relative;
    color: var(--tx-soft);
    max-width: 48ch;
    margin: 0 auto 26px;
    font-size: 15px;
}

.cta-band .row {
    position: relative;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-note {
    position: relative;
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--tx-mut);
}

/* footer */
footer {
    background: var(--s1);
    border-top: 1px solid var(--bd);
    padding: 52px 0 26px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 38px;
}

.foot-brand .brand-logo {
    height: 28px;
    margin-bottom: 16px;
}

.foot-brand p {
    color: var(--tx-soft);
    font-size: 13.5px;
    max-width: 36ch;
    margin-bottom: 18px;
}

.foot-col h4 {
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--tx-mut);
    margin-bottom: 16px;
}

.foot-col a, .foot-col .ci {
    display: block;
    color: var(--tx-soft);
    font-size: 14px;
    padding: 5px 0;
    transition: color .2s;
}

.foot-col a:hover {
    color: var(--teal-br);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid var(--bd);
    flex-wrap: wrap;
}

.foot-bottom .cp {
    font-size: 12.5px;
    color: var(--tx-mut);
}

.foot-bottom .legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.foot-bottom .legal a {
    font-size: 12.5px;
    color: var(--tx-soft);
}

.foot-bottom .legal a:hover {
    color: var(--teal-br);
}

/* toast */
.toast {
    position: fixed;
    bottom: 26px;
    left: 50%;
    transform: translate(-50%, 160%);
    background: var(--s2);
    border: 1px solid var(--teal-line);
    color: var(--tx);
    padding: 12px 22px;
    border-radius: var(--pill);
    font-size: 13.5px;
    font-weight: 600;
    z-index: 200;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .4);
    transition: transform .4s var(--ease-emp);
    display: flex;
    align-items: center;
    gap: 9px;
}

.toast.show {
    transform: translate(-50%, 0);
}

.toast svg {
    width: 17px;
    height: 17px;
    color: var(--teal-br);
}

.is-animated .reveal {
    opacity: 0;
    transform: translateY(24px);
    will-change: opacity, transform;
}
