*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #F97316;
    --dark-navy: #0F172A;
    --navy: #1E293B;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-body: #475569;
    --border: #E2E8F0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */

/* Hero elements — fire on load */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroScaleIn {
    from {
        opacity: 0;
        transform: scale(0.93);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll-triggered: fade + rise */
@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered: word reveal (clip from bottom) */
@keyframes wordSlideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered: card fly-in (up + scale) */
@keyframes flyUp {
    from {
        opacity: 0;
        transform: translateY(44px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Scroll-triggered: card pop (spring scale) */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }

    65% {
        opacity: 1;
        transform: scale(1.04);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll-triggered: slide from left */
@keyframes fromLeft {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll-triggered: slide from right */
@keyframes fromRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Image section reveal — simple fade+rise, NO clip-path */
@keyframes imgReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating badge bob */
@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* Button ripple */
@keyframes rippleOut {
    to {
        transform: scale(2.6);
        opacity: 0;
    }
}

/* ══════════════════════════════════════════
   HERO — fires immediately on load
══════════════════════════════════════════ */
.hero-anim {
    opacity: 0;
    animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) var(--d, 0s) forwards;
}

/* hero image uses scale instead */
.hero-img-wrap.hero-anim {
    animation-name: heroScaleIn;
    animation-duration: .85s;
}

/* ══════════════════════════════════════════
   SCROLL-TRIGGERED BASE STATES
   All hidden by default; .visible triggers animation
══════════════════════════════════════════ */

/* ── js-fade-up: paragraphs, labels, intros ── */
.js-fade-up {
    opacity: 0;
    /* no transform here — animation handles it */
}

.js-fade-up.visible {
    animation: fadeRise .65s cubic-bezier(.22, 1, .36, 1) var(--d, 0s) both;
}

/* ── js-words: word-by-word heading reveal ── */
.js-words {
    /* wrapper itself is always visible — words inside are hidden */
}

.js-words .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    opacity: 0;
    transform: translateY(100%);
    /* transition, not animation — triggered by .visible on parent */
    transition:
        opacity .5s cubic-bezier(.22, 1, .36, 1),
        transform .5s cubic-bezier(.22, 1, .36, 1);
    /* stagger: base delay from parent --d + per-word offset */
    transition-delay: calc(var(--d, 0s) + var(--wi, 0) * 0.06s);
}

.js-words.visible .word {
    opacity: 1;
    transform: translateY(0);
}

/* ── js-card-fly: service cards (fly up + scale) ── */
.js-card-fly {
    opacity: 0;
    transform: translateY(44px) scale(0.95);
}

.js-card-fly.visible {
    animation: flyUp .6s cubic-bezier(.22, 1, .36, 1) var(--d, 0s) both;
}

/* ── js-card-pop: solution cards (spring pop) ── */
.js-card-pop {
    opacity: 0;
    transform: scale(0.82);
}

.js-card-pop.visible {
    animation: popIn .55s cubic-bezier(.34, 1.56, .64, 1) var(--d, 0s) both;
}

/* ── js-slide-left: why items ── */
.js-slide-left {
    opacity: 0;
    transform: translateX(-32px);
}

.js-slide-left.visible {
    animation: fromLeft .55s cubic-bezier(.22, 1, .36, 1) var(--d, 0s) both;
}

/* ── js-slide-right: network stats ── */
.js-slide-right {
    opacity: 0;
    transform: translateX(32px);
}

.js-slide-right.visible {
    animation: fromRight .55s cubic-bezier(.22, 1, .36, 1) var(--d, 0s) both;
}

/* ── js-img-reveal: about image, map — SAFE fade+rise only ── */
.js-img-reveal {
    opacity: 0;
    transform: translateY(24px);
}

.js-img-reveal.visible {
    animation: imgReveal .75s cubic-bezier(.22, 1, .36, 1) .05s both;
}

/* ══════════════════════════════════════════
   LOGO BAR
══════════════════════════════════════════ */
.logo-bar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: box-shadow .3s ease;
}

.logo-bar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .09);
}

.logo-icon {
    height: 40px;
    width: auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
}

/* ══════════════════════════════════════════
   SECTION LABEL
══════════════════════════════════════════ */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--border);
    transition: border-color .2s, transform .2s, background .2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    border-color: var(--dark-navy);
    background: #f1f5f9;
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-orange:hover {
    background: #ea6e07;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, .35);
}

.btn-orange:active {
    transform: translateY(0);
}

.ripple-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    transform: scale(0);
    animation: rippleOut .6s linear;
    pointer-events: none;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, transform .2s, background .2s;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   HERO — mobile
══════════════════════════════════════════ */
#hero {
    background: #fff;
    padding: 48px 20px 0;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: #FFF7ED;
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

#hero h1 {
    font-size: clamp(34px, 9vw, 56px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -1.5px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

#hero h1 .accent {
    color: var(--orange);
    display: block;
}

#hero .sub {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.65;
    margin: 16px 0 28px;
}

.hero-btn-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-img-wrap {
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.hero-img-wrap img {
    width: 100%;
    object-fit: cover;
}

.hero-badge-float {
    position: absolute;
    bottom: 60px;
    right: 30px;
    background: rgba(12, 12, 12, .22);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    animation: floatBob 3.5s ease-in-out infinite;
}

.hero-badge-float strong {
    font-size: 20px;
    font-weight: 900;
    display: block;
}

/* Image display switching */
.hero-img-wrap .image-web {
    display: none;
}

.about-img-wrap .image-web {
    display: none;
}

.map-wrap .image-web {
    display: none;
}

/* ══════════════════════════════════════════
   WHO WE ARE — mobile
══════════════════════════════════════════ */
#about {
    background: #fff;
    padding: 56px 20px;
}

#about h2 {
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 900;
    letter-spacing: -.8px;
    line-height: 1.1;
    margin-bottom: 14px;
}

#about p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 12px;
}

.stats-row {
    display: flex;
    margin: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    gap: 6px;
}

.stat-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

.stat-image {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-image img {
    width: 100%;
    height: 100%;
}

.stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    white-space: nowrap;
}

.stat-num {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    display: inline;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 3px;
}

/* About image — full width on mobile, no margin bleed issues */
.about-img-wrap {
    margin-left: -20px;
    margin-right: -20px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══════════════════════════════════════════
   WHAT WE OFFER — mobile
══════════════════════════════════════════ */
#services {
    background: var(--light-bg);
    padding: 56px 20px;
}

#services h2 {
    font-size: clamp(22px, 6vw, 34px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 28px;
    max-width: 600px;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(249, 115, 22, .12);
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, .3);
}

.svc-icon-wrap {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #FFF7ED;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.service-card:hover .svc-icon-wrap {
    transform: scale(1.12) rotate(-5deg);
}

.svc-icon-wrap img {
    width: 38px;
    height: 38px;
}

.service-card h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.3;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ══════════════════════════════════════════
   WHO WE DELIVER FOR — mobile
══════════════════════════════════════════ */
#solutions {
    background: #fff;
    padding: 56px 20px;
}

#solutions h2 {
    font-size: clamp(22px, 6vw, 34px);
    font-weight: 900;
    letter-spacing: -.8px;
    margin-bottom: 8px;
}

#solutions .intro {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.6;
}

.solutions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.solution-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}

.solution-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(249, 115, 22, .10);
}

.sol-icon-wrap {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.solution-card:hover .sol-icon-wrap {
    transform: scale(1.12) rotate(5deg);
}

.sol-icon-wrap img {
    width: 38px;
    height: 38px;
}

.solution-card h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.3;
}

.solution-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ══════════════════════════════════════════
   WIDE COVERAGE — mobile
══════════════════════════════════════════ */
#network {
    padding: 56px 20px;
    background: var(--light-bg);
}

#network h2 {
    font-size: clamp(26px, 7vw, 40px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 10px;
}

#network .intro {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.6;
}

.net-stats {
    display: flex;
    margin-bottom: 28px;
}

.net-stat {
    flex: 1;
}

.net-stat .num {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    display: inline;
}

.net-stat .lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
    display: block;
}

/* Map wrap — same treatment as about image */
.map-wrap {
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
    overflow: hidden;
}

.map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══════════════════════════════════════════
   WHY CHOOSE — mobile
══════════════════════════════════════════ */
.why-col {
    background: #fff;
    padding: 56px 20px;
    flex: 1;
}

.why-col h2 {
    font-size: clamp(22px, 6vw, 34px);
    font-weight: 900;
    letter-spacing: -.8px;
    line-height: 1.15;
    margin-bottom: 28px;
}

.why-list {
    display: flex;
    flex-direction: column;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color .2s, padding-left .2s;
}

.why-item:hover {
    color: var(--orange);
    padding-left: 6px;
}

.why-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.why-item:hover .why-icon {
    transform: scale(1.2);
}

.why-icon img {
    width: 100%;
    height: 100%;
}

/* ══════════════════════════════════════════
   CTA COLUMN
══════════════════════════════════════════ */
.cta-col {
    position: relative;
    overflow: hidden;
    background-image: url(./images/why-choose.png);
    background-size: cover;
    background-position: center;
    background-color: var(--dark-navy);
    flex: 1;
}

.cta-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(15, 23, 42, .84));
    z-index: 0;
}

.cta-col::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(249, 115, 22, .22), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-col-inner {
    position: relative;
    z-index: 1;
    padding: 56px 20px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.cta-col h2 {
    font-size: clamp(26px, 7vw, 40px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #fff;
}

.cta-col p {
    font-size: 15px;
    color: #94A3B8;
    margin-bottom: 28px;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: var(--dark-navy);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

footer .copy {
    font-size: 12px;
    color: #64748B;
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: transform .2s;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links img {
    width: 20px;
    height: auto;
}

/* ══════════════════════════════════════════
   DESKTOP ≥ 768px
══════════════════════════════════════════ */
@media (min-width: 768px) {

    /* un-bleed images */
    .hero-img-wrap,
    .about-img-wrap,
    .map-wrap {
        margin-left: 0;
        margin-right: 0;
        border-radius: 16px;
    }

    /* HERO */
    #hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
        padding: 56px 48px 0;
        align-items: center;
    }

    .hero-badge {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        justify-self: start;
        margin-bottom: 18px;
    }

    #hero h1 {
        grid-column: 1;
        grid-row: 2;
    }

    #hero .sub {
        grid-column: 1;
        grid-row: 3;
    }

    .hero-btn-group {
        grid-column: 1;
        grid-row: 4;
        margin-bottom: 0;
    }

    .hero-img-wrap {
        grid-column: 2;
        grid-row: 1/5;
        margin: 0;
        border-radius: 16px 16px 0 0;
        height: 420px;
    }

    .hero-img-wrap img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* ABOUT */
    #about {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
        align-items: center;
        padding: 64px 48px;
    }

    #about .section-label {
        grid-column: 1;
        grid-row: 1;
    }

    #about h2 {
        grid-column: 1;
        grid-row: 2;
    }

    #about .about-p1 {
        grid-column: 1;
        grid-row: 3;
    }

    #about .about-p2 {
        grid-column: 1;
        grid-row: 4;
    }

    #about .stats-row {
        grid-column: 1;
        grid-row: 5;
        margin-bottom: 0;
    }

    .about-img-wrap {
        grid-column: 2;
        grid-row: 1/6;
        margin: 0;
        border-radius: 16px;
        height: 380px;
        overflow: hidden;
    }

    .about-img-wrap img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* SERVICES */
    #services {
        padding: 64px 48px;
    }

    .services-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* SOLUTIONS */
    #solutions {
        padding: 64px 48px;
    }

    .solutions-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    /* NETWORK */
    #network {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
        align-items: center;
        padding: 64px 48px;
    }

    #network .section-label {
        grid-column: 1;
        grid-row: 1;
    }

    #network h2 {
        grid-column: 1;
        grid-row: 2;
    }

    #network .intro {
        grid-column: 1;
        grid-row: 3;
    }

    #network .net-stats {
        grid-column: 1;
        grid-row: 4;
        margin-bottom: 0;
    }

    .map-wrap {
        grid-column: 2;
        grid-row: 1/5;
        margin: 0;
        border-radius: 16px;
        height: 400px;
        overflow: hidden;
    }

    .map-wrap img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* WHY + CTA */
    .why-col {
        padding: 64px 48px;
        display: flex;
        flex-direction: column;
    }

    .why-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .why-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-icon {
        width: 38px;
        height: 38px;
    }

    .cta-col-inner {
        padding: 64px 48px;
    }

    .cta-buttons {
        flex-direction: row;
    }

    footer {
        padding: 24px 48px;
    }

    /* image switch */
    .hero-img-wrap .image-mob {
        display: none;
    }

    .hero-img-wrap .image-web {
        display: block;
    }

    .about-img-wrap .image-mob {
        display: none;
    }

    .about-img-wrap .image-web {
        display: block;
    }

    .map-wrap .image-mob {
        display: none;
    }

    .map-wrap .image-web {
        display: block;
    }
}

@media (min-width: 1080px) {

    #hero,
    #about,
    #network,
    #services,
    #solutions,
    footer {
        padding-left: 72px;
        padding-right: 72px;
    }

    .why-col {
        padding-left: 72px;
        padding-right: 72px;
    }

    .cta-col {
        background-image: url(./images/why-choose-web.png);
    }

    .cta-col-inner {
        padding-left: 72px;
        padding-right: 72px;
    }
}

@media (min-width: 1600px) {
    #services h2 {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .btn-orange,
    .btn-secondary {
        padding: 14px 12px;
    }

    .cta-buttons .btn-orange,
    .cta-buttons .btn-outline-white {
        padding: 12px;
        font-size: 14px;
    }
}





/* off canvas */

/* ══════════════════════════════════════════
   OFF-CANVAS CONTACT PANEL
══════════════════════════════════════════ */
.dot-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dot-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.dot-canvas {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(460px, 100vw);
    background: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(.22, 1, .36, 1);
    box-shadow: -8px 0 40px rgba(15, 23, 42, 0.15);
}

.dot-canvas.open {
    transform: translateX(0);
}

/* Header */
.dot-canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--dark-navy);
    flex-shrink: 0;
}

.dot-canvas-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dot-canvas-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.dot-canvas-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.dot-canvas-sub {
    font-size: 12px;
    color: #94A3B8;
    margin: 2px 0 0;
}

.dot-canvas-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.dot-canvas-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* Scrollable body */
.dot-canvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dot-canvas-body::-webkit-scrollbar {
    width: 4px;
}

.dot-canvas-body::-webkit-scrollbar-track {
    background: transparent;
}

.dot-canvas-body::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

/* Form rows */
.dot-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dot-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dot-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.dot-label span {
    color: var(--orange);
}

.dot-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.dot-input-wrap i {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 13px;
    pointer-events: none;
}

.dot-input-wrap input,
.dot-input-wrap textarea {
    width: 100%;
    padding: 10px 12px 10px 34px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.dot-input-wrap textarea {
    resize: none;
    padding-top: 10px;
    align-self: stretch;
}

.dot-input-wrap--textarea {
    align-items: flex-start;
}

.dot-input-wrap--textarea i {
    top: 12px;
}

.dot-input-wrap input:focus,
.dot-input-wrap textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
    background: #fff;
}

.dot-input-wrap input::placeholder,
.dot-input-wrap textarea::placeholder {
    color: #CBD5E1;
}

/* Submit button */
.dot-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.dot-submit-btn:hover {
    background: #ea6e07;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.dot-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer strip */
.dot-canvas-footer {
    padding: 14px 24px;
    background: var(--light-bg);
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.dot-canvas-footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.dot-canvas-footer-item i {
    color: var(--orange);
    font-size: 12px;
}

/* Toast */
.dot-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--dark-navy);
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
    border-left: 4px solid var(--orange);
}

.dot-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}