:root {
    --navy: #012a56;
    --teal: #08a4a3;
    --teal-light: #e4f6f6;
    --teal-mid: #a8dede;
    --teal-dark: #069a99;
    --text-muted: #567898;
    --border: #cce0ef;
    --off-white: #f6fafa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* ── NAVBAR ── */
#mainNav {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
    padding: .85rem 0;
}

#mainNav.scrolled {
    box-shadow: 0 4px 24px rgba(1, 42, 86, .09);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--navy) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

.nav-link {
    color: var(--navy) !important;
    font-weight: 500;
    font-size: .9rem;
    transition: color .2s;
}

.nav-link:hover {
    color: var(--teal) !important;
}

.btn-nav-cta {
    background: var(--teal);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    transition: background .2s, transform .2s;
    text-decoration: none;
}

.btn-nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

/* ── BUTTONS ── */
.btn-primary-cc {
    background: var(--teal);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .93rem;
    text-decoration: none;
    border: none;
    display: inline-block;
    transition: all .25s;
    box-shadow: 0 6px 22px rgba(8, 164, 163, .3);
}

.btn-primary-cc:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(8, 164, 163, .38);
    color: #fff;
}

.btn-outline-cc {
    background: transparent;
    color: var(--navy);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .93rem;
    text-decoration: none;
    border: 2px solid var(--border);
    display: inline-block;
    transition: all .25s;
}

.btn-outline-cc:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* ── EYEBROW ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow-bar {
    width: 26px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5fbfb 0%, #e6f4f4 45%, #eef4fc 100%);
    position: relative;
    overflow: hidden;
    padding: 130px 0 80px;
    display: flex;
    align-items: center;
}

#hero::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -140px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 164, 163, .13) 0%, transparent 70%);
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 42, 86, .07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-light);
    border: 1px solid var(--teal-mid);
    color: var(--teal);
    font-size: .76rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: .06em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

.hero-title {
    font-size: clamp(2.2rem, 3vw, 3.8rem);
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 22px;
}

.hero-title .teal {
    color: var(--teal);
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.stat-val span {
    color: var(--teal);
}

.stat-lbl {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 3px;
}

/* hero card */
.hero-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 36px 68px;
    position: relative;
    box-shadow: 0 24px 80px rgba(1, 42, 86, .12);
    border: 1.5px solid rgba(8, 164, 163, .18);
}

.hero-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--teal-light);
    border: 2px solid var(--teal-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 18px;
}

.hero-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.hero-card-desc {
    font-size: .855rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
}

.pill-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.pill {
    background: var(--teal-light);
    color: var(--teal);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 50px;
    border: 1px solid var(--teal-mid);
}

.float-chip {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 9px 15px;
    box-shadow: 0 8px 28px rgba(1, 42, 86, .13);
    font-size: .76rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--border);
    animation: floaty 3s ease-in-out infinite;
}

.chip-online {
    top: -18px;
    right: -18px;
    animation-delay: 0s;
}

.chip-resp {
    bottom: 20px;
    left: -30px;
    animation-delay: 1.5s;
}

.green-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* ── SECTION ── */
.section-pad {
    padding: 96px 0;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.2;
    color: var(--navy);
}

/* ── ABOUT ── */
#about {
    background: var(--off-white);
}

.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color .2s, box-shadow .2s;
}

.value-card:hover {
    border-color: var(--teal);
    box-shadow: 0 4px 18px rgba(8, 164, 163, .1);
}

.value-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--teal-light);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.value-card strong {
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
    display: block;
    margin-bottom: 2px;
}

.value-card span {
    font-size: .82rem;
    color: var(--text-muted);
}

.about-vis-wrap {
    text-align: center;
}

.about-vis-wrap img {
    border-radius: 24px;
    width: 80%;
    box-shadow: 0 20px 60px rgba(8, 164, 163, .18);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 12px 36px rgba(1, 42, 86, .2);
}

.about-badge strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal);
}

.about-badge span {
    font-size: .78rem;
    opacity: .7;
}

/* ── PROBLEM ── */
.problem-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 42px rgba(1, 42, 86, .1);
}

.problem-card.dark-card {
    background: var(--navy);
    border-color: var(--navy);
}

.problem-card.dark-card .p-icon-wrap {
    background: rgba(8, 164, 163, .2);
    color: var(--teal);
}

.problem-card.dark-card .p-stat {
    color: var(--teal);
}

.problem-card.dark-card .p-title {
    color: #fff;
}

.problem-card.dark-card .p-desc {
    color: rgba(255, 255, 255, .6);
}

.p-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 18px;
}

.p-stat {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.p-title {
    font-family: 'Outfit', sans-serif;
    font-size: .98rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.p-desc {
    font-size: .845rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── SOLUTION ── */
#solution {
    background: var(--off-white);
}

.solution-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    height: 100%;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 42px rgba(1, 42, 86, .09);
    border-color: var(--teal);
}

.sol-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--teal);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sol-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 9px;
}

.sol-desc {
    font-size: .845rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── HOW IT WORKS ── */
#how {
    background: linear-gradient(135deg, var(--navy) 0%, #01407a 100%);
}

#how .eyebrow {
    color: var(--teal);
}

#how .section-title {
    color: #fff;
}

.step-card {
    text-align: center;
    padding: 10px 10px 0;
}

.step-num {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    background: rgba(8, 164, 163, .12);
    color: var(--teal);
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.step-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(8, 164, 163, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 16px;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.step-desc {
    font-size: .845rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
}

/* ── UNIQUE ── */
.unique-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}

.unique-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 38px rgba(1, 42, 86, .08);
}

.unique-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--teal-light);
    border: 2px solid var(--teal-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 18px;
}

.unique-title {
    font-family: 'Outfit', sans-serif;
    font-size: .98rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.unique-desc {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── CTA ── */
#cta {
    background: linear-gradient(135deg, var(--teal) 0%, #069898 100%);
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    pointer-events: none;
}

#cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(1, 42, 86, .1);
    pointer-events: none;
}

.cta-left h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
}

.cta-left p {
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 14px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .9);
    font-size: .86rem;
    font-weight: 500;
}

.cta-trust-item svg {
    color: #fff;
    flex-shrink: 0;
}

/* form */
.cta-form-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: 0 24px 64px rgba(1, 42, 86, .18);
}

.cta-form-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.cta-form-card p {
    font-size: .83rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.cc-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
    display: block;
}

.cc-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: .88rem;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.cc-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(8, 164, 163, .12);
}

select.cc-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235a7a9a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

textarea.cc-input {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .2s;
    box-shadow: 0 6px 20px rgba(8, 164, 163, .3);
}

.btn-submit:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.form-note {
    font-size: .74rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

.form-success {
    display: none;
    background: var(--teal-light);
    border: 1px solid var(--teal-mid);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: var(--teal);
    font-weight: 600;
    font-size: .9rem;
    margin-top: 14px;
}

.error-msg {
    color: #ff4d4f;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.cc-input.error {
    border-color: #ff4d4f;
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
}

.footer-brand-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-tagline {
    font-size: .84rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    margin-top: 12px;
}

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-bottom {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */

@media (max-width:767px) {
    .hero-visual-col {
        margin: 90px auto 0;
        width: 85%;
    }

    .cta-form-card {
        padding: 28px 22px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}