/* ═══════════════════════════════════════
TOKENS
═══════════════════════════════════════ */
:root {
    --r: cubic-bezier(.22, 1, .36, 1);
    --rb: cubic-bezier(.34, 1.56, .64, 1)
}

[data-theme="light"] {
    --bg: #F7F5F0;
    --bg1: #EFEDE7;
    --bg2: #E5E2DA;
    --card: #FFFFFF;
    --card2: #FAFAF8;
    --border: rgba(0, 0, 0, .07);
    --border2: rgba(0, 0, 0, .14);
    --ink: #0A0A0A;
    --ink2: #3D3D3D;
    --ink3: #7A7A7A;
    --p: #0C3B2E;
    --p2: #1B6B4A;
    --a: #2ECC8C;
    --a2: #F5A623;
    --a3: #1E5EBF;
    --glow: rgba(46, 204, 140, .18);
    --nav: rgba(247, 245, 240, .88);
    --sh: 0 2px 16px rgba(0, 0, 0, .06);
    --sh2: 0 12px 48px rgba(0, 0, 0, .10);
    --sh3: 0 32px 80px rgba(0, 0, 0, .15);
    --hero-grad: linear-gradient(160deg, #0C3B2E 0%, #1B6B4A 55%, #0A2E24 100%);
    --hero-right: #EDEAE2;
}

[data-theme="dark"] {
    --bg: #07100D;
    --bg1: #0D1A14;
    --bg2: #12221A;
    --card: #0F1D17;
    --card2: #152419;
    --border: rgba(255, 255, 255, .07);
    --border2: rgba(255, 255, 255, .14);
    --ink: #F0EDE7;
    --ink2: #ABABAB;
    --ink3: #5A5A5A;
    --p: #2ECC8C;
    --p2: #48DBA0;
    --a: #2ECC8C;
    --a2: #F5C842;
    --a3: #5B9BFF;
    --glow: rgba(46, 204, 140, .22);
    --nav: rgba(7, 16, 13, .90);
    --sh: 0 2px 16px rgba(0, 0, 0, .4);
    --sh2: 0 12px 48px rgba(0, 0, 0, .55);
    --sh3: 0 32px 80px rgba(0, 0, 0, .7);
    --hero-grad: linear-gradient(160deg, #071510 0%, #0F2A1E 55%, #050F0A 100%);
    --hero-right: #0A160F;
}

/* ═══════════════════════════════════════
UTILITIES
═══════════════════════════════════════ */
.mt-70 { margin-top: 70px !important; }

/* ═══════════════════════════════════════
BASE
═══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    transition: background .35s var(--r), color .35s var(--r);
    overflow-x: hidden;
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input {
    font-family: inherit
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--bg1)
}

::-webkit-scrollbar-thumb {
    background: var(--a);
    border-radius: 9px
}

/* ═══════════════════════════════════════
LAYOUT
═══════════════════════════════════════ */
.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px
}

.sec {
    padding: 110px 0
}

.sec-sm {
    padding: 72px 0
}

.eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--a)
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.03em
}

.lead {
    font-size: 1.05rem;
    color: var(--ink2);
    line-height: 1.75;
    font-weight: 300
}

/* ═══════════════════════════════════════
BUTTONS
═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .9rem;
    border-radius: 12px;
    padding: 13px 26px;
    transition: all .22s var(--rb);
    white-space: nowrap;
    letter-spacing: -.01em
}

.btn-green {
    background: var(--a);
    color: #fff;
    box-shadow: 0 4px 20px var(--glow)
}

.btn-green:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px var(--glow)
}

.btn-dark {
    background: var(--p);
    color: #fff
}

[data-theme="dark"] .btn-dark {
    background: var(--a);
    color: #000
}

.btn-dark:hover {
    transform: translateY(-2px);
    filter: brightness(1.12)
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border2);
    color: var(--ink)
}

.btn-outline:hover {
    border-color: var(--a);
    color: var(--a);
    background: rgba(46, 204, 140, .06)
}

.btn-ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .22)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .22)
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 14px
}

.btn-sm {
    padding: 9px 18px;
    font-size: .8rem;
    border-radius: 9px
}

/* ═══════════════════════════════════════
NAVBAR
═══════════════════════════════════════ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: 68px;
    background: var(--nav);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: all .3s
}

#nav.up {
    box-shadow: var(--sh2)
}

.nav-in {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -.04em
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--p);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0
}

.logo-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--a), var(--p))
}

.logo-mark svg {
    position: relative;
    z-index: 1
}

.logo span {
    color: var(--a)
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 4px
}

.nl {
    font-size: .86rem;
    font-weight: 500;
    color: var(--ink2);
    padding: 7px 14px;
    border-radius: 9px;
    transition: all .18s
}

.nl:hover {
    background: var(--bg1);
    color: var(--ink)
}

.navr {
    display: flex;
    align-items: center;
    gap: 10px
}

.tm-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink2);
    font-size: 15px;
    transition: all .2s
}

.tm-btn:hover {
    border-color: var(--a);
    color: var(--a);
    transform: scale(1.05)
}

.ham {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    cursor: pointer
}

.ham span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all .28s
}

.ham.x span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px)
}

.ham.x span:nth-child(2) {
    opacity: 0;
    transform: translateX(-6px)
}

.ham.x span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px)
}

.mob-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 899;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(110%);
    transition: transform .36s var(--r)
}

.mob-nav.show {
    transform: none
}

.mob-nl {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    transition: color .18s
}

.mob-nl:hover {
    color: var(--a)
}

.mob-ctas {
    display: flex;
    gap: 12px;
    margin-top: 24px
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--r), transform .6s var(--r)
}

.rv.in {
    opacity: 1;
    transform: none
}

.rv.d1 {
    transition-delay: .07s
}

.rv.d2 {
    transition-delay: .14s
}

.rv.d3 {
    transition-delay: .21s
}

.rv.d4 {
    transition-delay: .28s
}

/* ══════════════════════════════════════════════════════════════
▌ CONTACT PAGE — HERO BANNER
══════════════════════════════════════════════════════════════ */
.ct-hero {
    padding-top: 68px;
    background: var(--hero-grad);
    position: relative;
    overflow: hidden;
}

.ct-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 140, .16), transparent 70%);
    top: -180px;
    right: -150px;
    pointer-events: none;
}

.ct-hero::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .1), transparent 70%);
    bottom: -80px;
    left: 5%;
    pointer-events: none;
}

/* Subtle grid texture */
.ct-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 0%, transparent 75%);
}

.ct-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 28px 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ct-hero-inner2 {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 28px 90px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

.ct-hero-left {}

.ct-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 140, .12);
    border: 1px solid rgba(46, 204, 140, .28);
    border-radius: 999px;
    padding: 5px 16px 5px 10px;
    margin-bottom: 28px;
}

.ct-hero-dot {
    width: 7px;
    height: 7px;
    background: var(--a);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.65)
    }
}

.ct-hero-eyebrow-txt {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--a)
}

.ct-hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 22px;
}

.ct-hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--a)
}

.ct-hero-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    font-weight: 300;
    max-width: 420px;
}

.ct-hero-lead2 {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    font-weight: 300;
}

/* Right: Quick-info cards */
.ct-hero-right {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.ct-info-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(12px);
    transition: all .28s var(--r);
}

.ct-info-card:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .22);
    transform: translateX(5px);
}

.ct-info-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(46, 204, 140, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--a);
    font-size: 18px;
    flex-shrink: 0;
}

.ct-info-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 3px
}

.ct-info-value {
    font-size: .94rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3
}

.ct-info-sub {
    font-size: .76rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px
}

/* ══════════════════════════════════════════════════════════════
▌ MAIN CONTACT LAYOUT
══════════════════════════════════════════════════════════════ */
.ct-main {
    padding: 100px 0
}

.ct-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 56px;
    align-items: start;
}

/* ── LEFT COLUMN ── */
.ct-left {}

/* Section label reused from v3 */
.ct-label {
    margin-bottom: 14px
}

/* Contact method cards */
.ct-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px
}

.ct-method {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all .28s var(--r);
    position: relative;
    overflow: hidden;
}

.ct-method::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--a);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .32s var(--r);
    border-radius: 0 2px 2px 0;
}

.ct-method:hover {
    transform: translateX(4px);
    box-shadow: var(--sh2);
    border-color: var(--border2);
}

.ct-method:hover::before {
    transform: scaleY(1)
}

.cm-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all .28s;
}

.ct-method:hover .cm-ico {
    transform: scale(1.08)
}

.cm-title {
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -.01em
}

.cm-value {
    font-size: .96rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px
}

.cm-sub {
    font-size: .76rem;
    color: var(--ink3);
    line-height: 1.5
}

/* Office card */
.ct-office {
    background: var(--p);
    border-radius: 18px;
    padding: 26px 24px;
    margin-top: 14px;
    position: relative;
    overflow: hidden;
}

.ct-office::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 140, .18), transparent);
    right: -40px;
    top: -40px;
    pointer-events: none;
}

.ct-office-label {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 14px;
}

.ct-office-name {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.ct-office-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1
}

.ct-office-row {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.ct-office-row i {
    color: var(--a);
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0
}

.ct-office-row span {
    font-size: .84rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.55
}

.ct-office-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 9px;
    padding: 9px 16px;
    font-size: .8rem;
    font-weight: 600;
    color: #fff;
    margin-top: 18px;
    transition: all .22s var(--r);
}

.ct-office-map-btn:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-1px)
}

/* Social row */
.ct-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.ct-social-label {
    font-size: .74rem;
    color: var(--ink3);
    font-weight: 500;
    margin-right: 6px
}

.ct-soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--ink3);
    transition: all .22s var(--r);
}

.ct-soc-btn:hover {
    background: var(--a);
    border-color: var(--a);
    color: #fff;
    transform: translateY(-2px)
}

/* ── RIGHT COLUMN — FORM ── */
.ct-form-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--sh2);
}

.ct-form-header {
    background: var(--bg1);
    border-bottom: 1px solid var(--border);
    padding: 26px 32px;
}

.ct-form-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px
}

.ct-form-title {
    font-family: 'Fraunces', serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.ct-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(46, 204, 140, .1);
    border: 1px solid rgba(46, 204, 140, .2);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--p);
}

[data-theme="dark"] .ct-form-badge {
    color: var(--a)
}

.ct-form-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--a);
    animation: blink 2s ease-in-out infinite
}

.ct-form-sub {
    font-size: .84rem;
    color: var(--ink3);
    margin-top: 4px
}

.ct-form-body {
    padding: 32px
}

/* Topic tabs */
.ct-topic-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.ct-topic {
    padding: 7px 16px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    border: 1.5px solid var(--border2);
    color: var(--ink3);
    cursor: pointer;
    transition: all .22s var(--r);
}

.ct-topic.on {
    background: var(--p);
    color: #fff;
    border-color: var(--p);
}

[data-theme="dark"] .ct-topic.on {
    background: var(--a);
    color: #000;
    border-color: var(--a)
}

.ct-topic:hover:not(.on) {
    border-color: var(--a);
    color: var(--a);
    background: rgba(46, 204, 140, .06)
}

/* Form fields — v3 match */
.fg {
    margin-bottom: 18px
}

.fl {
    display: block;
    font-size: .74rem;
    font-weight: 700;
    color: var(--ink2);
    margin-bottom: 7px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fi {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg1);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: .9rem;
    color: var(--ink);
    outline: none;
    transition: all .2s;
}

.fi:focus {
    border-color: var(--a);
    background: var(--card);
    box-shadow: 0 0 0 3px var(--glow)
}

.fi::placeholder {
    color: var(--ink3)
}

.fi-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.fi-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.65
}

/* Char counter */
.fi-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px
}

.char-count {
    font-size: .72rem;
    color: var(--ink3)
}

/* Priority selector */
.priority-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.prio-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 9px;
    border: 1.5px solid var(--border2);
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .22s var(--r);
}

.prio-btn i {
    font-size: 12px
}

.prio-btn.on-normal {
    background: rgba(30, 94, 191, .08);
    border-color: var(--a3);
    color: var(--a3)
}

.prio-btn.on-urgent {
    background: rgba(245, 166, 35, .08);
    border-color: var(--a2);
    color: #b87a10
}

.prio-btn.on-critical {
    background: rgba(204, 46, 46, .08);
    border-color: #cc2e2e;
    color: #cc2e2e
}

[data-theme="dark"] .prio-btn.on-urgent {
    color: var(--a2)
}

/* Form submit */
.ct-submit {
    width: 100%;
    padding: 15px;
    background: var(--p);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: .96rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 4px;
    transition: all .24s var(--rb);
}

.ct-submit:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(12, 59, 46, .28)
}

[data-theme="dark"] .ct-submit {
    background: var(--a);
    color: #000
}

[data-theme="dark"] .ct-submit:hover {
    box-shadow: 0 8px 28px var(--glow)
}

/* Consent row */
.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px
}

.consent-check {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: var(--bg1);
    border: 1.5px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
    margin-top: 1px;
}

.consent-check.checked {
    background: var(--a);
    border-color: var(--a)
}

.consent-check i {
    font-size: 9px;
    color: #fff;
    display: none
}

.consent-check.checked i {
    display: block
}

.consent-txt {
    font-size: .78rem;
    color: var(--ink3);
    line-height: 1.6
}

.consent-txt a {
    color: var(--a);
    font-weight: 600
}

/* Form footer */
.ct-form-footer {
    background: var(--bg1);
    border-top: 1px solid var(--border);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ct-form-secure {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .76rem;
    color: var(--ink3)
}

.ct-form-secure i {
    color: var(--a);
    font-size: 13px
}

.ct-response-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    color: var(--ink3);
}

.ct-response-time i {
    font-size: 11px;
    color: var(--a2)
}

/* ══════════════════════════════════════════════════════════════
▌ MAP / VISIT SECTION
══════════════════════════════════════════════════════════════ */
.ct-visit {
    background: var(--bg1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 90px 0;
}

.ct-visit-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}

.ct-visit-left {}

.ct-map-placeholder {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

/* Decorative map SVG background */
.ct-map-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ct-map-bg svg {
    width: 100%;
    height: 100%;
    opacity: .35
}

.ct-map-pin-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.ct-map-pin {
    width: 52px;
    height: 52px;
    background: var(--p);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 24px rgba(12, 59, 46, .35);
    animation: pin-bounce 3s ease-in-out infinite;
}

[data-theme="dark"] .ct-map-pin {
    background: var(--a);
    color: #000
}

.ct-map-pin-shadow {
    width: 18px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .18);
    margin-top: 6px;
    animation: shadow-pulse 3s ease-in-out infinite;
}

@keyframes pin-bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes shadow-pulse {

    0%,
    100% {
        transform: scaleX(1);
        opacity: .18
    }

    50% {
        transform: scaleX(.7);
        opacity: .1
    }
}

.ct-map-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: var(--sh);
    white-space: nowrap;
    font-size: .82rem;
    font-weight: 600;
    z-index: 2;
}

.ct-map-label i {
    color: var(--p);
    font-size: 13px
}

[data-theme="dark"] .ct-map-label i {
    color: var(--a)
}

/* Office hours */
.ct-hours {
    margin-top: 28px
}

.ct-hours-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 12px;
}

.ct-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.ct-hour-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
}

.ct-hour-day {
    font-size: .72rem;
    font-weight: 700;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 3px
}

.ct-hour-time {
    font-size: .86rem;
    font-weight: 600;
    color: var(--ink)
}

.ct-hour-item.closed .ct-hour-time {
    color: var(--ink3)
}

.ct-hour-open {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--a);
    margin-right: 5px;
    vertical-align: middle;
    animation: blink 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
▌ FAQ STRIP — v3 style
══════════════════════════════════════════════════════════════ */
.ct-faq {
    padding: 90px 0
}

.ct-faq-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.ct-faq-left {}

.ct-faq-left p {
    margin-top: 14px;
    max-width: 280px
}

.ct-faq-items {
    margin-top: 8px
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 19px 0;
    font-size: .94rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: color .18s;
    letter-spacing: -.01em;
}

.faq-q:hover {
    color: var(--a)
}

.faq-ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bg1);
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--ink3);
    flex-shrink: 0;
    transition: all .3s var(--rb);
}

.faq-item.open .faq-ico {
    background: var(--a);
    border-color: var(--a);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s var(--r)
}

.faq-a-in {
    padding-bottom: 17px;
    font-size: .87rem;
    color: var(--ink3);
    line-height: 1.75
}

.faq-item.open .faq-a {
    max-height: 260px
}

/* ══════════════════════════════════════════════════════════════
▌ SUCCESS TOAST
══════════════════════════════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--sh3);
    transform: translateY(24px);
    opacity: 0;
    pointer-events: none;
    transition: all .38s var(--rb);
    min-width: 300px;
}

.toast.show {
    transform: none;
    opacity: 1;
    pointer-events: all
}

.toast-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(46, 204, 140, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--a);
    font-size: 17px;
    flex-shrink: 0;
}

.toast-title {
    font-size: .86rem;
    font-weight: 700;
    margin-bottom: 2px
}

.toast-sub {
    font-size: .76rem;
    color: var(--ink3)
}

.toast-close {
    margin-left: auto;
    color: var(--ink3);
    font-size: 13px;
    cursor: pointer;
    transition: color .18s;
    padding: 4px
}

.toast-close:hover {
    color: var(--ink)
}

/* ══════════════════════════════════════════════════════════════
▌ FOOTER — v3 match
══════════════════════════════════════════════════════════════ */
footer {
    background: var(--p);
    padding: 72px 0 32px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 52px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.foot-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 12px;
}

.foot-logo span {
    color: var(--a)
}

.foot-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.75;
    max-width: 280px
}

.foot-socials {
    display: flex;
    gap: 8px;
    margin-top: 18px
}

.fsoc {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    transition: all .2s;
}

.fsoc:hover {
    background: var(--a);
    border-color: var(--a);
    color: #fff;
    transform: translateY(-2px)
}

.foot-col-title {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 16px;
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.foot-link {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    transition: color .18s
}

.foot-link:hover {
    color: var(--a)
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .74rem;
    color: rgba(255, 255, 255, .3);
}

.foot-badges {
    display: flex;
    gap: 7px
}

.fbadge {
    padding: 3px 9px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
}

/* ═══════════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════════ */
@media(max-width:1024px) {
    .ct-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 70px 28px 80px
    }

    .ct-hero-title {
        font-size: clamp(2.4rem, 5vw, 4rem)
    }

    .ct-main-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ct-visit-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ct-faq-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }
}

@media(max-width:768px) {
    .navlinks {
        display: none
    }

    .navr .btn-outline,
    .navr .btn-dark {
        display: none
    }

    .ham {
        display: flex
    }

    .frow {
        grid-template-columns: 1fr
    }

    .ct-hours-grid {
        grid-template-columns: 1fr
    }

    .ct-hero-right {
        display: none
    }

    .ct-form-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .foot-grid {
        grid-template-columns: 1fr
    }

    .foot-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }
}

@media(max-width:500px) {
    .ct-form-body {
        padding: 22px 18px
    }

    .ct-form-header {
        padding: 20px 18px
    }

    .ct-form-footer {
        padding: 14px 18px
    }

    .ct-topic-tabs {
        gap: 5px
    }

    .priority-row {
        flex-direction: column
    }

    .toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        min-width: unset
    }
}

/* ═══════════════════════════════════════
HERO — SPLIT
═══════════════════════════════════════ */
.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 68px
}

/* ── Left Panel ── */
.hero-left {
    background: var(--hero-grad);
    padding: 80px 64px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 140, .18), transparent 70%);
    top: -140px;
    right: -140px;
    pointer-events: none;
}

.hero-left::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .1), transparent 70%);
    bottom: -60px;
    left: 40px;
    pointer-events: none;
}

.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 140, .12);
    border: 1px solid rgba(46, 204, 140, .28);
    border-radius: 999px;
    padding: 6px 16px 6px 10px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: var(--a);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.7)
    }
}

.hero-eyebrow-text {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--a)
}

.hero-h1 {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.hero-h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--a)
}

.hero-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
    z-index: 1
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    position: relative;
    z-index: 1;
}

.hero-avatars {
    display: flex
}

.h-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-left: -9px;
    flex-shrink: 0;
}

.h-av:first-child {
    margin-left: 0
}

.hero-proof-text strong {
    display: block;
    color: #fff;
    font-size: .9rem;
    font-weight: 700
}

.hero-proof-text span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55)
}

/* ── Right Panel ── */
.hero-right {
    background: var(--hero-right);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px 80px 50px;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border2) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .5;
}

.dash-scene {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px
}

/* ── Floating notification cards ── */
.fn {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .14), 0 2px 8px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    z-index: 10;
    min-width: 210px;
}

.fn1 {
    top: -14px;
    right: -28px;
    animation: floatA 5s ease-in-out infinite
}

.fn2 {
    bottom: -14px;
    left: -28px;
    animation: floatB 5s ease-in-out infinite
}

@keyframes floatA {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg)
    }

    50% {
        transform: translateY(-10px) rotate(1deg)
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0) rotate(1deg)
    }

    50% {
        transform: translateY(-8px) rotate(-1deg)
    }
}

.fn-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.fn-ico.green {
    background: rgba(46, 204, 140, .14);
    color: #1B7A4A
}

.fn-ico.gold {
    background: rgba(245, 166, 35, .14);
    color: #B7790A
}

[data-theme="dark"] .fn-ico.green {
    color: var(--a)
}

[data-theme="dark"] .fn-ico.gold {
    color: var(--a2)
}

.fn-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2
}

.fn-sub {
    font-size: .72rem;
    color: var(--ink3);
    margin-top: 1px
}

/* ── Dashboard card ── */
.dash-card {
    background: var(--card);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .13), 0 4px 16px rgba(0, 0, 0, .06);
    border: 1px solid var(--border);
    position: relative;
}

.dash-port-label {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 4px
}

.dash-port-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4px
}

.dash-port-val {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1
}

.dash-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(46, 204, 140, .12);
    color: #1B7A4A;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: .75rem;
    font-weight: 700;
}

[data-theme="dark"] .dash-chip {
    color: var(--a)
}

.dash-updated {
    font-size: .72rem;
    color: var(--ink3);
    margin-bottom: 18px
}

.dash-chart-wrap {
    height: 96px;
    margin: 0 -4px 14px;
    position: relative
}

.dash-svg {
    width: 100%;
    height: 100%
}

.dash-tabs {
    display: flex;
    gap: 3px;
    background: var(--bg1);
    border-radius: 9px;
    padding: 3px;
    margin-bottom: 16px
}

.dash-tab {
    flex: 1;
    text-align: center;
    padding: 6px 4px;
    border-radius: 7px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .2s
}

.dash-tab.on {
    background: var(--card);
    color: var(--ink);
    box-shadow: var(--sh)
}

.dash-assets {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.da {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 13px;
    background: var(--bg1);
    border-radius: 11px;
    border: 1px solid var(--border);
}

.da-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.da-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.da-name {
    font-size: .84rem;
    font-weight: 700
}

.da-sub {
    font-size: .7rem;
    color: var(--ink3)
}

.da-right {
    text-align: right
}

.da-price {
    font-size: .86rem;
    font-weight: 700
}

.da-chg {
    font-size: .72rem;
    font-weight: 600
}

.pos {
    color: #1B7A4A
}

[data-theme="dark"] .pos {
    color: #2ECC8C
}

.neg {
    color: #C0392B
}

[data-theme="dark"] .neg {
    color: #F07070
}

/* ═══════════════════════════════════════
TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
    background: var(--p);
    padding: 0;
    overflow-x: auto
}

.trust-inner {
    display: flex;
    align-items: stretch;
    min-width: 600px
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 16px 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.trust-item:last-child {
    border-right: none
}

.trust-icon {
    color: var(--a);
    font-size: 14px;
    flex-shrink: 0
}

.trust-text {
    font-size: .8rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
    white-space: nowrap
}

.trust-text strong {
    color: #fff
}

/* ═══════════════════════════════════════
SERVICES
═══════════════════════════════════════ */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px
}

.srv {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: all .32s var(--r);
}

.srv::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--a), var(--p));
    opacity: 0;
    transition: opacity .32s;
    pointer-events: none
}

.srv:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh2);
    border-color: transparent
}

.srv:hover::after {
    opacity: .045
}

.srv:hover .srv-arrow {
    opacity: 1;
    transform: translateX(0)
}

.srv-num {
    font-family: 'Fraunces', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--border2);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -.04em
}

.srv-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: var(--bg1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--p);
    margin-bottom: 16px;
}

[data-theme="dark"] .srv-icon {
    color: var(--a)
}

.srv-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 9px;
    letter-spacing: -.01em
}

.srv-desc {
    font-size: .86rem;
    color: var(--ink2);
    line-height: 1.65
}

.srv-arrow {
    position: absolute;
    top: 26px;
    right: 26px;
    width: 30px;
    height: 30px;
    background: var(--a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all .28s var(--r);
}

/* ═══════════════════════════════════════
STATS BAND
═══════════════════════════════════════ */
.stats-band {
    background: var(--bg1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 0
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
}

.stat-box {
    text-align: center;
    padding: 0 16px;
    position: relative
}

.stat-box+.stat-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 1px;
    background: var(--border)
}

.stat-big {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 6px
}

.stat-big span {
    color: var(--a)
}

.stat-lbl {
    font-size: .78rem;
    color: var(--ink3);
    font-weight: 500
}

/* ═══════════════════════════════════════
PROCESS
═══════════════════════════════════════ */
.process-wrap {
    margin-top: 70px;
    position: relative
}

.process-line {
    position: absolute;
    top: 39px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--a), transparent);
    z-index: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1
}

.ps {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 18px
}

.ps-ring {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 8px var(--bg), var(--sh);
    transition: all .3s var(--r);
    color: var(--a);
    font-size: 22px;
}

.ps:hover .ps-ring {
    background: var(--a);
    color: #fff;
    box-shadow: 0 0 0 8px var(--bg), 0 0 28px var(--glow)
}

.ps-title {
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 7px;
    letter-spacing: -.01em
}

.ps-desc {
    font-size: .8rem;
    color: var(--ink2);
    line-height: 1.6
}

/* ═══════════════════════════════════════
SPLIT SECTION
═══════════════════════════════════════ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.split.flip {
    direction: rtl
}

.split.flip>* {
    direction: ltr
}

.split-panel {
    background: var(--bg1);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px
}

.fcu {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 14px;
    transition: all .28s
}

.fcu:last-child {
    margin-bottom: 0
}

.fcu:hover {
    transform: translateX(5px);
    box-shadow: var(--sh)
}

.fcu-header {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px
}

.fcu-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0
}

.fcu-title {
    font-size: .88rem;
    font-weight: 700
}

.fcu-sub {
    font-size: .72rem;
    color: var(--ink3)
}

.pbar-row {
    display: flex;
    justify-content: space-between;
    font-size: .74rem;
    color: var(--ink3);
    margin-bottom: 5px
}

.pbar-row span:last-child {
    font-weight: 700
}

.pbar {
    height: 5px;
    background: var(--bg2);
    border-radius: 999px;
    overflow: hidden
}

.pbar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--a), var(--p));
    transition: width 1.2s var(--r)
}

.split-mini-row {
    display: flex;
    gap: 10px;
    margin-top: 4px
}

.split-mini {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    text-align: center
}

.split-mini-val {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1
}

.split-mini-lbl {
    font-size: .7rem;
    color: var(--ink3);
    margin-top: 3px
}

.split-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 26px
}

.sp {
    display: flex;
    gap: 13px
}

.sp-dot {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(46, 204, 140, .1);
    border: 1px solid rgba(46, 204, 140, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--p);
    flex-shrink: 0;
    margin-top: 2px;
}

[data-theme="dark"] .sp-dot {
    color: var(--a)
}

.sp-title {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 2px
}

.sp-desc {
    font-size: .82rem;
    color: var(--ink2);
    line-height: 1.6
}

/* ═══════════════════════════════════════
PRICING
═══════════════════════════════════════ */
.plan-toggle {
    display: flex;
    background: var(--bg1);
    border-radius: 13px;
    padding: 4px;
    width: fit-content;
    margin: 40px auto 0;
    gap: 0;
}

.pt {
    padding: 9px 26px;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink2);
    cursor: pointer;
    transition: all .22s
}

.pt.on {
    background: var(--card);
    color: var(--ink);
    box-shadow: var(--sh)
}

.plans-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
    justify-content: center;
    grid: none;
}

.plan {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition: all .32s var(--r)
}

.plan:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh2)
}

.plan.hot {
    background: var(--p);
    border-color: transparent
}

[data-theme="dark"] .plan.hot {
    background: linear-gradient(160deg, #0C2E22, #1B5E3E)
}

.plan.hot .plan-name {
    color: rgba(255, 255, 255, .55)
}

.plan.hot .plan-price,
.plan.hot .plan-per {
    color: #fff
}

.plan.hot .plan-desc,
.plan.hot .plan-feat-item {
    color: rgba(255, 255, 255, .75)
}

.plan.hot .plan-divider {
    background: rgba(255, 255, 255, .12)
}

.plan.hot .plan-feat-item::before {
    color: var(--a)
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--a2);
    color: #fff;
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
}

.plan-name {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--p);
    margin-bottom: 12px
}

.plan-price {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    color: var(--ink)
}

.plan-price sup {
    font-size: 1.1rem;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block
}

.plan-per {
    font-size: .8rem;
    color: var(--ink3);
    margin-top: 4px;
    margin-bottom: 18px
}

.plan-desc {
    font-size: .84rem;
    color: var(--ink2);
    line-height: 1.6;
    margin-bottom: 18px
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 18px 0
}

.plan-feats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px
}

.plan-feat-item {
    font-size: .84rem;
    color: var(--ink2);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4
}

.plan-feat-item::before {
    content: '✓';
    color: var(--p);
    font-weight: 900;
    font-size: .72rem;
    background: rgba(46, 204, 140, .1);
    width: 19px;
    height: 19px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-btn {
    width: 100%;
    padding: 13px;
    border-radius: 11px;
    font-weight: 700;
    font-size: .88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .22s var(--r)
}

.pricing-checkout-wrap {
    padding-bottom: 48px
}

.pricing-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    max-width: 1040px;
    margin: 0 auto
}

.pricing-checkout-plan {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column
}

.pricing-checkout-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: var(--sh);
    display: flex;
    flex-direction: column
}

.pc-form-title {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 8px;
    letter-spacing: -.02em
}

.pc-form-lead {
    font-size: .84rem;
    color: var(--ink2);
    line-height: 1.55;
    margin: 0 0 22px
}

.pc-form {
    flex: 1
}

.pc-buy-btn {
    margin-top: 8px;
    border: none;
    cursor: pointer
}

.pc-form-foot {
    font-size: .78rem;
    color: var(--ink3);
    line-height: 1.5;
    margin: 16px 0 0
}

.pc-back-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--p);
    text-decoration: none;
    transition: color .2s
}

.pc-back-link:hover {
    color: var(--a)
}

.pc-alert {
    max-width: 1040px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: .84rem;
    line-height: 1.5
}

.pc-alert--err {
    background: rgba(220, 53, 69, .08);
    border: 1px solid rgba(220, 53, 69, .25);
    color: #c82333
}

[data-theme="dark"] .pc-alert--err {
    background: rgba(220, 53, 69, .12);
    border-color: rgba(255, 120, 130, .35);
    color: #ff9a9e
}

@media(max-width:900px) {
    .pricing-checkout-grid {
        grid-template-columns: 1fr;
        max-width: 440px
    }
}

/* ═══════════════════════════════════════
TESTIMONIALS
═══════════════════════════════════════ */
.testi-grid {
    columns: 3;
    gap: 18px;
    margin-top: 56px
}

.tc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 18px;
    break-inside: avoid;
    transition: all .28s var(--r);
}

.tc:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh2);
    border-color: var(--border2)
}

.tc-stars {
    color: #F5A623;
    font-size: .8rem;
    letter-spacing: 2px;
    margin-bottom: 11px
}

.tc-text {
    font-size: .86rem;
    color: var(--ink2);
    line-height: 1.7;
    margin-bottom: 16px
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.tc-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.tc-name {
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.2
}

.tc-role {
    font-size: .7rem;
    color: var(--ink3)
}

/* ═══════════════════════════════════════
FAQ
═══════════════════════════════════════ */
.faq-cols {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px
}

.faq-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px
}

.faq-stat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px
}

.faq-stat-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(46, 204, 140, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--p);
    flex-shrink: 0
}

[data-theme="dark"] .faq-stat-ico {
    color: var(--a)
}

.faq-stat-val {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--ink)
}

.faq-stat-lbl {
    font-size: .73rem;
    color: var(--ink3);
    margin-top: 2px
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 19px 0;
    font-size: .94rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: color .18s;
    letter-spacing: -.01em;
}

.faq-q:hover {
    color: var(--a)
}

.faq-ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bg1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--ink2);
    flex-shrink: 0;
    transition: all .3s var(--rb);
}

.faq-item.open .faq-ico {
    background: var(--a);
    border-color: var(--a);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s var(--r)
}

.faq-a-in {
    padding-bottom: 17px;
    font-size: .87rem;
    color: var(--ink2);
    line-height: 1.75
}

.faq-item.open .faq-a {
    max-height: 260px
}

/* ═══════════════════════════════════════
CTA BAND
═══════════════════════════════════════ */
.cta-band {
    background: var(--p);
    position: relative;
    overflow: hidden;
    padding: 88px 0
}

.cta-band::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 140, .14), transparent 70%);
    top: -200px;
    right: -150px
}

.cta-band::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .07), transparent 70%);
    bottom: -100px;
    left: 80px
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 620px;
    margin: 0 auto
}

.cta-inner h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -.04em;
    margin-bottom: 16px
}

.cta-inner h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--a)
}

.cta-inner p {
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 36px
}

.cta-email-row {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 13px;
    padding: 5px 5px 5px 18px;
}

.cta-inp {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: .88rem;
    color: #fff;
    min-width: 0
}

.cta-inp::placeholder {
    color: rgba(255, 255, 255, .4)
}

.cta-note {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 6px
}

/* ═══════════════════════════════════════
FOOTER
═══════════════════════════════════════ */
footer {
    background: var(--bg1);
    border-top: 1px solid var(--border);
    padding: 70px 0 30px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 52px
}

.foot-desc {
    font-size: .83rem;
    color: var(--ink3);
    line-height: 1.7;
    margin-top: 12px;
    max-width: 280px
}

.foot-socials {
    display: flex;
    gap: 8px;
    margin-top: 18px
}

.fsoc {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--bg2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--ink3);
    transition: all .2s;
}

.fsoc:hover {
    background: var(--a);
    border-color: var(--a);
    color: #fff;
    transform: translateY(-2px)
}

.foot-col-title {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 16px
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.foot-link {
    font-size: .83rem;
    color: var(--ink3);
    transition: color .18s
}

.foot-link:hover {
    color: var(--a)
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: .76rem;
    color: var(--ink3)
}

.foot-badges {
    display: flex;
    gap: 7px
}

.fbadge {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 9px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--ink3)
}

/* ═══════════════════════════════════════
MODAL / AUTH
═══════════════════════════════════════ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(8px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.overlay.on {
    opacity: 1;
    pointer-events: all
}

.modal {
    background: var(--card);
    border-radius: 24px;
    width: 450px;
    border: 1px solid var(--border);
    box-shadow: var(--sh3);
    transform: translateY(24px) scale(.97);
    transition: all .35s var(--r);
    overflow: hidden;
    max-height: 96vh;
    overflow-y: auto;
}

.overlay.on .modal {
    transform: none
}

.modal-top {
    background: var(--p);
    padding: 32px 32px 24px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.modal-top::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 140, .2), transparent);
    right: -40px;
    top: -60px;
    pointer-events: none;
}

.modal-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 16px
}

.modal-logo span {
    color: var(--a)
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    z-index: 2;
    transition: all .2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, .25);
    transform: rotate(90deg)
}

.modal-top h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.03em;
    position: relative;
    z-index: 1;
    line-height: 1.1;
    margin-bottom: 4px
}

.modal-top p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    position: relative;
    z-index: 1
}

.modal-body {
    padding: 24px 32px 32px
}

.modal-tabs {
    display: flex;
    background: var(--bg1);
    border-radius: 10px;
    padding: 3px;
    gap: 0;
    margin-bottom: 22px
}

.mt {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: .84rem;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .22s
}

.mt.on {
    background: var(--card);
    color: var(--a);
    box-shadow: var(--sh)
}

/* Form elements */
.fg {
    margin-bottom: 14px
}

.fl {
    display: block;
    font-size: .74rem;
    font-weight: 700;
    color: var(--ink2);
    margin-bottom: 6px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.fi-wrap {
    position: relative
}

.fi {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg1);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: .9rem;
    color: var(--ink);
    outline: none;
    transition: all .2s;
}

.fi:focus {
    border-color: var(--a);
    background: var(--card);
    box-shadow: 0 0 0 3px var(--glow)
}

.fi::placeholder {
    color: var(--ink3)
}

.fi-with-icon {
    padding-right: 42px
}

.fi-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink3);
    font-size: 13px;
    cursor: pointer;
    transition: color .18s;
}

.fi-toggle:hover {
    color: var(--a)
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

/* Password strength */
.pw-strength {
    margin-top: 7px
}

.pw-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 5px
}

.pw-bar {
    flex: 1;
    height: 3px;
    border-radius: 999px;
    background: var(--bg2);
    transition: background .3s
}

.pw-bar.s1 {
    background: #E74C3C
}

.pw-bar.s2 {
    background: #E67E22
}

.pw-bar.s3 {
    background: #F1C40F
}

.pw-bar.s4 {
    background: #2ECC8C
}

.pw-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--ink3)
}

.pw-label.strength-1 {
    color: #E74C3C
}

.pw-label.strength-2 {
    color: #E67E22
}

.pw-label.strength-3 {
    color: #F1C40F
}

.pw-label.strength-4 {
    color: #2ECC8C
}

.fsub {
    width: 100%;
    padding: 13px;
    background: var(--a);
    border-radius: 10px;
    font-weight: 700;
    font-size: .92rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    transition: all .22s var(--r);
}

.fsub:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--glow)
}

.fswitch {
    text-align: center;
    font-size: .8rem;
    color: var(--ink3);
    margin-top: 16px
}

.fswitch a {
    color: var(--a);
    font-weight: 700;
    cursor: pointer
}

.fswitch a:hover {
    text-decoration: underline
}

.forgotlink {
    text-align: right;
    margin-top: 5px;
    margin-bottom: 2px
}

.forgotlink a {
    font-size: .76rem;
    color: var(--a)
}

.forgotlink a:hover {
    text-decoration: underline
}

.terms-note {
    font-size: .74rem;
    color: var(--ink3);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5
}

.terms-note a {
    color: var(--a)
}

/* ═══════════════════════════════════════
SCROLL REVEAL
═══════════════════════════════════════ */
.rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--r), transform .6s var(--r)
}

.rv.in {
    opacity: 1;
    transform: none
}

.rv.d1 {
    transition-delay: .08s
}

.rv.d2 {
    transition-delay: .16s
}

.rv.d3 {
    transition-delay: .24s
}

.rv.d4 {
    transition-delay: .32s
}

.rv.d5 {
    transition-delay: .40s
}

/* ═══════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1100px) {
    .hero-left {
        padding: 70px 44px 70px 50px
    }

    .hero-right {
        padding: 60px 32px
    }

    .fn1 {
        right: -10px;
        top: -10px
    }

    .fn2 {
        left: -10px;
        bottom: -10px
    }
}

@media(max-width:900px) {
    .hero-h1 {
        font-size: 40px
    }

    .hero-wrap {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .hero-left {
        padding: 70px 28px 60px;
        text-align: left;
        min-height: auto
    }

    .hero-right {
        padding: 60px 28px;
        min-height: 460px
    }

    .fn1 {
        top: -8px;
        right: 8px
    }

    .fn2 {
        bottom: -8px;
        left: 8px
    }

    .split {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .split.flip {
        direction: ltr
    }

    .srv-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .plans-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }

    .testi-grid {
        columns: 2
    }

    .faq-cols {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }

    .process-line {
        display: none
    }

    .modal {
        border-radius: 20px;
        width: 90%
    }
}

@media(max-width:640px) {
    .hero-h1 {
        font-size: 36px
    }

    .navlinks {
        display: none
    }

    .navr .btn-outline,
    .navr .btn-green {
        display: none
    }

    .ham {
        display: flex
    }

    .srv-grid {
        grid-template-columns: 1fr
    }

    .testi-grid {
        columns: 1
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .foot-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start
    }

    .cta-email-row {
        flex-direction: column;
        padding: 10px 14px
    }

    .modal-body {
        padding: 20px 20px 28px
    }

    .modal {
        border-radius: 10px;
        width: 90%
    }

    .modal-top {
        padding: 24px 20px 18px
    }

    /* .frow{grid-template-columns:1fr} */
    .dash-scene {
        max-width: 100%
    }

    .fn {
        min-width: 180px;
        font-size: .76rem
    }
}

@media(max-width:400px) {
    .hero-h1 {
        font-size: 36px
    }

    .hero-left {
        padding: 50px 18px 50px
    }

    .fn1,
    .fn2 {
        display: none
    }

    /* hide on very small screens, keep dashboard clean */
    .modal {
        border-radius: 20px;
        width: 90%
    }
}



.abt-trust {
    padding: 90px 0;
    background: #fff;
    text-align: center;
}

.abt-head {
    margin-bottom: 50px;
}

.abt-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.abt-trust-card {
    padding: 30px 20px;
    border-radius: 16px;
    background: #F8FAF9;
    transition: .3s;
}

.abt-trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.abt-trust-card i {
    font-size: 22px;
    color: #16A085;
    margin-bottom: 14px;
}

.abt-trust-card h4 {
    margin-bottom: 8px;
}

.abt-trust-card p {
    font-size: .9rem;
    color: #666;
}

.abt-approach {
    padding: 90px 0;
    background: #F7F9F8;
}

.abt-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.abt-step {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.step-no {
    font-weight: 800;
    font-size: 1.4rem;
    color: #16A085;
    margin-bottom: 10px;
}

.abt-mission {
    padding: 90px 0;
    background: #0F2F26;
    color: #fff;
}

.abt-mission-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-col h3 {
    margin: 12px 0;
    font-size: 1.6rem;
}

.mission-col p {
    color: #CFE8DE;
    font-size: .95rem;
}

.login-register {
    max-width: 620px;
    margin: auto;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
}