﻿/* --------- Theme tokens (light) --------- */
:root {
    --slate-900: #0f172a;
    --slate-800: #1f2937;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --teal: #22b8cf;
    --indigo: #1e5dd6;
    --purple: #4aa3ff;
    --surface: #f3f7fb;
    --font-body: "Raleway", sans-serif;
    --font-display: "Raleway", sans-serif;
    --bs-primary: #1e5dd6;
    --bs-primary-rgb: 30, 93, 214;
    --bs-link-color: #1e5dd6;
    --bs-link-hover-color: #174aa9;
}

body {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-3,
.display-6,
.display-lg {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

/* Utility-ish helpers */
.text-slate {
    color: var(--slate-800);
}

.bg-surface {
    background: var(--surface);
}

.letterwide {
    letter-spacing: .12em;
}

.py-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.display-lg {
    font-size: clamp(3rem, 5vw, 4.25rem);
}

.btn {
    border-radius: 999px;
    font-weight: 600;
}

.btn-primary {
    --bs-btn-bg: #1e5dd6;
    --bs-btn-border-color: #1e5dd6;
    --bs-btn-hover-bg: #174aa9;
    --bs-btn-hover-border-color: #174aa9;
    --bs-btn-active-bg: #143c88;
    --bs-btn-active-border-color: #143c88;
}

.btn-outline-primary {
    --bs-btn-color: #1e5dd6;
    --bs-btn-border-color: #1e5dd6;
    --bs-btn-hover-bg: #1e5dd6;
    --bs-btn-hover-border-color: #1e5dd6;
    --bs-btn-active-bg: #174aa9;
    --bs-btn-active-border-color: #174aa9;
}

/* --------- Navbar --------- */
#mainNav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

    #mainNav .nav-top,
    #mainNav > .container {
        width: 100%;
    }

        #mainNav .nav-top .container {
            flex-wrap: wrap;
            row-gap: .35rem;
        }

    #mainNav .nav-top-item {
        white-space: nowrap;
    }

.navbar-transparent {
    background: transparent;
    transition: background-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease, padding .25s ease;
}

.nav-top {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .8);
}

    .nav-top a {
        color: inherit;
        text-decoration: none;
    }

.nav-top-item {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, .92) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

    .navbar-scrolled .nav-top {
        color: rgba(15, 23, 42, .7);
        border-bottom-color: rgba(15, 23, 42, .08);
    }

    .navbar-scrolled.navbar-dark {
        --bs-navbar-color: rgba(15, 23, 42, .75);
        --bs-navbar-hover-color: rgba(15, 23, 42, .92);
        --bs-navbar-brand-color: rgba(15, 23, 42, .95);
        --bs-navbar-brand-hover-color: rgba(15, 23, 42, 1);
        --bs-navbar-toggler-border-color: rgba(15, 23, 42, .18);
    }

.navbar .dropdown-menu {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
    padding: .75rem;
    min-width: 240px;
}

.navbar .dropdown-header {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--slate-500);
    font-weight: 700;
    padding-left: .25rem;
}

.navbar .dropdown-item {
    font-weight: 600;
    color: var(--slate-700);
    border-radius: 10px;
    padding: .45rem .6rem;
}

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background: rgba(30, 93, 214, .08);
        color: var(--slate-800);
    }

.navbar .dropdown-divider {
    margin: .5rem 0;
}

.dropdown-hub {
    border-top: 1px solid rgba(15, 23, 42, .08);
    padding-top: .25rem;
    margin-top: .25rem;
}

    .dropdown-hub:first-child {
        border-top: 0;
        margin-top: 0;
        padding-top: 0;
    }

.dropdown-hub-toggle {
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--slate-500);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .dropdown-hub-toggle:hover,
    .dropdown-hub-toggle:focus {
        background: rgba(30, 93, 214, .05);
        color: var(--slate-700);
    }

    .dropdown-hub-toggle:focus-visible {
        outline: 2px solid rgba(30, 93, 214, .25);
        outline-offset: 2px;
    }

.dropdown-hub-panel {
    padding-bottom: .4rem;
}

    .dropdown-hub-panel .dropdown-item {
        padding-left: .9rem;
    }

.dropdown-hub-toggle .hub-icon {
    transition: transform .2s ease;
}

.dropdown-hub-toggle[aria-expanded="true"] .hub-icon {
    transform: rotate(180deg);
}

.brand-mark {
    letter-spacing: -0.02em;
}

.brand-sub {
    font-size: .72rem;
    font-weight: 500;
    color: rgba(100, 116, 139, .95);
    border-left: 1px solid rgba(148, 163, 184, .65);
}

.shadow-soft {
    box-shadow: 0 18px 35px rgba(30, 93, 214, .24) !important;
}

/* --------- Hero --------- */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 7.5rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
}

.hero-lux {
    background: #f8fafc;
}

@media (min-width: 992px) {
    .hero {
        padding-top: 9rem;
        padding-bottom: 4.5rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slab {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: rgba(30, 93, 214, .06);
    border-bottom-left-radius: 90px;
}

.hero-orb {
    position: absolute;
    top: 6rem;
    right: 4rem;
    width: 260px;
    height: 260px;
    background: rgba(34, 184, 207, .18);
    border-radius: 999px;
    filter: blur(42px);
}

.hero-lux .hero-slab {
    width: 60%;
    background: linear-gradient(120deg, rgba(30, 93, 214, .08), rgba(34, 184, 207, .04));
    border-bottom-left-radius: 140px;
}

.hero-lux .hero-orb {
    top: -40px;
    right: 12%;
    width: 320px;
    height: 320px;
    background: rgba(30, 93, 214, .12);
    filter: blur(80px);
}

.gradient-text {
    background: linear-gradient(90deg, rgb(30, 93, 214), rgb(34, 184, 207));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.badge-soft-primary {
    background: rgba(30, 93, 214, .08);
    border: 1px solid rgba(30, 93, 214, .16);
    color: rgb(30, 93, 214);
    border-radius: 999px;
    padding: .45rem .8rem;
}

.hero-proof {
    gap: .6rem;
}

.proof-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(148, 163, 184, .35);
    font-size: .82rem;
    font-weight: 600;
    color: var(--slate-700);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .08);
}

    .proof-chip svg {
        width: 14px;
        height: 14px;
    }

.proof-chip-outline {
    background: rgba(255, 255, 255, .7);
    border-color: rgba(30, 93, 214, .3);
    color: var(--slate-800);
}

.hero-media {
    position: relative;
    max-width: 480px;
}

.hero-photo {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, .18);
    aspect-ratio: 4 / 5;
}

    .hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(15, 23, 42, .45) 100%);
    }

.hero-lux .hero-proof {
    gap: .5rem;
}

.hero-lux .proof-chip {
    background: rgba(255, 255, 255, .7);
    border-color: rgba(15, 23, 42, .12);
    box-shadow: none;
    font-weight: 500;
}

.hero-lux .proof-chip-outline {
    border-color: rgba(30, 93, 214, .22);
}

.hero-media-lux {
    max-width: 420px;
}

.hero-portrait {
    border-radius: 200px 200px 36px 36px;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 24px 48px rgba(15, 23, 42, .14);
}

.hero-lux .hero-photo::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 65%, rgba(15, 23, 42, .22) 100%);
}

.hero-stats {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, .08);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: .85rem;
}

.partner-logos {
    gap: .65rem .8rem;
}

.partner-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .4rem .75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    font-size: .72rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .25);
    backdrop-filter: blur(6px);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
    overflow: hidden;
}

    .partner-pill img {
        width: 18px;
        height: 18px;
        object-fit: contain;
        filter: saturate(1.1) drop-shadow(0 2px 6px rgba(15, 23, 42, .25));
    }

    .partner-pill::before {
        content: "";
        position: absolute;
        inset: 1px;
        border-radius: inherit;
        background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .25), transparent 55%);
        pointer-events: none;
    }

    .partner-pill:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, .35);
        box-shadow: 0 14px 28px rgba(15, 23, 42, .35);
    }

.hero-stat {
    padding: .75rem .9rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

.hero-lux .btn-outline-secondary {
    border-color: rgba(15, 23, 42, .18);
    color: var(--slate-700);
}

    .hero-lux .btn-outline-secondary:hover {
        border-color: rgba(15, 23, 42, .35);
        color: var(--slate-800);
    }

.hero-float {
    position: absolute;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    padding: .75rem .9rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
    min-width: 160px;
}

.hero-float-left {
    left: -12px;
    top: 16%;
}

.hero-float-right {
    right: -12px;
    bottom: 12%;
}

@media (max-width: 991.98px) {
    .hero {
        align-items: flex-start;
    }

    .hero-media {
        max-width: 100%;
    }

    .hero-float-left {
        left: 8px;
    }

    .hero-float-right {
        right: 8px;
    }
}

@media (max-width: 575.98px) {
    .hero-media {
        display: grid;
        gap: 1rem;
    }

    .hero-float {
        position: static;
    }
}

.pulse-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    background: rgb(30, 93, 214);
    box-shadow: 0 0 0 rgba(30, 93, 214, .7);
    animation: pulse 1.7s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 93, 214, .45);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(30, 93, 214, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(30, 93, 214, 0);
    }
}

/* Trust row "logos" */
.logo-box {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-block;
}

.logo-dot {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-block;
}

.logo-cut {
    width: 32px;
    height: 32px;
    border-radius: 10px 18px 10px 10px;
    display: inline-block;
}

.bg-teal {
    background: var(--teal) !important;
}

.bg-indigo {
    background: var(--indigo) !important;
}

.bg-purple {
    background: var(--purple) !important;
}

.trust-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .65rem 1.1rem;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, .1);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .08);
}

    .trust-logo .logo-box,
    .trust-logo .logo-dot,
    .trust-logo .logo-cut {
        background: rgba(15, 23, 42, .18) !important;
    }

.trust-logo-img {
    height: 52px;
    width: auto;
    display: block;
    filter: saturate(1.05);
}

.trust-awards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.award-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.award-logo {
    width: 150px;
    height: 110px;
    border-radius: 18px;
    border: 1px dashed rgba(15, 23, 42, .12);
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .25rem;
    padding: .5rem;
}

.award-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.award-logo-text {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--slate-800);
    letter-spacing: .08em;
}

.award-logo-sub {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--slate-500);
    font-weight: 700;
}

.award-body {
    display: grid;
    gap: .35rem;
}

.award-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

.award-brand {
    color: var(--slate-600);
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .award-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .award-logo {
        width: 100%;
    }
}

/* --------- Feature cards --------- */
.feature-card {
    transition: transform .22s ease, box-shadow .22s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 45px rgba(15, 23, 42, .12) !important;
    }
/* --------- Services section background --------- */
#services {
    --services-tint-strength: 0.88;
    --services-bg-size: 100% auto;
    /*background: linear-gradient( rgb(var(--surface-rgb) / var(--services-tint-strength)), rgb(var(--surface-rgb) / var(--services-tint-strength)) ), url("../seo/assets/img/bg.jpg");*/
    background: linear-gradient( rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6) ), url("../seo/assets/img/bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: var(--services-bg-size);
}

/* --------- Services marquee --------- */
.services-marquee {
    overflow: hidden;
}

.services-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: services-scroll 45s linear infinite;
    will-change: transform;
}

.services-group {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.services-card {
    flex: 0 0 clamp(240px, 32vw, 320px);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon title"
        "desc desc";
    gap: .75rem 1rem;
    align-content: start;
}

    .services-card .icon-tile {
        grid-area: icon;
        margin-bottom: 0 !important;
    }

    .services-card h3 {
        grid-area: title;
        align-self: center;
        margin-bottom: 0;
    }

    .services-card p {
        grid-area: desc;
    }

@media (hover: hover) and (pointer: fine) {
    .services-marquee:hover .services-track,
    .services-marquee:focus-within .services-track {
        animation-play-state: paused;
    }
}

@keyframes services-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.icon-tile {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-tile svg {
        width: 22px;
        height: 22px;
    }

.text-teal {
    color: var(--teal) !important;
}

.text-indigo {
    color: var(--indigo) !important;
}

.text-purple {
    color: var(--purple) !important;
}

.bg-teal-subtle {
    background: rgba(34, 184, 207, .12) !important;
}

.bg-indigo-subtle {
    background: rgba(30, 93, 214, .10) !important;
}

.bg-purple-subtle {
    background: rgba(74, 163, 255, .12) !important;
}


/* --------- Social feed --------- */
.social-feed-card {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 22px 45px rgba(15, 23, 42, .12);
}

.social-feed-header {
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.social-app-mark {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1e5dd6, #22b8cf);
    box-shadow: 0 0 0 4px rgba(30, 93, 214, .12);
}

.social-stories {
    overflow-x: auto;
    scrollbar-width: none;
}

    .social-stories::-webkit-scrollbar {
        display: none;
    }

.story-item {
    text-align: center;
}

.story-ring {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    padding: 2px;
    background: conic-gradient(from 120deg, #1e5dd6, #22b8cf, #1e5dd6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-initial {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    color: var(--slate-600);
}

.story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    object-fit: contain;
    display: block;
}

.story-label {
    font-size: .68rem;
    color: var(--slate-600);
    margin-top: .35rem;
}

.social-feed-body {
    position: relative;
    height: 360px;
    overflow: hidden;
}

    .social-feed-body::before,
    .social-feed-body::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 36px;
        pointer-events: none;
        z-index: 2;
    }

    .social-feed-body::before {
        top: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0));
    }

    .social-feed-body::after {
        bottom: 0;
        background: linear-gradient(0deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0));
    }

.social-feed-track {
    display: flex;
    flex-direction: column;
    padding: .35rem 1rem 1.25rem;
    animation: feed-scroll 18s linear infinite;
}

.social-feed-group {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    padding-bottom: .9rem;
}

.social-feed-card:hover .social-feed-track,
.social-feed-card:focus-within .social-feed-track {
    animation-play-state: paused;
}

.social-post {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: var(--surface);
    padding: .75rem;
}

.social-post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1e5dd6, #22b8cf);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .04em;
    object-fit: cover;
    border: 1px solid rgba(15, 23, 42, .08);
}

.logo-png {
    background: #fff;
}

.social-post-image {
    border-radius: 12px;
    overflow: hidden;
    background: var(--slate-100);
}

    .social-post-image img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        display: block;
    }

.social-post-actions svg {
    width: 18px;
    height: 18px;
}

.social-post-caption {
    font-size: .8rem;
}

/* --------- Paid ads snapshot --------- */
.paid-snapshot-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(246, 249, 255, .95));
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 28px;
    box-shadow: 0 26px 55px rgba(15, 23, 42, .12);
    padding: 2rem;
}

.paid-snapshot-v2 {
    background: linear-gradient(160deg, #ffffff 0%, #eef5ff 45%, #f7fbff 100%);
    border-color: rgba(30, 93, 214, .16);
}

.paid-snapshot-v2-glow {
    position: absolute;
    inset: -35% auto auto 55%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(30, 93, 214, .18), rgba(34, 184, 207, 0));
    pointer-events: none;
}

.paid-snapshot-v2-head {
    position: relative;
    z-index: 1;
}

.paid-snapshot-v2-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.paid-snapshot-kicker {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--slate-500);
    font-weight: 700;
}

.paid-snapshot-badges {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.paid-score {
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(30, 93, 214, .1);
    color: var(--slate-700);
    font-size: .72rem;
    font-weight: 700;
}

.paid-snapshot-metrics {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: .7rem;
}

.paid-metric-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .08);
    padding: .75rem .9rem;
    box-shadow: 0 12px 20px rgba(15, 23, 42, .08);
    display: grid;
    gap: .35rem;
}

.paid-metric-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--slate-900);
}

.paid-metric-trend {
    font-size: .7rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: 999px;
    justify-self: start;
}

.paid-metric-up {
    color: #166534;
    background: rgba(16, 185, 129, .12);
}

.paid-metric-down {
    color: #991b1b;
    background: rgba(248, 113, 113, .16);
}

.paid-snapshot-details {
    margin-top: 1.1rem;
    border-top: 1px dashed rgba(15, 23, 42, .12);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

    .paid-snapshot-details summary {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
        padding: .75rem 1rem;
        cursor: pointer;
        background: rgba(30, 93, 214, .05);
    }

        .paid-snapshot-details summary::-webkit-details-marker {
            display: none;
        }

.paid-details-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(30, 93, 214, .6);
    border-bottom: 2px solid rgba(30, 93, 214, .6);
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.paid-snapshot-details[open] .paid-details-chevron {
    transform: rotate(225deg);
}

.paid-details-body {
    padding: 1rem;
    display: grid;
    gap: 1rem;
}

.paid-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: .7rem;
}

.paid-detail-card {
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .08);
    padding: .7rem .85rem;
}

.paid-details-bars {
    display: grid;
    gap: .6rem;
}

.paid-detail-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .6rem;
}

.paid-detail-footer {
    padding-top: .75rem;
    border-top: 1px solid rgba(15, 23, 42, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.paid-snapshot-card-compact {
    padding: 1.5rem;
}

    .paid-snapshot-card-compact .paid-snapshot-controls {
        margin-top: .9rem;
    }

    .paid-snapshot-card-compact .paid-chip {
        padding: .25rem .7rem;
        font-size: .72rem;
    }

    .paid-snapshot-card-compact .paid-kpi-grid {
        margin-top: 1rem;
        gap: .6rem;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .paid-snapshot-card-compact .paid-kpi {
        padding: .7rem .85rem;
    }

        .paid-snapshot-card-compact .paid-kpi .h4 {
            font-size: 1.15rem;
        }

    .paid-snapshot-card-compact .paid-progress {
        margin-top: 1rem;
    }

    .paid-snapshot-card-compact .paid-progress-bar {
        height: 10px;
    }

    .paid-snapshot-card-compact .paid-channel-list {
        margin-top: 1rem;
        gap: .6rem;
    }

    .paid-snapshot-card-compact .paid-mini-bar {
        height: 5px;
    }

    .paid-snapshot-card-compact .paid-snapshot-footer {
        margin-top: 1rem;
        padding-top: .75rem;
    }

@media (max-width: 575.98px) {
    .paid-snapshot-v2-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

.paid-snapshot-glow {
    position: absolute;
    inset: -40% 10% auto auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(30, 93, 214, .18), rgba(34, 184, 207, 0));
    pointer-events: none;
}

.paid-snapshot-header {
    position: relative;
    z-index: 1;
}

.paid-live-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .65rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, .1);
    color: #0f766e;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.paid-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #10b981;
    box-shadow: 0 0 0 rgba(16, 185, 129, .5);
    animation: paid-pulse 1.8s infinite;
}

.paid-snapshot-controls {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    position: relative;
    z-index: 1;
}

.paid-chip {
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    border-radius: 999px;
    padding: .35rem .9rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--slate-700);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

    .paid-chip:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
    }

    .paid-chip.is-active {
        background: linear-gradient(135deg, rgba(30, 93, 214, .14), rgba(34, 184, 207, .12));
        border-color: rgba(30, 93, 214, .28);
        color: var(--slate-800);
    }

.paid-kpi-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: .9rem;
    position: relative;
    z-index: 1;
}

.paid-kpi {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    padding: .9rem 1rem;
    box-shadow: 0 12px 22px rgba(15, 23, 42, .08);
}

.paid-kpi-up,
.paid-kpi-down {
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .5rem;
    border-radius: 999px;
}

.paid-kpi-up {
    color: #166534;
    background: rgba(16, 185, 129, .12);
}

.paid-kpi-down {
    color: #991b1b;
    background: rgba(248, 113, 113, .16);
}

.paid-progress {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.paid-progress-bar {
    position: relative;
    height: 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .08);
    overflow: hidden;
}

.paid-progress-fill {
    position: absolute;
    inset: 0;
    width: var(--progress);
    border-radius: inherit;
    background: linear-gradient(90deg, #1e5dd6, #22b8cf);
    box-shadow: 0 0 18px rgba(30, 93, 214, .35);
    animation: paid-progress-grow 1.4s ease-out;
}

.paid-progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
    animation: paid-sheen 3.4s ease-in-out infinite;
}

.paid-channel-list {
    margin-top: 1.25rem;
    display: grid;
    gap: .75rem;
    position: relative;
    z-index: 1;
}

.paid-channel-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .75rem;
}

.paid-channel-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.paid-mini-bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .08);
    position: relative;
    overflow: hidden;
}

    .paid-mini-bar::after {
        content: "";
        position: absolute;
        inset: 0;
        width: var(--progress);
        border-radius: inherit;
        background: linear-gradient(90deg, rgba(30, 93, 214, .65), rgba(34, 184, 207, .85));
    }

.paid-snapshot-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

@keyframes paid-progress-grow {
    from {
        width: 0;
    }

    to {
        width: var(--progress);
    }
}

@keyframes paid-sheen {
    0% {
        left: -40%;
    }

    60% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

@keyframes paid-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes feed-scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 575.98px) {
    .social-feed-card {
        max-width: 100%;
    }

    .social-feed-body {
        height: 300px;
    }
}

/* --------- Web compare --------- */
.compare-frame {
    background: #fff;
}

.compare-header {
    padding: .75rem 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    background: var(--surface);
}

.compare-body {
    position: relative;
    aspect-ratio: 20 / 9;
    overflow: hidden;
    --compare: 58%;
}

.compare-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.compare-before {
    filter: grayscale(1) contrast(.9) brightness(.92);
}

.compare-after {
    filter: saturate(1.05) contrast(1.05);
}

.compare-top {
    position: absolute;
    inset: 0;
    width: var(--compare);
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, .85);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .08);
}

.compare-label {
    position: absolute;
    top: 12px;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .02em;
    background: rgba(15, 23, 42, .7);
    color: #fff;
}

.compare-label-before {
    left: 12px;
}

.compare-label-after {
    right: 12px;
}

.compare-handle {
    position: absolute;
    left: var(--compare);
    top: 50%;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .2);
    box-shadow: 0 10px 20px rgba(15, 23, 42, .2);
    transform: translate(-50%, -50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .compare-handle::before {
        content: "";
        width: 10px;
        height: 10px;
        border-left: 2px solid rgba(15, 23, 42, .4);
        border-right: 2px solid rgba(15, 23, 42, .4);
    }

.compare-slider {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 12px;
    accent-color: var(--indigo);
}

.compare-footer {
    padding: .75rem 1rem 1rem;
    border-top: 1px solid rgba(15, 23, 42, .06);
    background: #fff;
}

/* --------- GEO section --------- */
.geo {
    background: #081a33;
}

.geo-gradient-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(270deg, rgba(30, 93, 214, .25), rgba(30, 93, 214, 0));
}

.geo-orb {
    position: absolute;
    bottom: -70px;
    left: -40px;
    width: 340px;
    height: 340px;
    background: rgba(74, 163, 255, .18);
    border-radius: 999px;
    filter: blur(60px);
}

.badge-soft-purple {
    background: rgba(74, 163, 255, .16);
    border: 1px solid rgba(74, 163, 255, .25);
    color: rgba(194, 231, 255, .95);
    border-radius: 999px;
    padding: .45rem .8rem;
}

.btn-purple {
    background: rgb(30, 93, 214);
    color: white;
}

    .btn-purple:hover {
        background: rgb(22, 73, 165);
        color: white;
    }

.bg-dark-2 {
    background: #0d1b30;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    flex: 0 0 auto;
}

.chat-bubble {
    padding: 12px 14px;
    border-radius: 18px;
    font-size: .95rem;
    line-height: 1.35;
    max-width: 520px;
}

.chat-stream {
    min-height: 260px;
}

.chat-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .35s ease, transform .35s ease;
}

.chat-hidden {
    opacity: 0;
    transform: translateY(8px);
}

.typing::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 1em;
    margin-left: 2px;
    background: currentColor;
    animation: blink 1s steps(2, end) infinite;
    vertical-align: -2px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.chat-user {
    background: rgba(55, 65, 81, .95);
    color: rgba(226, 232, 240, .95);
    border-top-left-radius: 6px;
}

.chat-ai {
    background: rgba(30, 93, 214, .22);
    border: 1px solid rgba(30, 93, 214, .28);
    color: rgba(226, 232, 240, .95);
    border-top-right-radius: 6px;
}

.ai-card {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(2, 6, 23, .35);
    transition: background-color .2s ease;
    cursor: pointer;
}

    .ai-card:hover {
        background: rgba(2, 6, 23, .55);
    }

.ai-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-xs {
    width: 16px;
    height: 16px;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

/* --------- GBP visual --------- */
.glow-teal {
    position: absolute;
    inset: -40px 0 0 0;
    margin: auto;
    width: 420px;
    height: 420px;
    background: rgba(34, 184, 207, .10);
    filter: blur(60px);
    border-radius: 999px;
    z-index: 0;
}

.gbp-card {
    max-width: 420px;
    transform: rotate(1deg);
    transition: transform .45s ease;
    position: relative;
    z-index: 1;
}

    .gbp-card:hover {
        transform: rotate(0deg);
    }

.placeholder-line {
    height: 14px;
    background: var(--slate-100);
    border-radius: 999px;
}

.star-filled {
    color: #f59e0b;
}

    .star-filled svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
        stroke: currentColor;
    }

.float-badge {
    position: absolute;
    top: 12px;
    right: 18px;
    z-index: 2;
    animation: bounce 2.4s infinite;
}

@keyframes bounce {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.circle-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

    .circle-icon svg {
        width: 22px;
        height: 22px;
    }
/* --------- Countries We Serve --------- */
.coverage-section {
    background: radial-gradient(900px circle at 12% 18%, rgba(34, 184, 207, .14), transparent 60%), radial-gradient(760px circle at 92% 12%, rgba(30, 93, 214, .14), transparent 62%), #f8fafc;
}

.coverage-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
}

.coverage-orb-1 {
    width: 280px;
    height: 280px;
    left: -120px;
    bottom: -160px;
    background: rgba(14, 116, 144, .16);
}

.coverage-orb-2 {
    width: 320px;
    height: 320px;
    right: -140px;
    top: -180px;
    background: rgba(30, 93, 214, .12);
}

.coverage-flag-panel {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, .1);
    box-shadow: 0 28px 60px rgba(15, 23, 42, .12);
    position: relative;
    overflow: hidden;
}

    .coverage-flag-panel::before {
        content: "";
        position: absolute;
        inset: -30% -10% auto auto;
        width: 380px;
        height: 380px;
        background: radial-gradient(circle, rgba(30, 93, 214, .18), rgba(30, 93, 214, 0));
        opacity: .8;
        pointer-events: none;
    }

.coverage-flag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.flag-tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: .85rem;
    width: 100%;
    padding: .9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .1);
    background: rgba(255, 255, 255, .95);
    color: var(--slate-800);
    font-weight: 600;
    font: inherit;
    text-align: left;
    appearance: none;
    box-shadow: 0 16px 30px rgba(15, 23, 42, .08);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    overflow: hidden;
}

    .flag-tile::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(30, 93, 214, .12), rgba(34, 184, 207, .08));
        opacity: 0;
        transition: opacity .2s ease;
        pointer-events: none;
    }

    .flag-tile:hover,
    .flag-tile:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(15, 23, 42, .12);
        border-color: rgba(30, 93, 214, .25);
        outline: none;
    }

        .flag-tile:hover::after,
        .flag-tile:focus-visible::after {
            opacity: 1;
        }

.flag-title {
    position: relative;
    z-index: 1;
}

.flag-icon {
    width: 58px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, .14);
    background: #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .12);
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

    .flag-icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.flag-tile.is-active {
    border-color: rgba(30, 93, 214, .35);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .16);
}

    .flag-tile.is-active::after {
        opacity: 1;
    }

.coverage-detail {
    margin-top: 1.5rem;
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .1);
    background: rgba(248, 250, 252, .92);
    box-shadow: 0 16px 28px rgba(15, 23, 42, .08);
}

.coverage-detail-kicker {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--slate-500);
}

.coverage-detail-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-900);
    margin: .4rem 0 .35rem;
}

.coverage-detail-text {
    margin: 0;
    color: var(--slate-600);
}

@media (max-width: 575.98px) {
    .coverage-flag-panel {
        padding: 1.5rem;
    }

    .flag-tile {
        padding: .8rem .9rem;
    }

    .flag-title {
        font-size: .95rem;
    }
}


/* --------- FAQ Section --------- */
.faq-section {
    background: #fff;
}

.faq-header {
    max-width: 720px;
}

.faq-list {
    max-width: 860px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.faq-item {
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    padding: .25rem 0;
}

    .faq-item summary {
        list-style: none;
        padding: 1rem 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        font-weight: 600;
        color: var(--slate-800);
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:focus-visible {
            outline: 2px solid rgba(30, 93, 214, .25);
            outline-offset: 4px;
            border-radius: 8px;
        }

        .faq-item summary::after {
            content: "+";
            font-weight: 700;
            color: var(--slate-500);
        }

    .faq-item[open] summary::after {
        content: "-";
        color: var(--slate-700);
    }

.faq-body {
    padding: 0 0 1rem;
    color: var(--slate-600);
}

    .faq-body p {
        margin-bottom: 0;
    }

/* --------- Contact Section --------- */
.contact-section {
    background: linear-gradient(120deg, #f7fbff 0%, #ffffff 60%);
}

.contact-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    pointer-events: none;
}

.contact-glow-1 {
    left: -160px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    background: rgba(34, 184, 207, .16);
}

.contact-glow-2 {
    right: -180px;
    top: -180px;
    width: 460px;
    height: 460px;
    background: rgba(30, 93, 214, .14);
}

.contact-pill {
    padding: .85rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .08);
}

.contact-pill-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 93, 214, .12);
    color: var(--bs-primary);
    flex: 0 0 auto;
}

    .contact-pill-icon svg {
        width: 18px;
        height: 18px;
    }

.contact-proof-card {
    padding: .75rem .95rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 14px 26px rgba(15, 23, 42, .06);
    min-width: 150px;
}

.contact-links .contact-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 23, 42, .1);
    color: var(--slate-700);
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

    .contact-links .contact-link:hover {
        transform: translateY(-2px);
        color: var(--bs-primary);
        box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
    }

.contact-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 30px 60px rgba(15, 23, 42, .12);
    overflow: hidden;
}

.contact-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e5dd6, #22b8cf);
}

.contact-pill-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: var(--slate-700);
    background: rgba(30, 93, 214, .08);
    border: 1px solid rgba(30, 93, 214, .2);
}

.contact-form {
    background: rgba(248, 250, 252, .9);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 20px;
    padding: 1.25rem;
}

    .contact-form .form-label {
        font-weight: 600;
        color: var(--slate-600);
    }

    .contact-form .form-optional {
        font-size: .65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .12em;
        color: var(--slate-500);
        margin-left: .4rem;
    }

.contact-submit {
    display: flex;
    justify-content: center;
}

    .contact-submit .btn {
        min-width: 220px;
    }

.contact-card .form-control,
.contact-card .form-select {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, .12);
    box-shadow: none;
}

    .contact-card .form-control:focus,
    .contact-card .form-select:focus {
        border-color: rgba(30, 93, 214, .45);
        box-shadow: 0 0 0 .2rem rgba(30, 93, 214, .12);
    }

.contact-card textarea.form-control {
    resize: vertical;
}

.contact-footer {
    border-top: 1px solid rgba(15, 23, 42, .08);
    padding-top: 1rem;
}

@media (max-width: 991.98px) {
    .contact-proof-card {
        min-width: 0;
        flex: 1 1 160px;
    }
}

@media (max-width: 575.98px) {
    .contact-form {
        padding: 1rem;
    }

    .contact-submit .btn {
        width: 100%;
    }

    .contact-links .contact-link {
        width: 100%;
        justify-content: center;
    }
}

/* --------- ROI Section --------- */
.bg-primary-2 {
    background: rgba(255, 255, 255, .10);
}

.border-primary-3 {
    border-color: rgba(255, 255, 255, .18) !important;
}

/* Make the range thumb/track teal-ish without being too browser-fragile */
.range-teal::-webkit-slider-thumb {
    background: var(--teal);
}

.range-teal::-moz-range-thumb {
    background: var(--teal);
}

.range-teal::-webkit-slider-runnable-track {
    background: rgba(15, 23, 42, .25);
}

.range-teal::-moz-range-track {
    background: rgba(15, 23, 42, .25);
}

/* --------- Footer --------- */

footer.site-footer .social-icons a {
    width: 2.5rem; /* w-10 */
    height: 2.5rem; /* h-10 */
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%; /* rounded-full */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    footer.site-footer .social-icons a:hover {
        background-color: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px) scale(1.05);
    }

    footer.site-footer .social-icons a[href*="facebook.com"]:hover {
        background-color: #1877f2 !important;
        border-color: #1877f2 !important;
    }

    footer.site-footer .social-icons a[href*="linkedin.com"]:hover {
        background-color: #0077b5 !important;
        border-color: #0077b5 !important;
    }

footer.site-footer a {
    transition: color 0.3s ease, transform 0.3s ease;
    color: #adb5bd;
    text-decoration: none;
}

footer.site-footer .award-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

    footer.site-footer .award-item:hover {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px) scale(1.02);
    }

    footer.site-footer .award-item .bi {
        font-size: 1.5rem; /* text-2xl */
        color: #fbbf24;
        margin-bottom: 0.25rem; /* mb-1 */
        display: block;
    }

    footer.site-footer .award-item span {
        font-size: 0.75rem; /* text-xs */
        color: #adb5bd; /* text-gray-300 */
    }

.footer-link {
    color: rgba(148, 163, 184, .9);
    text-decoration: none;
}

    .footer-link:hover {
        color: rgba(255, 255, 255, .92);
    }

.social-dot {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(30, 41, 59, .8);
    display: inline-block;
    transition: background-color .2s ease;
}

    .social-dot:hover {
        background: rgb(30, 93, 214);
    }

/* --------- Accessibility / motion --------- */
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }

    .pulse-dot,
    .float-badge,
    .social-feed-track,
    .services-track,
    .paid-live-dot,
    .paid-progress-fill {
        animation: none !important;
    }

    .paid-progress-bar::after {
        animation: none !important;
    }

    .feature-card,
    .gbp-card {
        transition: none !important;
    }

    .chat-animate {
        transition: none !important;
    }

    .typing::after {
        animation: none !important;
    }
}

/* --------- Professional Hero & Calculator Styles --------- */
:root {
    --accent-start: #3b82f6;
    --accent-end: #06b6d4;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
}

/* Professional Hero */
.hero-pro {
    background: var(--dark-bg);
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 4rem;
}

.hero-bg-pro {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

    .hero-bg-pro::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 50% at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
        pointer-events: none;
    }

/* Text utilities */
.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-gradient-accent {
    background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Accent button */
.btn-accent {
    background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

    .btn-accent:hover {
        color: white;
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
        transform: translateY(-2px);
    }

/* Professional Card */
.pro-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.pro-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-start) 0%, var(--accent-end) 100%);
}

.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Professional Range Slider */
.pro-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--slate-200);
    border-radius: 10px;
    outline: none;
}

    .pro-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--bs-primary);
        border: 3px solid white;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(30, 93, 214, 0.3);
        transition: transform 0.2s, box-shadow 0.2s;
    }

        .pro-range::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(30, 93, 214, 0.4);
        }

    .pro-range::-moz-range-thumb {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--bs-primary);
        border: 3px solid white;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(30, 93, 214, 0.3);
    }

.x-small {
    font-size: 0.75rem;
}
