/* ═══════════════════════════════════════════
   HST Staffing Solutions – style.css
   Author: HST Dev Team
   ═══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
    --or: #E8590C;
    --or2: #C94B00;
    --or-t: rgba(232, 89, 12, .1);
    --gd: #F5A623;
    --gd-t: rgba(245, 166, 35, .1);
    --bl: #1A6FA8;
    --bl2: #125282;
    --bl-t: rgba(26, 111, 168, .1);
    --ink: #0C1A28;
    --ink2: #132336;
    --ink3: #1E3450;
    --slate: #4A6580;
    --fog: #8BA3B8;
    --line: rgba(255, 255, 255, .07);
    --lineb: #E8EFF6;
    --surf: #F4F8FC;
    --white: #ffffff;
    --radius: 14px;
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, .06);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, .09);
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    overflow-x: hidden;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
}

/* ── SPINNER ── */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin .8s linear infinite;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--ink);
    padding: 8px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.topbar a:hover {
    color: var(--gd);
}

.topbar .sep {
    color: rgba(255, 255, 255, .15);
    margin: 0 2px;
}

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    box-shadow: 0 1px 0 var(--lineb), 0 4px 24px rgba(0, 0, 0, .06);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow .3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .12);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    color: var(--ink) !important;
    font-size: .87rem;
    padding: 7px 13px !important;
    border-radius: 7px;
    transition: all .2s;
    letter-spacing: -.1px;
}

.nav-link:hover {
    color: var(--bl) !important;
    background: var(--bl-t);
}

.nav-phone {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    color: var(--ink);
    font-size: .88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1.5px solid var(--lineb);
    border-radius: 8px;
    transition: all .2s;
}

.nav-phone:hover {
    border-color: var(--bl);
    color: var(--bl);
}

.btn-nav {
    background: var(--or);
    color: #fff !important;
    border-radius: 9px;
    padding: 9px 20px !important;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    transition: all .2s;
    box-shadow: 0 3px 12px rgba(232, 89, 12, .25);
}

.btn-nav:hover {
    background: var(--or2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 89, 12, .35);
}

/* ── HERO ── */
.hero {
    background-color: var(--ink);
    background-image: linear-gradient(to right, #ffffff08 1px, transparent 1px), linear-gradient(to bottom, #ffffff08 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 80px 0 68px;
    position: relative;
    overflow: hidden;
}

.hero-glow-or {
    position: absolute;
    top: -160px;
    right: -80px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 89, 12, .18) 0%, transparent 65%);
    pointer-events: none;
}

.hero-glow-bl {
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 111, 168, .2) 0%, transparent 65%);
    pointer-events: none;
}

.hero-glow-gd {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .07) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, .12);
    border: 1px solid rgba(245, 166, 35, .25);
    color: var(--gd);
    border-radius: 50px;
    padding: 5px 14px 5px 8px;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 20px;
}

.eyebrow-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(245, 166, 35, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eyebrow-dot span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gd);
    display: block;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(.7)
    }
}

.hero h1 {
    font-size: 3.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.5px;
}

.hero h1 .accent {
    color: var(--gd);
}

.hero-sub {
    display: inline-block;
    margin-top: 10px;
    font-size: 1.35rem;
    font-weight: 600;
    color: rgb(241 89 42);
    letter-spacing: -.2px;
}

.hero-desc {
    color: rgba(255, 255, 255, .88);
    font-size: .96rem;
    line-height: 1.78;
    margin: 20px 0 30px;
    max-width: 490px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--or), var(--or2));
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 14px 26px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: .93rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all .25s;
    box-shadow: 0 6px 24px rgba(232, 89, 12, .35);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(232, 89, 12, .45);
    color: #fff;
}

.btn-ghost-hero {
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .85);
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: 11px;
    padding: 12px 24px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: .93rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all .25s;
}

.btn-ghost-hero:hover {
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .79rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
}

/* HERO FORM */
.hero-form {
    background: #fff;
    border-radius: 20px;
    padding: 30px 26px 26px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .3), 0 0 0 1px rgba(255, 255, 255, .08);
    position: relative;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--or), var(--gd), var(--bl));
    border-radius: 0 0 3px 3px;
}

.form-ttl {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--ink);
}

.form-stl {
    font-size: .89rem;
    color: var(--fog);
    margin-top: 3px;
    margin-bottom: 18px;
}

.lbl {
    font-size: .71rem;
    font-weight: 700;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: .5px;
    display: block;
    margin-bottom: 5px;
}

.inp {
    width: 100%;
    border: 1.5px solid var(--lineb);
    border-radius: 9px;
    padding: 10px 13px;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    color: var(--ink);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
}

.inp:focus {
    border-color: var(--bl);
    box-shadow: 0 0 0 3px rgba(26, 111, 168, .1);
}

.inp.error {
    border-color: #E11D48;
}

.inp-group {
    display: flex;
}

.inp-pre {
    background: var(--surf);
    border: 1.5px solid var(--lineb);
    border-right: none;
    border-radius: 9px 0 0 9px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    font-size: .84rem;
    font-weight: 700;
    color: var(--slate);
    white-space: nowrap;
}

.inp-group .inp {
    border-radius: 0 9px 9px 0;
}

.btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--or), var(--or2));
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 14px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s;
    box-shadow: 0 5px 20px rgba(232, 89, 12, .3);
    margin-top: 4px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 89, 12, .42);
}

.form-note {
    text-align: center;
    font-size: .73rem;
    color: var(--fog);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.field-error {
    font-size: .75rem;
    color: #E11D48;
    margin-top: 4px;
    min-height: 18px;
}

/* ── LOGOS MARQUEE ── */
.logos-sec {
    background: #fff;
    border-top: 1px solid var(--lineb);
    border-bottom: 1px solid var(--lineb);
    padding: 26px 0 22px;
    overflow: hidden;
}

.logos-heading-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.logos-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bl);
    background: var(--bl-t);
    padding: 5px 16px;
    border-radius: 50px;
}

.logos-heading svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.marquee-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-roll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.logo-set {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 0 28px;
    flex-shrink: 0;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: default;
}

.logo-item img {
    height: 100px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: filter .3s, transform .3s;
    display: block;
    user-select: none;
}

.logo-item img:hover {
    transform: scale(1.07);
}

.logo-txt {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    color: #C5D2DC;
    white-space: nowrap;
    letter-spacing: -.2px;
    transition: color .25s;
}

.logo-txt:hover {
    color: var(--bl);
}

.logo-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--lineb);
    flex-shrink: 0;
}

@keyframes marquee-roll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ── SECTION HELPERS ── */
.stag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 13px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.stag-bl {
    background: var(--bl-t);
    color: var(--bl);
}

.stag-or {
    background: var(--or-t);
    color: var(--or);
}

.stag-gd {
    background: var(--gd-t);
    color: #A36500;
}

.stag svg {
    width: 12px;
    height: 12px;
}

.sec-h {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -.3px;
}

.sec-h .co {
    color: var(--or);
}

.sec-h .cb {
    color: var(--bl);
}

.sec-h .cg {
    color: var(--gd);
}

.sec-p {
    color: var(--slate);
    font-size: .93rem;
    line-height: 1.74;
    max-width: 580px;
    margin: 0 auto;
}

/* ── WHY US ── */
.why-sec {
    padding: 88px 0;
    background: #fff;
}

.wcard {
    background: #fff;
    border: 1.5px solid var(--lineb);
    border-radius: 18px;
    padding: 28px 22px;
    height: 100%;
    transition: all .28s;
    position: relative;
    overflow: hidden;
}

.wcard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-line, var(--bl));
}

.wcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .08);
    border-color: transparent;
}

.wcard-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.wcard-icon svg {
    width: 26px;
    height: 26px;
}

.wcard h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: .97rem;
    margin-bottom: 9px;
    color: var(--ink);
}

.wcard p {
    font-size: .85rem;
    color: var(--slate);
    line-height: 1.68;
}

/* ── INDUSTRIES ── */
.ind-sec {
    background: var(--surf);
    padding: 88px 0;
}

.icard {
    border-radius: 16px;
    padding: 26px 22px;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.icard:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.icard::after {
    content: '';
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.icard-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icard-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.icard h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: .97rem;
    margin-bottom: 10px;
}

.icard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icard ul li {
    font-size: .81rem;
    padding: 3px 0;
    opacity: .85;
    display: flex;
    align-items: center;
    gap: 7px;
}

.icard ul li svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.bg1 {
    background: linear-gradient(135deg, #1C3FAA, #3B5BDB);
}

.bg2 {
    background: linear-gradient(135deg, #0A6640, #12B886);
}

.bg3 {
    background: linear-gradient(135deg, #8A3600, #E8590C);
}

.bg4 {
    background: linear-gradient(135deg, #4C1D95, #7C3AED);
}

.bg5 {
    background: linear-gradient(135deg, #881337, #E11D48);
}

.bg6 {
    background: linear-gradient(135deg, #1E293B, #334155);
}

/* ── STATS ── */
.stats-sec {
    background: var(--ink);
    background-image: linear-gradient(to right, #ffffff05 1px, transparent 1px), linear-gradient(to bottom, #ffffff05 1px, transparent 1px);
    background-size: 32px 32px;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.stats-sec::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .1) 0%, transparent 70%);
}

.sbox {
    text-align: center;
    padding: 28px 5px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    transition: all .28s;
}

.sbox:hover {
    border-color: rgba(245, 166, 35, .3);
    background: rgba(245, 166, 35, .05);
    transform: translateY(-4px);
}

.sbox .snum {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.sbox .slbl {
    color: rgba(255, 255, 255, .66);
    font-size: .8rem;
    margin-top: 6px;
}

/* ── PROCESS ── */
.proc-sec {
    padding: 88px 0;
    background: #fff;
}

.pcard {
    text-align: center;
    padding: 20px 10px;
    border-radius: 10px;
    background-color: aliceblue;
}

.pnum {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    position: relative;
}

.pcard h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 8px;
    color: var(--ink);
}

.pcard p {
    font-size: .80rem;
    color: var(--slate);
    line-height: 1.65;
}

.proc-line {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: calc(100% - 58px);
    height: 1px;
    background: var(--lineb);
    left: calc(50% + 29px);
}

/* ── CTA BAND ── */
.cta-band {
    background: linear-gradient(135deg, var(--or) 0%, var(--or2) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.cta-band h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.3px;
}

.cta-band p {
    color: rgba(255, 255, 255, .8);
    font-size: .96rem;
}

.btn-wh {
    background: #fff;
    color: var(--or);
    border: none;
    border-radius: 11px;
    padding: 13px 26px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: .93rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

.btn-wh:hover {
    background: #FFF0E6;
    transform: translateY(-2px);
    color: var(--or2);
}

.btn-out-wh {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 11px;
    padding: 11px 24px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: .93rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

.btn-out-wh:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

/* ════════════════════════════════
   ── TESTIMONIALS SLIDER ──
════════════════════════════════ */
.testi-sec {
    background: var(--surf);
    padding: 88px 0;
}

.testi-slider-wrap {
    position: relative;
    padding: 0 56px;
}

/* The slider overflow container */
.testi-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

/* On mobile: show 1 card */
@media (max-width: 767px) {
    .testi-slider-wrap {
        padding: 0 40px;
    }

    .testi-slider {
        display: flex;
        overflow: hidden;
        gap: 0;
    }

    .tslide {
        min-width: 100%;
        transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    }
}

/* Tablet: show 2 cards */
@media (min-width: 768px) and (max-width: 991px) {
    .testi-slider-wrap {
        padding: 0 48px;
    }

    .testi-slider {
        display: flex;
        overflow: hidden;
        gap: 0;
    }

    .tslide {
        min-width: 50%;
        transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    }
}

/* Desktop: show 3 cards */
@media (min-width: 992px) {
    .testi-slider {
        display: flex;
        overflow: hidden;
        gap: 0;
    }

    .tslide {
        min-width: 33.333%;
        padding: 0 12px;
        transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    }
}

/* Testimonial card */
.tcard {
    background: #fff;
    border: 1.5px solid var(--lineb);
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    transition: all .25s;
}

.tcard:hover {
    border-color: var(--gd);
    box-shadow: 0 12px 40px rgba(245, 166, 35, .1);
}

.stars {
    color: var(--gd);
    font-size: .88rem;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.tcard blockquote {
    font-size: .88rem;
    color: var(--slate);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 18px;
    margin-bottom: 18px;
    border: none;
}

.tcard blockquote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(var(--or), var(--gd));
    border-radius: 2px;
}

.t-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    color: #fff;
    flex-shrink: 0;
}

.t-auth strong {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    display: block;
}

.t-auth span {
    font-size: .76rem;
    color: var(--fog);
}

/* Arrows */
.testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--lineb);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    z-index: 10;
    color: var(--ink);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.testi-arrow:hover {
    background: var(--or);
    border-color: var(--or);
    color: #fff;
}

.testi-prev {
    left: 0;
}

.testi-next {
    right: 0;
}

.testi-arrow:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.testi-arrow:disabled:hover {
    background: #fff;
    border-color: var(--lineb);
    color: var(--ink);
}

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lineb);
    cursor: pointer;
    transition: all .25s;
    border: none;
    padding: 0;
}

.testi-dot.active {
    background: var(--or);
    width: 24px;
    border-radius: 4px;
}

/* ── FAQ ── */
.faq-sec {
    padding: 88px 0;
    background: #fff;
}

.accordion-item {
    border: 1.5px solid var(--lineb) !important;
    border-radius: 13px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    color: var(--ink);
    background: #fff;
    padding: 16px 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--bl);
    background: var(--bl-t);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: .87rem;
    color: var(--slate);
    line-height: 1.72;
    padding: 14px 20px 18px;
}

/* ── CONTACT ── */
.contact-sec {
    background: var(--ink);
    background-image: linear-gradient(to right, #ffffff05 1px, transparent 1px), linear-gradient(to bottom, #ffffff05 1px, transparent 1px);
    background-size: 32px 32px;
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.contact-sec::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .08) 0%, transparent 70%);
}

.cinfo {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 32px 26px;
}

.cinfo-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.cinfo-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cinfo-ic svg {
    width: 20px;
    height: 20px;
}

.cinfo-row strong {
    color: #fff;
    font-size: .87rem;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.cinfo-row span {
    color: rgba(255, 255, 255, .5);
    font-size: .83rem;
    line-height: 1.5;
}

.cform {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
}

.cform h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
}

.cform p {
    font-size: .83rem;
    color: var(--fog);
    margin-bottom: 22px;
}

.btn-csub {
    width: 100%;
    background: linear-gradient(135deg, var(--bl), var(--bl2));
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 13px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: .93rem;
    cursor: pointer;
    transition: all .2s;
}

.btn-csub:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 111, 168, .3);
}

.btn-csub:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

.social-a {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s;
    margin-right: 6px;
}

.social-a svg {
    width: 17px;
    height: 17px;
}

.social-a:hover {
    background: var(--or);
}

/* Alert messages */
.alert-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: .87rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

/* ── FOOTER ── */
footer {
    background: #060F1C;
    color: rgba(255, 255, 255, .5);
    padding: 60px 0 22px;
}

.fl-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

footer h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
}

footer a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-size: .85rem;
    display: block;
    margin-bottom: 8px;
    transition: color .2s;
}

footer a:hover {
    color: var(--gd);
}

.f-hr {
    border-color: rgba(255, 255, 255, .06);
    margin: 32px 0 18px;
}

/* ════════════════════════════════
   ── FLOATING BUTTONS ──
════════════════════════════════ */
.float-btn {
    position: fixed;
    bottom: 28px;
    z-index: 1050;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    overflow: hidden;
}

.float-btn:hover {
    width: auto;
    border-radius: 28px;
    padding: 0 22px 0 16px;
    gap: 8px;
}

.float-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    transition: max-width .3s ease, opacity .3s ease;
    opacity: 0;
    color: #fff;
}

.float-btn:hover .float-label {
    max-width: 120px;
    opacity: 1;
}

/* Call button – left side */
.float-call {
    left: 24px;
    background: linear-gradient(135deg, #E8590C, #C94B00);
}

.float-call:hover {
    box-shadow: 0 10px 32px rgba(232, 89, 12, .45);
}

/* WhatsApp button – right side */
.float-wa {
    right: 24px;
    background: linear-gradient(135deg, #25D366, #1DA851);
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.float-wa:hover {
    animation: none;
    box-shadow: 0 10px 32px rgba(37, 211, 102, .45);
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(0, 0, 0, .2), 0 0 0 0 rgba(37, 211, 102, .5);
    }

    50% {
        box-shadow: 0 6px 24px rgba(0, 0, 0, .2), 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width:991px) {
    .proc-line {
        display: none;
    }

    .testi-slider-wrap {
        padding: 0 48px;
    }
}

@media (max-width:767px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .sec-h {
        font-size: 1.65rem;
    }

    .sbox .snum {
        font-size: 1.9rem;
    }

    .cta-band h2 {
        font-size: 1.75rem;
    }

    .logo-item img {
        height: 60px;
        max-width: 150px;
    }

    .logo-set {
        gap: 36px;
        padding: 0 18px;
    }

    .marquee-track {
        animation-duration: 22s;
    }

    .float-btn {
        bottom: 20px;
    }

    .float-call {
        left: 16px;
    }

    .float-wa {
        right: 16px;
    }
}

@media (max-width:480px) {
    .logo-item img {
         height: 80px;
        max-width: 150px;
    }

    .logo-set {
        gap: 26px;
        padding: 0 13px;
    }

    .marquee-track {
        animation-duration: 16s;
    }
}