:root {
    --navy: #0a2231;
    --navy-2: #10324a;
    --navy-3: #16415e;
    --orange: #f0601f;
    --orange-d: #d24e12;
    --orange-l: #ff7a3d;
    --teal: #2fa39c;
    --teal-l: #6fc9c4;
    --teal-pale: #e3f4f3;
    --sky: #cfe9f2;
    --paper: #f3f7f9;
    --grey: #e9eff3;
    --line: #dde7ee;
    --ink: #0a2231;
    --muted: #586b78;
    --white: #fff;
    --shadow-sm: 0 2px 10px rgba(10, 34, 49, 0.06);
    --shadow: 0 18px 48px -18px rgba(10, 34, 49, 0.28);
    --shadow-lg: 0 36px 80px -30px rgba(10, 34, 49, 0.45);
    --r: 18px;
    --maxw: 1180px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,
h2,
h3,
.disp {
    font-family: "Saira Condensed", sans-serif;
    line-height: 1.02;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 22px;
}
.eyebrow {
    font-family: "Saira Condensed";
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--orange);
}
.eyebrow.teal {
    color: var(--teal);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55em;
    font-weight: 800;
    font-family: "Saira Condensed";
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.05rem;
    padding: 16px 28px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    transition:
        transform 0.15s,
        box-shadow 0.2s,
        background 0.2s;
    white-space: nowrap;
}
.btn svg {
    width: 20px;
    height: 20px;
}
.btn-orange {
    background: linear-gradient(180deg, var(--orange-l), var(--orange));
    color: #fff;
    box-shadow:
        0 12px 26px -10px rgba(240, 96, 31, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -10px rgba(240, 96, 31, 0.85);
}
.btn-navy {
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn-navy:hover {
    background: var(--navy-2);
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--navy);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-block {
    width: 100%;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 60;
    /*background: rgba(255, 255, 255, 0.9);*/
    background: #1FACA3;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition:
        box-shadow 0.25s,
        border-color 0.25s;
}
header.scrolled {
    box-shadow: 0 6px 24px -12px rgba(10, 34, 49, 0.3);
    border-color: var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}
.br-10{
    border-radius: 10px;
}
.brand img {
    height: 146px;
    width: auto;
}
.nav-r {
    display: flex;
    align-items: center;
    gap: 14px;
}
.callbox {
    display: flex;
    align-items: center;
    gap: 11px;
}
.callbox .ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--teal-pale);
    color: var(--teal);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}
.callbox .ico svg {
    width: 21px;
    height: 21px;
}
.callbox .lbl {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}
.callbox .num {
    font-family: "Saira Condensed";
    font-weight: 800;
    font-size: 1.32rem;
    color: var(--navy);
    line-height: 1;
}
.callbox .num:hover {
    color: var(--orange);
}

/* Hero */
.hero {
    position: relative;
    /*background: radial-gradient(1100px 520px at 88% -8%, #15405d 0%, transparent 60%),
        linear-gradient(165deg, #0a2231 0%, #0d2c40 55%, #10324a 100%);*/
    color: #fff;
    overflow: hidden;
    padding: 60px 0 100px;
    background-image: url(banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/*.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: repeating-linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.04) 0 2px,
        transparent 2px 26px
    );
}
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    background: #fff;
    clip-path: polygon(0 100%, 0 38%, 18% 60%, 50% 18%, 82% 60%, 100% 38%, 100% 100%);
}*/
.hero .wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.ratepill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(111, 201, 196, 0.16);
    border: 1px solid rgba(111, 201, 196, 0.4);
    color: #dffcf9;
    padding: 8px 15px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.86rem;
}
.ratepill .st {
    display: flex;
    gap: 1px;
    color: #ffc24a;
}
.ratepill .st svg {
    width: 14px;
    height: 14px;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.05rem);
    margin: 18px 0 16px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.04;
}
.hero h1 b {
    color: var(--orange);
    font-weight: 800;
}
.hero .sub {
    font-size: 1.12rem;
    color: #222;
    max-width: 560px;
}
.benes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 24px 0 28px;
}
.bene {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.02rem;
}
.bene .ck {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--orange);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}
.bene .ck svg {
    width: 15px;
    height: 15px;
    color: #fff;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Form card (UNCHANGED STYLE) */
.formcard {
    background: #fff;
    color: var(--ink);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    padding: 30px 28px;
    position: relative;
}
.formcard .ribbon {
    position: absolute;
    top: -15px;
    right: 24px;
    background: var(--orange);
    color: #fff;
    font-family: "Saira Condensed";
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 10px 20px -8px rgba(240, 96, 31, 0.7);
}
.formcard h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--navy);
}
.formcard .fc-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 4px 0 18px;
}
.field {
    margin-bottom: 12px;
}
.field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--navy);
    margin-bottom: 5px;
    text-transform: uppercase;
}
.field input,
.field select {
    width: 100%;
    padding: 13px 14px;
    border: 1.6px solid var(--line);
    border-radius: 11px;
    font: inherit;
    font-size: 0.98rem;
    background: var(--paper);
    color: var(--ink);
    transition:
        border 0.18s,
        box-shadow 0.18s,
        background 0.18s;
}
.field input:focus,
.field select:focus {
    outline: 0;
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47, 163, 156, 0.16);
}
.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23586b78' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M2 4l5 6 5-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}
.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.reassure {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
    color: var(--muted);
    font-size: 0.86rem;
    margin-top: 12px;
}
.reassure svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
    flex: 0 0 auto;
}
.form-done {
    display: none;
    text-align: center;
    padding: 18px 6px;
}
.form-done .big {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--teal-pale);
    color: var(--teal);
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
}
.form-done .big svg {
    width: 34px;
    height: 34px;
}
.form-done h3 {
    font-size: 1.7rem;
    color: var(--navy);
}
.form-done p {
    color: var(--muted);
    margin-top: 6px;
}

/* Trust bar */
.trustbar {
    background: #fff;
    margin-top: -1px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 28px 0;
}
.tcard {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 6px 8px;
}
.tcard .ti {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--paper);
    color: var(--teal);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
}
.tcard .ti svg {
    width: 25px;
    height: 25px;
}
.tcard b {
    font-family: "Saira Condensed";
    font-weight: 800;
    font-size: 1.04rem;
    color: var(--navy);
    line-height: 1.1;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.tcard span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* Sections */
section {
    padding: 80px 0;
}
.sec-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.sec-head h2 {
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    font-weight: 800;
    margin: 12px 0 14px;
    color: var(--navy);
}
.sec-head p {
    color: var(--muted);
    font-size: 1.08rem;
}
.bg-paper {
    background: var(--paper);
}
.sec-cta {
    text-align: center;
    margin-top: 46px;
}

/* Benefits */
.bgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.bcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    text-align: left;
}
.bcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.bcard .bi {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}
.bcard .bi svg {
    width: 32px;
    height: 32px;
    color: #fff;
}
.bi.c1 {
    background: linear-gradient(160deg, #3bb6ae, #2fa39c);
}
.bi.c2 {
    background: linear-gradient(160deg, #ffa45c, #f0601f);
}
.bi.c3 {
    background: linear-gradient(160deg, #ef5a4e, #c63a2f);
}
.bi.c4 {
    background: linear-gradient(160deg, #4f7da3, #16415e);
}
.bcard h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 9px;
    line-height: 1.05;
}
.bcard p {
    color: var(--muted);
    font-size: 0.96rem;
}

/* How it works */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 34px 26px 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: center;
}
.step .num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-family: "Saira Condensed";
    font-weight: 800;
    font-size: 1.4rem;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px -8px rgba(240, 96, 31, 0.7);
}
.step .si {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--teal-pale);
    color: var(--teal);
    display: grid;
    place-items: center;
    margin: 14px auto 16px;
}
.step .si svg {
    width: 33px;
    height: 33px;
}
.step h3 {
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 9px;
}
.step p {
    color: var(--muted);
    font-size: 0.97rem;
}
.step-line {
    display: none;
}

/* Proof / before-after */
.ba-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}
.ba-text h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    margin: 12px 0 14px;
}
.ba-text p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.ba-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}
.ba-stat .n {
    font-family: "Saira Condensed";
    font-weight: 800;
    font-size: 2.3rem;
    color: var(--orange);
    line-height: 1;
}
.ba-stat .t {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}

/* Reviews */
.rev-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    text-align: center;
}
.rev-score {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 14px 22px;
    border-radius: 16px;
}
.rev-score .big {
    font-family: "Saira Condensed";
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--navy);
    line-height: 1;
}
.rev-score .st {
    display: flex;
    gap: 2px;
    color: #ffb22e;
}
.rev-score .st svg {
    width: 18px;
    height: 18px;
}
.rev-score .meta {
    font-size: 0.84rem;
    color: var(--muted);
    font-weight: 600;
}
.rev-score .gicon {
    width: 22px;
    height: 22px;
}
.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review .rh {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review .av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-items: center;
    font-family: "Saira Condensed";
    font-weight: 800;
    font-size: 1.05rem;
    flex: 0 0 auto;
}
.review .who b {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.1;
}
.review .who span {
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.review .who span svg {
    width: 12px;
    height: 12px;
    color: var(--teal);
}
.stars {
    display: flex;
    gap: 2px;
    color: #ffb22e;
}
.stars svg {
    width: 17px;
    height: 17px;
}
.review p {
    color: #34434e;
    font-size: 0.98rem;
    font-weight: 500;
}

/* CTA banner */
.banner {
    background: linear-gradient(120deg, var(--navy) 0%, #0e2c41 60%, #123a55 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.banner::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 96, 31, 0.28), transparent 70%);
}
.banner .wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    flex-wrap: wrap;
}
.banner h2 {
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    font-weight: 800;
}
.banner p {
    color: #c8d6df;
    font-size: 1.08rem;
    margin-top: 8px;
    max-width: 560px;
}
.banner-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.banner-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #bfeae6;
    font-weight: 700;
}
.banner-phone b {
    font-family: "Saira Condensed";
    font-size: 1.3rem;
    color: #fff;
}
.banner-phone:hover b {
    color: var(--orange-l);
}

/* Final form */
.final {
    background: var(--paper);
}
.final-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.final-left h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    margin: 12px 0 14px;
}
.final-left p {
    color: var(--muted);
    font-size: 1.06rem;
    margin-bottom: 24px;
}
.final-list {
    list-style: none;
    display: grid;
    gap: 13px;
}
.final-list li {
    display: flex;
    gap: 13px;
    align-items: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.04rem;
}
.final-list li .ck {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--teal-pale);
    color: var(--teal);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}
.final-list li .ck svg {
    width: 17px;
    height: 17px;
}

/* Footer */
.text-center{
    text-align: center;
}
footer {
    background: var(--navy);
    color: #aebecb;
    padding: 54px 0 20px;
}
.foot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 60%;
    margin: 0px auto;
}
.foot .fbrand img {
    height: 116px;
    margin: 0px auto;
    margin-bottom: 14px;
    
}
.foot p {
    font-size: 0.95rem;
    line-height: 1.7;
}
.foot a:hover {
    color: #fff;
}
.foot h4 {
    font-family: "Saira Condensed";
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 14px;
}
.foot .frow {
    display: inline-block;
    /*align-items: flex-start;
    gap: 10px;*/
    margin-bottom: 11px;
    font-size: 0.94rem;
    margin-right: 15px;
}
.foot .frow svg {
    width: 17px;
    height: 17px;
    color: var(--teal-l);
    flex: 0 0 auto;
    margin-top: 0px;
    padding-top: 2px;
    margin-right: 5px;
}
.foot .frow a {
    color: #cdd9e2;
}
.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 12px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #8499a7;
}
.foot-bottom a {
    margin-left: 18px;
}

/* Mobile sticky bar */
.mobar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: none;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px -12px rgba(10, 34, 49, 0.3);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
}
.mobar a {
    flex: 1;
    font-size: 1rem;
    padding: 14px;
}

/* Reveal */
.rv {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.rv.in {
    opacity: 1;
    transform: none;
}
.d1 {
    transition-delay: 0.08s;
}
.d2 {
    transition-delay: 0.16s;
}
.d3 {
    transition-delay: 0.24s;
}
.d4 {
    transition-delay: 0.32s;
}



.hero-mascot{
    display: none;
}
/*Responsive*/
@media(min-width: 1199px){
    .brand{
        padding-top: 85px;
    }
    .nav-r{
        padding-top: 15px;
    }
    .hero-mascot {
        position: absolute;
        left: -25px;
        bottom: 60px;
        width: 165px;
        opacity: 0.96;
        filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.4));
        pointer-events: none;
        display: block;
    }

}
@media (max-width: 980px) {
    .hero .wrap,
    .ba-wrap,
    .final-wrap {
        grid-template-columns: 1fr;
    }
    .hero {
        padding-bottom: 100px;
    }
    .formcard {
        order: -1;
    }
    .bgrid {
        grid-template-columns: 1fr 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .tgrid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .foot {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 680px) {
    .wrap {
        padding: 0 16px;
    }
    section {
        padding: 58px 0;
    }
    .nav {
        height: 74px;
    }
    .brand img {
        height: 52px;
    }
    .callbox .lbl,
    .callbox .num {
        display: none;
    }
    .nav .btn {
        padding: 11px 16px;
        font-size: 0.92rem;
    }
    .bgrid,
    .tgrid,
    .trust-grid,
    .foot {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.35rem;
    }
    .formcard {
        padding: 24px 20px;
    }
    .frow {
        grid-template-columns: 1fr;
    }
    .banner .wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .mobar {
        display: flex;
    }
    body {
        padding-bottom: 74px;
    }
    footer {
        padding-bottom: 20px;
    }
}