html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/* ===== Theme tokens ===== */
:root {
    --c-primary: #00a7d7; /* teal */
    --c-primary-2: #00c0ea; /* lighter teal */
    --c-accent: #ff7a00; /* orange CTA */
    --c-bg-soft: #f7fbfd; /* light section tint */
    --radius: 16px;
}

/* ===== Buttons ===== */
.btn-cta {
    background: var(--c-accent);
    border-color: var(--c-accent);
    min-width: 220px;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

    .btn-cta:hover,
    .btn-cta:focus {
        background: #e56f00;
        border-color: #e56f00;
        transform: translateY(-1px);
    }

/* ===== Hero ===== */
.hero {
    background: radial-gradient(60% 120% at 75% 50%, rgba(255,255,255,.18) 0, rgba(255,255,255,0) 60%), linear-gradient(180deg, var(--c-primary-2) 0%, var(--c-primary) 100%);
    color: #fff;
    border-radius: var(--radius);
    min-height: clamp(360px, 56vh, 560px);
    overflow: hidden;
}

    .hero h1 {
        font-weight: 800;
        margin-bottom: .75rem;
    }

    .hero .lead {
        max-width: 48ch;
        margin-bottom: 1.25rem;
    }

.hero-img {
    max-width: 75%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 30px rgba(0,0,0,.25));
}

.fade-mask {
    -webkit-mask: radial-gradient(closest-side,#000 55%, rgba(0,0,0,.75) 65%, transparent 85%) center/100% 100% no-repeat;
    mask: radial-gradient(closest-side,#000 55%, rgba(0,0,0,.75) 65%, transparent 85%) center/100% 100% no-repeat;
}

/* ===== Benefits ===== */
.benefits {
    background: var(--c-bg-soft);
    border-radius: var(--radius);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 56px;
    background: color-mix(in srgb, var(--c-primary) 18%, transparent);
    color: var(--c-primary);
}

    .benefit-icon svg {
        width: 26px;
        height: 26px;
        stroke: currentColor;
    }

.card p {
    font-size: .975rem;
}

.stat {
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1;
}

    .stat span {
        font-weight: 600;
        font-size: 1.1rem;
        margin-left: .15rem;
    }

.stat-label {
    color: #6c757d;
    margin-top: .25rem;
}

/* ===== Full-bleed band that stays aligned with other sections ===== */
.band {
    background: linear-gradient(180deg,#ffffff 0%, var(--c-bg-soft) 100%);
    border-radius: var(--radius);
    /* stretch the background to viewport edges while content stays constrained */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.section-divider {
    height: 1px;
    border: 0;
    margin: 3rem 0;
    background: linear-gradient(90deg,transparent,rgba(0,0,0,.08),transparent);
}

/* ===== How it Works ===== */
.badge-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-primary);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(0,167,215,.25);
    flex: 0 0 40px;
}

.hiw-graphic {
    width: min(560px,100%);
    aspect-ratio: 16 / 10; /* keeps space even if image fails */
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(60% 70% at 50% 50%, color-mix(in srgb, var(--c-primary) 28%, transparent) 0%, transparent 65%);
    border-radius: var(--radius);
}

    .hiw-graphic img {
        max-width: 100%;
        height: auto;
        display: block;
    }

/* ===== Social Proof ===== */
.logo-tile {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    display: grid;
    place-items: center;
    height: 70px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

    .logo-tile img {
        max-height: 36px;
        width: auto;
        filter: grayscale(100%);
        opacity: .8;
        transition: filter .2s, opacity .2s, transform .2s;
    }

    .logo-tile:hover img {
        filter: none;
        opacity: 1;
        transform: translateY(-1px);
    }

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
}

.quote-mark {
    font-size: 56px;
    line-height: 1;
    color: var(--c-primary);
    text-shadow: 0 6px 16px rgba(0,167,215,.25);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 991.98px) {
    .hero {
        text-align: center;
    }

    .hero-img {
        max-width: 70%;
        margin-top: 1.25rem;
    }
}
