/* ══════════════════════════════════════════════
   CLEANOVA — PROFESSIONAL WHITE & GREEN EDITION
   Clean · Modern · Premium · Responsive
══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
    /* Brand */
    --green-900: #052e16;
    --green-800: #14532d;
    --green-700: #15803d;
    --green-600: #16a34a;
    --green-500: #22c55e;
    --green-400: #4ade80;
    --green-100: #dcfce7;
    --green-50: #f0fdf4;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;

    /* Typography */
    --font: 'Hind Siliguri', system-ui, sans-serif;

    /* Shadows */
    --sh-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --sh-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
    --sh-lg: 0 20px 60px rgba(0, 0, 0, .10), 0 8px 24px rgba(0, 0, 0, .06);
    --sh-green: 0 8px 32px rgba(34, 197, 94, .25);

    /* Transition */
    --ease: .25s cubic-bezier(.4, 0, .2, 1);
    --spring: .5s cubic-bezier(.34, 1.56, .64, 1);

    /* Border radius */
    --r-sm: 10px;
    --r: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 999px;

    /* Spacing */
    --section-pad: 7rem 0;
    --container: min(1160px, 90vw);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font);
    cursor: pointer;
}

strong {
    color: var(--gray-900);
    font-weight: 700;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--green-400);
    border-radius: 10px;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--green-700);
    color: rgba(255, 255, 255, .9);
    text-align: center;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .2px;
    padding: .6rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    flex-wrap: wrap;
}

.topbar i {
    color: var(--green-200, #bbf7d0);
}

.topbar a {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    transition: opacity var(--ease);
}

.topbar a:hover {
    opacity: .7;
}

/* ── CANVAS ── */
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .5;
}

/* ── PROGRESS BAR ── */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--green-600), var(--green-400));
    z-index: 9999;
    transition: width .1s linear;
    box-shadow: 0 0 10px rgba(34, 197, 94, .5);
    border-radius: 0 3px 3px 0;
}

/* ── NAVBAR ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 800;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--gray-200);
    height: 66px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 min(5%, 3rem);
    transition: var(--ease);
}

.nav.scrolled {
    box-shadow: var(--sh-md);
    background: rgba(255, 255, 255, .97);
    height: 60px;
}

.nav-logo img {
    height: 38px;
    width: auto;
    transition: transform var(--ease);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-left: auto;
}

.nav-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-500);
    position: relative;
    padding: 4px 0;
    transition: color var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-500);
    border-radius: 2px;
    transition: width var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-700);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-end {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.nav-wa {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-50);
    border: 1.5px solid var(--green-200, #bbf7d0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    font-size: 1.1rem;
    transition: var(--ease);
}

.nav-wa:hover {
    background: var(--green-500);
    color: #fff;
    border-color: var(--green-500);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--green-600);
    color: #fff;
    font-weight: 700;
    font-size: .86rem;
    padding: .52rem 1.3rem;
    border-radius: var(--r-full);
    transition: var(--ease);
    box-shadow: 0 2px 12px rgba(22, 163, 74, .3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .22) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: .5s;
}

.nav-cta:hover {
    background: var(--green-700);
    box-shadow: var(--sh-green);
    transform: translateY(-1px);
}

.nav-cta:hover::after {
    transform: translateX(100%);
}

.nav-burger {
    display: none;
    background: none;
    border: 1px solid var(--gray-200);
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    color: var(--gray-700);
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    transition: var(--ease);
}

.nav-burger:hover {
    background: var(--gray-100);
}

/* Mobile nav */
.nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 2rem 5%;
    gap: 0;
    align-items: stretch;
    z-index: 799;
    overflow-y: auto;
}

.nav-menu.open .nav-link {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.nav-menu.open .nav-link::after {
    display: none;
}

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(34, 197, 94, .07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(22, 163, 74, .05) 0%, transparent 70%),
        var(--white);
    padding: 5rem min(5%, 3rem) 4rem;
    min-height: min(90vh, 780px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    padding: .35rem .9rem;
    border-radius: var(--r-full);
    margin-bottom: 1.4rem;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
    animation: dot 2s ease infinite;
}

@keyframes dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .3;
        transform: scale(.5);
    }
}

.hero-text h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1.3rem;
}

.text-brand {
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-500);
    max-width: 480px;
    margin-bottom: 2.2rem;
}

.hero-btns {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--green-600);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .8rem 2rem;
    border-radius: var(--r-full);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(22, 163, 74, .3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .22) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: .5s;
}

.btn-primary:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--sh-green);
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary i {
    transition: transform var(--ease);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--green-700);
    font-weight: 700;
    font-size: .95rem;
    padding: .8rem 1.8rem;
    border-radius: var(--r-full);
    border: 1.5px solid var(--green-200, #bbf7d0);
    background: transparent;
    transition: var(--ease);
}

.btn-ghost:hover {
    background: var(--green-50);
    border-color: var(--green-500);
    transform: translateY(-2px);
}

/* Trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--gray-500);
}

.trust-item i {
    color: var(--green-500);
}

.trust-sep {
    width: 1px;
    height: 1.2rem;
    background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card-stack {
    position: relative;
    width: 340px;
    height: 380px;
}

.hcard {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--sh-md);
    width: 240px;
    animation: float 6s ease-in-out infinite;
}

.hcard strong {
    display: block;
    font-size: .9rem;
    color: var(--gray-900);
}

.hcard span {
    display: block;
    font-size: .75rem;
    color: var(--gray-500);
    margin-top: .1rem;
}

.hcard-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.hcard-badge {
    position: absolute;
    top: -10px;
    right: .8rem;
    background: var(--green-500);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .5px;
    padding: .2rem .55rem;
    border-radius: var(--r-full);
}

.hcard-1 {
    top: 0;
    left: 20px;
    animation-delay: 0s;
}

.hcard-2 {
    top: 130px;
    left: 80px;
    animation-delay: 2s;
    z-index: 1;
}

.hcard-3 {
    top: 250px;
    left: 30px;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-stat-pill {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-full);
    padding: .45rem 1rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-700);
    box-shadow: var(--sh-sm);
}

.hero-stat-1 {
    bottom: 60px;
    right: -10px;
}

.hero-stat-2 {
    top: 40px;
    right: 0;
}

.hero-scroll-cue {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--green-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }
}

/* ── STATS ROW ── */
.stats-row {
    background: var(--green-700);
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.stat-block {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    gap: .3rem;
    border-right: 1px solid rgba(255, 255, 255, .15);
    transition: background var(--ease);
}

.stat-block:last-child {
    border-right: none;
}

.stat-block:hover {
    background: rgba(255, 255, 255, .07);
}

.stat-block strong {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    Letter-spacing: -1px;
}

.stat-block span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
}

.stat-divider {
    display: none;
}

/* ── SECTION BASICS ── */
.section {
    padding: var(--section-pad);
}

.section>* {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -.6px;
    line-height: 1.2;
    margin-bottom: .7rem;
}

.section-head p {
    color: var(--gray-500);
    font-size: .97rem;
}

/* Labels */
.label {
    display: inline-flex;
    align-items: center;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    padding: .3rem .85rem;
    border-radius: var(--r-full);
    margin-bottom: .9rem;
}

.label-light {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
    border-color: rgba(255, 255, 255, .2);
}

/* ── BG TINT ── */
.bg-tint {
    background: var(--gray-50);
}

/* ── WHY SECTION ── */
.why {
    padding: var(--section-pad);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: var(--container);
    margin: 0 auto;
}

.why-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -.5px;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.why-left p {
    color: var(--gray-500);
    font-size: .97rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.why-left p:last-of-type {
    margin-bottom: 2rem;
}

.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.why-feat {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r);
    padding: 1.3rem;
    transition: var(--ease);
}

.why-feat:hover {
    border-color: var(--green-200, #bbf7d0);
    box-shadow: var(--sh-sm);
    transform: translateY(-3px);
}

.wf-ico {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--spring);
}

.why-feat:hover .wf-ico {
    transform: scale(1.1) rotate(-5deg);
}

.why-feat h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .3rem;
}

.why-feat p {
    font-size: .8rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── PRODUCTS ── */
.products {
    padding: var(--section-pad);
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: var(--container);
    margin: 0 auto;
}

.prod-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    transform: translateY(-8px);
    border-color: var(--green-200, #bbf7d0);
    box-shadow: var(--sh-lg);
}

.prod-visual {
    height: 148px;
    background: linear-gradient(135deg, var(--g1, #d1fae5), var(--g2, #a7f3d0));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.8rem;
    position: relative;
    overflow: hidden;
    transition: var(--ease);
}

.prod-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: .6s;
}

.prod-card:hover .prod-visual::after {
    transform: translateX(100%);
}

.prod-tag {
    position: absolute;
    top: .7rem;
    right: .7rem;
    background: var(--green-600);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .4px;
    padding: .2rem .6rem;
    border-radius: var(--r-full);
}

.prod-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.prod-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.prod-info p {
    font-size: .84rem;
    color: var(--gray-500);
    line-height: 1.75;
    flex: 1;
}

.prod-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.prod-points li {
    font-size: .8rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.prod-points li::before {
    content: '✓';
    color: var(--green-500);
    font-weight: 900;
    font-size: .85rem;
}

.prod-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    align-self: flex-start;
    font-size: .84rem;
    font-weight: 700;
    color: var(--green-700);
    border: 1.5px solid var(--green-200, #bbf7d0);
    padding: .5rem 1.2rem;
    border-radius: var(--r-full);
    transition: var(--ease);
    background: transparent;
}

.prod-btn i {
    transition: transform var(--ease);
}

.prod-btn:hover {
    background: var(--green-600);
    color: #fff;
    border-color: var(--green-600);
}

.prod-btn:hover i {
    transform: translateX(4px);
}

/* ── GUARANTEE ── */
.guarantee {
    background: var(--green-700);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 70% at 0% 50%, rgba(255, 255, 255, .04), transparent 60%),
        radial-gradient(ellipse 50% 60% at 100% 50%, rgba(255, 255, 255, .04), transparent 60%);
}

.guarantee-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.g-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.5px;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.g-content>p {
    color: rgba(255, 255, 255, .8);
    font-size: .97rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.g-promise {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.g-promise i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.g-promise h4 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .25rem;
}

.g-promise p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
}

/* Quote Box */
.g-quote-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.g-quote-icon {
    font-size: 2rem;
    color: var(--green-300, #86efac);
    margin-bottom: 1.2rem;
}

.g-quote-box>p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.8rem;
}

.g-cite {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.5rem;
}

.g-cite-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.g-cite strong {
    display: block;
    color: #fff;
    font-size: .9rem;
}

.g-cite span {
    display: block;
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
}

.g-badges {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

.g-badges span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .85);
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem .9rem;
    border-radius: var(--r-full);
}

.g-badges i {
    color: var(--green-300, #86efac);
}

/* ── TEAM ── */
.team-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    max-width: var(--container);
    margin: 0 auto;
}

.tcard {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
}

.tcard:hover {
    border-color: var(--green-200, #bbf7d0);
    box-shadow: var(--sh-lg);
    transform: translateY(-6px);
}

.tcard-main {
    border-color: var(--green-300, #86efac);
    box-shadow: 0 4px 24px rgba(34, 197, 94, .12);
}

.tcard-av {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--b, var(--green-100));
    color: var(--c, var(--green-700));
    border: 2.5px solid var(--c, var(--green-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    transition: var(--spring);
}

.tcard:hover .tcard-av {
    transform: scale(1.1);
}

.tcard h3 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--gray-900);
}

.tcard-role {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--green-600);
}

.tcard p {
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.tcard-phone {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    color: var(--green-700);
    font-weight: 700;
    font-size: .78rem;
    padding: .4rem 1rem;
    border-radius: var(--r-full);
    transition: var(--ease);
    margin-top: .3rem;
}

.tcard-phone:hover {
    background: var(--green-600);
    color: #fff;
    border-color: var(--green-600);
}

/* ── CONTACT ── */
.contact {
    padding: var(--section-pad);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    max-width: var(--container);
    margin: 0 auto;
    align-items: start;
}

.contact-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -.5px;
    margin-bottom: .9rem;
}

.contact-left>p {
    color: var(--gray-500);
    font-size: .97rem;
    line-height: 1.85;
    margin-bottom: 2.2rem;
}

.cinfo-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-bottom: 2rem;
}

.cinfo {
    display: flex;
    align-items: center;
    gap: .9rem;
    color: var(--gray-700);
    font-size: .9rem;
}

.cinfo-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    font-size: .95rem;
}

.cinfo a {
    color: var(--gray-700);
    font-weight: 600;
    transition: color var(--ease);
}

.cinfo a:hover {
    color: var(--green-600);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-left: 3px solid var(--green-500);
    border-radius: var(--r);
    padding: 1rem 1.2rem;
}

.contact-note i {
    color: var(--green-600);
    margin-top: .15rem;
    flex-shrink: 0;
}

.contact-note span {
    color: var(--gray-700);
    font-size: .86rem;
    line-height: 1.6;
}

/* Form */
.wform {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-xl);
    padding: 2.2rem;
    box-shadow: var(--sh-md);
    transition: border-color var(--ease);
}

.wform:focus-within {
    border-color: var(--green-300, #86efac);
    box-shadow: 0 6px 30px rgba(34, 197, 94, .1);
}

.wform-head {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.wform-logo {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    flex-shrink: 0;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
}

.wform-head h3 {
    color: var(--gray-900);
    font-size: 1rem;
    font-weight: 700;
}

.wform-head p {
    color: var(--gray-500);
    font-size: .78rem;
}

.fld {
    margin-bottom: 1.1rem;
}

.fld label {
    display: block;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: .5rem;
}

.fld input,
.fld textarea {
    width: 100%;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-sm);
    padding: .8rem 1rem;
    color: var(--gray-900);
    font-family: var(--font);
    font-size: .9rem;
    transition: var(--ease);
    resize: none;
}

.fld input::placeholder,
.fld textarea::placeholder {
    color: var(--gray-300);
}

.fld input:focus,
.fld textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, .15);
}

.wform-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: #25D366;
    color: #fff;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 700;
    padding: .95rem;
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: var(--ease);
    box-shadow: 0 4px 18px rgba(37, 211, 102, .3);
    position: relative;
    overflow: hidden;
}

.wform-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: .55s;
}

.wform-btn:hover {
    background: #20bc5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .4);
}

.wform-btn:hover::after {
    transform: translateX(100%);
}

.wform-note {
    text-align: center;
    color: var(--gray-400, #94a3b8);
    font-size: .74rem;
    margin-top: .8rem;
}

/* ── FOOTER ── */
.footer {
    background: var(--gray-900);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4rem;
    padding: 4.5rem min(5%, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

.footer-logo {
    height: 34px;
    width: auto;
    filter: brightness(10);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: .85rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .45);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h5 {
    color: rgba(255, 255, 255, .7);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-col a,
.footer-col span {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: rgba(255, 255, 255, .45);
    font-size: .86rem;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: color var(--ease), padding-left var(--ease);
}

.footer-col a i {
    color: var(--green-500);
    width: 14px;
}

.footer-col a:hover {
    color: var(--green-400);
    padding-left: .4rem;
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    padding: 1.2rem min(5%, 3rem);
    font-size: .76rem;
    color: rgba(255, 255, 255, .3);
    text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
    .hero-body {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p,
    .hero-btns,
    .hero-trust {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .why-layout {
        grid-template-columns: 1fr;
    }

    .why-left {
        text-align: center;
    }

    .why-left p:last-of-type>a {
        display: inline-flex;
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-body {
        grid-template-columns: 1fr;
    }

    .team-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:768px) {
    :root {
        --section-pad: 5rem 0;
    }

    .nav-menu:not(.open) {
        display: none;
    }

    .nav-burger {
        display: inline-flex;
    }

    .nav-cta {
        display: none;
    }

    .why-right {
        grid-template-columns: 1fr;
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-block {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .stat-block:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .15);
    }

    .team-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width:520px) {

    .section,
    .guarantee,
    .contact {
        padding-left: 4%;
        padding-right: 4%;
    }

    .section>*,
    .guarantee-body,
    .contact-inner,
    .prod-grid,
    .team-row,
    .footer-main {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .nav {
        padding: 0 4%;
    }

    .prod-grid {
        grid-template-columns: 1fr;
    }

    .team-row {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-ghost {
        justify-content: center;
    }

    .stat-block {
        flex: 0 0 50%;
    }
}