@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
    --teal: #1BA1A2;
    --teal-hover: #168d8e;
    --teal-light: rgba(27, 161, 162, 0.08);
    --navy: #273578;
    --navy-light: rgba(39, 53, 120, 0.06);
    --white: #ffffff;
    --offwhite: #eef6f6;
    --muted: #64748b;
    --border: rgba(39, 53, 120, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.10);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--navy);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ── Containers ── */
.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.logo-otc {
    color: var(--navy);
}

.logo-benefit {
    color: var(--teal);
}

.logo-solutions {
    color: var(--navy);
}

/* ════════════════════════════════════════════════════════════
   NAVBAR LOGO IMAGE ADJUSTMENTS
   ════════════════════════════════════════════════════════════ */
.logo-img {
    max-height: 69px; /* Adjust this height to match your header layout */
    width: auto;
    display: block;
    margin-left: 0 px;
    padding: .5rem;
}


.footer-logo {
    display: inline-flex;
    align-items: baseline;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.footer-logo .logo-benefit {
    color: var(--teal);
}

.footer-logo .logo-otc,
.footer-logo .logo-solutions {
    color: rgba(255, 255, 255, 0.9);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.75;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--teal);
}

/* Nav buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-ghost {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    opacity: 0.75;
}

.btn-ghost:hover {
    opacity: 1;
    background: var(--navy-light);
}

.btn-nav-cta {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    background: var(--navy);
    padding: 0.55rem 1.3rem;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-nav-cta:hover {
    background: var(--teal);
    transform: translateY(-1px);
}

/* Phone link in nav */
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.8;
    transition: var(--transition);
}

.nav-phone i {
    font-size: 19px;
    color: var(--teal);
}

.nav-phone:hover {
    opacity: 1;
    color: var(--teal);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--border);
    gap: 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    border-bottom: 1px solid var(--border);
}

.mobile-menu ul li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu ul li a:hover {
    color: var(--teal);
}

.mobile-menu-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
}

.mobile-phone i {
    font-size: 22px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(27, 161, 162, 0.25);
}

.btn-primary:hover {
    background: var(--teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(27, 161, 162, 0.30);
}

.btn-primary.btn-sm {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
}

.btn-primary.btn-lg {
    font-size: 1.05rem;
    padding: 1rem 2.25rem;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

.btn-outline-dark.btn-lg {
    font-size: 1.05rem;
    padding: 1rem 2.25rem;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
    min-height: 93vh;
    padding-top: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--offwhite);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 161, 162, 0.25) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 60%, rgba(39, 53, 120, 0.18) 100%);
    opacity: 1;
    z-index: 0;
}

.hero-tint {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
}

.hero-h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--navy);
}

.hero-accent {
    color: var(--teal);
    display: block;
}

.hero-tag {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--teal);
    min-height: 2.5em;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-body {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 480px;
}

.hero-sub-line {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.5;
    padding-top: 0.25rem;
    border-top: 1px solid var(--border);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* Hero image card */
.hero-image-col {
    position: relative;
}

.hero-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1/1;
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}

.hero-img-badge i {
    font-size: 24px;
    color: var(--teal);
}

/* Scroll hint */
.hero-scroll-hint {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.35;
}

.scroll-line {
    font-size: 5px;
    background: var(--navy);
    animation: scrollDrop 1.6s ease infinite;
}

@keyframes scrollDrop {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.trust-bar {
    background: var(--navy);
    padding: 1.5rem 0;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-item i {
    font-size: 22px;
    color: var(--teal);
    flex-shrink: 0;
}

.trust-divider {
    font-size: 5px;
    background: rgba(255, 255, 255, 0.15);
}

.mobile-marquee {
    display: none;
}

/* ─────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.section-about {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.about-text p {
    color: var(--muted);
    font-size: 1.05rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.stat-block {
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: var(--transition);
}

.stat-block.square {
    aspect-ratio: 1 / 1;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat-block:hover {
    background: var(--white);
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--teal);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-image-col {
    height: 100%;
}

.about-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: var(--shadow-md);
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.section-features {
    padding: 8rem 0;
    background: var(--offwhite);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-tile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon title"
        "icon desc";
    column-gap: 1.25rem;
    row-gap: 0.4rem;
    align-items: start;
}

.feature-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-tile:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: icon;
}

.feature-icon i {
    font-size: 30px;
    color: var(--teal);
}

.feature-tile h3 {
    grid-area: title;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0;
}

.feature-tile p {
    grid-area: desc;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.section-how-it-works {
    padding: 4rem 1rem 0rem 1rem;
    background: var(--white);
}

.steps-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 0.5rem;
}

.step-icon {
    width: 86px;
    height: 86px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    box-shadow: 0 8px 24px rgba(27, 161, 162, 0.25);
    position: relative;
}

.step-icon svg {
    width: 44px !important;
    height: 44px !important;
}

.step-icon i {
    font-size: 36px;
}

.step-number {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    opacity: 0.35;
    height: 86px;
    padding-top: 0;
}

.step-arrow i {
    font-size: 32px;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }
}

/* ─────────────────────────────────────────
   CONVENIENCE
───────────────────────────────────────── */
.section-convenience {
    padding: 8rem 0;
    background: var(--white);
}

.convenience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.conv-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.conv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conv-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.conv-content p {
    font-size: 1.05rem;
    color: var(--muted);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}

.check-list i {
    font-size: 24px;
    color: var(--teal);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   CTA BAR (Attached to How It Works)
───────────────────────────────────────── */
.cta-bar {
    margin-top: 5rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1e2b6e 100%);
    border-radius: 24px;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-bar::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 154px;
    background: radial-gradient(circle, rgba(27, 161, 162, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-bar-left {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.cta-bar-mid {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    max-width: 450px;
}

.cta-bar-right {
    flex-shrink: 0;
}

.btn-cta-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--teal);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(27, 161, 162, 0.3);
}

.btn-cta-bar:hover {
    background: var(--teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 161, 162, 0.4);
}

.btn-cta-bar i {
    font-size: 24px;
}

/* ─────────────────────────────────────────
   FOOTER — Brand row + Action grid
───────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer-action-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition);
}

.footer-action-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--teal);
}

.footer-action-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.footer-action-icon {
    font-size: 48px;
    background: rgba(27, 161, 162, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.footer-action-icon i {
    font-size: 26px;
    color: var(--teal);
}

.footer-action-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-action-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    flex: 1;
}

.footer-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
    margin-top: 0;
    transition: var(--transition);
}

.footer-action-btn:hover {
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

.footer-brand address {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.footer-phone i {
    font-size: 22px;
    color: var(--teal);
}

.footer-phone:hover {
    color: var(--teal);
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-posts li {
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 1.25rem;
}

.footer-posts li:last-child {
    border-bottom: none;
}

.footer-posts a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.footer-posts a:hover {
    color: var(--white);
}

.footer-posts time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(39, 53, 120, 0.9));
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
}

.map-pin-overlay i {
    font-size: 22px;
    color: var(--teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ─────────────────────────────────────────
   FLOATING SIDE CTA (desktop only)
───────────────────────────────────────── */
.floating-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    animation: ctaPulse 5s infinite;
}

@keyframes ctaPulse {

    0%,
    90% {
        transform: translateY(-50%) translateX(0);
    }

    95% {
        transform: translateY(-50%) translateX(-12px);
    }

    100% {
        transform: translateY(-50%) translateX(0);
    }
}

.floating-cta:hover {
    animation-play-state: paused;
}

.floating-cta-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.25rem 1rem 1rem;
    border-radius: 14px 0 0 14px;
    box-shadow: -6px 0 30px rgba(27, 161, 162, 0.7);
    text-decoration: none;
    white-space: nowrap;
    transform: translateX(calc(100% - 52px));
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.floating-cta:hover .floating-cta-inner {
    transform: translateX(0);
}

.floating-cta-inner:hover {
    background: var(--teal);
    box-shadow: -4px 0 24px rgba(39, 53, 120, 0.3);
}

.floating-cta-inner>i:first-child {
    font-size: 26px;
    color: var(--teal);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.floating-cta-inner:hover>i:first-child {
    color: white;
}

.floating-cta-label {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.floating-cta-label strong {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.floating-cta-label small {
    font-size: 0.72rem;
    opacity: 0.7;
    font-weight: 500;
}

.floating-cta-arrow {
    font-size: 20px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   RESPONSIVE — single breakpoint at 768px
───────────────────────────────────────── */
@media (max-width: 768px) {

    /* Nav */
    .nav-links {
        display: none;
    }
    
    .nav-inner{
    margin: auto;
    padding-left: 2rem;
    padding-right: 1rem;
    }

    .nav-phone {
        display: none;
    }

    .btn-nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .logo {
        font-size: 1rem;
    }

    /* Floating CTA hidden on mobile */
    .floating-cta {
        display: none;
    }

    /* Sections padding */
    .section-about,
    .section-features,
    .section-convenience,
    .section-cta {
        padding: 5rem 0;
    }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem 2rem;
        gap: 2rem;
    }

    .hero-image-col {
        display: none;
    }

    .hero-h1 {
        font-size: 2.8rem;
        letter-spacing: -0.03em;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-ctas a {
        text-align: center;
        justify-content: center;
    }

    .hero-scroll-hint {
        display: none;
    }

    /* Trust bar */
    .trust-bar {
        overflow: hidden;
    }

    .trust-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 2rem;
        width: max-content;
        animation: marquee 20s linear infinite;
    }

    .trust-item {
        white-space: nowrap;
    }

    .trust-divider {
        display: block;
    }

    .mobile-marquee {
        display: flex;
    }

    .trust-divider.mobile-marquee {
        display: block;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content {
        order: 1;
    }

    .about-image-col {
        order: 2;
    }

    .about-img-wrap {
        min-height: 300px;
        height: 300px;
    }

    .about-stats-row {
        grid-template-columns: 1fr;
    }

    .stat-block.square {
        aspect-ratio: auto;
        padding: 1.5rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-tile {
        padding: 2rem 1.5rem;
    }

    /* Convenience */
    .convenience-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .conv-image {
        aspect-ratio: 16/9;
        border-radius: 16px;
    }

    /* CTA */
    .cta-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 1.75rem;
        gap: 1.5rem;
        border-radius: 20px;
        margin-top: 3rem;
    }

    .cta-bar-left {
        white-space: normal;
        font-size: 1.2rem;
    }

    .cta-bar-mid {
        max-width: none;
        font-size: 0.95rem;
    }

    .cta-bar-right {
        width: 100%;
    }

    .btn-cta-bar {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-top {
        padding: 3.5rem 0 2rem;
    }

    .footer-brand-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .footer-action-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Typography */
    .section-heading {
        font-size: 1.8rem;
    }

    .stat-num {
        font-size: 2.25rem;
    }

    .step-arrow i,
    .step-arrow svg {
        transform: rotate(90deg);
    }
}


/* ─────────────────────────────────────────
   SERVICES PAGE & SUBPAGE STYLES
───────────────────────────────────────── */

/* Global Subpage tweaks */
.subpage #navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-links a.active {
    color: var(--teal);
    opacity: 1;
}

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 161, 162, 0.2) 0%, rgba(39, 53, 120, 0) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.breadcrumb a:hover {
    color: var(--teal);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.page-intro {
    font-size: 1.2rem;
    max-width: 700px;
    opacity: 0.85;
    line-height: 1.5;
}

/* Main Layout Split */
.services-main-layout {
    padding: 80px 0;
    background: var(--offwhite);
}

.split-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 4rem;
}

/* Masonry Service Cards */
.service-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card.large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
}

.card-img {
    height: 100%;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 2.5rem;
}

.card-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: var(--teal-light);
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.card-icon {
    font-size: 52px;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-list {
    display: grid;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.feature-list i {
    font-size: 22px;
    color: var(--teal);
}

/* Sidebar Widgets */
.sidebar-col {
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-weight: 800;
}

.trust-list {
    display: grid;
    gap: 1.5rem;
}

.trust-item-alt {
    display: flex;
    gap: 1rem;
}

.trust-item-alt i {
    font-size: 28px;
    color: var(--teal);
    flex-shrink: 0;
}

.trust-item-alt strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.trust-item-alt span {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

.cta-widget {
    background: var(--teal);
    color: var(--white);
    border: none;
    text-align: center;
}

.cta-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cta-widget p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-outline-white {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--teal);
    border-color: var(--white);
}

.info-list {
    display: grid;
    gap: 1.25rem;
}

.info-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.info-list i {
    font-size: 24px;
    color: var(--teal);
    flex-shrink: 0;
}

/* Contact Form */
.section-contact {
    margin-top: 4rem;
}

.form-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.form-header p {
    color: var(--muted);
}

.services-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--teal-light);
}

.w-full {
    width: 100%;
    justify-content: center;
}

/* Responsive Subpage */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sticky-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-masonry {
        grid-template-columns: 1fr;
    }

    .service-card.large {
        grid-template-columns: 1fr;
    }

    .card-img {
        height: 200px;
    }

    .form-card {
        padding: 2rem;
    }

    .services-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-hero {
        padding: 120px 0 60px;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* ════════════════════════════════════════════════════════════
   CONTACT FORM SECTION
   ════════════════════════════════════════════════════════════ */

.contact-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    max-width: 50vw;
    margin-left: auto;
    margin-right: auto;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-section:hover::before {
    transform: scaleX(1);
}

.form-wrapper {
    padding: 2rem;
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 700;
}

.form-header p {
    color: var(--muted);
    font-size: 1rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-submit {
    width: 100%;
    background: var(--teal);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(27, 161, 162, 0.25);
}

.btn-submit:hover {
    background: var(--teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(27, 161, 162, 0.30);
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-section {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        transition: var(--transition);
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    @media (max-width: 480px) {
        .form-wrapper {
            padding: 1.5rem;
        }

        .contact-section {
            max-width: 100%;
        }
    }
}