/* =============================================
   ROOT
============================================= */
:root {
    --navy: #09152A;
    --navy2: #0E2040;
    --navy3: #142952;
    --red: #BE2A2B;
    --red2: #961f20;
    --gold: #D4A030;
    --gold2: #f0c04a;
    --white: #FFFFFF;
    --bg1: #F7F9FC;
    --bg2: #EDF1F8;
    --t1: #09152A;
    --t2: #374766;
    --t3: #6E809A;
    --bdr: rgba(9, 21, 42, .09);
    --bdr2: rgba(9, 21, 42, .05);
    --sh1: 0 2px 12px rgba(9, 21, 42, .06);
    --sh2: 0 8px 32px rgba(9, 21, 42, .10);
    --sh3: 0 20px 60px rgba(9, 21, 42, .14);
    --sh4: 0 32px 80px rgba(9, 21, 42, .18);
    --r: 6px;
    --r2: 12px;
    --r3: 20px;
    --ease: .35s cubic-bezier(.25, .46, .45, .94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 17.5px
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--t1);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.8
}

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

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--bg1)
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 3px
}

/* =============================================
   UTILITIES
============================================= */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 40px
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.tag::before,
.tag::after {
    content: '';
    width: 22px;
    height: 1.5px;
    background: var(--red)
}

.tag-w {
    color: var(--gold)
}

.tag-w::before,
.tag-w::after {
    background: var(--gold)
}

.h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.h2-w {
    color: #fff
}

.lead {
    font-size: 1.02rem;
    font-weight: 400;
    color: var(--t2);
    line-height: 1.88;
    max-width: 580px
}

.lead-w {
    color: rgba(255, 255, 255, .68)
}

.sec-hdr {
    text-align: center;
    margin-bottom: 56px
}

.sec-hdr .lead {
    margin: 0 auto
}

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--ease);
    border-radius: var(--r);
    white-space: nowrap;
}

.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 20px rgba(190, 42, 43, .3)
}

.btn-red:hover {
    background: var(--red2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(190, 42, 43, .45)
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 4px 20px rgba(9, 21, 42, .25)
}

.btn-navy:hover {
    background: var(--navy2);
    transform: translateY(-2px)
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .35)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff
}

.btn-white {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.btn-white:hover {
    background: var(--bg1);
    transform: translateY(-2px)
}

.arr {
    display: inline-block;
    transition: transform .3s
}

.btn:hover .arr {
    transform: translateX(5px)
}

/* =============================================
   TOPBAR
============================================= */
#topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--navy);
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: transform .35s ease;
}

#topbar.hide {
    transform: translateY(-100%)
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.tb-left {
    display: flex;
    align-items: center;
    gap: 20px
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .25s;
}

.tb-item:hover {
    color: var(--gold)
}

.tb-item span {
    font-size: 14px
}

.tb-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .12)
}

.tb-right {
    display: flex;
    align-items: center;
    gap: 8px
}

.tb-soc {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
    text-decoration: none;
    transition: all .25s;
}

.tb-soc:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

/* =============================================
   HEADER
============================================= */
.logo-header .logo-img,
.logo-footer .logo-img {
    max-width: 200px;
    height: auto;
}

.logo-footer .logo-img {
    background: var(--white);
    border-radius: 5px;
    padding: 10px;
}

#header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(9, 21, 42, .08);
    box-shadow: 0 2px 20px rgba(9, 21, 42, .05);
    transition: top .35s ease, box-shadow .35s ease;
}

#header.scrolled {
    top: 0;
    box-shadow: 0 4px 30px rgba(9, 21, 42, .12)
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 74px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    position: relative;
    box-shadow: 0 3px 12px rgba(9, 21, 42, .25);
}

.logo-mark::before {
    content: 'ANA';
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .03em
}

.logo-mark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    border-radius: 0 0 9px 9px;
}

.logo-txt {
    display: flex;
    flex-direction: column
}

.logo-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -.01em
}

.logo-sub {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-top: 3px
}

nav {
    display: flex;
    align-items: center;
    gap: 2px
}

nav a {
    font-size: 16px;
    font-weight: 600;
    color: var(--t2);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: var(--r);
    transition: all .25s;
}

nav a:hover {
    color: var(--navy);
    background: var(--bg1)
}

nav a.nav-active {
    color: var(--red);
    background: rgba(190, 42, 43, .07);
    font-weight: 600;
}

.hdr-cta {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--r);
    text-decoration: none;
    transition: var(--ease);
    box-shadow: 0 3px 14px rgba(190, 42, 43, .3);
    white-space: nowrap;
}

.hdr-cta:hover {
    background: var(--red2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(190, 42, 43, .4)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: .3s
}

/* =============================================
   HERO
============================================= */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 162px;
    background: url("/assets/new-brand/img/hero-banner/banner.jpg") center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(110deg, rgba(9, 21, 42, .95) 0%, rgba(9, 21, 42, .85) 45%, rgba(14, 32, 64, .72) 100%); */
    background: linear-gradient(135deg, rgb(9 21 42) 0%, rgb(9 21 42 / 95%) 55%, rgb(190 42 43 / 19%) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 64px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 48, .12);
    border: 1px solid rgba(212, 160, 48, .28);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 40px;
    margin-bottom: 22px;
}

.hero-badge::before {
    content: '★';
    font-size: 9px
}

.hero-h1 {
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.06;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}

.hero-h1 em {
    font-style: normal;
    color: var(--gold)
}

.hero-sub {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.85;
    max-width: 490px;
    margin-bottom: 28px
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px
}

.pill {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .82);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    transition: all .3s;
    cursor: default;
}

.pill:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.hero-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 36px
}

.hero-checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
}

.hero-checks li::before {
    content: '✔';
    width: 20px;
    height: 20px;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 9px;
    flex-shrink: 0;
}

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

/* Hero Form */
.h-form {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, .1);
    /* border-radius: var(--r3); */
    padding: 34px 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.f-title {
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px
}

.f-sub {
    font-size: .85rem;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 22px
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px
}

.f-grp {
    margin-bottom: 11px
}

.f-grp label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 6px;
}

.f-grp input,
.f-grp textarea,
.f-grp select {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r);
    padding: 12px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color .3s, background .3s;
}

.f-grp select option {
    background: var(--navy);
    color: #fff
}

.f-grp input::placeholder,
.f-grp textarea::placeholder {
    color: rgba(255, 255, 255, .2)
}

.f-grp input:focus,
.f-grp textarea:focus,
.f-grp select:focus {
    border-color: rgba(190, 42, 43, .6);
    background: rgba(255, 255, 255, .08);
}

.f-grp textarea {
    resize: vertical;
    min-height: 70px
}

.r-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 9px;
    display: block
}

.r-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 11px
}

.r-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r);
    padding: 6px 9px;
    cursor: pointer;
    transition: all .25s;
}

.r-item:hover {
    background: rgba(190, 42, 43, .12);
    border-color: rgba(190, 42, 43, .34)
}

.r-item input[type="radio"] {
    accent-color: var(--red);
    width: 12px;
    height: 12px;
    flex-shrink: 0
}

.r-item span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .75)
}

.f-btn {
    width: 100%;
    padding: 13px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--ease);
    box-shadow: 0 4px 18px rgba(190, 42, 43, .4);
    margin-top: 4px;
}

.f-btn:hover {
    background: var(--red2);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(190, 42, 43, .5)
}

/* =============================================
   TRUST STRIP
============================================= */
#trust {
    padding: 64px 0;
    background: var(--bg1);
    border-bottom: 1px solid var(--bdr);
}

.trust-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 36px;
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap
}

.t-badge {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    opacity: .35;
    filter: grayscale(1);
    transition: all .4s;
    cursor: default
}

.t-badge:hover {
    opacity: 1;
    filter: grayscale(0)
}

.t-badge-txt {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    border: 2px solid currentColor;
    padding: 8px 18px;
    border-radius: 6px;
    letter-spacing: -.01em;
}

.t-badge.amz .t-badge-txt {
    color: #FF9900
}

.t-badge.bn .t-badge-txt {
    color: #003B5C
}

.t-badge.gb .t-badge-txt {
    color: #4285F4
}

.t-badge.ab .t-badge-txt {
    color: #1d1d1f
}

.t-badge.ko .t-badge-txt {
    color: #e20036
}

.t-badge.aud .t-badge-txt {
    color: #FF9900
}

/* =============================================
   SERVICES
============================================= */
#services {
    padding: 50px 0;
    background: var(--white);
}

/* ── Section Header ── */
.svc-hdr {
    text-align: center;
    margin-bottom: 60px;
}

.svc-hdr .lead {
    margin: 0 auto;
}

.svc-em {
    font-style: normal;
    color: var(--red);
    position: relative;
}

.svc-em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
    border-radius: 2px;
    opacity: .4;
}

/* ── Grid ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}

/* ── Card ── */
.svc-card {
    background: var(--white);
    /* border-radius: 16px; */
    border: 1.5px solid rgba(9, 21, 42, .08);
    padding: 30px 26px 26px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.svc-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 28px 60px rgba(9, 21, 42, .13);
    border-color: rgba(190, 42, 43, .2);
}

/* ── Card Top: icon + watermark number ── */
.svc-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Watermark number */
.svc-num {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.06em;
    color: var(--navy);
    opacity: .06;
    user-select: none;
    transition: opacity .35s ease;
}

.svc-card:hover .svc-num {
    opacity: .12;
}

/* Icon box */
.svc-ico-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(9, 21, 42, .2);
    transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
}

.svc-card:hover .svc-ico-box {
    background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 28px rgba(190, 42, 43, .38);
}

/* ── Title ── */
.svc-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 9px;
    line-height: 1.35;
    letter-spacing: -.015em;
}

/* ── Description ── */
.svc-desc {
    font-size: .86rem;
    color: var(--t2);
    line-height: 1.78;
    margin-bottom: 18px;
    flex: 1;
}

/* ── Feature Bullets ── */
.svc-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.svc-feats li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .79rem;
    color: var(--t2);
    font-weight: 500;
    line-height: 1.4;
}

.svc-feats li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

/* ── CTA Link ── */
.svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 30px;
    border: 1.5px solid rgba(9, 21, 42, .15);
    background: transparent;
    align-self: flex-start;
    transition: background .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.svc-arr {
    font-size: 13px;
    display: inline-block;
    transition: transform .3s ease;
}

.svc-cta:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 6px 22px rgba(190, 42, 43, .32);
}

.svc-cta:hover .svc-arr {
    transform: translateX(4px);
}

/* ── Bottom gradient bar ── */
.svc-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.svc-card:hover .svc-bar {
    transform: scaleX(1);
}

/* ── Bottom CTA Strip ── */
.svc-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    /* border-radius: 18px; */
    padding: 38px 48px;
    box-shadow: 0 20px 56px rgba(9, 21, 42, .22);
    position: relative;
    overflow: hidden;
}

.svc-cta-strip::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(190, 42, 43, .18) 0%, transparent 68%);
    pointer-events: none;
}

.svc-cta-strip::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 30%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(212, 160, 48, .1) 0%, transparent 68%);
    pointer-events: none;
}

.svc-cta-strip-body {
    position: relative;
    z-index: 1;
}

.svc-cta-strip-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -.01em;
}

.svc-cta-strip-sub {
    font-size: .83rem;
    color: rgba(255, 255, 255, .52);
    line-height: 1.6;
}

.svc-cta-strip .btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    white-space: nowrap;
}

/* =============================================
   WHY CHOOSE US
============================================= */
#why {
    padding: 50px 0;
    background: var(--white)
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.why-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--r3);
    box-shadow: var(--sh4);
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 36px
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--bg1);
    border-radius: var(--r2);
    padding: 22px 20px;
    border: 1px solid var(--bdr2);
    border-left: 3px solid var(--red);
    transition: box-shadow .3s, border-color .3s;
}

.why-item:hover {
    box-shadow: var(--sh1);
    border-color: var(--bdr)
}

.why-ico {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(190, 42, 43, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px
}

.why-desc {
    font-size: .9rem;
    color: var(--t2);
    line-height: 1.7
}

/* =============================================
   HOW IT WORKS
============================================= */
#hiw {
    padding: 50px 0;
    background: var(--bg1)
}

.hiw-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px
}

.hiw-track::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--red), var(--gold), var(--red), var(--navy));
    z-index: 0;
    opacity: .2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 26px;
    box-shadow: 0 0 0 6px var(--bg1), var(--sh1);
    transition: all .4s;
}

.step:hover .step-num {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 0 0 6px var(--bg1), 0 8px 30px rgba(9, 21, 42, .2)
}

.step:hover .step-num span {
    filter: invert(1)
}

.step-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px
}

.step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px
}

.step-desc {
    font-size: .88rem;
    color: var(--t2);
    line-height: 1.7
}

/* =============================================
   STATS
============================================= */
#stats {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid var(--bdr2);
    border-bottom: 1px solid var(--bdr2);
    position: relative;
}

#stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(190, 42, 43, .03) 0%, transparent 50%, rgba(212, 160, 48, .04) 100%);
    pointer-events: none;
}

.stats-overlay {
    display: none
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1
}

.stat {
    text-align: center;
    padding: 40px 30px;
    border-right: 1px solid var(--bdr);
    transition: background .3s;
}

.stat:last-child {
    border-right: none
}

.stat:hover {
    background: var(--bg1)
}

.stat-num {
    font-size: clamp(3rem, 4.8vw, 4.5rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-num span {
    color: var(--red)
}

.stat-bar {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    margin: 0 auto 14px;
    border-radius: 2px
}

.stat-lbl {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--t3)
}

/* =============================================
   ABOUT
============================================= */
#about {
    padding: 50px 0;
    background: var(--white)
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-img-wrap {
    position: relative
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--r3);
    box-shadow: var(--sh4);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(190, 42, 43, .4);
}

.about-badge strong {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1
}

.about-badge span {
    font-size: 9px;
    color: rgba(255, 255, 255, .8);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.about-content .lead {
    max-width: 100%;
    margin-bottom: 28px
}

.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 28px 0
}

.pillar {
    background: var(--bg1);
    border-radius: var(--r2);
    padding: 20px 18px;
    border: 1px solid var(--bdr2);
    border-left: 3px solid var(--red);
    transition: box-shadow .3s;
}

.pillar:hover {
    box-shadow: var(--sh1)
}

.pillar-t {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px
}

.pillar-d {
    font-size: .88rem;
    color: var(--t2);
    line-height: 1.7
}

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials {
    padding: 50px 0;
    background: var(--bg1)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.testi-card {
    background: var(--white);
    border-radius: var(--r2);
    border: 1px solid var(--bdr);
    box-shadow: var(--sh1);
    padding: 32px 28px;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(190, 42, 43, .05);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh3);
    border-color: transparent
}

.stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 18px
}

.testi-text {
    font-size: .97rem;
    color: var(--t2);
    line-height: 1.85;
    margin-bottom: 26px;
    position: relative;
    z-index: 1
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.testi-av {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bdr);
    flex-shrink: 0;
}

.testi-name {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy)
}

.testi-meta {
    font-size: .82rem;
    color: var(--t3);
    margin-top: 2px
}

.testi-badge {
    display: inline-block;
    margin-top: 4px;
    background: rgba(190, 42, 43, .08);
    color: var(--red);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
}

/* =============================================
   PORTFOLIO
============================================= */
#portfolio {
    padding: 50px 0;
    background: var(--white)
}

.port-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.t-btn {
    padding: 8px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1.5px solid var(--bdr);
    background: #fff;
    color: var(--t2);
    border-radius: 40px;
    cursor: pointer;
    transition: all .3s;
}

.t-btn.active,
.t-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

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

.book-card {
    position: relative;
    cursor: pointer;
    border-radius: var(--r2);
    overflow: hidden;
    box-shadow: var(--sh2);
    transition: all .4s;
}

.book-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--sh4)
}

.book-cover {
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
    position: relative;
}

.bc1 {
    background: linear-gradient(160deg, #1a237e, #0d47a1, #1565c0)
}

.bc2 {
    background: linear-gradient(160deg, #4a0000, #8B1a1a, #b71c1c)
}

.bc3 {
    background: linear-gradient(160deg, #1b5e20, #2e7d32, #388e3c)
}

.bc4 {
    background: linear-gradient(160deg, #3e2723, #5d4037, #795548)
}

.bc5 {
    background: linear-gradient(160deg, #311b92, #512da8, #673ab7)
}

.bc6 {
    background: linear-gradient(160deg, #09152A, #122347, #1a3160)
}

.bc7 {
    background: linear-gradient(160deg, #004d40, #00695c, #00897b)
}

.bc8 {
    background: linear-gradient(160deg, #880e4f, #ad1457, #c2185b)
}

.bk-pat {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .5) 0px, rgba(255, 255, 255, .5) 1px, transparent 1px, transparent 16px);
}

.bk-spine {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bk-spine-txt {
    writing-mode: vertical-rl;
    font-size: 6.5px;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .1em;
    font-weight: 600;
}

.bk-genre {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 20px;
}

.bk-title {
    font-size: .93rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
    position: relative;
    z-index: 1
}

.bk-author {
    font-size: 9px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .04em;
    position: relative;
    z-index: 1
}

.bk-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 21, 42, .9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s;
    padding: 18px;
}

.book-card:hover .bk-overlay {
    opacity: 1
}

.bk-overlay h4 {
    font-size: .93rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 7px
}

.bk-overlay p {
    font-size: .73rem;
    color: rgba(255, 255, 255, .6);
    text-align: center;
    margin-bottom: 14px
}

.bk-btn {
    padding: 7px 18px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
}

.bk-btn:hover {
    background: var(--red2)
}

/* =============================================
   PRICING
============================================= */
#pricing {
    padding: 108px 0;
    background: var(--bg1)
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.price-card {
    background: var(--white);
    border-radius: var(--r2);
    border: 1px solid var(--bdr);
    box-shadow: var(--sh1);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh3);
    border-color: transparent
}

.price-card.featured {
    background: var(--navy);
    border-color: transparent;
    box-shadow: 0 24px 60px rgba(9, 21, 42, .3);
}

.price-pop {
    position: absolute;
    top: 20px;
    right: -28px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.price-tier {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.price-card.featured .price-tier {
    color: var(--gold)
}

.price-name {
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px
}

.price-card.featured .price-name {
    color: #fff
}

.price-desc {
    font-size: .9rem;
    color: var(--t2);
    line-height: 1.7;
    margin-bottom: 24px
}

.price-card.featured .price-desc {
    color: rgba(255, 255, 255, .6)
}

.price-amt {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bdr);
}

.price-card.featured .price-amt {
    border-bottom-color: rgba(255, 255, 255, .1)
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    align-self: flex-start;
    margin-top: 8px
}

.price-card.featured .price-currency {
    color: #fff
}

.price-val {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1
}

.price-card.featured .price-val {
    color: #fff
}

.price-per {
    font-size: .82rem;
    color: var(--t3);
    margin-bottom: 4px
}

.price-card.featured .price-per {
    color: rgba(255, 255, 255, .45)
}

.price-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 30px
}

.price-feats li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .91rem;
    color: var(--t2);
}

.price-card.featured .price-feats li {
    color: rgba(255, 255, 255, .8)
}

.price-feats li::before {
    content: '✔';
    width: 18px;
    height: 18px;
    background: rgba(190, 42, 43, .1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 8px;
    flex-shrink: 0;
    font-weight: 700;
}

.price-card.featured .price-feats li::before {
    background: rgba(212, 160, 48, .15);
    color: var(--gold)
}

/* =============================================
   FAQ
============================================= */
#faq {
    padding: 108px 0;
    background: var(--white)
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: var(--bg1);
    border-radius: var(--r2);
    border: 1px solid var(--bdr2);
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item.open {
    border-color: var(--red)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    transition: color .25s;
    user-select: none;
}

.faq-item.open .faq-q {
    color: var(--red)
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(190, 42, 43, .08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    transition: transform .3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--red);
    color: #fff
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    font-size: .93rem;
    color: var(--t2);
    line-height: 1.8;
}

.faq-item.open .faq-a {
    max-height: 200px
}

.faq-a-inner {
    padding: 0 22px 20px
}

.faq-side {
    padding-top: 8px
}

.faq-side .h2 {
    margin-bottom: 14px
}

.faq-side .lead {
    margin-bottom: 32px
}

.faq-img {
    width: 100%;
    border-radius: var(--r3);
    box-shadow: var(--sh3);
    margin-top: 32px;
}

/* =============================================
   CTA BANNER
============================================= */
#cta {
    padding: 50px 0;
    background: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    position: relative;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 21, 42, .95) 0%, rgba(9, 21, 42, .88) 50%, rgba(14, 32, 64, .85) 100%)
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1
}

.cta-inner .tag-w {
    margin-bottom: 14px
}

.cta-inner h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff;
    margin-bottom: 14px
}

.cta-inner h2 em {
    font-style: normal;
    color: var(--gold)
}

.cta-inner p {
    color: rgba(255, 255, 255, .6);
    max-width: 460px;
    margin: 0 auto 36px
}

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

/* =============================================
   CONTACT
============================================= */
#contact {
    padding: 50px 0;
    background: var(--bg1)
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px
}

.contact-info .h2 {
    margin-bottom: 14px
}

.contact-info .lead {
    margin-bottom: 32px
}

.c-items {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 26px
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border-radius: var(--r2);
    padding: 16px 18px;
    border: 1px solid var(--bdr2);
    transition: box-shadow .3s, border-color .3s;
}

.c-item:hover {
    box-shadow: var(--sh1);
    border-color: var(--bdr)
}

.c-ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(190, 42, 43, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.c-lbl {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 3px
}

.c-val {
    font-size: .97rem;
    color: var(--navy);
    font-weight: 600
}

.c-sub {
    font-size: .83rem;
    color: var(--t3);
    margin-top: 2px
}

.wa-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 13px 26px;
    border-radius: var(--r);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .35);
    transition: all .3s;
}

.wa-contact:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .45)
}

.wa-contact svg {
    width: 20px;
    height: 20px;
    fill: #fff
}

/* Contact Form */
.c-form-wrap {
    background: var(--white);
    /* border-radius: var(--r3); */
    padding: 42px 36px;
    box-shadow: var(--sh3);
    border: 1px solid var(--bdr2);
}

.c-form-title {
    font-size: 1.48rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px
}

.c-form-sub {
    font-size: .84rem;
    color: var(--t2);
    margin-bottom: 24px
}

.cf .f-grp label {
    color: var(--t2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.cf .f-grp input,
.cf .f-grp textarea,
.cf .f-grp select {
    background: var(--bg1);
    border: 1.5px solid var(--bdr);
    color: var(--t1);
    border-radius: var(--r);
    padding: 13px 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    width: 100%;
    outline: none;
    transition: border-color .3s, background .3s;
}

.cf .f-grp input::placeholder,
.cf .f-grp textarea::placeholder {
    color: var(--t3)
}

.cf .f-grp input:focus,
.cf .f-grp textarea:focus,
.cf .f-grp select:focus {
    border-color: var(--red);
    background: var(--white)
}

.cf .f-btn {
    background: var(--navy);
    box-shadow: 0 4px 16px rgba(9, 21, 42, .2);
}

.cf .f-btn:hover {
    background: var(--red);
    box-shadow: 0 8px 24px rgba(190, 42, 43, .35)
}

/* =============================================
   FOOTER
============================================= */
footer {
    background: #060E1A;
    padding: 78px 0 0
}

.foot-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 54px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.foot-brand .logo-name {
    color: #fff;
    font-size: 16px
}

.foot-brand .logo-sub {
    color: var(--gold)
}

.foot-brand .logo-mark {
    background: rgba(255, 255, 255, .07)
}

.foot-desc {
    font-size: .9rem;
    color: rgba(255, 255, 255, .46);
    line-height: 1.85;
    margin: 18px 0 24px;
    max-width: 280px
}

.foot-social {
    display: flex;
    gap: 10px
}

.soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    text-decoration: none;
    transition: all .3s;
}

.soc-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.foot-col h4 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 18px;
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.foot-links a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .52);
    text-decoration: none;
    transition: color .3s
}

.foot-links a:hover {
    color: var(--red)
}

.foot-links a.nav-active {
    color: var(--gold);
    font-weight: 500;
}

.foot-bot {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.foot-copy {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .24)
}

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

.foot-legal a {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .24);
    text-decoration: none;
    transition: color .3s
}

.foot-legal a:hover {
    color: rgba(255, 255, 255, .52)
}

/* =============================================
   WHATSAPP FLOAT
============================================= */
.wa-float {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.wa-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    transition: all .3s;
}

.wa-circle svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.wa-lbl {
    background: var(--navy);
    color: #fff;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
}

.wa-float:hover .wa-circle {
    background: #128C7E;
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .6)
}

/* =============================================
   POPUP MODAL — PROFESSIONAL TWO-COLUMN
============================================= */
.popup-ov {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 22, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    padding: 16px;
}

.popup-ov.active {
    opacity: 1;
    pointer-events: all;
}

.popup-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 920px;
    width: 100%;
    max-height: 92vh;
    /* border-radius: 20px; */
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .06);
    transform: translateY(32px) scale(.96);
    transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.popup-ov.active .popup-box {
    transform: translateY(0) scale(1);
}

/* ── Close Button ── */
.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .8);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 20;
    line-height: 1;
}

.popup-close:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: rotate(90deg);
}

/* ── LEFT PANEL ── */
.popup-left {
    background: linear-gradient(155deg, #050e1c 0%, var(--navy) 55%, #0c1e3a 100%);
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.popup-left::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(190, 42, 43, .2) 0%, transparent 68%);
    pointer-events: none;
}

.popup-left::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 160, 48, .14) 0%, transparent 68%);
    pointer-events: none;
}

.popup-left-inner {
    position: relative;
    z-index: 1;
}

/* Brand row */
.popup-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
}

.popup-brand-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
    border-radius: 9px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 900;
    color: #fff;
    letter-spacing: .06em;
}

.popup-brand-mark::after {
    content: 'ANA';
}

.popup-brand-txt span {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
}

.popup-brand-txt small {
    font-size: 10px;
    color: rgba(255, 255, 255, .42);
    letter-spacing: .05em;
}

/* Hero badge */
.popup-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 160, 48, .14);
    border: 1px solid rgba(212, 160, 48, .3);
    color: var(--gold);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 30px;
    margin-bottom: 14px;
}

/* Hero headline */
.popup-hero-title {
    font-size: 1.52rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.26;
    letter-spacing: -.02em;
    margin-bottom: 9px;
}

.popup-hero-title em {
    font-style: normal;
    color: var(--gold);
}

.popup-hero-sub {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Benefits list */
.popup-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.popup-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .79rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

.pb-ico {
    width: 20px;
    height: 20px;
    background: rgba(190, 42, 43, .22);
    border: 1px solid rgba(190, 42, 43, .45);
    border-radius: 50%;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Testimonial */
.popup-testimonial {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    padding: 14px 16px;
}

.popup-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.popup-testi-text {
    font-size: .76rem;
    color: rgba(255, 255, 255, .62);
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 10px;
}

.popup-testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-testi-av {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--red), var(--red2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.popup-testi-author strong {
    display: block;
    font-size: .77rem;
    color: #fff;
    font-weight: 700;
}

.popup-testi-author span {
    font-size: .69rem;
    color: rgba(255, 255, 255, .42);
}

/* ── RIGHT PANEL — FORM ── */
.popup-right {
    background: #F7F9FC;
    padding: 40px 34px;
    overflow-y: auto;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
}

.popup-form-head {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(9, 21, 42, .08);
}

.popup-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: -.01em;
    line-height: 1.3;
}

.popup-form-sub {
    font-size: .77rem;
    color: var(--t3);
}

/* Light-mode form overrides inside popup */
.popup-right .f-grp {
    margin-bottom: 11px;
}

.popup-right .f-grp label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--t2);
    margin-bottom: 5px;
}

.popup-right .f-grp input,
.popup-right .f-grp textarea,
.popup-right .f-grp select {
    width: 100%;
    background: #fff;
    border: 1.5px solid rgba(9, 21, 42, .12);
    color: var(--t1);
    font-size: .82rem;
    padding: 10px 13px;
    border-radius: var(--r);
    outline: none;
    font-family: inherit;
    transition: border-color .3s, box-shadow .3s;
    appearance: auto;
}

.popup-right .f-grp input::placeholder,
.popup-right .f-grp textarea::placeholder {
    color: var(--t3);
}

.popup-right .f-grp input:focus,
.popup-right .f-grp textarea:focus,
.popup-right .f-grp select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(190, 42, 43, .1);
    background: #fff;
}

.popup-right .f-grp select option {
    color: var(--t1);
    background: #fff;
}

.popup-right .f-grp textarea {
    min-height: 72px;
    resize: vertical;
}

.popup-right .f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Submit button inside popup */
.popup-submit-btn {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 18px rgba(190, 42, 43, .35);
    margin-top: 4px;
    font-family: inherit;
}

.popup-submit-btn:hover {
    background: linear-gradient(135deg, #d12f30 0%, #7a1819 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(190, 42, 43, .5);
}

.popup-privacy {
    font-size: .7rem;
    color: var(--t3);
    text-align: center;
    margin-top: 10px;
}

/* ── POPUP RESPONSIVE ── */
@media (max-width: 860px) {
    .popup-box {
        grid-template-columns: 1fr;
        max-width: 480px;
        max-height: 94vh;
        border-radius: 16px;
    }

    .popup-left {
        display: none;
    }

    .popup-right {
        padding: 36px 26px;
        max-height: 94vh;
    }

    .popup-close {
        top: 12px;
        right: 12px;
        background: rgba(9, 21, 42, .1);
        border-color: rgba(9, 21, 42, .15);
        color: var(--t2);
    }

    .popup-close:hover {
        background: var(--red);
        border-color: var(--red);
        color: #fff;
    }

    .popup-form-title {
        font-size: 1.15rem;
    }
}

@media (min-width: 861px) and (max-width: 1100px) {
    .popup-box {
        grid-template-columns: 42% 58%;
        max-width: 820px;
    }

    .popup-left {
        padding: 34px 26px;
    }

    .popup-hero-title {
        font-size: 1.3rem;
    }

    .popup-right {
        padding: 34px 28px;
    }
}

/* =============================================
   ANIMATIONS
============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

/* =============================================
   MOBILE NAV
============================================= */
.mob-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 21, 42, .98);
    z-index: 9999;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 24px 40px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .4s ease;
}

.mob-nav.open {
    transform: none
}

.mob-nav a {
    font-size: 1.45rem;
    font-weight: 600;
    color: rgba(255,255,255,.88);
    text-decoration: none;
    transition: color .3s;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.mob-nav a.nav-active {
    color: var(--gold);
}

.mob-nav a:hover {
    color: var(--gold)
}

.mob-close {
    position: absolute;
    top: 22px;
    right: 22px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =============================================
   MEGA MENU
============================================= */
#header {
    overflow: visible
}

.cat-bar {
    background: var(--navy2);
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.cat-bar {
    background: var(--navy2);
    border-top: 1px solid rgba(255,255,255,.1);
    width: 100%;
    overflow: visible;
}

.cat-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0 16px;
    overflow: visible;
    max-width: 1500px;
    margin: 0 auto;
}

.cat-item {
    position: relative;
    flex: 1 1 auto;
}

.cat-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 11px 8px;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    white-space: nowrap;
    transition: color .22s, border-color .22s, background .22s;
    border-bottom: 2px solid transparent;
    user-select: none;
    height: 100%;
}

.cat-link svg {
    width: 9px;
    height: 9px;
    transition: transform .22s;
    fill: currentColor;
    opacity: .7
}

.cat-item.active .cat-link,
.cat-item:hover .cat-link {
    color: #fff;
    border-bottom-color: var(--gold);
    background: rgba(255, 255, 255, .07);
}

.cat-item.active .cat-link svg {
    transform: rotate(180deg);
    opacity: 1
}

/* Panel — lives INSIDE #header (position:fixed), uses position:absolute top:100% */
.mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 3px solid var(--gold);
    box-shadow: 0 20px 70px rgba(9, 21, 42, .22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
}

.mega-panel.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear 0s;
}

/* Panel inner layout */
.mega-wrap {
    padding: 32px 0 36px
}

.mega-hd {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--bdr);
}

.mega-hd-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.mega-hd-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.2
}

.mega-hd-sub {
    font-size: .77rem;
    color: var(--t3);
    margin: 3px 0 0
}

/* 4-column body: 3 link cols + 1 featured card */
.mega-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 210px;
    gap: 0 36px;
}

.mega-col-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--t3);
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--bdr2);
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 8px;
    border-radius: 6px;
    font-size: .84rem;
    color: var(--t2);
    text-decoration: none;
    transition: background .18s, color .18s;
    line-height: 1.35;
}

.mega-link:hover {
    background: var(--bg1);
    color: var(--navy)
}

.mega-link::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    opacity: .45;
    transition: opacity .18s;
}

.mega-link:hover::before {
    opacity: 1
}

/* Featured CTA card */
.mega-featured {
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy3) 100%);
    border-radius: var(--r2);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: start;
}

.mega-feat-tag {
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}

.mega-feat-title {
    font-size: .97rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.38;
    margin: 4px 0 0
}

.mega-feat-desc {
    font-size: .76rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5;
    margin: 0
}

.mega-feat-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 9px 18px;
    border-radius: 7px;
    background: var(--red);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s, transform .2s;
    align-self: flex-start;
}

.mega-feat-btn:hover {
    background: var(--red2);
    transform: translateY(-1px)
}

/* Dark overlay under panels */
.mega-bg {
    position: fixed;
    inset: 0;
    background: rgba(9, 21, 42, .3);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s, visibility 0s linear .25s;
}

.mega-bg.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity .25s, visibility 0s linear 0s;
}

/* =============================================
   RESPONSIVE
============================================= */
@media(max-width:1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .h-form {
        max-width: 580px
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .svc-cta-strip {
        padding: 30px 32px;
        gap: 24px
    }

    .why-inner,
    .about-inner,
    .faq-inner,
    .contact-inner {
        grid-template-columns: 1fr
    }

    .why-img,
    .about-img {
        aspect-ratio: 16/9
    }

    .hiw-track {
        grid-template-columns: 1fr 1fr;
        gap: 44px
    }

    .hiw-track::before {
        display: none
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .price-grid {
        grid-template-columns: 1fr 1fr
    }

    .port-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .foot-top {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .container {
        padding: 0 20px
    }

    nav,
    .hdr-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    #topbar .tb-left .tb-item:nth-child(n+3) {
        display: none
    }

    .hero-inner {
        gap: 36px
    }

    .hero-h1 {
        font-size: 2.2rem
    }

    .hero-btns {
        flex-direction: column
    }

    .svc-grid {
        grid-template-columns: 1fr
    }

    .svc-cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        border-radius: 14px
    }

    .hiw-track {
        grid-template-columns: 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .price-grid {
        grid-template-columns: 1fr
    }

    .port-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pillars {
        grid-template-columns: 1fr
    }

    .foot-top {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .foot-bot {
        flex-direction: column;
        text-align: center
    }

    .f-row {
        grid-template-columns: 1fr
    }

    .r-grid {
        grid-template-columns: 1fr
    }

    .about-badge {
        width: 100px;
        height: 100px;
        right: 0;
        bottom: -14px
    }

    .about-badge strong {
        font-size: 1.8rem
    }

    .wa-float {
        top: auto;
        bottom: 80px;
        transform: none
    }

    .faq-inner {
        grid-template-columns: 1fr
    }

    .cat-bar {
        display: none
    }

    .mega-panel {
        display: none
    }
}

@media(max-width:480px) {
    .port-grid {
        grid-template-columns: 1fr 1fr
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .trust-row {
        gap: 20px
    }

    #hero {
        background-attachment: scroll;
        padding-top: 114px
    }

    #stats {
        background-attachment: scroll
    }

    #cta {
        background-attachment: scroll
    }
}