/* ══════════════════════════════════════════════════════════════════
   RESTO SUPPLY HUB — styles.css
/* ── 1. DESIGN TOKENS ───────────────────────────────────────────── */
:root {
    /* Brand Colors */
    --primary: #1A9D6E;
    --primary-dark: #137A54;
    --primary-darker: #0E5C3E;
    --primary-light: #E6F7F1;
    --primary-mid: #2BB882;

    /* Accent */
    --accent: #F5A623;
    --accent-dark: #D4891A;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8FAF9;
    --bg-subtle: #F0F7F4;
    --border: #D9EDE6;
    --border-strong: #B0D4C7;

    /* Text */
    --text: #0F2319;
    --text-muted: #4D7060;
    --text-light: #7A9E8C;

    /* Functional */
    --shadow-sm: 0 2px 8px rgba(15, 35, 25, 0.07);
    --shadow-md: 0 6px 24px rgba(15, 35, 25, 0.10);
    --shadow-lg: 0 16px 56px rgba(15, 35, 25, 0.14);
    --shadow-xl: 0 32px 80px rgba(15, 35, 25, 0.20);

    /* Radii */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* Transitions */
    --ease: cubic-bezier(0.22, 0.9, 0.36, 1);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ── 2. RESET & BASE ────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rethink Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'Rethink Sans', sans-serif;
    cursor: pointer;
    border: none;
    background: none;
}

/* ── 3. UTILITIES ───────────────────────────────────────────────── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-tag i {
    font-size: 0.8em;
}

.section-header {
    margin-bottom: 56px;
}

.section-title {
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
}

/* Button variants */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--r-md);
    padding: 16px 36px;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s var(--ease);
    box-shadow: 0 6px 24px rgba(26, 157, 110, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(26, 157, 110, 0.45);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--r-md);
    padding: 15px 32px;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s var(--ease);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    transition-delay: var(--delay, 0s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animate up (hero) */
.animate-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.6s var(--ease) forwards;
}

.delay-1 {
    animation-delay: 0.10s;
}

.delay-2 {
    animation-delay: 0.22s;
}

.delay-3 {
    animation-delay: 0.34s;
}

.delay-4 {
    animation-delay: 0.46s;
}

.delay-5 {
    animation-delay: 0.18s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── 4. NAVBAR ──────────────────────────────────────────────────── */
#navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 68px;
    padding: 0 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s;
}

#navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    text-decoration: none;
}

.logo-icon {
    width: 130px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


.nav-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--primary-light);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 40px;
    white-space: nowrap;
}

.nav-badge i {
    color: var(--accent);
    font-size: 0.7rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--r-sm);
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(26, 157, 110, 0.3);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* ── 5. HERO ────────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 45%, var(--primary) 100%);
    padding: 0;
    overflow: hidden;
}

/* Dotted grid overlay */
.hero-dots {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
    pointer-events: none;
}

/* Floating product images */
.hero-floaters {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.floater {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.floater img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) saturate(0.7);
    transition: filter 0.4s;
}

.floater:hover img {
    filter: brightness(0.45) saturate(0.7);
}

.f1 {
    width: 130px;
    height: 130px;
    top: 8%;
    left: 1%;
    animation: floatY 7s ease-in-out infinite;
}

.f2 {
    width: 95px;
    height: 95px;
    bottom: 20%;
    left: 3%;
    animation: floatY 9s 1.2s ease-in-out infinite;
    border-radius: var(--r-md);
}

.f3 {
    width: 80px;
    height: 80px;
    top: 55%;
    left: 0.5%;
    animation: floatY 6s 2.4s ease-in-out infinite;
}

.f4 {
    width: 70px;
    height: 70px;
    bottom: 8%;
    left: 18%;
    animation: floatY 8s 0.6s ease-in-out infinite;
    border-radius: var(--r-sm);
}

.f5 {
    width: 100px;
    height: 100px;
    top: 6%;
    left: 17%;
    animation: floatY 10s 3s ease-in-out infinite;
}

.f6 {
    width: 60px;
    height: 60px;
    top: 42%;
    left: 8%;
    animation: floatY 7.5s 1.8s ease-in-out infinite;
    border-radius: var(--r-sm);
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(3deg);
    }
}

/* Hero inner layout */
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 24px 48px;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

/* Hero left text */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 40px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4);
}

.hero-title {
    font-size: clamp(2.1rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.hero-title-accent {
    color: var(--accent);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.68;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-proof {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.proof-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

/* ── 5a. HERO FORM CARD ─────────────────────────────────────────── */
.rsh-form-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Coloured header bar — matches the popup header */
.rsh-form-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px 18px;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
}

.rsh-form-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 1.1rem;
}

.rsh-form-card__header h2 {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 3px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.rsh-form-card__header p {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    font-weight: 500;
}

/* Iframe wrapper — handles loader + iframe stacking */
.rsh-iframe-wrap {
    position: relative;
    background: var(--white);
    min-height: 400px;
}

/* Loader shown while iframe loads */
.rsh-iframe-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s;
}

.rsh-iframe-loader p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.rsh-iframe-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: rshSpin 0.8s linear infinite;
}

@keyframes rshSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Hide loader once iframe content is loaded */
.rsh-iframe-wrap.loaded .rsh-iframe-loader {
    opacity: 0;
}

/* The iframe itself */
.rsh-iframe-wrap iframe {
    display: block;
    width: 100%;
    height: 560px;
    border: none;
    background: var(--white);
}

/* ── 6. HERO MARQUEE ────────────────────────────────────────────── */
.hero-marquee-wrap {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding: 0;
}

.hero-marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    padding: 13px 0;
}

.marquee-track {
    display: inline-flex;
    gap: 48px;
    animation: marqueeScroll 30s linear infinite;
    flex-shrink: 0;
}

.marquee-track span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.marquee-track span i {
    color: var(--accent);
    font-size: 0.4rem;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── 7. PRODUCT MARQUEE SECTION ─────────────────────────────────── */
.products-marquee-section {
    background: var(--off-white);
    padding: 60px 0 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.pm-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 0 24px;
    margin-bottom: 28px;
}

.pm-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.pm-count {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.pm-track-wrap {
    overflow: hidden;
    padding-bottom: 56px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.pm-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: productScroll 42s linear infinite;
}

.pm-track:hover {
    animation-play-state: paused;
}

@keyframes productScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.pm-item {
    flex-shrink: 0;
    width: 155px;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--white);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
    cursor: pointer;
}

.pm-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.pm-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: transform 0.3s;
    filter: saturate(0.85);
}

.pm-item:hover img {
    transform: scale(1.07);
    filter: saturate(1);
}

.pm-item span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    padding: 9px 10px 10px;
    line-height: 1.3;
}

/* ── 8. CATEGORIES SECTION ──────────────────────────────────────── */
.categories-section {
    padding: 96px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cat-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.25s var(--ease);
    position: relative;
}

.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-mid));
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.cat-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.cat-card:hover::after {
    transform: scaleX(1);
}

.cat-img {
    position: relative;
    overflow: hidden;
    height: 160px;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
    filter: saturate(0.85);
}

.cat-card:hover .cat-img img {
    transform: scale(1.08);
    filter: saturate(1);
}

.cat-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 92, 62, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: background 0.3s;
    opacity: 0;
}

.cat-card:hover .cat-img-overlay {
    background: rgba(14, 92, 62, 0.35);
    opacity: 1;
}

.cat-body {
    padding: 20px 20px 22px;
}

.cat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 12px;
    transition: background 0.2s;
}

.cat-card:hover .cat-icon {
    background: var(--primary);
    color: var(--white);
}

.cat-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
    letter-spacing: -0.01em;
}

.cat-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.cat-cta {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.cat-card:hover .cat-cta {
    gap: 10px;
}

/* ── 9. STEPPER SECTION ─────────────────────────────────────────── */
.stepper-section {
    background: var(--bg-subtle);
    padding: 96px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 56px;
    position: relative;
}

.stepper-line {
    position: absolute;
    top: 38px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
    border-radius: 2px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 24px rgba(26, 157, 110, 0.32);
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.step-item:nth-child(2) .step-num {
    background: var(--accent);
    box-shadow: 0 6px 24px rgba(245, 166, 35, 0.35);
}

.step-item:nth-child(3) .step-num {
    background: var(--primary-darker);
    box-shadow: 0 6px 24px rgba(14, 92, 62, 0.35);
}

.step-item:hover .step-num {
    transform: scale(1.07);
}

.step-num span {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.step-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulseBorder 2.5s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes pulseBorder {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.12);
        opacity: 0;
    }
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
}

.step-item:nth-child(2) .step-icon {
    color: var(--accent);
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-content p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 220px;
}

/* ── 10. CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 100px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bg-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    z-index: 0;
}

.cta-bg-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2) saturate(0.4) sepia(0.3);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 28, 18, 0.94) 0%, rgba(26, 157, 110, 0.78) 50%, rgba(9, 28, 18, 0.94) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.18;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.68;
    margin-bottom: 36px;
}

/* ── 11. TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
    background: var(--off-white);
    padding: 96px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: all 0.25s var(--ease);
    position: relative;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    color: var(--primary-light);
    line-height: 1;
    font-family: Georgia, serif;
}

.testi-card.featured {
    border-color: var(--primary);
    background: linear-gradient(145deg, var(--white), var(--primary-light));
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testi-stars {
    color: var(--accent);
    font-size: 0.82rem;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testi-quote {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.68;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.testi-author div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testi-author strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.testi-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}


/* ── 12. STILL DECIDING CTA ─────────────────────────────────────── */
.deciding-cta {
    position: relative;
    overflow: hidden;
    padding: 104px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deciding-bg {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 0;
}

.deciding-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.1) saturate(0.3) blur(2px);
}

.deciding-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(230, 247, 241, 0.97) 20%, rgba(230, 247, 241, 0.92) 100%);
    z-index: 1;
}

.deciding-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
}

.deciding-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 40px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}

.deciding-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.deciding-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.68;
    margin-bottom: 36px;
}

.deciding-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.deciding-actions .btn-ghost {
    background: rgba(14, 92, 62, 0.06);
    border-color: var(--border-strong);
    color: var(--primary-dark);
}

.deciding-actions .btn-ghost:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.deciding-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.deciding-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.deciding-trust i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* ── 13. FOOTER ─────────────────────────────────────────────────── */
footer {
    background: var(--text);
    padding: 32px 24px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}


.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a i {
    color: var(--primary);
    font-size: 0.75rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

/* ── 14. STICKY BAR ─────────────────────────────────────────────── */
.sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    border-top: 1.5px solid var(--border);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.10);
    padding: 12px 16px;
    transform: translateY(100%);
    transition: transform 0.35s var(--ease);
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-text strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text);
}

.sticky-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sticky-bar button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--r-md);
    padding: 13px 24px;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: background 0.2s;
    box-shadow: 0 4px 16px rgba(26, 157, 110, 0.35);
}

.sticky-bar button:hover {
    background: var(--primary-dark);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid .testi-card:last-child {
        grid-column: span 2;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 60px 24px 40px;
        gap: 40px;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-floaters {
        display: none;
    }

    .stepper {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 480px;
        margin: 56px auto 0;
    }

    .stepper-line {
        display: none;
    }

    .step-item {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .step-num {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-num span {
        font-size: 1.2rem;
    }

    .step-content {
        align-items: flex-start;
    }

    .step-content p {
        max-width: 100%;
    }

    .step-icon {
        display: none;
    }

    .rsh-iframe-wrap iframe {
        height: 520px;
    }
}

@media (max-width: 768px) {

    /* Nav */
    .nav-badge {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Sections */
    .categories-section,
    .stepper-section,
    .testimonials-section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CTA banner */
    .cta-bg-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .deciding-bg {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testi-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .testi-grid .testi-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }


    /* Sticky bar */
    .sticky-bar {
        display: block;
    }

    /* Deciding actions */
    .deciding-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .deciding-actions .btn-primary,
    .deciding-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .cta-banner,
    .deciding-cta {
        padding: 72px 20px;
    }

    .deciding-trust {
        gap: 14px;
    }

    .deciding-trust span {
        font-size: 0.75rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 14px;
    }

    .hfc-image-strip {
        display: none;
    }

    .rsh-form-card__header {
        padding: 16px 18px 14px;
        gap: 12px;
    }

    .rsh-form-card__icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .rsh-form-card__header h2 {
        font-size: 0.95rem;
    }

    .rsh-iframe-wrap iframe {
        height: 480px;
    }
}