/* =====================================================
   HOME SECURE CONNECT — v9.0 (MERGED)
   Design: AT&T-Inspired Corporate Professional
   Fonts: Sora (headings) + DM Sans (body)
   Merged from: homestyle.css + style.css
   Single source of truth — do NOT load other CSS files.
   ===================================================== */

:root {
    --hsc-blue:    #0057b8;
    --hsc-blue-dk: #003d82;
    --hsc-blue-lt: #e8f0fb;
    --hsc-accent:  #0099cc;
    --hsc-accent-dk: #007aa3;
    /* legacy alias so existing var(--hsc-red) references now render brand teal */
    --hsc-red:     #0099cc;
    --hsc-red-dk:  #007aa3;
    --hsc-dark:  #0d1b2a;
    --hsc-navy:  #0f2044;
    --hsc-text:  #374151;
    --hsc-muted: #6b7280;
    --hsc-light: #f5f7fa;
    --hsc-border:#e2e8f0;
    --hsc-white: #ffffff;
    --hsc-shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
    --hsc-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.07);
    --hsc-shadow-md: 0 8px 28px rgba(0, 0, 0, 0.09);
    --hsc-shadow-lg: 0 20px 52px rgba(0, 0, 0, 0.13);
    --hsc-radius-sm: 10px;
    --hsc-radius:    16px;
    --hsc-radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100vw;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--hsc-text);
    background: #fff;
    overflow-x: clip;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    color: var(--hsc-dark);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

p {
    line-height: 1.7;
}

a {
    transition: color .2s ease;
}

.hsc-section {
    padding: 96px 0;
}

/* Utility: position context for sticky children inside a row */
.fixed-index {
    position: relative;
}

/* Inner-page (non-carousel) hero override */
.hsc-hero.d-flex {
    height: auto;
    min-height: 40vh;
    max-height: none;
}

@media (max-width: 768px) {
    .hsc-section {
        padding: 64px 0;
    }
}

/* ===== COLOUR HELPERS ===== */
.text-hsc-blue {
    color: var(--hsc-blue) !important;
}

.text-hsc-red {
    color: var(--hsc-red) !important;
}

.text-hsc-dark {
    color: var(--hsc-dark) !important;
}

.bg-hsc-light {
    background-color: var(--hsc-light) !important;
}

.text-danger {
    color: var(--hsc-red) !important;
}

.text-primary {
    color: var(--hsc-blue) !important;
}

.bg-primary {
    background-color: var(--hsc-blue) !important;
}

.border-primary {
    border-color: var(--hsc-blue) !important;
}

/* ===== BUTTONS ===== */
.btn {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 11px 24px;
    transition: all .2s ease;
    letter-spacing: 0.1px;
}

.btn-primary {
    background: var(--hsc-blue);
    border-color: var(--hsc-blue);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--hsc-blue-dk);
    border-color: var(--hsc-blue-dk);
    transform: translateY(-1px);
}

/* btn-hsc-cta — main CTA button (replaces old btn-danger) */
.btn-hsc-cta,
.btn-danger {
    background: linear-gradient(135deg, var(--hsc-blue) 0%, var(--hsc-accent) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 87, 184, 0.25);
}

.btn-hsc-cta:hover,
.btn-hsc-cta:focus,
.btn-danger:hover,
.btn-danger:focus {
    background: linear-gradient(135deg, var(--hsc-blue-dk) 0%, var(--hsc-accent-dk) 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 87, 184, 0.35);
}

.btn-outline-primary {
    color: var(--hsc-blue);
    border-color: var(--hsc-blue);
}

.btn-outline-primary:hover {
    background: var(--hsc-blue);
    border-color: var(--hsc-blue);
    color: #fff;
    transform: translateY(-1px);
}

/* -- Navbar phone CTA button -- */
.navbar-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--hsc-blue) 0%, var(--hsc-accent) 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.3px;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    box-shadow: 0 0 0 0 rgba(0, 153, 204, 0.45),
                0 4px 14px rgba(0, 87, 184, 0.30);
    transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.navbar-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.18) 50%,
        transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.navbar-cta:hover {
    background: linear-gradient(135deg, var(--hsc-accent) 0%, var(--hsc-blue) 100%) !important;
    color: #fff !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 0 4px rgba(0, 153, 204, 0.20),
                0 8px 24px rgba(0, 87, 184, 0.40);
}

.navbar-cta:hover::before {
    transform: translateX(120%);
}

.navbar-cta i {
    font-size: 0.78rem;
}

.btn-light {
    font-weight: 600;
    border-radius: 8px;
}

/* ===== SECTION BADGE ===== */
.hsc-badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--hsc-blue);
    background: #f0f7ff;
    border: 1px solid #cce4ff;
    border-radius: 50px;
    padding: 0.3rem 0.85rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 87, 184, 0.05);
}

.hsc-badge-red {
    color: var(--hsc-red);
    background: rgba(230, 57, 70, 0.07);
    border-color: rgba(230, 57, 70, 0.2);
}

.hsc-badge-light {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== SVG BACKGROUNDS ===== */
.hsc-bg-dots {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='1.5' fill='%230057b8' fill-opacity='0.045'/%3E%3C/svg%3E");
}

.hsc-bg-grid {
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230057b8' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M0 0h48v48H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.hsc-bg-lines {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230057b8' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M0 60L60 0'/%3E%3C/g%3E%3C/svg%3E");
}

/* =====================================================
   NAVBAR — SHARED (all breakpoints)
   ===================================================== */
.navbar {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: #0d1e30 !important;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    position: relative;
}



.navbar-brand-text span { color: var(--hsc-blue); }

.navbar-logo {
    max-width: 160px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Nav link + mega-toggle shared style */
.navbar-nav .nav-link,
.navbar-nav .mega-toggle {
    font-size: 13.5px;
    font-weight: 500;
    color: #fff !important;
    padding: 8px 12px !important;
    border-radius: 6px;
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .mega-toggle:hover {
    color: #4d9fff !important;
    background: var(--hsc-blue-lt);
}

/* Caret icon */
.mega-toggle .bi-chevron-down {
    font-size: 0.65rem;
    transition: transform 0.22s ease;
    flex-shrink: 0;
}

/* =====================================================
   MEGA MENU — SHARED COMPONENT STYLES
   ===================================================== */
.mega-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg,#f0f7ff 0%,#e0efff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--hsc-blue);
    box-shadow: 0 4px 10px rgba(0,87,184,0.06);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mega-links-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-link-item {
    display: block;
    padding: 6px 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: transparent;
}

.mega-link-item:hover {
    background-color: #f8fafc;
    color: var(--hsc-blue-dk);
    transform: translateX(4px);
}

.mega-action-link {
    color: var(--hsc-blue);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
}

.mega-action-link:hover {
    gap: 10px;
    color: var(--hsc-blue-dk);
    background: #f0f7ff;
}

.mega-contact-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #e0e7ff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}

.custom-zip-input { border-color: #e2e8f0; }
.custom-zip-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.1);
    border-color: #cbd5e1;
}

.bg-mega-sidebar-premium {
    background: linear-gradient(135deg, var(--hsc-blue) 0%, #00c2ff 100%);
    position: relative;
    overflow: hidden;
}

.mega-contact-pill {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.mega-contact-pill .mc-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--hsc-blue);
}

.mega-contact-pill .mc-text { display: flex; flex-direction: column; }

.mega-contact-pill .mc-label {
    font-size: 0.75rem; font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase; letter-spacing: 0.5px;
}

.mega-contact-pill .mc-phone {
    color: #fff; font-weight: 800; font-size: 1.05rem;
    text-decoration: none; font-family: 'Sora', sans-serif;
}

/* =====================================================
   MEGA MENU — DESKTOP (=992px) — pure CSS hover
   ===================================================== */
@media (min-width: 992px) {

    .navbar-toggler { display: none; }

    .navbar-collapse { display: flex !important; }

    .mega-menu-wrapper {
        position: static !important;
    }

    /* Desktop mega: absolutely positioned drop, hidden by default */
    .custom-mega-menu {
        display: block !important;
        position: absolute !important;
        left: 50% !important;
        right: auto !important;
        top: 100% !important;
        transform: translateX(-50%) translateY(10px);
        width: min(1350px, 98vw);
        border-radius: 12px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        box-shadow: 0 12px 45px rgba(0,0,0,0.12);
        z-index: 1050;
        background: #fff;
    }

    /* Show on hover / focus-within */
    .mega-menu-wrapper:hover .custom-mega-menu,
    .mega-menu-wrapper:focus-within .custom-mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    /* Rotate caret on hover */
    .mega-menu-wrapper:hover .mega-toggle .bi-chevron-down {
        transform: rotate(180deg);
    }

    .border-end-lg { border-right: 1px solid #f1f5f9; }

    .bg-mega-sidebar-premium { border-radius: 0 12px 12px 0; }
}

/* =====================================================
   NAVBAR + MEGA MENU — MOBILE (<992px)
   ===================================================== */
@media (max-width: 991.98px) {

    /* White hamburger icon on dark navbar */
    .navbar-toggler-icon { filter: invert(1); }

    /* The collapsible container */
    .navbar-collapse {
        background: #0f273d;
        padding: 0.5rem 1rem 1.25rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-radius: 0 0 12px 12px;
        max-height: calc(100dvh - 62px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Stack the nav list and the CTA button vertically */
    .navbar-collapse .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin: 0 !important;
    }

    /* Each nav item full-width */
    .navbar-nav .nav-item {
        width: 100%;
    }

    /* Nav links and mega-toggle full-width, justify text+caret */
    .navbar-nav .nav-link,
    .navbar-nav .mega-toggle {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.7rem 0.25rem !important;
        color: rgba(255,255,255,0.9) !important;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        border-radius: 0 !important;
    }

    .navbar-nav .nav-link:last-child { border-bottom: none; }

    /* Caret rotates when sub-menu is open */
    .mega-menu-wrapper.mega-open .mega-toggle .bi-chevron-down {
        transform: rotate(180deg);
    }

    /* Pull the CTA button block below the nav list */
    .navbar-collapse > div[class*="d-flex"] {
        width: 100%;
        padding-top: 0.75rem;
    }

    /* Make CTA phone button full-width on mobile */
    .navbar-cta {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        border-radius: 10px !important;
    }

    /* -- MOBILE MEGA MENU -- */
    /* Hidden by default */
    .mega-menu-wrapper .custom-mega-menu {
        display: none !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        background: rgba(255,255,255,0.04) !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        border-radius: 10px !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 0 8px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        overflow: hidden !important;
    }

    /* Shown when .mega-open added via JS */
    .mega-menu-wrapper.mega-open .custom-mega-menu {
        display: block !important;
    }

    /* Columns stack vertically */
    .custom-mega-menu .row.g-0 {
        display: flex !important;
        flex-direction: column !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
    }

    .custom-mega-menu .col-lg-3 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.9rem 1rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    }

    .custom-mega-menu .col-lg-3:last-child {
        border-bottom: none !important;
    }

    /* Colour overrides — light text on dark bg */
    .custom-mega-menu .fw-700,
    .custom-mega-menu .text-dark {
        color: rgba(255,255,255,0.95) !important;
    }

    .custom-mega-menu .text-muted {
        color: rgba(255,255,255,0.55) !important;
    }

    .mega-link-item {
        color: rgba(255,255,255,0.8) !important;
    }

    .mega-link-item:hover {
        background: rgba(255,255,255,0.06) !important;
        color: #fff !important;
        transform: none !important;
    }

    .mega-action-link {
        color: #93c5fd !important;
    }

    .mega-action-link:hover {
        background: rgba(255,255,255,0.06) !important;
        color: #fff !important;
    }

    .mega-icon-box {
        background: rgba(255,255,255,0.1) !important;
        color: #93c5fd !important;
        box-shadow: none !important;
    }

    .bg-mega-sidebar-premium {
        border-radius: 8px !important;
        margin-top: 0 !important;
        padding: 1rem !important;
    }

    .text-hsc-blue { color: #4d9fff !important; }
}

/* =====================================================
   HERO — 3-SLIDE CAROUSEL
   ===================================================== */
.hsc-hero {
    position: relative;
    height: 78vh;
    min-height: 520px;
    max-height: 720px;
}

.hsc-slide {
    height: 78vh;
    min-height: 520px;
    max-height: 720px;
}

.hsc-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hsc-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(13, 27, 42, 0.93) 0%, rgba(13, 27, 42, 0.68) 55%, rgba(13, 27, 42, 0.22) 100%);
}

.hsc-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4d9fff;
    border: 1px solid rgba(77, 159, 255, 0.35);
    background: rgba(77, 159, 255, 0.08);
    border-radius: 50px;
    padding: 0.3rem 0.85rem;
    margin-bottom: 1.1rem;
    display: inline-block;
}

.hsc-hero-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -1.5px;
}

.hsc-hero-sub {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hsc-tel-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color .2s;
}

.hsc-tel-link:hover {
    color: #fff;
}

.hsc-indicators {
    bottom: 32px;
}

.hsc-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    border: none;
    opacity: 1;
    transition: all .35s ease;
    margin: 0 4px;
}

.hsc-indicators .active {
    background: var(--hsc-red);
    width: 30px;
    border-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(6px);
    transition: background .25s;
    opacity: 1;
}

.carousel-control-prev {
    left: 28px;
}

.carousel-control-next {
    right: 28px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.22);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.hsc-trust-item {
    text-align: center;
    padding: 2rem 1.25rem;
    position: relative;
}

.hsc-trust-item+.hsc-trust-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--hsc-border);
}

.hsc-trust-icon {
    font-size: 1.6rem;
    color: var(--hsc-blue);
    margin-bottom: 0.6rem;
    display: block;
}

.hsc-trust-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--hsc-dark);
    line-height: 1;
    display: block;
}

.hsc-trust-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--hsc-muted);
    margin-top: 0.3rem;
    display: block;
}

/* =====================================================
   SERVICE CARDS (v2 — Icon-based, no images)
   ===================================================== */
.hsc-service-card-v2 {
    border-radius: var(--hsc-radius-lg);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Card 1 — Security (Red accent) */
.hsc-card-red {
    background: rgba(230, 57, 70, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.22);
}

.hsc-card-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hsc-red), #ff8a9a);
}

.hsc-card-red:hover {
    border-color: rgba(230, 57, 70, 0.42);
    background: rgba(230, 57, 70, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.12);
}

/* Card 2 — Internet (Blue accent) */
.hsc-card-blue {
    background: rgba(0, 87, 184, 0.06);
    border: 1px solid rgba(0, 87, 184, 0.22);
}

.hsc-card-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hsc-blue), #60aeff);
}

.hsc-card-blue:hover {
    border-color: rgba(0, 87, 184, 0.42);
    background: rgba(0, 87, 184, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 87, 184, 0.12);
}

/* Card header with icon + title */
.hsc-svc-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.hsc-svc-icon-lg {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    background: rgba(230, 57, 70, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--hsc-red);
    flex-shrink: 0;
    border: 1px solid rgba(230, 57, 70, 0.25);
}

.hsc-svc-icon-blue {
    background: rgba(0, 87, 184, 0.15);
    color: var(--hsc-blue);
    border-color: rgba(0, 87, 184, 0.25);
}

.hsc-svc-num {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.hsc-card-red .hsc-svc-num {
    color: var(--hsc-red);
}

.hsc-card-blue .hsc-svc-num {
    color: var(--hsc-blue);
}

.hsc-service-card-v2 h3 {
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.hsc-svc-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Sub-section label inside service card */
.hsc-svc-sublabel {
    display: inline-flex;
    align-items: center;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    margin-top: 0.85rem;
    padding: 3px 10px;
    border-radius: 20px;
}

.hsc-card-red .hsc-svc-sublabel {
    color: var(--hsc-red);
    background: rgba(230, 57, 70, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.hsc-card-blue .hsc-svc-sublabel {
    color: #60aeff;
    background: rgba(0, 87, 184, 0.15);
    border: 1px solid rgba(0, 87, 184, 0.25);
}

.hsc-svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.15rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
}

.hsc-svc-list li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.68);
    display: flex;
    align-items: center;
    gap: 7px;
}

.hsc-svc-list li i {
    font-size: 0.65rem;
    flex-shrink: 0;
}

.hsc-card-red .hsc-svc-list li i {
    color: var(--hsc-red);
}

.hsc-card-blue .hsc-svc-list li i {
    color: var(--hsc-blue);
}

.hsc-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    padding-bottom: 3px;
    transition: gap .3s ease;
    margin-top: auto;
    padding-top: 1.5rem;
}

.hsc-card-red .hsc-svc-link {
    border-bottom: 2px solid var(--hsc-red);
}

.hsc-card-blue .hsc-svc-link {
    border-bottom: 2px solid var(--hsc-blue);
}

.hsc-svc-link:hover {
    gap: 14px;
    color: #fff;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.hsc-step-wrap {
    position: relative;
}

.hsc-step-line {
    position: absolute;
    top: 36px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg, var(--hsc-blue) 0%, var(--hsc-red) 100%);
    opacity: 0.12;
    z-index: 0;
}

@media (max-width:767px) {
    .hsc-step-line {
        display: none;
    }
}

.hsc-step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 0.4rem;
}

.hsc-step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--hsc-blue);
    color: var(--hsc-blue);
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all .3s ease;
    position: relative;
    z-index: 2;
    box-shadow: var(--hsc-shadow-sm);
}

.hsc-step-item:hover .hsc-step-num {
    background: var(--hsc-blue);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 87, 184, 0.38);
    transform: scale(1.06);
}

.hsc-step-item h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hsc-dark);
    margin-bottom: 0.5rem;
}

.hsc-step-item p {
    font-size: 0.82rem;
    color: var(--hsc-muted);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   FEATURE IMAGE CARDS (hover)
   ===================================================== */
.hsc-feat-card {
    position: relative;
    border-radius: var(--hsc-radius);
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    box-shadow: var(--hsc-shadow-sm);
    transition: transform .4s ease, box-shadow .4s ease;
}

.hsc-feat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hsc-shadow-lg);
}

.hsc-feat-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.25, .46, .45, .94);
}

.hsc-feat-card:hover img {
    transform: scale(1.09);
}

.hsc-feat-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.35) 55%, transparent 100%);
    transition: background .4s ease;
    z-index: 1;
}

.hsc-feat-card:hover .hsc-feat-grad {
    background: linear-gradient(to top, rgba(13, 27, 42, 0.98) 0%, rgba(13, 27, 42, 0.68) 65%, rgba(13, 27, 42, 0.15) 100%);
}

.hsc-feat-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #fff;
    z-index: 2;
}

.hsc-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
    transition: all .35s ease;
}

.hsc-feat-card:hover .hsc-feat-icon {
    background: var(--hsc-red);
    border-color: var(--hsc-red);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.42);
}

.hsc-feat-body h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hsc-feat-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin: 0;
    opacity: 0.8;
    transform: translateY(6px);
    transition: all .38s ease;
}

.hsc-feat-card:hover .hsc-feat-text {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   INTERNET FEATURE ITEMS
   ===================================================== */
.hsc-inet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--hsc-border);
    border-radius: var(--hsc-radius-sm);
    transition: all .3s ease;
    box-shadow: var(--hsc-shadow-xs);
    height: 100%;
}

.hsc-inet-item:hover {
    border-color: rgba(0, 87, 184, 0.22);
    box-shadow: var(--hsc-shadow-md);
    transform: translateY(-3px);
}

.hsc-inet-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 87, 184, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--hsc-blue);
    flex-shrink: 0;
    transition: all .3s ease;
}

.hsc-inet-item:hover .hsc-inet-icon {
    background: var(--hsc-blue);
    color: #fff;
}

.hsc-inet-icon-red {
    background: rgba(0, 153, 204, 0.08) !important;
    color: var(--hsc-accent) !important;
}

.hsc-inet-item:hover .hsc-inet-icon-red {
    background: var(--hsc-accent) !important;
    color: #fff !important;
}

.hsc-inet-item h6 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--hsc-dark);
    margin-bottom: 0.2rem;
}

.hsc-inet-item p {
    font-size: 0.83rem;
    color: var(--hsc-muted);
    margin: 0;
    line-height: 1.55;
}

/* =====================================================
   WHY CHOOSE US CARDS
   ===================================================== */
.hsc-why-card {
    background: #fff;
    border: 1px solid var(--hsc-border);
    border-radius: var(--hsc-radius);
    padding: 2rem;
    height: 100%;
    transition: all .3s ease;
    box-shadow: var(--hsc-shadow-xs);
}

.hsc-why-card:hover {
    border-color: rgba(0, 87, 184, 0.25);
    box-shadow: 0 14px 36px rgba(0, 87, 184, 0.09);
    transform: translateY(-5px);
}

.hsc-why-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(0, 87, 184, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--hsc-blue);
    margin-bottom: 1.2rem;
    transition: all .3s ease;
}

.hsc-why-card:hover .hsc-why-icon {
    background: var(--hsc-blue);
    color: #fff;
    transform: scale(1.04);
}

.hsc-why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.hsc-why-card p {
    font-size: 0.88rem;
    color: var(--hsc-muted);
    line-height: 1.68;
    margin: 0;
}

/* =====================================================
   PROVIDER BANNER
   ===================================================== */
.hsc-provider-banner {
    background: linear-gradient(135deg, var(--hsc-blue) 0%, var(--hsc-blue-dk) 100%);
    border-radius: var(--hsc-radius);
    padding: 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.hsc-provider-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hsc-provider-banner h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hsc-provider-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}

.hsc-provider-banner-dark {
    background: linear-gradient(135deg, var(--hsc-dark) 0%, var(--hsc-navy) 100%);
}

/* ===== CALLOUT ===== */
.hsc-callout {
    background: rgba(0, 87, 184, 0.04);
    border: 1px solid rgba(0, 87, 184, 0.14);
    border-left: 4px solid var(--hsc-blue);
    border-radius: var(--hsc-radius-sm);
    padding: 1.5rem 2rem;
}

.hsc-callout h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--hsc-dark);
    margin-bottom: 0.4rem;
}

.hsc-callout p {
    font-size: 0.88rem;
    color: var(--hsc-muted);
    line-height: 1.65;
    margin: 0;
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.hsc-faq .accordion-item {
    background: #fff !important;
    border: 1px solid var(--hsc-border) !important;
    border-radius: var(--hsc-radius-sm) !important;
    margin-bottom: 0.65rem;
    overflow: hidden;
    transition: box-shadow .25s ease;
}

.hsc-faq .accordion-item:hover {
    box-shadow: var(--hsc-shadow-md);
}

.hsc-faq .accordion-button {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hsc-dark);
    background: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: var(--hsc-radius-sm) !important;
    box-shadow: none !important;
}

.hsc-faq .accordion-button:not(.collapsed) {
    color: var(--hsc-blue);
    background: #fff;
    border-bottom: 1px solid var(--hsc-border);
    border-radius: var(--hsc-radius-sm) var(--hsc-radius-sm) 0 0 !important;
}

.hsc-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230057b8' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    filter: none;
}

.hsc-faq .accordion-body {
    font-size: 0.9rem;
    color: var(--hsc-muted);
    line-height: 1.72;
    padding: 1.2rem 1.5rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.hsc-cta-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #0f2044 100%);
    position: relative;
    overflow: hidden;
}

.hsc-cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 87, 184, 0.22) 0%, transparent 72%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.hsc-cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.16) 0%, transparent 70%);
    bottom: -150px;
    left: -80px;
    pointer-events: none;
}

.hsc-cta-section h2 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
}

.hsc-cta-section p {
    color: rgba(255, 255, 255, 0.72);
}

.hsc-trust-check {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hsc-trust-check i {
    color: var(--hsc-red);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: #0d1b2a;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer .footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

.footer p {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.65;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .25s;
}

.footer-links a::before {
    content: '»';
    color: var(--hsc-red);
}

.footer-links a:hover {
    color: #fff;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    transition: all .25s;
}

.social-icons a:hover {
    background: var(--hsc-blue);
    transform: translateY(-2px);
}

.footer-advisor-badge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 14px;
}

.footer-advisor-badge i {
    color: var(--hsc-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-advisor-badge strong {
    display: block;
    color: #fff;
    font-size: 0.82rem;
    margin-bottom: 3px;
}

.footer-advisor-badge span {
    color: #64748b;
    font-size: 0.76rem;
    line-height: 1.4;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--hsc-red);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item h5 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.footer-contact-item p {
    margin: 0;
    color: #94a3b8;
    word-break: break-all;
    overflow-wrap: anywhere;
    font-size: 0.82rem;
}

.footer-contact-item p a {
    color: #94a3b8;
    text-decoration: none;
    transition: color .25s;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.footer-contact-item p a:hover {
    color: #fff;
}

.subscribe-box {
    position: relative;
    margin-bottom: 28px;
}

.subscribe-box input {
    width: 100%;
    padding: 11px 48px 11px 18px;
    border-radius: 28px;
    border: none;
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    font-size: 0.88rem;
    outline: none;
}

.subscribe-box input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.subscribe-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: transparent;
    border: none;
    color: var(--hsc-red);
    padding: 0 14px;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.83rem;
    color: #64748b;
}

.legal-text {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.65);
    line-height: 1.6;
    margin-top: 18px;
}

/* ===== SCROLL TOP ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hsc-blue);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    box-shadow: 0 4px 14px rgba(0, 87, 184, 0.45);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

@media (max-width: 991px) {

    .hsc-hero,
    .hsc-slide {
        height: 70vh;
        min-height: 480px;
        max-height: none;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767px) {
    .hsc-hero {
        min-height: 420px;
        height: 65vh;
    }

    .hsc-slide {
        min-height: 420px;
        height: 65vh;
    }

    .hsc-hero-heading {
        font-size: 1.9rem;
        letter-spacing: -0.5px;
        line-height: 1.1;
    }

    .hsc-hero-sub {
        font-size: 0.92rem;
        margin-bottom: 1.25rem;
    }

    .hsc-eyebrow {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .hsc-svc-list {
        grid-template-columns: 1fr;
    }

    .hsc-trust-item+.hsc-trust-item::before {
        display: none;
    }

    .hsc-provider-banner {
        padding: 1.75rem 1.5rem;
    }

    .hsc-callout {
        padding: 1.25rem;
    }
}

/* ======== UNIQUE SECTION DESIGNS ======== */

/* Brand Statement - light grid bg */
.brand-statement-section {
    background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230057b8' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M0 0h48v48H0z'/%3E%3C/g%3E%3C/svg%3E");
    border-bottom: 1px solid var(--hsc-border);
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f0f7ff;
    border: 1px solid #cce4ff;
    border-radius: 50px;
    padding: 0.35rem 0.95rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--hsc-blue);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 87, 184, 0.05);
}

.brand-statement-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--hsc-dark);
    line-height: 1.25;
}

.brand-stat-box {
    border-left: 3px solid var(--hsc-blue);
    padding-left: 1rem;
}

.brand-stat-box .num {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hsc-blue);
    display: block;
    line-height: 1;
}

.brand-stat-box .lbl {
    font-size: 0.78rem;
    color: var(--hsc-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* What We Offer - dark section */
.offer-section {
    background: var(--hsc-dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.hsc-v2-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

.hsc-v2-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.hsc-v2-media-container {
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.hsc-v2-content-box {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hsc-v2-tag-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.hsc-v2-main-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

/* Feature Grid System */
.hsc-v2-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.hsc-v2-group-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    border-left: 2px solid #3b82f6;
    padding-left: 10px;
}

.hsc-v2-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hsc-v2-feature-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.hsc-v2-feature-item i {
    color: #3b82f6;
    margin-right: 10px;
    font-size: 0.9rem;
}

.hsc-v2-full-width-group {
    grid-column: span 2;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hsc-v2-action-btn {
    margin-top: auto;
    padding-top: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.hsc-v2-action-btn:hover {
    color: #3b82f6;
    gap: 15px;
}

/* How It Works - light with dots */
.how-section {
    background: var(--hsc-light);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='1.5' fill='%230057b8' fill-opacity='0.045'/%3E%3C/svg%3E");
}

/* Security Deep Dive - white + image right */
.security-section {
    background: #fff;
}

.security-img-col {
    position: relative;
}

.security-main-img {
    border-radius: var(--hsc-radius-lg);
    overflow: hidden;
    box-shadow: var(--hsc-shadow-lg);
    position: relative;
}

.security-main-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.security-badge-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--hsc-blue);
    color: #fff;
    border-radius: var(--hsc-radius);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 12px 32px rgba(0, 87, 184, 0.35);
    min-width: 180px;
}

.security-badge-float .num {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.security-badge-float .lbl {
    font-size: 0.78rem;
    opacity: 0.85;
    margin-top: 4px;
    display: block;
}

/* Internet Section - navy bg + right col cards */
.hsc-nav-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hsc-nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.hsc-nav-tabs .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.hsc-nav-tabs .nav-link.active {
    color: #fff;
    background: var(--hsc-blue);
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.4);
}

/* Internet Section - navy bg + right col cards */
.internet-section {
    background: var(--hsc-navy);
    position: relative;
    overflow: hidden;
}

.internet-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 87, 184, 0.18) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.internet-section h2,
.internet-section h3,
.internet-section h4,
.internet-section h5,
.internet-section h6 {
    color: #fff;
}

/* Why Choose - light blue tint */
.why-section {
    background: #f0f5ff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230057b8' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M0 60L60 0'/%3E%3C/g%3E%3C/svg%3E");
}

/* FAQ - white with clean layout */
.faq-section {
    background: #fff;
}

/* Section heading styles */
.section-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--hsc-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-heading-light {
    color: #fff;
}

.section-sub {
    font-size: 1rem;
    color: var(--hsc-muted);
    max-width: 620px;
    line-height: 1.7;
}

/* Divider line decoration */
.hsc-divider-accent {
    width: 56px;
    height: 4px;
    background: var(--hsc-red);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.hsc-divider-accent-center {
    margin-left: auto;
    margin-right: auto;
}

/* Internet item card in dark bg */
.hsc-inet-item-dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.hsc-inet-item-dark:hover {
    border-color: rgba(0, 87, 184, 0.5);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-3px);
}

.hsc-inet-item-dark h6 {
    color: #fff;
}

.hsc-inet-item-dark p {
    color: rgba(255, 255, 255, 0.6);
}

.hsc-inet-icon-dark {
    background: rgba(0, 87, 184, 0.25) !important;
}

.hsc-inet-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    margin: 1.5rem 0;
}

/* Offer card inside dark section */
.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--hsc-radius-lg);
    padding: 2.5rem;
    height: 100%;
    transition: all .3s ease;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 87, 184, 0.4);
    transform: translateY(-4px);
}

.offer-card-number {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hsc-red);
    margin-bottom: 0.5rem;
    display: block;
}

.offer-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.offer-card>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.offer-sub-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 1.25rem 0 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0.55rem;
}

.offer-list li i {
    color: var(--hsc-red);
    font-size: 0.72rem;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Section number label */
.section-num-tag {
    font-family: 'Sora', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 87, 184, 0.06);
    position: absolute;
    top: -10px;
    right: 0;
    letter-spacing: -4px;
    pointer-events: none;
    user-select: none;
}

/* ATT-inspired promo strip */
.promo-strip {
    background: var(--hsc-blue);
    padding: 10px 0;
}

.promo-strip p {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    margin: 0;
}

.promo-strip a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-decoration: underline;
}

/* Wireless section cards */
.wireless-plan-card {
    background: #fff;
    border: 1px solid var(--hsc-border);
    border-radius: var(--hsc-radius);
    padding: 1.75rem;
    transition: all .3s ease;
    box-shadow: var(--hsc-shadow-xs);
}

.wireless-plan-card:hover {
    border-color: rgba(0, 87, 184, 0.25);
    box-shadow: var(--hsc-shadow-md);
    transform: translateY(-4px);
}

.wireless-plan-card .plan-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0, 87, 184, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--hsc-blue);
    margin-bottom: 1rem;
}

.wireless-plan-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.wireless-plan-card p {
    font-size: 0.84rem;
    color: var(--hsc-muted);
    margin: 0;
    line-height: 1.6;
}

/* Curved divider top */
.wave-top {
    position: relative;
}

.wave-top::before {
    content: '';
    display: block;
    width: 100%;
    height: 60px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 100%);
    margin-top: -59px;
}

/* ATT banner strip image */
.hero-img-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.88) 0%, transparent 100%);
    padding: 2rem;
    border-radius: 0 0 var(--hsc-radius-lg) var(--hsc-radius-lg);
}

/* =====================================================
   GRADIENT HEADING SPANS
   ===================================================== */
.hsc-heading-grad {
    background: linear-gradient(110deg, #60b4ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* For headings on white/light backgrounds */
.hsc-heading-grad-dark {
    background: linear-gradient(110deg, var(--hsc-blue) 0%, #0099ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   HERO TRUST PILLS  (below CTA buttons in hero slides)
   ===================================================== */
.hsc-hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.hsc-htpill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50px;
    padding: 0.38rem 0.9rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s ease;
}

.hsc-htpill i {
    font-size: 0.75rem;
    color: #60c8ff;
}

.hsc-htpill:hover {
    background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 576px) {
    .hsc-hero-trust-pills {
        gap: 0.45rem;
    }

    .hsc-htpill {
        font-size: 0.66rem;
        padding: 0.32rem 0.7rem;
    }
}

/* =====================================================
   HOW IT WORKS — v2 (Bold 01/02/03 numbers)
   ===================================================== */
.hsc-step-v2 {
    background: #fff;
    border: 1px solid var(--hsc-border);
    border-radius: var(--hsc-radius);
    padding: 2rem 1.75rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--hsc-shadow-xs);
    overflow: hidden;
}

.hsc-step-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hsc-blue), #00c2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hsc-step-v2:hover {
    border-color: rgba(0, 87, 184, 0.2);
    box-shadow: var(--hsc-shadow-md);
    transform: translateY(-4px);
}

.hsc-step-v2:hover::before {
    opacity: 1;
}

.hsc-step-v2-num {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--hsc-blue) 0%, #00c2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.85;
}

.hsc-step-v2 h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--hsc-dark);
    margin-bottom: 0.65rem;
}

.hsc-step-v2 p {
    font-size: 0.85rem;
    color: var(--hsc-muted);
    line-height: 1.7;
    margin: 0;
}

/* CTA Card inside How It Works grid */
.hsc-step-v2-cta {
    background: linear-gradient(135deg, var(--hsc-blue) 0%, #0042a8 100%);
    border: none;
    box-shadow: 0 16px 48px rgba(0, 87, 184, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsc-step-v2-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(0, 87, 184, 0.38);
    border-color: transparent;
}

.hsc-step-v2-cta::before {
    display: none;
}

.hsc-step-v2-cta-inner {
    text-align: center;
    padding: 0.5rem;
}

.hsc-step-v2-cta-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: block;
}

/* =====================================================
   IMPROVED BRAND STAT BOX
   ===================================================== */
.brand-stat-box {
    border-left: 3px solid var(--hsc-blue);
    padding: 0.75rem 0 0.75rem 1.25rem;
    background: #f8faff;
    border-radius: 0 var(--hsc-radius-sm) var(--hsc-radius-sm) 0;
    transition: all 0.3s ease;
    border-top: 1px solid var(--hsc-border);
    border-bottom: 1px solid var(--hsc-border);
    border-right: 1px solid var(--hsc-border);
}

.brand-stat-box:hover {
    background: #f0f7ff;
    border-left-color: var(--hsc-blue);
    transform: translateX(4px);
}

.brand-stat-box .num {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--hsc-blue);
    display: block;
    line-height: 1;
    background: linear-gradient(110deg, var(--hsc-blue) 0%, #0099ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-stat-box .lbl {
    font-size: 0.78rem;
    color: var(--hsc-muted);
    font-weight: 500;
    margin-top: 4px;
    display: block;
    line-height: 1.4;
}

/* =====================================================
   WHY CARDS — gradient top on hover
   ===================================================== */
.hsc-why-card {
    position: relative;
    overflow: hidden;
}

.hsc-why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hsc-blue), #00c2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hsc-why-card:hover::after {
    opacity: 1;
}

/* =====================================================
   SECTION HEADING: Security & Internet sections
   ===================================================== */
.security-section .section-heading,
.how-section .section-heading,
.why-section .section-heading,
.faq-section .section-heading {
    letter-spacing: -0.5px;
}

/* =====================================================
   OFFER SECTION — improved dark service cards
   ===================================================== */
.offer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.02' stroke-width='1'%3E%3Cpath d='M0 60L60 0'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* =====================================================
   RESPONSIVE POLISH
   ===================================================== */
@media (max-width: 767px) {
    .hsc-step-v2-num {
        font-size: 2.8rem;
    }

    .hsc-step-v2 {
        padding: 1.5rem 1.25rem;
    }

    .brand-stat-box .num {
        font-size: 1.75rem;
    }

    .hsc-hero-trust-pills {
        display: none;
    }
}



@media (max-width: 575px) {
    .hsc-step-v2-cta {
        min-height: 180px;
    }
}

/* =====================================================
   FOOTER CONTACT v2 — compact icon + text rows
   ===================================================== */
.footer-contact-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-v2-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.fci-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0, 87, 184, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--hsc-blue);
    margin-top: 1px;
    border: 1px solid rgba(0, 87, 184, 0.18);
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-contact-v2-item:hover .fci-icon {
    background: var(--hsc-blue);
    color: #fff;
}

.fci-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    line-height: 1;
    margin-bottom: 3px;
}

.fci-value {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

a.fci-value:hover {
    color: #60c8ff;
}

/* Footer bottom link */
.footer-bottom-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: #94a3b8;
}

/* Responsive: stack footer contact on very small screens */
@media (max-width: 380px) {
    .footer-contact-v2-item {
        gap: 0.65rem;
    }

    .fci-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}


/* =====================================================
   SVC2 — PREMIUM SERVICES SECTION
   ===================================================== */
.svc2-section {
    padding: 100px 0 80px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.svc2-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,87,184,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Header */
.svc2-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.svc2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f0fe;
    color: var(--hsc-blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.svc2-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0f1c2e;
    line-height: 1.15;
    margin-bottom: 16px;
}

.svc2-grad {
    background: linear-gradient(135deg, var(--hsc-blue) 0%, #00b4d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc2-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Grid */
.svc2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

@media (max-width: 991px) {
    .svc2-grid { grid-template-columns: 1fr; }
}

/* Card */
.svc2-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e8edf3;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.svc2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
}

.svc2-card--security::before { background: linear-gradient(90deg, #0057b8, #3b82f6); }
.svc2-card--internet::before  { background: linear-gradient(90deg, #059669, #10b981); }

.svc2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
}

.svc2-card-inner {
    padding: 36px 32px 32px;
    position: relative;
}

/* Number watermark */
.svc2-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: 'Sora', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

/* Icon */
.svc2-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.svc2-card:hover .svc2-icon-wrap { transform: scale(1.08); }

.svc2-icon--blue  { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.svc2-icon--green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }

/* Service label (e.g. "Service 01") */
.svc2-service-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 8px;
}

/* Card title */
.svc2-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f1c2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Card desc */
.svc2-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Feature groups */
.svc2-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.svc2-feat-group {}

.svc2-feat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.svc2-feat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.svc2-feat-pills span {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    transition: all 0.2s ease;
    cursor: default;
}

.svc2-card--security:hover .svc2-feat-pills span { border-color: #bfdbfe; background: #eff6ff; color: #1d4ed8; }
.svc2-card--internet:hover .svc2-feat-pills span { border-color: #a7f3d0; background: #f0fdf4; color: #065f46; }

/* CTA link */
.svc2-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    background: #eff6ff;
    color: #1d4ed8;
}

.svc2-cta:hover {
    background: #1d4ed8;
    color: #fff;
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29,78,216,0.25);
}

.svc2-cta--green { background: #f0fdf4; color: #065f46; }
.svc2-cta--green:hover {
    background: #059669;
    color: #fff;
    box-shadow: 0 8px 24px rgba(5,150,105,0.25);
}

/* Trust bar */
.svc2-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 56px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8edf3;
    padding: 20px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.svc2-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
}

.svc2-trust-item i {
    font-size: 1.1rem;
    color: var(--hsc-blue);
}

.svc2-trust-divider {
    width: 1px;
    height: 28px;
    background: #e2e8f0;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .svc2-trust { padding: 16px; }
    .svc2-trust-item { padding: 8px 16px; font-size: 0.8rem; }
    .svc2-trust-divider:nth-child(4) { display: none; }
}


/* =====================================================
   CALL FAB (Floating Action Button)
   ===================================================== */
.hsc-call-fab {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--hsc-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(0,87,184,0.35);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.hsc-call-fab:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,87,184,0.45);
    color: #fff;
}
@media (max-width: 479px) {
    .hsc-call-fab { bottom: 20px; left: 16px; width: 52px; height: 52px; font-size: 1.25rem; }
}
