:root {
    --navy: #0f1729;
    --navy-deep: #0a1020;
    --blue: #1968f0;
    --blue-light: #3b82f6;
    --lime: #d4ff00;
    --lime-dark: #b8e000;
    --bg-soft: #eef0f5;
    --bg-card: #f7f8fb;
    --border: #e3e6ee;
    --text: #0f1729;
    --text-mute: #5d6478;
    --text-soft: #8089a0;
    --shadow: 0 4px 20px rgba(28, 37, 64, 0.06);
    --shadow-card: 0 8px 30px rgba(15, 23, 41, 0.1);
    --hero-bg: url('assets/banner.png') center/cover no-repeat, linear-gradient(90deg, #ffffff 0%, #f5f6f8 35%, #c6c8cd 65%, #2a3147 85%, #0f1729 100%);
    --font: 'Poppins', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
/* Override Poppins references with Epilogue */
        body,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        a,
        button,
        input,
        textarea,
        select,
        label,
        span,
        div,
        li {
            font-family: 'Epilogue', sans-serif;
        }
body {
    font-family: var(--font);
    background: #fff;
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}



img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* NAV */
nav {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 12%, #f5f5f7 22%, #e8e8eb 32%, #d4d5d9 42%, #b8babf 52%, #8e92a0 62%, #5c6275 72%, #2f3650 80%, #161d33 90%, #0a1020 100%);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 101;
    box-shadow: 0 12px 32px rgba(15, 23, 41, 0.25), 0 6px 16px rgba(15, 23, 41, 0.18), 0 2px 6px rgba(15, 23, 41, 0.14);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none
}

.logo img {
    height: 32px;
    width: auto;
    display: block
}

.nav-phone {
    background: var(--lime);
    color: var(--navy);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #0f1729;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transition: all .2s;
    letter-spacing: .5px;
    white-space: nowrap;
}

.nav-phone:hover {
    background: var(--lime-dark);
    transform: translateY(-1px)
}

.nav-phone svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font);
    font-weight: 700;
    font-size: .92rem;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
    text-align: center;
    line-height: 1.2;
}

.btn-lime {
    background: var(--lime);
    color: var(--navy)
}

.btn-lime:hover {
    background: var(--lime-dark);
    transform: translateY(-1px)
}

.btn-dark-lime {
    background: var(--navy);
    color: var(--lime);
    border: 2px solid var(--lime);
    font-weight: 700;
}

.btn-dark-lime:hover {
    background: var(--lime);
    color: var(--navy);
    border-color: var(--lime)
}

.btn-outline-blue {
    background: #fff;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline-blue:hover {
    background: var(--blue);
    color: #fff
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy)
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: #fff
}

.btn-outline-lime {
    background: transparent;
    color: var(--lime);
    border: 1.5px solid var(--lime)
}

.btn-outline-lime:hover {
    background: var(--lime);
    color: var(--navy)
}

.btn-dark {
    background: var(--navy);
    color: #fff
}

.btn-dark:hover {
    background: var(--navy-deep)
}

/* HERO */
.hero {
    background: var(--hero-bg);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero h1 .blue {
    color: var(--blue);
    font-weight: 800
}

.bullets {
    list-style: none;
    padding-left: 0;
    margin-bottom: 32px;
}

.bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: .95rem;
}

.bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 19px;
    height: 19px;
    background-image: url('assets/bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

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

.hero-right {
    position: relative;
    min-height: 420px
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-card);
    width: fit-content;
    max-width: 300px;
}

.stat-card:nth-child(1) {
    margin-left: 0;
    align-self: flex-start
}

.stat-card:nth-child(2) {
    margin-left: auto;
    margin-right: 0;
    align-self: flex-end
}

.stat-card:nth-child(3) {
    margin-left: 30px
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 24px;
    height: 24px
}

.stat-num {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
    line-height: 1
}

.stat-lbl {
    font-size: .8rem;
    color: var(--text-mute);
    margin-top: 4px;
    font-weight: 500
}

/* PROTECT BANNER */
.protect-banner-wrap {
    padding: 40px 0;
    background: var(--bg-soft)
}

.protect-banner {
    background: var(--navy);
    border-radius: 10px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: 0 6px 16px rgba(15, 23, 41, 0.12);
}

.protect-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.protect-banner h3 .lime {
    color: var(--lime)
}

.protect-banner h3 .white {
    color: #fff;
    display: block
}

.protect-banner p {
    color: #b3b9c9;
    font-size: .88rem;
    margin-top: 6px
}

.protect-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #b3b9c9;
    font-size: .75rem;
    flex-wrap: wrap;
}

.trust-badges .check {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--lime);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    color: var(--navy);
    font-size: .6rem;
    font-weight: 900
}

.truste {
    display: inline-block;
    height: 32px;
    width: auto;
}

.truste img {
    height: 100%;
    width: auto;
    display: block
}

/* FEATURED */
.featured {
    background: var(--bg-soft);
    padding: 30px 0 50px
}

.featured-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    row-gap: 24px;
}

.featured-label {
    font-size: .7rem;
    font-weight: 700;
    color: var(--text-mute);
    letter-spacing: 2px
}

.featured-row img {
    height: 28px;
    width: auto;
    opacity: 0.75;
    transition: opacity .2s;
}

.featured-row img:hover {
    opacity: 1
}

/* ADVANCED */
.advanced {
    padding: 80px 0;
    background: #fff
}

.section-head {
    text-align: center;
    margin-bottom: 50px
}

.section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px
}

.section-head .blue-sub {
    color: var(--blue);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.1rem)
}

.section-head p {
    color: var(--text-mute);
    font-size: .95rem
}

.dual-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto
}

.dual-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(15, 23, 41, 0.08), 0 2px 6px rgba(15, 23, 41, 0.04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.dual-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 41, 0.12), 0 4px 10px rgba(15, 23, 41, 0.06);
}

.dual-card-img {
    background: #1c2540;
    border-radius: 10px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.dual-card-img img,
.dual-card-img svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain
}

.dual-card h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.25
}

.dual-card p {
    color: var(--text-mute);
    font-size: .95rem;
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.7
}

/* SERVICES */
.services {
    background: var(--bg-soft);
    padding: 70px 0
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto
}

.svc-card {
    background: #fff;
    border: 2px solid var(--lime);
    border-radius: 6px;
    padding: 36px 32px;
    min-height: 280px;
    box-shadow: 0 6px 18px rgba(15, 23, 41, 0.08), 0 2px 4px rgba(15, 23, 41, 0.04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 41, 0.12), 0 4px 8px rgba(15, 23, 41, 0.06);
}

.svc-icon {
    width: 48px;
    height: 48px;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 22px;
}

.svc-icon svg {
    width: 48px;
    height: 48px;
    display: block
}

.svc-card h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.svc-card p {
    font-size: .92rem;
    color: var(--text-mute);
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 48px
}

/* PROCESS */
.process {
    padding: 80px 0 120px;
    background: #fff;
    position: relative
}

.process-wrap {
    max-width: 1080px;
    margin: 0 auto;
    position: relative
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    position: relative;
}

.proc-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 30px 32px;
    box-shadow: 0 8px 24px rgba(15, 23, 41, 0.08), 0 2px 6px rgba(15, 23, 41, 0.04);
    position: relative;
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease;
}

.proc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 41, 0.12), 0 4px 8px rgba(15, 23, 41, 0.06);
}

.proc-icon {
    width: 110px;
    height: 110px;
    margin-bottom: 24px;
    display: block;
}

.proc-icon img {
    width: 100%;
    height: 100%;
    display: block;
    filter:
        drop-shadow(0 10px 18px rgba(15, 23, 41, 0.28)) drop-shadow(0 4px 8px rgba(15, 23, 41, 0.18));
    transition: filter .25s ease, transform .25s ease;
}

.proc-card:hover .proc-icon img {
    transform: translateY(-2px) scale(1.03);
    filter:
        drop-shadow(0 16px 28px rgba(15, 23, 41, 0.36)) drop-shadow(0 6px 12px rgba(15, 23, 41, 0.22));
}

.proc-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 14px;
    line-height: 1.3;
}

.proc-card p {
    font-size: .92rem;
    color: var(--text-mute);
    line-height: 1.7;
}

.proc-arrow {
    display: none
}

/* RESTORED */
.restored {
    padding: 80px 0;
    background: #fff;
}

.restored-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.restored h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.restored h2 .blue {
    color: var(--blue);
}

.restored p {
    color: var(--text-mute);
    font-size: .95rem;
    margin-bottom: 24px;
    max-width: 440px;
}

.restored-cta {
    margin-bottom: 28px;
}

.client-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.client-logos span {
    font-weight: 700;
    color: #666;
    font-size: .85rem;
}

.review-mock {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-graph {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* EXPERTS */
.experts {
    padding: 60px 0 80px;
    background: #fff
}

.experts-card {
    background: var(--navy);
    border-radius: 14px;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 41, 0.35), 0 10px 24px rgba(15, 23, 41, 0.2), 0 0 0 1px rgba(212, 255, 0, 0.06);
}

.experts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background-image: repeating-radial-gradient(circle at 0% 50%, transparent 0, transparent 28px, rgba(120, 255, 180, 0.18) 29px, rgba(120, 255, 180, 0.18) 30px), repeating-radial-gradient(circle at 0% 50%, transparent 0, transparent 60px, rgba(120, 255, 180, 0.1) 61px, rgba(120, 255, 180, 0.1) 62px);
    opacity: 0.7;
    pointer-events: none
}

.experts-stats {
    display: flex;
    gap: 14px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
}

.exp-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.exp-stat .num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.exp-stat .lbl {
    font-size: .55rem;
    color: #b3b9c9;
    margin-top: 4px;
    line-height: 1.2
}

.experts-text {
    position: relative;
    z-index: 2;
    color: #fff
}

.experts-text h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25
}

.experts-text p {
    color: #cdd2dd;
    font-size: .92rem;
    margin-bottom: 24px;
    line-height: 1.6
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq-card {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(15, 23, 41, 0.08);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow:
        0 28px 80px rgba(15, 23, 41, 0.14),
        0 10px 28px rgba(15, 23, 41, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.faq-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 32px;
}

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

.faq-item {
    border-bottom: 1px solid rgba(15, 23, 41, 0.25);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    width: 100%;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-q::after {
    content: "";
    width: 14px;
    height: 14px;
    border-right: 4px solid var(--blue);
    border-bottom: 4px solid var(--blue);
    transform: rotate(45deg);
    transition: transform .25s ease;
    margin-left: 20px;
    flex-shrink: 0;
}

.faq-item.open .faq-q::after {
    transform: rotate(-135deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

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

.faq-a-inner {
    padding: 0 0 24px;
    color: var(--text-mute);
    font-size: .95rem;
    line-height: 1.7;
    max-width: 850px;
}

/* CTA DARK */
.cta-dark {
    background: var(--navy);
    padding: 70px 0 30px;
    color: #fff;
    text-align: center
}

.cta-dark h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.25
}

.cta-dark h2 .lime {
    color: var(--lime)
}

.cta-dark p {
    color: #b3b9c9;
    font-size: .95rem;
    margin-bottom: 28px
}

.cta-dark .trust-badges {
    justify-content: center;
    margin-top: 18px;
    color: #b3b9c9
}

.cta-phone {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-phone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}

.cta-phone-text {
    text-align: left;
}

.cta-phone-text .lbl {
    font-size: .75rem;
    color: #b3b9c9
}

.cta-phone-text .num {
    font-weight: 700;
    font-size: 1.05rem
}

/* FOOTER */
footer {
    background: var(--navy-deep);
    padding: 24px 0;
    color: #b3b9c9
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .78rem
}

.footer-inner .logo img {
    filter: brightness(0) invert(1);
    opacity: 0.85
}

/* TRUST BADGES SECTION */
.trust-badges-section {
    margin-bottom: 120px;
}

.trust-badges-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    background: transparent;
    padding: 30px 0 60px;
    flex-wrap: wrap;
}

.trust-badges-inner img {
    height: 105px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    margin: 0;
    transition: all 0.2s ease-out;
}

/* =======================
           POPUP / MODAL STYLES
           ======================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 41, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 960px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    box-shadow: 0 24px 80px rgba(15, 23, 41, 0.35), 0 8px 24px rgba(15, 23, 41, 0.2);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 41, 0.08);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(15, 23, 41, 0.15);
}

.modal-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy);
    stroke-width: 2.5;
}

.modal-left {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-logo {
    margin-bottom: 32px;
}

.modal-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.modal-left h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
}

.modal-left>p {
    font-size: 0.95rem;
    color: var(--text-mute);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 320px;
}

.modal-bullets {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
}

.modal-bullets li .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.modal-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lime);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    width: fit-content;
    border: 2px solid var(--navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.2s;
}

.modal-phone:hover {
    background: var(--lime-dark);
    transform: translateY(-1px);
}

.modal-phone svg {
    width: 16px;
    height: 16px;
}

.modal-right {
    background: #e8ecf1;
    padding: 40px 36px;
    border-radius: 0 16px 16px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-mute);
    margin-bottom: 6px;
}

.form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: var(--font);
    font-size: 16px;
    /* prevents iOS zoom */
    color: var(--navy);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(25, 104, 240, 0.1);
}

.form-group textarea {
    min-height: 90px;
    resize: vertical;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--blue);
    cursor: pointer;
    flex-shrink: 0;
}

.form-consent label {
    font-size: 0.72rem;
    color: var(--text-mute);
    line-height: 1.5;
}

.form-consent label a {
    color: var(--blue);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 14px;
}

.form-submit:hover {
    background: var(--navy-deep);
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-mute);
    text-align: center;
    flex-wrap: wrap;
}

.form-privacy svg {
    width: 12px;
    height: 12px;
    color: var(--blue);
    flex-shrink: 0;
}

.form-privacy a {
    color: var(--blue);
    text-decoration: underline;
}

/* ======================================
           RESPONSIVE BREAKPOINTS
           ====================================== */

/* Large tablet / small desktop (≤1024px) */
@media (max-width: 1024px) {
    .hero {
        padding: 50px 0 80px;
    }

    .hero-grid {
        gap: 36px;
    }

    .dual-card {
        grid-template-columns: 260px 1fr;
        gap: 32px;
    }

    .dual-card-img {
        height: 200px;
    }

    .services-grid {
        gap: 20px;
    }

    .svc-card {
        padding: 30px 24px;
    }

    .process-grid {
        gap: 24px;
    }

    .experts-card {
        padding: 40px 30px;
        gap: 30px;
    }

    .trust-badges-inner {
        gap: 50px;
    }
}

/* Tablet (≤900px) — stack two-column layouts */
@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        margin-bottom: 24px;
    }

    .hero-right {
        min-height: auto;
        margin-top: 10px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-card {
        max-width: 100%;
    }

    .protect-banner {
        padding: 28px 28px;
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .protect-right {
        align-items: center;
        width: 100%;
    }

    .trust-badges {
        justify-content: center;
    }

    .featured-row {
        gap: 30px;
    }

    .advanced,
    .services,
    .restored,
    .experts,
    .faq {
        padding: 60px 0;
    }

    .process {
        padding: 60px 0 80px;
    }

    .dual-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .dual-card-img {
        height: 220px;
        width: 100%;
    }

    .dual-card h3 {
        font-size: 1.45rem;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 520px;
        margin: 0 auto;
    }

    .proc-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 18px;
    }

    .restored-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .restored p {
        max-width: none;
    }

    .experts-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 28px;
        text-align: center;
    }

    .experts-card::before {
        width: 100%;
        opacity: 0.4;
    }

    .experts-stats {
        justify-content: center;
    }

    .experts-text {
        text-align: center;
    }

    .faq-card {
        padding: 36px 28px;
    }

    .trust-badges-section {
        margin-bottom: 80px;
    }

    .trust-badges-inner {
        gap: 40px;
        padding: 20px 0 40px;
    }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    nav {
        padding: 12px 0;
    }

    .nav-inner {
        gap: 12px;
    }

    .logo img {
        height: 28px;
    }

    .nav-phone {
        padding: 8px 14px;
        font-size: 0.78rem;
        gap: 6px;
        letter-spacing: 0.3px;
    }

    .nav-phone svg {
        width: 13px;
        height: 13px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.85rem;
        width: 100%;
    }

    .hero {
        padding: 36px 0 50px;
    }

    .hero h1 {
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .bullets li {
        font-size: 0.9rem;
        padding-left: 26px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .stat-card {
        padding: 14px 18px;
        gap: 12px;
        margin-left: 0 !important;
        align-self: stretch !important;
    }

    .stat-icon {
        width: 42px;
        height: 42px;
    }

    .stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .stat-num {
        font-size: 1.1rem;
    }

    .stat-lbl {
        font-size: 0.75rem;
    }

    .protect-banner-wrap {
        padding: 30px 0;
    }

    .protect-banner {
        padding: 24px 20px;
        border-radius: 8px;
    }

    .protect-banner h3 {
        font-size: 1.2rem;
    }

    .protect-banner p {
        font-size: 0.82rem;
    }

    .protect-right {
        gap: 14px;
        width: 100%;
    }

    .protect-right .btn {
        width: 100%;
    }

    .trust-badges {
        gap: 14px;
        justify-content: center;
        font-size: 0.72rem;
    }

    .featured {
        padding: 24px 0 36px;
    }

    .featured-row {
        gap: 24px;
        row-gap: 18px;
    }

    .featured-row img {
        height: 22px;
    }

    .featured-label {
        width: 100%;
        text-align: center;
        font-size: 0.65rem;
    }

    .advanced,
    .services,
    .restored,
    .experts,
    .faq {
        padding: 50px 0;
    }

    .process {
        padding: 50px 0 60px;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .dual-card {
        padding: 20px;
        border-radius: 12px;
    }

    .dual-card-img {
        height: 180px;
        padding: 16px;
    }

    .dual-card h3 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .dual-card p {
        font-size: 0.9rem;
        margin-bottom: 22px;
    }

    .dual-card .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .svc-card {
        padding: 28px 22px;
        min-height: 0;
    }

    .svc-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 16px;
    }

    .svc-icon svg {
        width: 42px;
        height: 42px;
    }

    .svc-card h3 {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }

    .svc-card p {
        font-size: 0.88rem;
    }

    .services-cta {
        margin-top: 36px;
    }

    .services-cta .btn {
        width: 100%;
    }

    .proc-card {
        padding: 28px 22px;
    }

    .proc-icon {
        width: 80px;
        height: 80px;
    }

    .proc-card h3 {
        font-size: 1.15rem;
    }

    .restored-grid {
        gap: 32px;
    }

    .restored-cta {
        width: 100%;
    }

    .restored .btn {
        width: 100%;
    }

    .client-logos {
        gap: 18px;
        justify-content: flex-start;
    }

    .client-logos span {
        font-size: 0.78rem;
    }

    .experts-card {
        padding: 32px 22px;
        border-radius: 12px;
    }

    .experts-stats {
        gap: 10px;
    }

    .exp-stat {
        width: 95px;
        height: 95px;
        padding: 8px;
    }

    .exp-stat .num {
        font-size: 0.95rem;
    }

    .exp-stat .lbl {
        font-size: 0.5rem;
    }

    .experts-text .btn {
        width: 100%;
    }

    .faq {
        padding: 50px 0;
    }

    .faq-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .faq-q {
        font-size: 0.92rem;
        padding: 18px 0;
        gap: 12px;
    }

    .faq-q::after {
        width: 10px;
        height: 10px;
        border-right-width: 3px;
        border-bottom-width: 3px;
        margin-left: 10px;
    }

    .faq-a-inner {
        font-size: 0.88rem;
        padding-bottom: 18px;
    }

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

    .trust-badges-section {
        margin-bottom: 60px;
    }

    .trust-badges-inner {
        gap: 28px;
        padding: 16px 0 30px;
    }

    .trust-badges-inner img {
        height: 75px;
    }

    .cta-dark {
        padding: 60px 0 24px !important;
    }

    .cta-dark .btn {
        width: 100%;
    }

    .cta-dark p {
        font-size: 0.88rem;
    }

    .cta-phone {
        margin-top: 28px;
        padding-top: 22px;
        flex-direction: row;
        text-align: left;
    }

    .cta-phone-text .num {
        font-size: 0.95rem;
    }

    .footer-inner {
        justify-content: center;
        text-align: center;
        font-size: 0.72rem;
    }

    /* Modal mobile */
    .modal-overlay {
        padding: 0;
    }

    .modal-box {
        grid-template-columns: 1fr;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
    }

    .modal-right {
        border-radius: 0;
    }

    .modal-left {
        padding: 60px 24px 24px;
    }

    .modal-left h2 {
        font-size: 1.45rem;
    }

    .modal-right {
        padding: 24px;
    }
}

/* Small mobile (≤400px) */
@media (max-width: 400px) {
    .nav-phone {
        padding: 7px 10px;
        font-size: 0.72rem;
    }

    .logo img {
        height: 24px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .section-head h2,
    .section-head .blue-sub {
        font-size: 1.4rem;
    }

    .exp-stat {
        width: 85px;
        height: 85px;
    }

    .exp-stat .num {
        font-size: 0.85rem;
    }

    .trust-badges-inner {
        gap: 20px;
    }

    .trust-badges-inner img {
        height: 65px;
    }

    .featured-row {
        gap: 18px;
    }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}