﻿/* ========================================
   CSS Variables & Reset
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,800;1,400;1,700&family=Work+Sans:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,600;1,600&display=swap');

:root {
    /* â”€â”€ Core Palette â”€â”€ */
    --clr-black:           #000000;
    --clr-black-rich:      #0a0a0a;
    --clr-black-surface:   #111111;
    --clr-black-elevated:  #1a1a1a;

    --clr-white:           #ffffff;
    --clr-white-soft:      #f0f4ff;
    --clr-white-muted:     rgba(255, 255, 255, 0.55);
    --clr-white-faint:     rgba(255, 255, 255, 0.12);

    /* â”€â”€ Brand Green (primary accent) â”€â”€ */
    --clr-green:           #15c86f;
    --clr-green-dark:      #0da05a;
    --clr-green-glow:      rgba(21, 200, 111, 0.35);
    --clr-green-subtle:    rgba(21, 200, 111, 0.08);

    /* â”€â”€ Brand Navy (secondary accent) â”€â”€ */
    --clr-navy:            #012a76;
    --clr-navy-mid:        #1a4a9e;
    --clr-navy-light:      #29cbfe;
    --clr-navy-faint:      rgba(1, 42, 118, 0.15);

    /* â”€â”€ Gradient (the signature look) â”€â”€ */
    --grad-brand:          linear-gradient(135deg, var(--clr-green) 0%, var(--clr-navy) 100%);
    --grad-brand-h:        linear-gradient(90deg,  var(--clr-green) 0%, var(--clr-navy) 100%);
    --grad-brand-v:        linear-gradient(180deg, var(--clr-green) 0%, var(--clr-navy) 100%);
    --grad-brand-rev:      linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-green) 100%);
    --grad-subtle:         linear-gradient(135deg, rgba(21,200,111,0.12) 0%, rgba(1,42,118,0.12) 100%);

    /* â”€â”€ State colours â”€â”€ */
    --clr-success:         #0da05a;
    --clr-info:            #29cbfe;

    /* â”€â”€ Surfaces (all stay dark) â”€â”€ */
    --bg-page:             var(--clr-black-rich);
    --bg-card:             var(--clr-black-surface);
    --bg-raised:           var(--clr-black-elevated);
    --bg-overlay:          rgba(0, 0, 0, 0.75);

    /* â”€â”€ Typography â”€â”€ */
    --font-display:        'Playfair Display', serif;
    --font-body:           'Work Sans', sans-serif;
    --font-nav:            'Cormorant Garamond', serif;   /* unique nav style */

    /* â”€â”€ Spacing â”€â”€ */
    --sp-xs:  0.5rem;
    --sp-sm:  1rem;
    --sp-md:  2rem;
    --sp-lg:  4rem;
    --sp-xl:  6rem;

    /* â”€â”€ Radius â”€â”€ */
    --r-sm:   4px;
    --r-md:   8px;
    --r-lg:   16px;
    --r-xl:   24px;
    --r-full: 9999px;

    /* â”€â”€ Shadows â”€â”€ */
    --sh-sm:    0 2px 8px  rgba(0, 0, 0, 0.30);
    --sh-md:    0 4px 20px rgba(0, 0, 0, 0.45);
    --sh-lg:    0 8px 40px rgba(0, 0, 0, 0.60);
    --sh-green: 0 8px 32px rgba(21, 200, 111, 0.30);
    --sh-navy:  0 8px 32px rgba(1,  42,  118, 0.40);

    /* â”€â”€ Transitions â”€â”€ */
    --t-fast:   0.2s ease;
    --t-norm:   0.3s ease;
    --t-slow:   0.5s ease;
}

/* â”€â”€ Reset â”€â”€ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* ========================================
   Header
   ======================================== */
.hr-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--clr-black-rich);
    backdrop-filter: blur(10px);
    transition: all var(--t-norm);
    border-bottom: 1px solid var(--clr-white-faint);
}

.hr-header.scrolled {
    box-shadow: var(--sh-lg);
    border-bottom-color: var(--clr-green);
    background: rgba(13,27,42,0.97);
    padding-top: 0; padding-bottom: 0;
}

.hr-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* â”€â”€ Logo â”€â”€ */
.hr-logo {
    margin-left: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 10;
    cursor: pointer;
}

.hr-logo-img {
    width: 60px; height: 60px;
    object-fit: cover;
    transition: transform var(--t-fast);
}

.hr-logo:hover .hr-logo-img { transform: scale(1.1); }

/* â”€â”€ Nav links â€” gradient text + unique font â”€â”€ */
.hr-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.hr-nav a {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: rgba(255,255,255,0.72);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    position: relative;
    transition: color 0.22s ease, background 0.22s ease, transform 0.2s ease;
    white-space: nowrap;
}
.hr-nav a::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: linear-gradient(90deg,#1E90FF,#00C9A7);
    transition: width 0.25s ease;
    border-radius: 99px;
}
.hr-nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.hr-nav a:hover::after { width: 60%; }
.hr-nav a.active { color: #fff; background: rgba(30,144,255,0.15); }
.hr-nav a.active::after { width: 60%; }
.hr-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px; height: 21px;
    width: 28px; height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hr-hamburger span {
    display: block;
    width: 100%; height: 3px;
    background: var(--clr-green);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hr-hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hr-hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.hr-hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu */
.hr-mobile-menu {
    position: fixed;
    top: 80px; left: 0;
    width: 100%;
    background: var(--clr-black-rich);
    box-shadow: var(--sh-lg);
    padding: 2rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.hr-mobile-menu.active {
    padding-bottom: 12rem;
    background: var(--clr-black-rich);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.hr-mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hr-mobile-nav a {
    padding: 1rem 1.25rem;
    font-family: var(--font-nav);
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    background: var(--clr-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    border-radius: var(--r-md);
    transition: all 0.3s ease;
    display: block;
}

.hr-mobile-nav a:hover {
    background: var(--clr-black-elevated);
    border-radius: var(--r-md);
    transform: translateX(5px);
}

.hr-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-white-faint);
}

.hr-mobile-actions a { width: 100%; }

.hr-btn-mobile {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    justify-content: center;
}

.hr-mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-norm);
    z-index: 999;
}

.hr-mobile-overlay.active { opacity: 1; visibility: visible; }

body.menu-open { overflow: hidden; }

/* ========================================
   Responsive â€“ header
   ======================================== */
@media (max-width: 1024px) {
    .hr-hamburger { display: flex; }
    .hr-nav { display: none; }
    .hr-header-actions .hr-btn-secondary,
    .hr-header-actions .hr-btn-primary { display: none; }
}

@media (max-width: 768px) {
    .hr-header-container { padding: 1rem 1.5rem; }
    .hr-mobile-menu { top: 70px; padding: 1.5rem 1rem; }
    .hr-mobile-nav a { font-size: 1.1rem; padding: 0.875rem 1rem; }
    .hr-logo {
        margin-left: 0px;
    }
}

@media (max-width: 480px) {
    .hr-hamburger { width: 24px; height: 18px; }
    .hr-hamburger span { height: 2.5px; }
    .hr-hamburger.active span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
    .hr-hamburger.active span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }
    .hr-mobile-menu { top: 65px; }
}

/* ========================================
   Buttons
   ======================================== */
.hr-btn-primary,
.hr-btn-secondary,
.hr-btn-ghost {
    padding: 0.75rem 1.5rem;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--t-fast);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.hr-btn-primary {
    background: var(--grad-brand);
    color: var(--clr-white);
    box-shadow: var(--sh-green);
}

.hr-btn-primary:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--clr-green-glow);
}

.hr-btn-secondary {
    background: transparent;
    color: var(--clr-green);
    border: 1px solid var(--clr-green);
}

.hr-btn-secondary:hover {
    background: var(--clr-green-subtle);
    color: var(--clr-white);
    border-color: var(--clr-white);
}

.hr-btn-ghost {
    background: transparent;
    color: var(--clr-white);
    border: 1px solid var(--clr-white-faint);
}

.hr-btn-ghost:hover {
    background: var(--clr-white-faint);
    color: var(--clr-white);
}

.hr-btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}
/* ========================================
   Hero â€” hr- namespace
   ======================================== */
.hr-hero {
    margin-top: 77px;
    position: relative;
    width: 100%;
    height: calc(100vh - 64px);
    min-height: 750px;
    overflow: hidden;
    background: var(--clr-black);
}

.hr-bg-track { position: absolute; inset: 0; z-index: 0; }

.hr-bg-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.07);
    transition: opacity 1.1s ease, transform 7s ease;
    will-change: opacity, transform;
}

.hr-bg-slide.hr-active { opacity: 1; transform: scale(1); }

.hr-overlay-left {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(105deg,
        rgba(0,0,0,0.93) 0%,
        rgba(0,0,0,0.76) 40%,
        rgba(0,0,0,0.22) 75%,
        transparent 100%);
}

.hr-overlay-bottom {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top,
        rgba(0,0,0,0.97) 0%,
        rgba(0,0,0,0.50) 35%,
        transparent 65%);
}

.hr-grain {
    position: absolute; inset: 0; z-index: 2;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.hr-side-bar {
    position: absolute;
    left: 1.2rem; top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.hr-side-text {
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-white-muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hr-side-rule {
    width: 1px; height: 72px;
    background: var(--clr-white-faint);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.hr-side-rule-fill {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 25%;
    background: var(--grad-brand-v);
    border-radius: 1px;
    transition: height 0.6s ease;
}

.hr-content {
    position: absolute;
    bottom: 4.5rem; left: 3.5rem;
    z-index: 10;
    max-width: 560px;
    animation: hrSlideUp 1s 0.25s both;
}

.hr-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-green);
    margin-bottom: 1.1rem;
}

.hr-eyebrow-pip {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--clr-green);
    flex-shrink: 0;
    animation: hrPulse 2.4s ease-in-out infinite;
}

.hr-title {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 0.93;
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
}

.hr-title-main {
    font-size: clamp(3.4rem, 7.5vw, 7.8rem);
    color: var(--clr-white);
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hr-title-sub {
    font-size: clamp(3.4rem, 7.5vw, 7.8rem);
    font-style: italic;
    background: var(--grad-brand-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hr-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--clr-white-muted);
    max-width: 420px;
    margin-bottom: 2rem;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hr-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}

.hr-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--grad-brand);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.9rem 2.2rem;
    border-radius: var(--r-full);
    text-decoration: none;
    box-shadow: var(--sh-green);
    transition: all var(--t-norm);
}

.hr-cta-primary svg { width: 17px; height: 17px; transition: transform var(--t-norm); }
.hr-cta-primary:hover { filter: brightness(1.15); box-shadow: 0 12px 40px var(--clr-green-glow); transform: translateY(-2px); }
.hr-cta-primary:hover svg { transform: translateX(4px); }

.hr-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--clr-white-muted);
    text-decoration: none;
    transition: color var(--t-norm);
}

.hr-cta-ghost:hover { color: var(--clr-white); }

.hr-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--clr-white-faint);
    color: var(--clr-white);
    transition: all var(--t-norm);
    flex-shrink: 0;
}

.hr-play-btn svg { width: 12px; height: 12px; margin-left: 2px; }

.hr-cta-ghost:hover .hr-play-btn {
    background: var(--clr-green-subtle);
    border-color: var(--clr-green);
}

.hr-trust {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.hr-trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
}

.hr-trust-item svg { width: 14px; height: 14px; color: var(--clr-green); }

.hr-trust-sep {
    display: inline-block;
    width: 1px; height: 14px;
    background: var(--clr-white-faint);
    margin: 0 1rem;
}

/* Floating Cards */
.hr-cards {
    position: absolute;
    right: 3rem; bottom: 18rem;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.hr-card {
    position: relative;
    width: 175px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    border: 1px solid var(--clr-white-faint);
    box-shadow: var(--sh-lg);
    cursor: pointer;
    flex-shrink: 0;
    margin-right: -32px;
    transition: transform 0.38s ease, box-shadow 0.38s ease;
}

.hr-card[data-card="0"] { height: 238px; z-index: 14; transform: translateY(0); }
.hr-card[data-card="1"] { height: 216px; z-index: 13; transform: translateY(12px); }
.hr-card[data-card="2"] { height: 194px; z-index: 12; transform: translateY(24px); }
.hr-card[data-card="3"] { height: 172px; z-index: 11; transform: translateY(36px); }
.hr-card:last-child { margin-right: 0; }

.hr-card:hover { transform: translateY(-14px) !important; z-index: 20 !important; box-shadow: 0 32px 80px rgba(0,0,0,0.7); }

.hr-card img {
    width: 100%; height: 68%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.hr-card:hover img { transform: scale(1.07); }

.hr-card-foot {
    padding: 0.6rem 0.75rem 0.8rem;
    background: rgba(8,6,20,0.75);
    backdrop-filter: blur(10px);
}

.hr-stars { display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.22rem; }
.hr-stars span { font-size: 0.62rem; color: #f5c518; letter-spacing: 0.02em; }
.hr-stars em { font-style: normal; font-size: 0.62rem; color: var(--clr-white-muted); }

.hr-card-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--clr-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bottom bar */
.hr-bottom-bar {
    position: absolute;
    bottom: 1.8rem; left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hr-dots { display: flex; align-items: center; gap: 0.5rem; }

.hr-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--clr-white-faint);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.hr-dot.hr-dot-active {
    background: var(--grad-brand-h);
    width: 24px;
    border-radius: 4px;
}

.hr-counter { font-family: var(--font-body); font-size: 0.72rem; color: rgba(255,255,255,0.38); letter-spacing: 0.08em; }
.hr-counter-cur { color: var(--clr-white); font-weight: 600; }

/* Keyframes */
@keyframes hrSlideUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hrPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.3; transform:scale(0.65); } }
@keyframes hrCardIn { from { opacity:0; transform:translateY(50px); } to { opacity:1; } }

.hr-card[data-card="0"] { animation: hrCardIn 0.7s 0.45s both; }
.hr-card[data-card="1"] { animation: hrCardIn 0.7s 0.60s both; }
.hr-card[data-card="2"] { animation: hrCardIn 0.7s 0.75s both; }
.hr-card[data-card="3"] { animation: hrCardIn 0.7s 0.90s both; }

/* Hero Responsive */
@media (max-width: 1100px) {
    .hr-content { left: 2.5rem; max-width: 480px; }
    .hr-cards { right: 1.5rem; }
    .hr-card { width: 152px; }
    .hr-card[data-card="0"] { height: 210px; }
    .hr-card[data-card="1"] { height: 190px; }
    .hr-card[data-card="2"] { height: 170px; }
    .hr-card[data-card="3"] { height: 150px; }
}

@media (max-width: 860px) {
    .hr-card[data-card="3"] { display: none; }
    .hr-content { left: 2rem; max-width: 420px; }
    .hr-side-bar { display: none; }
    .hr-card { width: 138px; }
    .hr-card[data-card="0"] { height: 195px; }
    .hr-card[data-card="1"] { height: 177px; }
    .hr-card[data-card="2"] { height: 159px; }
}

@media (max-width: 640px) {
.hr-content{
 top: 16rem;
}
           
    .hr-hero { height: calc(100svh - 60px); min-height: 520px; }
    .hr-content { left: 1.2rem; right: 1.2rem; bottom: 4rem; max-width: 100%; }
    .hr-title-main, .hr-title-sub { font-size: clamp(2.6rem, 11vw, 4rem); }
    .hr-desc { max-width: 100%; font-size: 0.84rem; }
    .hr-trust { display: none; }
    .hr-cards {
        position: absolute; right: 0; bottom: auto;
        top: 1rem; left: 0;
        width: 100%; padding: 0 1.2rem;
        overflow-x: auto; overflow-y: visible;
        scrollbar-width: none; -webkit-overflow-scrolling: touch;
        gap: 0.75rem; align-items: flex-start;
    }
    .hr-cards::-webkit-scrollbar { display: none; }
    .hr-card { flex-shrink: 0; margin-right: 0; width: 130px; }
    .hr-card[data-card="0"],
    .hr-card[data-card="1"],
    .hr-card[data-card="2"],
    .hr-card[data-card="3"] { height: 170px; transform: none !important; display: flex; flex-direction: column; }
    .hr-card[data-card="3"] { display: flex; }
    .hr-bottom-bar { bottom: 1rem; gap: 1rem; }
}

@media (max-width: 380px) {
    .hr-title-main, .hr-title-sub { font-size: 2.4rem; }
    .hr-card { width: 118px; }
    .hr-card[data-card="0"],
    .hr-card[data-card="1"],
    .hr-card[data-card="2"],
    .hr-card[data-card="3"] { height: 155px; }
}
/* ========================================
   Features Section
   ======================================== */
.hr-features-section {
    padding: 0.5rem 1rem;
    background: var(--bg-page);
}

.hr-features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: start;
}

.hr-features-sidebar { position: sticky; top: 100px; }
.hr-section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--clr-white);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hr-feature-filters { display: flex; flex-direction: column; gap: 1rem; }

.hr-feature-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--r-lg);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    box-shadow: var(--sh-sm);
    color: var(--clr-white);
}

.hr-feature-filter:hover {
    border-color: var(--clr-green);
    transform: translateX(8px);
}

.hr-feature-filter.active {
    border-color: var(--clr-green);
    background: var(--grad-brand);
    color: var(--clr-white);
    transform: translateX(12px);
    box-shadow: var(--sh-green);
}

.hr-filter-icon { font-size: 2rem; min-width: 50px; text-align: center; }

.hr-feature-filter h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.25rem; color: var(--clr-white); }
.hr-feature-filter p { font-size: 0.85rem; opacity: 0.8; color: var(--clr-white-muted); }

.hr-features-content { position: relative; min-height: 600px; }

.hr-feature-detail { display: none; opacity: 0; animation: fadeInContent 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

.hr-feature-detail.active {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

@keyframes fadeInContent { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

.hr-feature-image {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    padding: 2rem;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--clr-white-faint);
}

.hr-mock-interface {
    background: var(--clr-black);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.hr-interface-header {
    background: var(--bg-card);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hr-interface-dots { display: flex; gap: 0.5rem; }
.hr-interface-dots span { width: 12px; height: 12px; border-radius: 50%; background: var(--clr-navy); }
.hr-interface-title { color: var(--clr-navy-light); font-size: 0.9rem; }

.hr-interface-body { padding: 2rem; min-height: 300px; }

/* Payment mockup */
.hr-payment-card {
    background: var(--grad-brand);
    padding: 1.5rem;
    border-radius: var(--r-md);
    margin-bottom: 1.5rem;
}

.hr-card-label { color: var(--clr-white-soft); font-size: 0.85rem; margin-bottom: 0.5rem; }
.hr-card-value { color: var(--clr-white); font-size: 2rem; font-weight: 700; font-family: var(--font-display); }
.hr-card-trend { color: var(--clr-green); font-size: 0.9rem; margin-top: 0.5rem; }

.hr-payment-list { display: flex; flex-direction: column; gap: 0.75rem; }

.hr-payment-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--clr-black);
    border-radius: var(--r-sm);
    color: var(--clr-navy-light);
}

/* Invoice */
.hr-invoice-preview { background: var(--bg-card); padding: 1.5rem; border-radius: var(--r-md); border: 1px solid var(--clr-white-faint); }

.hr-invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--clr-green);
}

.hr-invoice-logo {
    width: 50px; height: 50px;
    background: var(--grad-brand);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-weight: 700;
}

.hr-invoice-number { font-family: var(--font-display); font-size: 1.1rem; color: var(--clr-white); }
.hr-invoice-details { display: flex; flex-direction: column; gap: 0.75rem; }

.hr-invoice-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--clr-white-muted);
}

.hr-invoice-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 0.5rem;
    border-top: 2px solid var(--clr-white-faint);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--clr-white);
}

/* Analytics */
.hr-analytics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hr-stat-card { background: var(--clr-black); padding: 1rem; border-radius: var(--r-md); }
.hr-stat-label { color: var(--clr-green); font-size: 0.85rem; margin-bottom: 0.5rem; }
.hr-stat-value { color: var(--clr-white); font-size: 1.5rem; font-weight: 700; font-family: var(--font-display); }

.hr-chart-placeholder {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 150px;
    gap: 1rem;
}

.hr-chart-bar {
    flex: 1;
    background: var(--grad-brand-v);
    border-radius: var(--r-sm) var(--r-sm) 0 0;
    animation: barGrow 1s ease forwards;
}

@keyframes barGrow { from { height: 0; } }

/* Integration */
.hr-integration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.hr-integration-card {
    background: var(--clr-black);
    padding: 1.5rem;
    border-radius: var(--r-md);
    text-align: center;
    transition: transform var(--t-fast);
    border: 1px solid var(--clr-white-faint);
}

.hr-integration-card:hover { transform: translateY(-4px); }
.hr-int-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.hr-int-name { color: var(--clr-navy-light); font-size: 0.9rem; font-weight: 600; }

/* Security */
.hr-security-status { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem; }

.hr-security-badge {
    background: var(--clr-black);
    padding: 1rem;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--clr-navy-light);
    border: 1px solid var(--clr-white-faint);
}

.hr-badge-icon {
    width: 30px; height: 30px;
    background: var(--grad-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-weight: 700;
}

.hr-security-score { display: flex; justify-content: center; }

.hr-score-circle {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--grad-brand);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    box-shadow: var(--sh-green);
}

.hr-score-circle span { font-size: 2rem; font-weight: 700; font-family: var(--font-display); }
.hr-score-circle small { font-size: 0.75rem; }

/* Chat */
.hr-support-chat { margin-bottom: 1.5rem; }

.hr-chat-message { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.hr-chat-message.hr-chat-sent { justify-content: flex-end; }

.hr-chat-avatar {
    width: 35px; height: 35px;
    border-radius: 50%;
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 0.8rem;
    font-weight: 700;
}

.hr-chat-bubble {
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-radius: var(--r-md);
    color: var(--clr-navy-light);
    max-width: 70%;
    border: 1px solid var(--clr-white-faint);
}

.hr-chat-sent .hr-chat-bubble {
    background: var(--grad-brand);
    color: var(--clr-white);
    border: none;
}

.hr-support-stats { display: flex; gap: 2rem; justify-content: center; }

.hr-support-stat { text-align: center; }
.hr-support-stat span { display: block; font-size: 1.5rem; font-weight: 700; color: var(--clr-green); font-family: var(--font-display); }
.hr-support-stat small { color: var(--clr-navy-light); font-size: 0.85rem; }

/* Feature info */
.hr-feature-info { padding-right: 2rem; }

.hr-feature-info h3 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--clr-white);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.hr-feature-info p { color: var(--clr-white-muted); font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.75rem; }

.hr-feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }

.hr-feature-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--clr-white);
    font-size: 1.05rem;
    line-height: 1.6;
}

.hr-feature-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    background: var(--grad-brand-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========================================
   Carousel Section
   ======================================== */
.hr-services-carousel-section {
    padding: var(--sp-lg) 0;
    background: var(--bg-page);
    position: relative;
    overflow: hidden;
}

.hr-services-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.hr-carousel-container {
    overflow: hidden;
    border-radius: var(--r-xl);
    margin-bottom: 1.5rem;
}

.hr-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hr-carousel-slide {
    min-width: 100%;
    padding: 3rem 2rem;
    background: var(--bg-card);
}

.hr-slide-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hr-slide-text-section { padding-right: 2rem; }
.hr-slide-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--sh-green);
}

.hr-slide-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.hr-slide-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.4;
    color: var(--clr-white);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hr-slide-meta { display: flex; align-items: center; gap: 1rem; }

.hr-slide-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-black);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hr-slide-author { flex: 1; }
.hr-author-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--clr-white); margin-bottom: 0.25rem; font-weight: 600; }
.hr-author-role { font-size: 0.9rem; color: var(--clr-green); }

.hr-slide-image-section {
    background: var(--grad-subtle);
    border-radius: var(--r-xl);
    padding: 2rem;
    box-shadow: var(--sh-lg);
    overflow: hidden;
    border: 1px solid var(--clr-white-faint);
}

.hr-service-image {
    width: 100%; height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block;
    border: 1px solid var(--clr-white-faint);
}
/* â”€â”€ Bottom Nav â”€â”€ */
.hr-carousel-bottom-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.5rem;
    margin-bottom: 4px;
    min-width: 0; /* prevents flex overflow */
}

.hr-carousel-nav-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--clr-white-faint);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-norm);
    flex-shrink: 0; /* never squish the buttons */
}

.hr-carousel-nav-btn:hover {
    background: var(--grad-brand);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--sh-green);
}

.hr-carousel-nav-btn svg { color: var(--clr-white); }

.hr-service-names {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-width: 0;      /* critical: lets flex child shrink below content size */
    flex: 1 1 0;       /* grow to fill space, but can shrink */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    padding-bottom: 2px; /* avoids clipping box-shadow on active pill */
}

.hr-service-names::-webkit-scrollbar { display: none; }

.hr-service-name {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--clr-white-faint);
    border-radius: var(--r-md);
    color: var(--clr-white-muted);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--t-norm);
    white-space: nowrap;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.hr-service-name:hover {
    border-color: var(--clr-green);
    background: var(--clr-green-subtle);
    color: var(--clr-white);
}

.hr-service-name.hr-name-active {
    background: var(--grad-brand);
    border-color: transparent;
    color: var(--clr-black);
    font-weight: 700;
    box-shadow: var(--sh-green);
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 768px) {
    .hr-carousel-slide { padding: 2rem 1rem; }
    .hr-slide-content-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
    .hr-slide-text-section { padding-right: 0; }
    .hr-slide-heading { font-size: 1.4rem; margin-bottom: 1.5rem; }
    .hr-slide-icon { width: 56px; height: 56px; margin-bottom: 1.25rem; }
    .hr-slide-icon svg { width: 32px; height: 32px; }
    .hr-slide-image-section { padding: 1rem; }
    .hr-service-image { max-height: 200px; }

    .hr-carousel-bottom-nav { gap: 0.5rem; padding: 0 0.25rem; margin-left: 2px; }

    /* slightly smaller pills on tablet */
    .hr-service-name { padding: 0.4rem 0.8rem; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .hr-slide-heading { font-size: 1.2rem; }
    .hr-author-name { font-size: 1rem; }
    .hr-slide-avatar { width: 44px; height: 44px; font-size: 0.75rem; }

    .hr-carousel-nav-btn { width: 30px; height: 30px; } /* slightly smaller arrows */

    /* compact pills on mobile */
    .hr-service-name { padding: 0.35rem 0.65rem; font-size: 0.75rem; }
}
/* ========================================
   How It Works
   ======================================== */
.hr-how-it-works-section { background: var(--bg-page); position: relative; overflow: hidden; }

.hr-works-container { max-width: 1400px; margin: 0 auto; }

.hr-works-header { text-align: center; margin-bottom: 4rem; }

.hr-works-title { font-family: var(--font-display); font-size: 3rem; color: var(--clr-white); margin-bottom: 1rem; }

.hr-works-subtitle { font-size: 1.25rem; color: var(--clr-white-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }

.hr-journey-wrapper { position: relative; padding: 3rem 0; }

.hr-progress-track {
    position: absolute;
    top: 90px; left: 0; right: 0;
    height: 4px;
    background: var(--clr-white-faint);
    border-radius: 2px;
    z-index: 1;
}

.hr-progress-line {
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 0%;
    background: var(--grad-brand-h);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--clr-green-glow);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hr-progress-line.hr-animated { width: 100%; }

.hr-journey-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.hr-journey-step {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: hrFadeInUp 0.6s ease forwards;
}

.hr-journey-step:nth-child(1) { animation-delay: 0.1s; }
.hr-journey-step:nth-child(3) { animation-delay: 0.3s; }
.hr-journey-step:nth-child(5) { animation-delay: 0.5s; }
.hr-journey-step:nth-child(7) { animation-delay: 0.7s; }

@keyframes hrFadeInUp { to { opacity:1; transform:translateY(0); } }

.hr-step-marker { position: relative; width: 80px; height: 80px; margin-bottom: 1.5rem; }

.hr-marker-dot {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--clr-black) !important;
    border: 4px solid var(--clr-green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; z-index: 2;
    transition: all var(--t-norm);
    box-shadow: var(--sh-md);
}

.hr-marker-dot svg { color: var(--clr-green); transition: all var(--t-norm); }

.hr-marker-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 3px solid var(--clr-green);
    opacity: 0; z-index: 1;
}

.hr-journey-step:hover .hr-marker-pulse { animation: hrPulse 2s infinite; }

@keyframes hrPulse {
    0%   { transform: translate(-50%,-50%) scale(1);   opacity: 0.6; }
    50%  { transform: translate(-50%,-50%) scale(1.4); opacity: 0.3; }
    100% { transform: translate(-50%,-50%) scale(1.8); opacity: 0; }
}

.hr-step-content { text-align: center; position: relative; }

.hr-step-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    background: var(--grad-brand-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.hr-step-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--clr-white); margin-bottom: 0.5rem; transition: color var(--t-norm); }
.hr-step-description { font-size: 0.95rem; color: var(--clr-white-muted); line-height: 1.6; max-width: 220px; }

.hr-journey-step:hover .hr-marker-dot {
    background: var(--grad-brand);
    border-color: var(--clr-green);
    transform: scale(1.1);
    box-shadow: var(--sh-green);
}

.hr-journey-step:hover .hr-marker-dot svg { color: var(--clr-white); }
.hr-journey-step:hover .hr-step-title { color: var(--clr-green); }

.hr-step-detail {
    position: absolute;
    top: calc(100% + 2rem);
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    opacity: 0; visibility: hidden;
    transition: all var(--t-norm);
    z-index: 10;
    pointer-events: none;
}

.hr-journey-step:hover .hr-step-detail { opacity: 1; visibility: visible; top: calc(100% + 1rem); pointer-events: auto; }

.hr-detail-card {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    border: 2px solid var(--clr-green);
}

.hr-detail-heading { font-family: var(--font-display); font-size: 1.1rem; color: var(--clr-white); margin-bottom: 1rem; }

.hr-detail-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem;
    background: var(--grad-brand);
    border-radius: var(--r-md);
    color: var(--clr-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.hr-detail-time svg { color: var(--clr-white); }

.hr-step-arrow { display: flex; align-items: center; padding: 0 1rem; margin-top: 40px; flex-shrink: 0; }

.hr-step-arrow svg { color: var(--clr-green); opacity: 0.6; animation: hrArrowSlide 2s infinite; }

@keyframes hrArrowSlide {
    0%,100% { transform: translateX(0); opacity: 0.6; }
    50%      { transform: translateX(8px); opacity: 1; }
}

.hr-works-cta { text-align: center; }

.hr-works-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--grad-brand);
    color: var(--clr-white);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--r-lg);
    cursor: pointer;
    transition: all var(--t-norm);
    box-shadow: var(--sh-green);
}

.hr-works-button:hover { transform: translateY(-3px); filter: brightness(1.15); box-shadow: 0 16px 48px var(--clr-green-glow); }
.hr-works-button svg { transition: transform var(--t-norm); }
.hr-works-button:hover svg { transform: translateX(5px); }

.hr-works-note { margin-top: 1rem; font-size: 0.9rem; color: var(--clr-white-muted); }

/* ========================================
   Advantages
   ======================================== */
.hr-advantages-section { padding: var(--sp-lg) 1rem; background: var(--bg-page); }
.hr-advantages-container { max-width: 1400px; margin: 0 auto; }
.hr-center-title { text-align: center; margin-bottom: 3rem; }

.hr-advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.hr-advantage-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--r-xl);
    text-align: center;
    transition: all var(--t-norm);
    border: 2px solid var(--clr-white-faint);
}

.hr-advantage-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-green);
    box-shadow: var(--sh-green);
}

.hr-advantage-icon {
    margin: 0 auto 1.5rem;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-brand);
    color: var(--clr-white);
    font-size: 26px;
    transition: all 0.3s ease;
    box-shadow: var(--sh-green);
}

.hr-advantage-icon:hover { transform: translateY(-4px); }

.hr-advantage-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--clr-white); margin-bottom: 1rem; }
.hr-advantage-card p { color: var(--clr-white-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }

.hr-advantage-stat {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--clr-white-faint);
}

.hr-stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--grad-brand-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hr-stat-number::after { content: '+'; margin-left: 0.25rem; }
.hr-stat-label { color: var(--clr-white-muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* ========================================
   B2B Services
   ======================================== */
.hr-b2b-services-section { padding: var(--sp-lg) 1rem; background: var(--bg-page); position: relative; overflow: hidden; }
.hr-b2b-container { max-width: 1400px; margin: 0 auto; }
.hr-b2b-header { text-align: center; margin-bottom: 4rem; }
.hr-b2b-title { font-family: var(--font-display); font-size: 3rem; color: var(--clr-white); margin-bottom: 1rem; }
.hr-b2b-subtitle { font-size: 1.25rem; color: var(--clr-white-muted); max-width: 700px; margin: 0 auto; line-height: 1.6; }

.hr-service-panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

.hr-service-panel {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    border: 1px solid var(--clr-white-faint);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hr-service-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-brand-h);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hr-service-panel:hover {
    transform: translateY(-8px);
    border-color: var(--clr-green);
    box-shadow: var(--sh-green);
}

.hr-service-panel:hover::before { opacity: 1; }

.hr-panel-content { padding: 2rem; }

.hr-panel-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--clr-white-faint);
}

.hr-panel-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--grad-subtle);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-white-faint);
    transition: all 0.3s ease;
}

.hr-service-panel:hover .hr-panel-icon {
    background: var(--grad-brand);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--sh-green);
}

.hr-panel-icon svg { color: var(--clr-green); transition: color 0.3s ease; }
.hr-service-panel:hover .hr-panel-icon svg { color: var(--clr-white); }

.hr-panel-title { font-family: var(--font-display); font-size: 1.75rem; color: var(--clr-white); margin-bottom: 0.5rem; }
.hr-panel-subtitle { font-size: 0.95rem; color: var(--clr-white-muted); }

.hr-stats-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }

.hr-stat-item {
    background: var(--clr-green-subtle);
    padding: 1rem;
    border-radius: var(--r-md);
    border: 1px solid rgba(21,200,111,0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.hr-service-panel:hover .hr-stat-item {
    background: rgba(21,200,111,0.12);
    border-color: rgba(21,200,111,0.3);
}

.hr-mini-chart {
    background: var(--clr-green-subtle);
    border-radius: var(--r-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(21,200,111,0.12);
    transition: all 0.3s ease;
}

.hr-service-panel:hover .hr-mini-chart {
    background: rgba(21,200,111,0.1);
    border-color: rgba(21,200,111,0.22);
}

.hr-chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.hr-chart-label { font-size: 0.85rem; color: var(--clr-white-muted); font-weight: 500; }
.hr-chart-trend { font-size: 0.9rem; color: var(--clr-green); font-weight: 700; }
.hr-chart-visual { height: 60px; }

.hr-features-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }

.hr-feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--clr-green-subtle);
    border-radius: var(--r-md);
    border: 1px solid rgba(21,200,111,0.1);
    transition: all 0.3s ease;
}

.hr-feature-item:hover {
    background: rgba(21,200,111,0.12);
    border-color: rgba(21,200,111,0.3);
    transform: translateX(5px);
}

.hr-feature-icon {
    width: 32px; height: 32px;
    background: var(--grad-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--sh-green);
}

.hr-feature-icon svg { color: var(--clr-white); }
.hr-feature-text { flex: 1; }
.hr-feature-name { font-size: 0.95rem; font-weight: 600; color: var(--clr-white); margin-bottom: 0.25rem; }
.hr-feature-desc { font-size: 0.85rem; color: var(--clr-white-muted); line-height: 1.4; }

.hr-panel-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid var(--clr-green);
    border-radius: var(--r-lg);
    color: var(--clr-white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hr-panel-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--grad-brand-h);
    transition: left 0.4s ease;
    z-index: -1;
}

.hr-panel-cta:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--sh-green);
}

.hr-panel-cta:hover::before { left: 0; }
.hr-panel-cta svg { transition: transform 0.3s ease; }
.hr-panel-cta:hover svg { transform: translateX(5px); }

/* ========================================
   Testimonials
   ======================================== */
.hr-testimonials-section { padding: 1rem 0; background: var(--bg-page); position: relative; overflow: hidden; }
.hr-testimonials-container { max-width: 1600px; margin: 0 auto; padding: 0 1rem; }
.hr-testimonials-header { text-align: center; margin-bottom: 4rem; }
.hr-testimonials-title { font-family: var(--font-display); font-size: 3.5rem; color: var(--clr-white); margin-bottom: 1rem; }

.hr-highlight {
    background: var(--grad-brand-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hr-businesses-count { font-size: 1.5rem; color: var(--clr-white-muted); font-weight: 600; }

.hr-testimonials-scroll-wrapper { overflow-x: auto; overflow-y: hidden; margin-bottom: 2rem; scrollbar-width: none; -ms-overflow-style: none; }
.hr-testimonials-scroll-wrapper::-webkit-scrollbar { display: none; }

.hr-testimonials-track { display: flex; gap: 2rem; width: fit-content; padding: 1rem 0; }

.hr-testimonial-card {
    min-width: 350px; max-width: 350px;
    background: var(--bg-card);
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--sh-md);
    border: 1px solid var(--clr-white-faint);
}

.hr-testimonial-card:hover { transform: translateY(-10px); box-shadow: var(--sh-green); border-color: var(--clr-green); }

.hr-testimonial-image { position: relative; width: 100%; height: 400px; overflow: hidden; }
.hr-testimonial-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.hr-testimonial-card:hover .hr-testimonial-image img { transform: scale(1.05); }

.hr-image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.hr-testimonial-info { padding: 1.5rem; position: relative; z-index: 2; }
.hr-testimonial-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--clr-white); margin-bottom: 0.5rem; }
.hr-testimonial-role { font-size: 0.95rem; color: var(--clr-green); font-weight: 500; }

.hr-testimonial-quote {
    position: absolute;
    inset: 0;
    background: var(--grad-brand);
    padding: 2rem;
    opacity: 0; visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hr-testimonial-card:hover .hr-testimonial-quote { opacity: 1; visibility: visible; }

.hr-quote-content { position: relative; color: var(--clr-white); }
.hr-quote-icon { opacity: 0.3; margin-bottom: 1rem; }
.hr-quote-content p { font-size: 1.05rem; line-height: 1.7; color: var(--clr-white); }

/* ========================================
   CTA Section
   ======================================== */
.hr-cta-section {
    padding: var(--sp-lg) 1rem;
    background: var(--grad-brand);
    position: relative;
    overflow: hidden;
}

.hr-cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hr-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hr-cta-content { color: var(--clr-white); }
.hr-cta-title { font-family: var(--font-display); font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.2; }
.hr-cta-description { font-size: 1.25rem; line-height: 1.6; margin-bottom: 2.5rem; opacity: 0.95; }

.hr-cta-buttons { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }

.hr-cta-primary {
    padding: 1.25rem 2.5rem;
    background: var(--clr-white);
    color: var(--clr-navy);
    border: none;
    border-radius: var(--r-lg);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--t-norm);
    box-shadow: var(--sh-md);
}

.hr-cta-primary:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.hr-cta-primary svg { transition: transform var(--t-norm); }
.hr-cta-primary:hover svg { transform: translateX(5px); }

.hr-cta-secondary {
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--clr-white);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--r-lg);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--t-norm);
}

.hr-cta-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }

.hr-cta-features { display: flex; flex-direction: column; gap: 1rem; }
.hr-cta-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; }
.hr-cta-feature svg { color: var(--clr-white); }

.hr-cta-visual { position: relative; height: 400px; }

.hr-cta-card {
    position: absolute;
    background: var(--clr-white);
    padding: 2rem;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: hrFloating 6s ease-in-out infinite;
}

.hr-cta-card.hr-card-1 { top: 0; right: 50px; width: 180px; animation-delay: 0s; }
.hr-cta-card.hr-card-2 { top: 30%; left: 50px; width: 200px; animation-delay: 1s; }
.hr-cta-card.hr-card-3 { bottom: -42px; right: -57px; width: 190px; animation-delay: 2s; }

@keyframes hrFloating {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}

.hr-card-icon { font-size: 3rem; }
.hr-card-text { font-weight: 600; color: var(--clr-navy); text-align: center; font-size: 1rem; }

/* ========================================
   Footer
   ======================================== */
.hr-footer {
    background: var(--clr-black);
    color: var(--clr-white-muted);
    overflow: hidden;
    position: relative;
}

.hr-footer-hero {
    position: relative;
    padding: 5rem 3rem 4rem;
    isolation: isolate;
}

.hr-footer-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: stretch;
}

/* â”€â”€ Left â”€â”€ */
.hr-footer-quote-wrap {
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hr-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1.75rem;
    animation: hr-fade-up 0.7s ease both;
}

.hr-footer-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: transform var(--t-norm);
}

.hr-footer-logo:hover .hr-footer-logo-img { transform: scale(1.08); }

.hr-footer-quote {
    margin: 0 0 1.25rem;
    padding: 0;
    border: none;
    flex: 1;
}

.hr-quote-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hr-quote-line--3 {
    color: var(--clr-white);
    animation: hr-fade-up 0.9s 0.3s ease both;
}

.hr-quote-line--3 span {
    background: var(--grad-brand-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hr-footer-sub {
    font-size: 0.95rem;
    color: var(--clr-white-muted);
    max-width: 380px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    animation: hr-fade-up 0.9s 0.4s ease both;
}

.hr-footer-rights {
    font-size: 0.82rem;
    color: var(--clr-white-muted);
    margin: 0;
    margin-top: auto;
    animation: hr-fade-up 0.9s 0.5s ease both;
}

/* â”€â”€ Right â”€â”€ */
.hr-footer-right {
    display: flex;
    flex-direction: column;
    animation: hr-fade-up 0.9s 0.2s ease both;
}

/* â”€â”€ Contact block â”€â”€ */
.hr-footer-contact-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hr-footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.hr-contact-label {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    background: var(--grad-brand-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: opacity var(--t-norm);
}

.hr-contact-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--grad-brand-h);
    border-radius: var(--r-full);
    transition: width 0.4s ease;
}

.hr-footer-contact-link:hover .hr-contact-label::after { width: 100%; }

.hr-footer-contact-link:hover .hr-contact-arrow {
    transform: translateX(8px);
    color: var(--clr-navy-light);
}

.hr-social-links {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.hr-social-link {
    width: 36px;
    height: 36px;
    background: var(--clr-green-subtle);
    border: 1px solid var(--clr-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-green);
    text-decoration: none;
    transition: background var(--t-norm), border-color var(--t-norm), color var(--t-norm), transform var(--t-norm);
}

.hr-social-link:hover {
    background: var(--grad-brand);
    border-color: transparent;
    color: var(--clr-black);
    transform: translateY(-3px);
}

/* â”€â”€ Divider â”€â”€ */
.hr-footer-divider {
    width: 100%;
    height: 1px;
    background: var(--clr-white-faint);
    margin-bottom: 1.75rem;
}

/* â”€â”€ Nav columns â”€â”€ */
.hr-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.hr-footer-heading {
    font-size: 0.90rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-navy-light);
    margin: 0 0 0.9rem;
}

.hr-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.hr-footer-list a {
    color: var(--clr-white-muted);
    text-decoration: none;
    font-size: 0.80rem;
    transition: color var(--t-fast), transform var(--t-fast);
    display: inline-block;
    opacity: 0.8;
}

.hr-footer-list a:hover {
    color: var(--clr-green);
    transform: translateX(4px);
    opacity: 1;
}

/* â”€â”€ Background orb â”€â”€ */
.hr-footer-orb {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--clr-green-glow) 0%, transparent 70%);
    bottom: -120px;
    left: -80px;
    pointer-events: none;
    animation: hr-orb-pulse 6s ease-in-out infinite;
    z-index: 0;
}

/* â”€â”€ Animations â”€â”€ */
@keyframes hr-orb-pulse {
    0%, 100% { transform: scale(1);    opacity: 1; }
    50%       { transform: scale(1.15); opacity: 0.6; }
}

@keyframes hr-fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Footer â€” Responsive
   ======================================== */

/* â”€â”€ Tablet landscape (â‰¤ 1024px) â”€â”€ */
@media (max-width: 1024px) {
    .hr-footer-hero {
        padding: 4.5rem 2.5rem 3.5rem;
    }

    .hr-footer-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: start;
    }

    .hr-footer-quote-wrap {
        margin-left: 0;
        flex-direction: column;
        gap: 1rem;
    }

    .hr-quote-line { font-size: clamp(2rem, 8vw, 3.5rem); }
    .hr-contact-label { font-size: clamp(2.2rem, 7vw, 4rem); }

    .hr-footer-contact-block {
        flex-direction: row;
        align-items: center;
    }

    .hr-footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* â”€â”€ Tablet portrait (â‰¤ 768px) â”€â”€ */
@media (max-width: 768px) {
    .hr-footer-hero {
        padding: 4rem 2rem 3rem;
    }

    .hr-footer-quote-wrap {
        margin-left: 0;
    }

    .hr-footer-logo-img { width: 44px; height: 44px; }

    .hr-footer-contact-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    /* Keep 3 columns on tablet portrait */
    .hr-footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .hr-footer-heading { font-size: 0.72rem; letter-spacing: 0.14em; }
    .hr-footer-list a  { font-size: 0.78rem; }
    .hr-contact-label  { font-size: clamp(2rem, 10vw, 3rem); }
    .hr-quote-line     { font-size: clamp(1.8rem, 9vw, 3rem); }

    .hr-footer-sub { font-size: 0.9rem; max-width: 100%; }
}

/* â”€â”€ Mobile (â‰¤ 480px) â”€â”€ */
@media (max-width: 480px) {
    .hr-footer-hero {
        padding: 3.5rem 1.5rem 3rem;
    }

    .hr-footer-hero-inner {
        gap: 0.5rem;
    }

    .hr-footer-quote-wrap {
        margin-left: 0;
    gap: 1.5rem;
    }

    .hr-quote-line     { font-size: clamp(1.9rem, 11vw, 2.6rem); }
    .hr-contact-label  { font-size: clamp(1.9rem, 12vw, 2.6rem); }

    .hr-footer-sub {
        font-size: 0.88rem;
        max-width: 100%;
        margin-bottom: 1.25rem;
    }

    .hr-footer-contact-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        margin-bottom: 1.25rem;
    }

    /* Force 3 equal columns â€” width: 100% ensures the grid fills its parent */
    .hr-footer-right {
        width: 100%;
        min-width: 0;
    }

    .hr-footer-columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem 0.5rem;
        width: 100%;
        min-width: 0;
    }

    .hr-footer-column {
        min-width: 0; /* prevent blowout */
        overflow: hidden;
    }

    .hr-footer-heading {
        font-size: 0.60rem;
        letter-spacing: 0.10em;
        margin-bottom: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hr-footer-list {
        gap: 0.5rem;
    }

    .hr-footer-list a {
        font-size: 0.70rem;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block; /* needed for text-overflow to work */
    }

    .hr-footer-rights {
        font-size: 0.75rem;
        margin-top: 1.5rem;
    }

    .hr-footer-orb {
        width: 260px;
        height: 260px;
        bottom: -60px;
        left: -60px;
    }

    .hr-social-links { gap: 0.5rem; }

    .hr-social-link {
        width: 32px;
        height: 32px;
    }
}

/* â”€â”€ Small mobile (â‰¤ 360px) â”€â”€ */
@media (max-width: 360px) {
    .hr-footer-hero {
        padding: 3rem 1.25rem 13.5rem;
    }

    .hr-quote-line    { font-size: clamp(1.7rem, 12vw, 2.2rem); }
    .hr-contact-label { font-size: clamp(1.7rem, 13vw, 2.2rem); }

    .hr-footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem 0.4rem;
    }

    .hr-footer-heading { font-size: 0.75rem; letter-spacing: 0.08em; }
    .hr-footer-list a  { font-size: 0.75rem; }
}
/* ========================================
   Mobile Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hr-header-container { padding: 0.875rem 1.5rem; }
    .hr-features-container { grid-template-columns: 1fr; gap: 2rem; padding: 0 1rem; }
    .hr-features-sidebar { position: static; margin-bottom: 1rem; }
    .hr-features-content { margin-top: 0; min-height: auto; }
    .hr-feature-detail.active { grid-template-columns: 1fr; gap: 1.5rem; }
    .hr-feature-info { padding-right: 0; }
    .hr-cta-container { grid-template-columns: 1fr; gap: 2rem; }
    .hr-cta-visual { display: none; }
}

@media (max-width: 768px) {
    .hr-features-section { padding: 0; overflow: hidden; max-width: 100vw; }
    .hr-features-container { padding: 0; overflow: hidden; width: 100%; }
    .hr-features-sidebar { position: sticky; top: 70px; background: var(--bg-page); z-index: 100; padding: 1rem 0 0.5rem; margin-bottom: 1.5rem; overflow: hidden; width: 100%; max-width: 100vw; }
    .hr-section-title { font-size: 1.75rem; margin-bottom: 1rem; padding: 0 1rem; }
    .hr-feature-filters { flex-direction: row; overflow-x: auto; overflow-y: hidden; gap: 0.75rem; padding: 0 1rem 0.5rem; scrollbar-width: none; -ms-overflow-style: none; width: 100%; max-width: 100vw; box-sizing: border-box; }
    .hr-feature-filters::-webkit-scrollbar { display: none; }
    .hr-feature-filter { flex-shrink: 0; min-width: 140px; padding: 1rem; gap: 0.5rem; }
    .hr-filter-icon { font-size: 1.5rem; min-width: auto; }
    .hr-feature-filter h3 { font-size: 0.95rem; white-space: nowrap; }
    .hr-feature-filter p { display: none; }
    .hr-features-content { padding: 0 1rem; overflow: hidden; width: 100%; max-width: 100%; box-sizing: border-box; }
    .hr-feature-image { padding: 1rem; overflow: hidden; width: 100%; max-width: 100%; box-sizing: border-box; }
    .hr-mock-interface { width: 100%; max-width: 100%; overflow: hidden; box-sizing: border-box; }
    .hr-interface-body { padding: 1rem; overflow: hidden; }
    .hr-feature-detail.active { grid-template-columns: 1fr; gap: 1.5rem; width: 100%; overflow: hidden; box-sizing: border-box; }
    .hr-feature-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
    .hr-feature-info p { font-size: 0.95rem; margin-bottom: 1.25rem; }
    .hr-feature-list { gap: 0.75rem; }
    .hr-feature-list li { font-size: 0.9rem; padding-left: 1.5rem; }
    .hr-analytics-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .hr-payment-card { width: 100%; box-sizing: border-box; }
    .hr-integration-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .hr-security-status { grid-template-columns: 1fr; gap: 0.75rem; }

    .hr-services-carousel-section { padding: 2rem 0; }
    .hr-services-carousel-wrapper { padding: 0; }
    .hr-carousel-container { margin-bottom: 1.5rem; }
    .hr-carousel-slide { padding: 1.5rem 1rem; }
    .hr-slide-content-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
    .hr-slide-text-section { padding-right: 0; }
    .hr-slide-icon { width: 56px; height: 56px; margin-bottom: 1rem; }
    .hr-slide-heading { font-size: 1.5rem; margin-bottom: 1.5rem; }
    .hr-slide-meta { gap: 0.75rem; }
    .hr-slide-avatar { width: 44px; height: 44px; font-size: 0.95rem; }
    .hr-author-name { font-size: 0.95rem; }
    .hr-author-role { font-size: 0.8rem; }
    .hr-slide-image-section { padding: 1rem; }
    .hr-service-image { max-height: 200px; }

    .hr-carousel-bottom-nav {  gap: 0.75rem; padding: 0 1rem; width: 100%; max-width: 100vw; overflow: hidden; }
    .hr-nav-controls { gap: 0.75rem; width: auto; flex-wrap: nowrap; overflow-x: visible; }


    .hr-how-it-works-section { padding: 2rem 0; }
    .hr-works-container { padding: 0 1rem; }
    .hr-works-header { margin-bottom: 2rem; }
    .hr-works-title { font-size: 2rem; margin-bottom: 0.75rem; }
    .hr-works-subtitle { font-size: 1rem; }
    .hr-journey-wrapper { padding: 1.5rem 0; }
    .hr-progress-track { display: block; top: 0; bottom: 0; left: 32px; right: auto; width: 2px; height: 100%; }
    .hr-progress-line { width: 2px; height: 0%; }
    .hr-progress-line.hr-animated { width: 2px; height: 100%; transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1); }
    .hr-journey-steps { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .hr-journey-step { flex-direction: row; align-items: flex-start; min-width: 100%; margin-bottom: 0; gap: 1rem; }
    .hr-step-marker { width: 64px; height: 64px; margin-bottom: 0; flex-shrink: 0; }
    .hr-marker-dot { width: 64px; height: 64px; }
    .hr-marker-pulse { width: 64px; height: 64px; }
    .hr-step-content { text-align: left; flex: 1; }
    .hr-step-number { font-size: 0.8rem; margin-bottom: 0.5rem; }
    .hr-step-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
    .hr-step-description { font-size: 0.875rem; max-width: 100%; }
    .hr-step-detail { position: static; transform: none; width: 100%; margin-top: 1rem; opacity: 1; visibility: visible; }
    .hr-detail-card { padding: 1rem; }
    .hr-detail-heading { font-size: 1rem; margin-bottom: 0.75rem; }
    .hr-detail-time { padding: 0.5rem; font-size: 0.85rem; }
    .hr-step-arrow { display: none; }
    .hr-works-cta { margin-top: 2rem; }
    .hr-works-button { padding: 1rem 2rem; font-size: 1rem; }

    .hr-advantages-section { padding: 2rem 1rem; }
    .hr-advantages-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .hr-advantage-card { padding: 1.5rem; }
    .hr-advantage-icon { width: 50px; height: 50px; font-size: 22px; margin-bottom: 1rem; }
    .hr-advantage-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
    .hr-advantage-card p { font-size: 0.9rem; margin-bottom: 1rem; }
    .hr-advantage-stat { margin-top: 1.5rem; padding-top: 1rem; }
    .hr-stat-number { font-size: 2rem; }
    .hr-stat-label { font-size: 0.8rem; }

    .hr-b2b-services-section { padding: 2rem 1rem; }
    .hr-b2b-header { margin-bottom: 2rem; }
    .hr-b2b-title { font-size: 2rem; margin-bottom: 0.75rem; }
    .hr-b2b-subtitle { font-size: 1rem; }
    .hr-service-panels { grid-template-columns: 1fr; gap: 1.5rem; }
    .hr-panel-content { padding: 1.5rem; }
    .hr-panel-header { margin-bottom: 1.5rem; padding-bottom: 1rem; }
    .hr-panel-icon { width: 52px; height: 52px; margin-bottom: 1rem; }
    .hr-panel-title { font-size: 1.5rem; }
    .hr-panel-subtitle { font-size: 0.875rem; }
    .hr-stats-overview { grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
    .hr-stat-item { padding: 1rem; }
    .hr-stat-value { font-size: 1.25rem; }
    .hr-mini-chart { padding: 1rem; margin-bottom: 1.25rem; }
    .hr-chart-visual { height: 50px; }
    .hr-features-list { gap: 0.875rem; margin-bottom: 1.25rem; }
    .hr-feature-item { padding: 0.875rem; }
    .hr-feature-icon { width: 28px; height: 28px; }
    .hr-feature-name { font-size: 0.875rem; }
    .hr-feature-desc { font-size: 0.8rem; }
    .hr-panel-cta { padding: 0.875rem 1.25rem; font-size: 0.9rem; }

    .hr-testimonials-section { padding: 2rem 0; }
    .hr-testimonials-container { padding: 0; }
    .hr-testimonials-header { margin-bottom: 2rem; padding: 0 1rem; }
    .hr-testimonials-title { font-size: 2rem; margin-bottom: 0.75rem; }
    .hr-businesses-count { font-size: 1.125rem; }
    .hr-testimonials-scroll-wrapper { margin-bottom: 1rem; }
    .hr-testimonials-track { gap: 1rem; padding: 0.5rem 1rem; }
    .hr-testimonial-card { min-width: 260px; max-width: 260px; }
    .hr-testimonial-image { height: 300px; }
    .hr-testimonial-info { padding: 1rem; }
    .hr-testimonial-name { font-size: 1.125rem; margin-bottom: 0.25rem; }
    .hr-testimonial-role { font-size: 0.85rem; }
    .hr-testimonial-quote { padding: 1.5rem; }
    .hr-quote-content p { font-size: 0.95rem; }

    .hr-cta-section { padding: 2rem 1rem; }
    .hr-cta-container { gap: 2rem; }
    .hr-cta-title { font-size: 2rem; margin-bottom: 1rem; }
    .hr-cta-description { font-size: 1rem; margin-bottom: 1.5rem; }
    .hr-cta-buttons { flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
    .hr-cta-primary, .hr-cta-secondary { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 1rem; }
    .hr-cta-features { gap: 0.75rem; }
    .hr-cta-feature { font-size: 0.9rem; }
}


@media (max-width: 480px) {
    .hr-section-title { font-size: 1.5rem; }
    .hr-feature-filter { min-width: 120px; padding: 0.875rem; }
    .hr-filter-icon { font-size: 1.25rem; }
    .hr-feature-filter h3 { font-size: 0.875rem; }
    .hr-carousel-slide { padding: 1.25rem 0.75rem; }
    .hr-slide-heading { font-size: 1.25rem; margin-bottom: 1.25rem; }
    .hr-service-image { max-height: 180px; }
    .hr-works-title { font-size: 1.75rem; }
    .hr-step-marker { width: 56px; height: 56px; }
    .hr-marker-dot { width: 56px; height: 56px; }
    .hr-step-title { font-size: 1.125rem; }
    .hr-step-description { font-size: 0.8rem; }
    .hr-advantage-icon { width: 44px; height: 44px; font-size: 20px; }
    .hr-advantage-card h3 { font-size: 1.125rem; }
    .hr-stat-number { font-size: 1.75rem; }
    .hr-b2b-title { font-size: 1.75rem; }
    .hr-panel-title { font-size: 1.25rem; }
    .hr-testimonials-title { font-size: 1.75rem; }
    .hr-testimonial-card { min-width: 240px; max-width: 240px; }
    .hr-testimonial-image { height: 280px; }
    .hr-cta-title { font-size: 1.75rem; }
    .hr-footer-logo h2 { font-size: 1.5rem;
    
    }
}



@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
