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

:root {
    --bg: #fff;
    --s1: #f8f6f1;
    --gold: #9A7510;
    --gold-l: #B8880A;
    --gold-btn: #C49A1A;
    --text: #0a1628;
    --text2: #425466;
    --text3: #8a96a8;
    --border: #e8e2d8;
    --border2: #d8d0c0;
    --green: #2d8a10;
}

.site {
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--text);
    border-radius: 18px;
    border: 1.5px solid var(--border);
    overflow: hidden;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 42px;
    height: 78px;
    border-bottom: 1.5px solid var(--border);
    background: #fff;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 25.5px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 17.25px;
    color: var(--text2);
    cursor: pointer;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-sign {
    font-size: 17.25px;
    color: var(--text2);
    cursor: pointer;
}

.nav-btn {
    background: var(--text);
    color: #fff;
    font-size: 17.25px;
    font-weight: 500;
    padding: 10.5px 24px;
    border-radius: 7.5px;
    cursor: pointer;
    border: none;
}

/* TICKER */
.ticker {
    background: linear-gradient(90deg, #faf5e8, #f5eed8, #faf5e8);
    border-bottom: 1.5px solid #e8d8a8;
    padding: 10.5px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    white-space: nowrap;
    animation: tick 28s linear infinite;
}

.ticker-inner:hover {
    animation-play-state: paused;
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 39px;
    font-size: 15px;
    color: #6a5010;
    border-right: 1.5px solid #d8c888;
}

.tick-check {
    width: 19.5px;
    height: 19.5px;
    background: var(--green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10.5px;
    flex-shrink: 0;
}

.tick-country {
    font-weight: 600;
    color: #3a2808;
}

.tick-time {
    color: #a08840;
    font-size: 12.75px;
}

@keyframes tick {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(105px);
    pointer-events: none;
}

.orb1 {
    width: 750px;
    height: 630px;
    background: rgba(196, 154, 26, 0.14);
    top: -150px;
    left: -120px;
    animation: f1 14s ease-in-out infinite alternate;
}

.orb2 {
    width: 570px;
    height: 480px;
    background: rgba(140, 100, 20, 0.1);
    top: -75px;
    right: -90px;
    animation: f2 17s ease-in-out infinite alternate;
}

.orb3 {
    width: 420px;
    height: 360px;
    background: rgba(220, 180, 50, 0.08);
    bottom: 0;
    left: 35%;
    animation: f3 20s ease-in-out infinite alternate;
}

@keyframes f1 {
    to {
        transform: translate(42px, 30px) scale(1.1);
    }
}

@keyframes f2 {
    to {
        transform: translate(-30px, 42px) scale(1.06);
    }
}

@keyframes f3 {
    to {
        transform: translate(-42px, -21px) scale(0.94);
    }
}

canvas#hc {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 54px;
    align-items: center;
    padding: 66px 42px 60px;
}

/* COUNTER */
.counter-eyebrow {
    font-size: 14.25px;
    color: var(--gold);
    letter-spacing: 3.75px;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-eyebrow::before {
    content: '';
    width: 27px;
    height: 2.25px;
    background: var(--gold);
    display: block;
}

.counter-label-top {
    font-size: 14.25px;
    color: var(--text3);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.counter-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.counter-num {
    font-family: 'DM Mono', monospace;
    font-size: 114px;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    letter-spacing: -3px;
    transition: color 0.4s;
}

.counter-pulse {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--green);
    margin-bottom: 15px;
    animation: pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
}

.counter-label-bottom {
    font-size: 19.5px;
    color: var(--text2);
    font-weight: 300;
    margin-bottom: 42px;
    line-height: 1.5;
}

.counter-label-bottom strong {
    color: var(--gold-l);
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 13.5px;
    margin-bottom: 36px;
}

.btn-p {
    background: var(--text);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 16.5px 33px;
    border-radius: 7.5px;
    cursor: pointer;
    border: none;
}

.btn-s {
    background: transparent;
    color: var(--text2);
    font-size: 18px;
    padding: 16.5px 27px;
    border-radius: 7.5px;
    cursor: pointer;
    border: 1.5px solid var(--border2);
    text-decoration: none;
}

.trusted {
    border-top: 1.5px solid rgba(10, 22, 40, 0.07);
    padding-top: 24px;
}

.t-label {
    font-size: 12.75px;
    color: var(--text3);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.t-logos {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.tl {
    font-size: 14.25px;
    color: var(--text3);
    background: var(--s1);
    border: 1.5px solid var(--border);
    padding: 4.5px 13.5px;
    border-radius: 6px;
}

/* CALCULATOR */
.calc {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(10, 22, 40, 0.08), 0 24px 60px rgba(10, 22, 40, 0.07);
    overflow: hidden;
}

.calc-hd {
    padding: 19.5px 24px;
    background: var(--s1);
    border-bottom: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calc-title {
    font-size: 14.25px;
    color: var(--text2);
    font-weight: 500;
    letter-spacing: 1.5px;
}

.calc-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--green);
}

.clive-dot {
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.calc-body {
    padding: 21px 24px;
}

.calc-lbl {
    font-size: 12px;
    color: var(--text3);
    letter-spacing: 2.25px;
    margin-bottom: 9px;
}

.calc-select {
    width: 100%;
    padding: 13.5px 18px;
    border: 1.5px solid var(--border2);
    border-radius: 7.5px;
    font-size: 18px;
    color: var(--text);
    background: #fff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238a96a8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.calc-result {
    margin-top: 18px;
    padding: 18px;
    background: var(--s1);
    border-radius: 9px;
    border: 1.5px solid var(--border);
}

.calc-vtype {
    font-size: 12.75px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2.25px;
    margin-bottom: 12px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1.5px solid var(--border);
}

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

.calc-key {
    font-size: 13.5px;
    color: var(--text3);
}

.calc-val {
    font-family: 'DM Mono', monospace;
    font-size: 15px;
    color: var(--text);
}

.calc-trow {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 6px;
}

.calc-tk {
    font-size: 15px;
    color: var(--text2);
    font-weight: 500;
}

.calc-tv {
    font-family: 'DM Serif Display', serif;
    font-size: 30px;
    color: var(--gold-l);
}

.calc-cta {
    width: 100%;
    margin-top: 15px;
    background: var(--gold-btn);
    color: #fff;
    font-size: 16.5px;
    font-weight: 600;
    padding: 15px;
    border-radius: 7.5px;
    cursor: pointer;
    border: none;
}

.calc-note {
    font-size: 12px;
    color: var(--text3);
    text-align: center;
    margin-top: 9px;
}

.calc-ph {
    text-align: center;
    padding: 21px 0;
    color: var(--text3);
    font-size: 16.5px;
}

/* STATS */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    background: var(--s1);
}

.sb {
    padding: 27px 36px;
    border-right: 1.5px solid var(--border);
}

.sb:last-child {
    border-right: none;
}

.sb-n {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    color: var(--text);
    margin-bottom: 4.5px;
}

.sb-n em {
    color: var(--gold-l);
    font-style: normal;
}

.sb-l {
    font-size: 14.25px;
    color: var(--text2);
    line-height: 1.5;
}

/* PROCESS */
.process {
    padding: 36px 42px;
    border-bottom: 1.5px solid var(--border);
}

.proc-hd {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 27px;
}

.proc-title {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--text);
}

.proc-sub {
    font-size: 13.5px;
    color: var(--text3);
    letter-spacing: 2.25px;
}

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

.step {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.step:hover,
.step.active {
    border-color: var(--gold-btn);
    background: rgba(196, 154, 26, 0.04);
}

.step.active {
    box-shadow: 0 3px 12px rgba(196, 154, 26, 0.1);
}

.step-num {
    font-family: 'DM Mono', monospace;
    font-size: 12.75px;
    color: var(--text3);
    margin-bottom: 10.5px;
}

.step-icon {
    font-size: 27px;
    margin-bottom: 10.5px;
}

.step-name {
    font-size: 17.25px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4.5px;
}

.step-time {
    font-size: 12.75px;
    color: var(--text3);
}

.step-detail {
    grid-column: 1/-1;
    border: 1.5px solid var(--gold-btn);
    border-radius: 12px;
    padding: 19.5px;
    background: rgba(196, 154, 26, 0.03);
    display: none;
}

.step-detail.show {
    display: block;
}

.step-detail-title {
    font-size: 16.5px;
    font-weight: 600;
    color: var(--gold-l);
    margin-bottom: 7.5px;
}

.step-detail-text {
    font-size: 14.25px;
    color: var(--text2);
    line-height: 1.75;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.step-tags span {
    font-size: 12.75px;
    color: var(--text2);
    background: var(--s1);
    border: 1.5px solid var(--border);
    padding: 3px 12px;
    border-radius: 4.5px;
}

/* CARDS */
.sec-hd {
    padding: 33px 42px 0;
}

.sec-title {
    font-family: 'DM Serif Display', serif;
    font-size: 39px;
    color: var(--text);
}

.sec-sub {
    font-size: 12.75px;
    color: var(--text3);
    letter-spacing: 2.25px;
    margin-top: 4.5px;
}

.filters {
    display: flex;
    gap: 7.5px;
    padding: 18px 42px 0;
}

.fb {
    padding: 7.5px 19.5px;
    border: 1.5px solid var(--border);
    border-radius: 7.5px;
    font-size: 14.25px;
    color: var(--text3);
    cursor: pointer;
    background: transparent;
}

.fb.on {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(196, 154, 26, 0.06);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
    padding: 21px 42px 39px;
}

.card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 1.5px 4.5px rgba(10, 22, 40, 0.05);
    position: relative;
}

.card:hover {
    box-shadow: 0 3px 12px rgba(10, 22, 40, 0.08), 0 24px 60px rgba(10, 22, 40, 0.08);
    transform: translateY(-3px);
}

.vbadge {
    position: absolute;
    top: 13.5px;
    right: 13.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid var(--border);
    padding: 4.5px 10.5px;
    border-radius: 15px;
    font-size: 11.25px;
    color: var(--text2);
    z-index: 2;
}

.vdot {
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: #e07010;
    animation: blink 1.5s infinite;
}

.c-head {
    padding: 19.5px 22.5px 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.c-name {
    font-family: 'DM Serif Display', serif;
    font-size: 27px;
}

.c-flag {
    font-size: 30px;
    margin-top: 27px;
}

.c-img {
    height: 120px;
    overflow: hidden;
    position: relative;
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
}

.c-badge {
    position: absolute;
    bottom: 7.5px;
    left: 12px;
    font-family: 'DM Mono', monospace;
    font-size: 10.5px;
    color: var(--text3);
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid var(--border);
    padding: 3px 9px;
    border-radius: 4.5px;
    letter-spacing: 1.2px;
}

.c-body {
    padding: 16.5px 22.5px;
}

.c-desc {
    font-size: 14.25px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 16.5px;
}

.c-btns {
    display: flex;
    gap: 9px;
}

.cb1 {
    background: var(--text);
    color: #fff;
    font-size: 13.5px;
    font-weight: 500;
    padding: 10.5px 21px;
    border-radius: 7.5px;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.cb2 {
    border: 1.5px solid var(--border2);
    background: transparent;
    color: var(--text2);
    font-size: 13.5px;
    padding: 10.5px 16.5px;
    border-radius: 7.5px;
    cursor: pointer;
    flex: 1;
    text-align: center;
    text-decoration: none;
}

.proof {
    padding: 39px 42px;
    border-top: 1.5px solid var(--border);
    background: var(--s1);
}

.p-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--text3);
    letter-spacing: 3px;
    border: 1.5px solid var(--border2);
    padding: 4.5px 13.5px;
    border-radius: 6px;
    margin-bottom: 18px;
}

.proof-h {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--text);
    margin-bottom: 6px;
}

.proof-h em {
    color: var(--gold-l);
}

.proof-sub {
    font-size: 13.5px;
    color: var(--text2);
    margin-bottom: 21px;
}

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

.chat {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.ch-hd {
    padding: 12px 16.5px;
    border-bottom: 1.5px solid var(--border);
    display: flex;
    justify-content: space-between;
}

.ch-name {
    font-size: 12.75px;
    color: var(--gold);
    font-weight: 600;
}

.ch-time {
    font-size: 10.5px;
    color: var(--text3);
    font-family: 'DM Mono', monospace;
}

.ch-bd {
    padding: 13.5px;
    display: flex;
    flex-direction: column;
    gap: 7.5px;
    background: #f9f7f3;
}

.bub {
    font-size: 12px;
    line-height: 1.55;
    padding: 9px 12px;
    border-radius: 9px;
    max-width: 92%;
}

.bub.in {
    background: #fff;
    color: var(--text2);
    align-self: flex-start;
    border: 1.5px solid var(--border);
}

.bub.out {
    background: var(--gold-l);
    color: #fff;
    align-self: flex-end;
}

.feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1.5px solid var(--border);
}

.feat {
    padding: 30px 36px;
    border-right: 1.5px solid var(--border);
}

.feat:last-child {
    border: none;
}

.feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: rgba(196, 154, 26, 0.1);
    border: 1.5px solid rgba(196, 154, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 19.5px;
}

.feat-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feat-desc {
    font-size: 14.25px;
    color: var(--text2);
    line-height: 1.75;
}

.cta {
    padding: 48px 42px;
    text-align: center;
    border-top: 1.5px solid var(--border);
    background: var(--s1);
}

.cta-h {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    margin-bottom: 9px;
}

.cta-sub {
    font-size: 16.5px;
    color: var(--text2);
    margin-bottom: 27px;
}

.cta-btns {
    display: flex;
    gap: 13.5px;
    justify-content: center;
}

footer {
    padding: 18px 42px;
    border-top: 1.5px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foot-c {
    font-size: 12.75px;
    color: var(--text3);
}

.foot-r {
    display: flex;
    align-items: center;
    gap: 7.5px;
}

.fdot {
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: #3a9020;
    animation: blink 2s infinite;
}

.fon {
    font-size: 12px;
    color: #3a9020;
    font-family: 'DM Mono', monospace;
    letter-spacing: 2.25px;
}

/* Popup */
.pum-container {
    padding: 24px !important;
}

.pum-content {
    font-family: 'Inter', sans-serif !important;
}

.pum-content strong {
    font-weight: 700;
}

.country-popup-form-title {
    color: #ac0707;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pum-content>p {
    margin-bottom: 15px;
}

.pum-content form>p {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 5px 0px;
    margin: 0;
}

.pum-content form input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #F1DDD5;
    border-radius: 10px;
    background: #FFFFFF;
    color: #666;
    font-size: 16px;
}

.pum-content form p {
    margin: 0;
}

.labeltext p {
    font-size: 16px;
    line-height: 1.2;
}

.label-check-group p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-submit {
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: capitalize;
    max-width: fit-content;
    min-width: 162px;
    margin-top: 15px;
    border: none;
}

.label-check .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.labelcheck .wpcf7-list-item {
    margin: 10px 0;
}

.labelcheck .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.labelcheck .wpcf7-list-item-label {
    white-space: nowrap;
    font-size: 16px;
}

body .pum-close {
    top: 20px !important;
    right: 23px !important;
    width: 24px !important;
    height: 24px !important;
    background: center/ contain no-repeat url("/wp-content/uploads/2024/12/close.svg") !important;
    font-size: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    outline: 0 !important;
}

.btn {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    color: #FFFFFF !important;
    background: #1A202C !important;
    border-radius: 12px !important;
    gap: 20px;
    padding: 15px !important;
    min-width: 188px;
    cursor: pointer;
    transition: all ease 0.3s;
}

.wpcf7-not-valid {
    border: 1px solid #ff6a2f !important;
}

.wpcf7-not-valid-tip {
    display: none;
}

#country-popup-title {
    margin-bottom: 15px;
}

.country-popup-body p {
    margin-bottom: 10px;
}

.country-popup-body ul,
.country-popup-body ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.country-popup-body li {
    margin-bottom: 8px;
}