:root {
    --blue-900: #0E3358;
    --blue-800: #123E6B;
    --blue-700: #1B5FA0;
    --blue-600: #2879C4;
    --blue-500: #3E8EDE;
    --blue-200: #BFDDF7;
    --blue-100: #EAF3FC;
    --orange-700: #D96A0A;
    --orange-600: #F5821F;
    --orange-500: #FF9A3D;
    --orange-200: #FFDDB0;
    --orange-100: #FFF1E0;
    --ink: #14212F;
    --slate: #5C6C7C;
    --slate-light: #8A97A6;
    --bg-soft: #F5F9FD;
    --white: #FFFFFF;
    --radius-lg: 22px;
    --radius-md: 14px;
    --shadow-soft: 0 20px 45px -20px rgba(14, 51, 88, 0.25);
    --shadow-card: 0 12px 30px -14px rgba(14, 51, 88, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-600);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--orange-600);
    display: inline-block;
    border-radius: 2px;
}

.text-slate {
    color: var(--slate);
}

.bg-soft {
    background: var(--bg-soft);
}

/* ===== Buttons ===== */
.btn-e2p-primary {
    background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
    color: #fff;
    border: none;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    padding: .85rem 1.7rem;
    border-radius: 50px;
    box-shadow: 0 14px 28px -12px rgba(245, 130, 31, 0.55);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-e2p-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -12px rgba(245, 130, 31, 0.65);
    color: #fff;
}

.btn-e2p-outline {
    background: transparent;
    color: var(--blue-800);
    border: 1.5px solid var(--blue-200);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    padding: .82rem 1.6rem;
    border-radius: 50px;
    transition: all .25s ease;
}

.btn-e2p-outline:hover {
    border-color: var(--blue-700);
    background: var(--blue-100);
    color: var(--blue-800);
}

.btn-e2p-ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    padding: .82rem 1.6rem;
    border-radius: 50px;
    transition: all .25s ease;
}

.btn-e2p-ghost-light:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

/* ===== Navbar ===== */
.navbar-e2p {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: box-shadow .3s ease, padding .3s ease;
    border-bottom: 1px solid rgba(14, 51, 88, 0.06);
}

.navbar-e2p.scrolled {
    box-shadow: 0 8px 30px -18px rgba(14, 51, 88, 0.35);
    padding: .55rem 0;
}

.navbar-e2p .nav-link {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    color: var(--ink);
    margin: 0 .65rem;
    position: relative;
}

.navbar-e2p .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--orange-600);
    transition: width .25s ease;
    border-radius: 2px;
}

.navbar-e2p .nav-link:hover::after {
    width: 100%;
}


/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 7.5rem 0 6rem;
    background: radial-gradient(circle at 85% 10%, var(--blue-100) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #F8FBFE 100%);
    overflow: hidden;
}

.hero-swoosh {
    position: absolute;
    right: -8%;
    top: 8%;
    width: 620px;
    max-width: 60vw;
    opacity: 0.9;
    pointer-events: none;
}

.hero .badge-trust {
    background: var(--blue-100);
    color: var(--blue-800);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: .8rem;
    padding: .45rem .9rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--blue-900);
}

.hero h1 span {
    color: var(--orange-600);
}

.hero p.lead-e2p {
    font-size: 1.08rem;
    color: var(--slate);
    max-width: 520px;
}

.hero-panel {
    position: relative;
    background: linear-gradient(160deg, var(--blue-800), var(--blue-900) 70%);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    color: #fff;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: var(--orange-600);
    opacity: .18;
    border-radius: 50%;
    top: -90px;
    right: -90px;
}

.hero-panel .hp-row {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: .85rem 1rem;
    margin-bottom: .65rem;
}

.hero-panel .hp-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    font-size: 1.15rem;
    flex-shrink: 0;
}

.hero-panel .hp-text small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: .72rem;
}

.hero-panel .hp-text strong {
    font-family: 'Sora', sans-serif;
    font-size: .92rem;
}

/* ===== Stats strip ===== */
.stats-strip {
    background: linear-gradient(120deg, var(--blue-900), var(--blue-700));
    padding: 2.6rem 0;
    position: relative;
}

.stats-strip .stat-num {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
}

.stats-strip .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: .85rem;
    font-weight: 500;
}

/* ===== Services ===== */
.services {
    padding: 6.5rem 0;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.7rem;
    height: 100%;
    border: 1px solid rgba(14, 51, 88, 0.07);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px -16px rgba(14, 51, 88, 0.28);
}

.service-card .sc-chip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--orange-600), var(--blue-600));
}

.service-card .sc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    margin-bottom: 1.3rem;
}

.service-card:nth-child(2) .sc-icon,
.service-card:nth-child(5) .sc-icon {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: .6rem;
}

.service-card p {
    color: var(--slate);
    font-size: .92rem;
    margin-bottom: 1.1rem;
}

.service-card .sc-link {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    color: var(--orange-600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.service-card .sc-link i {
    transition: transform .25s ease;
}

.service-card:hover .sc-link i {
    transform: translateX(4px);
}

/* ===== Why us ===== */
.why-us {
    padding: 6.5rem 0;
}

.feature-row {
    display: flex;
    gap: 1.1rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(14, 51, 88, 0.08);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row .fr-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-100);
    color: var(--blue-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-row h4 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: .25rem;
    color: var(--blue-900);
}

.feature-row p {
    color: var(--slate);
    font-size: .9rem;
    margin: 0;
}

.why-visual {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--blue-100), #fff 70%);
    padding: 2.2rem;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.why-visual .wv-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 14px 30px -16px rgba(14, 51, 88, 0.3);
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1rem;
}

.why-visual .wv-card i {
    font-size: 1.4rem;
    color: var(--orange-600);
}

.why-visual .wv-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: .95rem;
    color: var(--blue-900);
}

.why-visual .wv-card span {
    font-size: .78rem;
    color: var(--slate);
}

/* ===== How it works ===== */
.how-it-works {
    padding: 6.5rem 0;
    background: var(--bg-soft);
    position: relative;
}

.step-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    height: 100%;
    position: relative;
}

.step-card .step-num {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    color: #fff;
    background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}

.step-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: .5rem;
}

.step-card p {
    color: var(--slate);
    font-size: .88rem;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 36px;
    left: 50%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed var(--orange-200);
    z-index: 0;
}

/* ===== CTA band ===== */
.cta-band {
    margin: 0 auto;
    max-width: 1200px;
    background: linear-gradient(120deg, var(--orange-600), var(--orange-700));
    border-radius: 28px;
    padding: 3.2rem 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-band::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    right: -100px;
    bottom: -140px;
}

.cta-band h2 {
    font-weight: 800;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
}

/* ===== Contact ===== */
.contact-section {
    padding: 6.5rem 0;
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 2.4rem;
    border: 1px solid rgba(14, 51, 88, 0.06);
}

.contact-form-card .form-control {
    border-radius: 12px;
    border: 1.5px solid #E4EBF2;
    padding: .75rem 1rem;
    font-size: .92rem;
}

.contact-form-card .form-control:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(62, 142, 222, 0.15);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.6rem;
}

.contact-info-item .ci-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--blue-900);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: .15rem;
}

.contact-info-item p {
    color: var(--slate);
    font-size: .88rem;
    margin: 0;
}

/* ===== Footer ===== */
.footer-e2p {
    background: var(--blue-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 4.5rem 0 1.5rem;
}



.footer-e2p h5 {
    font-family: 'Sora', sans-serif;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer-e2p ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-e2p ul li {
    margin-bottom: .65rem;
}

.footer-e2p ul li a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s ease;
}

.footer-e2p ul li a:hover {
    color: var(--orange-500);
}

.footer-e2p .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: .5rem;
    transition: background .25s ease;
}

.footer-e2p .social-icon:hover {
    background: var(--orange-600);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Back to top ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange-600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px -10px rgba(245, 130, 31, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 999;
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width:991.98px) {
    .hero {
        padding: 6.5rem 0 3.5rem;
        text-align: center;
    }

    .hero p.lead-e2p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-swoosh {
        display: none;
    }

    .hero-panel {
        margin-top: 2.5rem;
    }

    .cta-band {
        border-radius: 20px;
        padding: 2.4rem 1.6rem;
        text-align: center;
    }

    .step-connector {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}