/* ============================================
   APRO HYGIÈNE — STYLE
   Font: Parkinsans
   Brand: Teal #1FA9B8  /  Navy #2C3E50
   ============================================ */

:root {
    --teal: #1FA9B8;
    --teal-dark: #178A97;
    --teal-light: #E6F7F9;
    --teal-soft: #F2FAFB;
    --navy: #2C3E50;
    --navy-dark: #1F2D3D;
    --navy-light: #4A5E73;
    --text: #2C3E50;
    --muted: #6B7B8C;
    --line: #E6EAEF;
    --bg: #FFFFFF;
    --bg-soft: #F7F9FB;
    --bg-cream: #FAFAF7;
    --accent: #F5A623;
    --shadow-sm: 0 4px 14px rgba(44, 62, 80, 0.06);
    --shadow-md: 0 12px 32px rgba(44, 62, 80, 0.08);
    --shadow-lg: 0 24px 60px rgba(44, 62, 80, 0.12);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1240px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Parkinsans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
    font-family: 'Parkinsans', sans-serif;
    color: var(--navy);
}

h1, h2 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3, h4, h5 {
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.accent { color: var(--teal); }
.accent-light { color: #B6E7ED; }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    padding: 6px 14px;
    background: var(--teal-light);
    border-radius: 50px;
    margin-bottom: 18px;
}
.eyebrow-light {
    background: rgba(255, 255, 255, 0.12);
    color: #B6E7ED;
}

/* ============ SECTION HEAD ============ */
.section-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 60px;
}
.section-head p {
    color: var(--muted);
    margin-top: 16px;
    font-size: 1.05rem;
}
.section-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    max-width: none;
    gap: 24px;
    flex-wrap: wrap;
}
.section-head-row h2 { margin-top: 8px; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 8px 22px rgba(31, 169, 184, 0.32);
}
.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31, 169, 184, 0.4);
}
.btn-dark {
    background: var(--navy);
    color: #fff;
}
.btn-dark:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}
.btn-light {
    background: #fff;
    color: var(--navy);
}
.btn-light:hover {
    background: var(--bg-soft);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--line);
}
.btn-outline:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.btn-block { width: 100%; }
.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32);
}
.btn-whatsapp:hover { background: #1ebd5a; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4); }

/* ============ TOPBAR ============ */
.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.83rem;
    padding: 10px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar a:hover { color: var(--teal); }
.topbar .sep {
    opacity: 0.4;
    margin: 0 12px;
}
.topbar i { margin-right: 6px; color: var(--teal); }
.socials {
    display: inline-flex;
    gap: 10px;
    margin-left: 8px;
}
.socials a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}
.socials a:hover {
    background: var(--teal);
    color: #fff !important;
    transform: translateY(-2px);
}

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 32px;
}
.logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}
.nav {
    display: flex;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--teal);
    background: var(--teal-light);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.phone-pill {
    display: flex;
    align-items: center;
    gap: 12px;
}
.phone-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.phone-text small { font-size: 0.72rem; color: var(--muted); }
.phone-text strong { font-size: 0.95rem; color: var(--navy); font-weight: 700; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ HERO ============ */
/* ================ HERO SLIDER ================ */
.hero.hero-slider {
    position: relative;
    min-height: 88vh;
    padding: 0;
    overflow: hidden;
    display: block;
    background: var(--navy-dark);
}
.slider {
    position: relative;
    width: 100%;
    height: 88vh;
    min-height: 560px;
    overflow: hidden;
}
.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 0s linear 1s;
    z-index: 0;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transition: opacity 1s ease, visibility 0s linear 0s;
}
/* Ken Burns zoom applied to the background layer only —
   keeps titles, buttons and controls perfectly steady. */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 8s ease-out;
    z-index: 0;
    will-change: transform;
}
.slide.active .slide-bg {
    transform: scale(1);
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(31, 45, 61, 0.55) 0%, rgba(31, 45, 61, 0.85) 100%),
        linear-gradient(90deg, rgba(31, 45, 61, 0.75) 0%, rgba(31, 45, 61, 0.35) 60%, rgba(31, 45, 61, 0.55) 100%);
    z-index: 1;
}
.slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 88vh;
}
.slide-content {
    max-width: 780px;
    color: #fff;
    padding: 60px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}
.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}
/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}
.dot {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.dot:hover { background: rgba(255, 255, 255, 0.6); }
.dot.active {
    background: var(--teal);
    width: 60px;
}

/* Auto-advance progress bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 5;
}
.slider-progress span {
    display: block;
    height: 100%;
    background: var(--teal);
    width: 0%;
    transition: width 0.15s linear;
}
.hero-title {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero-title .accent { color: var(--teal); }
.hero-sub {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    max-width: 640px;
    margin: 0 0 40px 0;
    line-height: 1.65;
}
.hero-actions {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-ghost i { color: var(--teal); }
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.field input, .field select, .field textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.92rem;
    background: #fff;
    color: var(--text);
    transition: var(--transition);
    outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px var(--teal-light);
}
.hero-form .btn { margin-top: 8px; }

/* ============ WHY CHOOSE US ============ */
.why-us {
    position: relative;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}
.why-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.why-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
.why-bubble-1 {
    width: 320px;
    height: 320px;
    top: -120px;
    left: 8%;
}
.why-bubble-2 {
    width: 220px;
    height: 220px;
    top: 30%;
    right: 6%;
    background: rgba(255, 255, 255, 0.04);
}
.why-bubble-3 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: 40%;
    background: rgba(255, 255, 255, 0.05);
}

.why-head {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.why-head .eyebrow-light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.why-head h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    margin-top: 16px;
}
.accent-soft { color: #F5E07A; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.why-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
}
.why-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 26px;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: var(--teal);
    color: #fff;
    transform: scale(1.08);
}
.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--navy);
    line-height: 1.25;
}
.why-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ============ ABOUT ============ */
.about { padding: 110px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text > p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}
.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: var(--transition);
}
.feature-item:hover {
    border-color: var(--teal);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}
.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.feature-item h4 { margin-bottom: 4px; color: var(--navy); }
.feature-item p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.about-visual {
    position: relative;
}
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-img-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}
.about-floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #fff;
    padding: 18px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--line);
}
.about-floating-card .rating {
    color: var(--accent);
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.about-floating-card strong {
    display: block;
    font-size: 1.5rem;
    color: var(--navy);
    line-height: 1;
}
.about-floating-card span {
    font-size: 0.78rem;
    color: var(--muted);
}
.about-floating-pill {
    position: absolute;
    top: 30px;
    right: -16px;
    background: var(--teal);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 12px 30px rgba(31, 169, 184, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============ CATEGORIES ============ */
.categories {
    padding: 110px 0;
    background: var(--bg-soft);
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cat-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}
.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}
.cat-img {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}
.cat-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.cat-body h3 { font-size: 1.15rem; }
.cat-body p {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0;
    flex: 1;
}
.cat-count {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--teal);
    font-weight: 600;
    padding: 4px 10px;
    background: var(--teal-light);
    border-radius: 50px;
    align-self: flex-start;
}
.cat-link {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    margin-top: 4px;
}
.cat-card:hover .cat-link { color: var(--teal); gap: 10px; }

.cat-card-cta {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: #fff;
    border: none;
}
.cat-card-cta:hover { transform: translateY(-8px); }
.cta-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 14px;
}
.cta-card-content h3 { color: #fff; font-size: 1.4rem; }
.cta-card-content p { color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; }
.cta-card-content ul { list-style: none; }
.cta-card-content ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    padding: 4px 0;
}
.cta-card-content ul li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}
.cta-card-content .btn { margin-top: auto; }

/* ============ BENEFITS BAND ============ */
.benefits-band {
    padding: 40px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.benefit-pill {
    background: #fff;
    padding: 20px 26px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line);
    transition: var(--transition);
}
.benefit-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.benefit-pill i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.benefit-pill div { display: flex; flex-direction: column; line-height: 1.3; }
.benefit-pill strong { color: var(--navy); font-size: 1rem; }
.benefit-pill span { color: var(--muted); font-size: 0.85rem; }
.benefit-pill-dark {
    background: var(--navy);
    border-color: var(--navy);
}
.benefit-pill-dark strong { color: #fff; }
.benefit-pill-dark span { color: rgba(255, 255, 255, 0.7); }
.benefit-pill-dark i { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* ============ PRODUCTS ============ */
.products { padding: 110px 0; }
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.prod-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.prod-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}
.prod-img {
    position: relative;
    height: 240px;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.prod-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--navy);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}
.prod-tag.tag-new { background: var(--teal); }
.prod-tag.tag-promo { background: var(--accent); }
.prod-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.prod-cat {
    font-size: 0.75rem;
    color: var(--teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.prod-body h3 {
    font-size: 1rem;
    line-height: 1.35;
}
.prod-body p {
    color: var(--muted);
    font-size: 0.85rem;
    flex: 1;
}
.prod-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
}
.prod-price {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}
.prod-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.prod-btn:hover {
    background: var(--teal);
    color: #fff;
    transform: rotate(-45deg);
}

/* ============ HOW IT WORKS ============ */
.how {
    padding: 110px 0;
    background: var(--bg-soft);
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
.how-grid::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--teal) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.how-step {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--line);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.how-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.25);
}
.how-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 12px auto 22px;
}
.how-step h3 { margin-bottom: 10px; }
.how-step p { color: var(--muted); font-size: 0.92rem; }

/* ============ SECTORS ============ */
.sectors { padding: 110px 0; }
.sector-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
}
.sector-card {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.sector-card:hover {
    border-color: var(--teal);
    background: var(--teal);
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(31, 169, 184, 0.25);
}
.sector-card i {
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 12px;
    display: block;
    transition: var(--transition);
}
.sector-card:hover i { color: #fff; }
.sector-card span {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    transition: var(--transition);
}
.sector-card:hover span { color: #fff; }

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(31, 169, 184, 0.1);
    filter: blur(80px);
}
.testimonials-top {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}
.testimonials-top-img {
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
}
.testimonials-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonials-top-text h2 { color: #fff; margin-bottom: 16px; }
.testimonials-top-text p { color: rgba(255, 255, 255, 0.75); }
.testimonials-brands {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.testimonials-brands span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

.testimonials-rating-card {
    background: #fff;
    color: var(--navy);
    border-radius: var(--radius);
    padding: 28px 40px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto -40px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}
.rating-big {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.testimonials-rating-card strong {
    display: block;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.testimonials-rating-card span {
    font-size: 0.88rem;
    color: var(--muted);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 60px;
}
.testimonial {
    background: #fff;
    color: var(--text);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.testimonial .rating {
    color: var(--accent);
    margin-bottom: 14px;
    font-size: 0.9rem;
}
.testimonial p {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.ta-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.testimonial-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--navy);
}
.testimonial-author span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ============ CONTACT ============ */
.contact {
    padding: 110px 0;
    background: var(--bg-soft);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contact-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 580px;
    box-shadow: var(--shadow-lg);
}
.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-stats {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.cs-item {
    text-align: center;
    border-right: 1px solid var(--line);
}
.cs-item:last-child { border-right: none; }
.cs-item strong {
    display: block;
    font-size: 1.8rem;
    color: var(--teal);
    font-weight: 800;
    line-height: 1;
}
.cs-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 6px;
}

.contact-form-wrap {
    background: #fff;
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.contact-form-wrap h2 { margin-bottom: 12px; }
.contact-form-wrap > p {
    color: var(--muted);
    margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 6px;
}
.contact-note i { color: var(--teal); }

/* ============ FAQ ============ */
.faq { padding: 110px 0; }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open], .faq-item:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] summary i { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-item p {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ============ LOCATION ============ */
.location { padding: 110px 0; background: var(--bg-soft); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.location-info h2 { margin-bottom: 16px; }
.location-info > p { color: var(--muted); margin-bottom: 32px; }
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}
.ci-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ci-item strong {
    display: block;
    color: var(--navy);
    margin-bottom: 2px;
}
.ci-item span, .ci-item a {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}
.ci-item a:hover { color: var(--teal); }

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 480px;
    border: 1px solid var(--line);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============ NEWSLETTER ============ */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: #fff;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.newsletter h3 { color: #fff; margin-bottom: 6px; }
.newsletter p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 480px;
    min-width: 280px;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}
.newsletter-form .btn {
    background: var(--navy);
    box-shadow: none;
}
.newsletter-form .btn:hover { background: var(--navy-dark); }

/* ============ FOOTER ============ */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
    background: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    height: 72px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 0.92rem;
    margin-bottom: 22px;
    line-height: 1.65;
}
.footer-col h4 {
    color: #fff;
    margin-bottom: 22px;
    font-size: 1rem;
    font-weight: 700;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: var(--transition);
}
.footer-col ul a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact-col p {
    font-size: 0.92rem;
    margin-bottom: 12px;
    line-height: 1.55;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.footer-contact-col p i {
    color: var(--teal);
    margin-top: 4px;
    flex-shrink: 0;
}
.footer-contact-col a { color: inherit; }
.footer-contact-col a:hover { color: var(--teal); }
.btn-whats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 8px;
}
.btn-whats:hover { background: #1ebd5a; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--teal); }

/* ============ FLOATING WHATSAPP ============ */
.float-whats {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 99;
    animation: pulse 2.5s infinite;
}
.float-whats:hover { transform: scale(1.1); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============ FADE-IN ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .nav { display: none; }
    .nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--line);
    }
    .hamburger { display: flex; }
    .phone-pill { display: none; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
    .sector-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .topbar { display: none; }
    .hero.hero-slider { min-height: 78vh; }
    .slider { height: 78vh; min-height: 460px; }
    .slide-inner { min-height: 78vh; padding: 0 20px; }
    .slide-content { padding: 60px 0 120px; max-width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .slider-arrow { width: 42px; height: 42px; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
    .slider-dots { bottom: 30px; }
    .dot { width: 30px; }
    .dot.active { width: 44px; }

    .why-us { padding: 70px 0; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-head { margin-bottom: 40px; }

    .about-grid, .contact-grid, .location-grid, .testimonials-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-wrap img, .contact-visual { height: 380px; }
    .cat-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; gap: 50px; }
    .how-grid::before { display: none; }
    .testimonial-grid, .benefits-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about { padding: 70px 0; }
    .categories, .products, .how, .sectors, .testimonials, .contact, .faq, .location { padding: 70px 0; }
    .contact-form-wrap { padding: 28px 22px; }
    .sector-grid { grid-template-columns: repeat(3, 1fr); }
    .section-head { margin-bottom: 40px; }
    .section-head-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .header-inner { padding: 12px 16px; gap: 12px; }
    .logo img { height: 44px; }
    .header-actions .btn { padding: 10px 16px; font-size: 0.85rem; }
    .hero-card { padding: 24px 18px 22px; }
    .cat-grid, .prod-grid, .sector-grid { grid-template-columns: 1fr 1fr; }
    .sector-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .testimonials-brands { gap: 12px; }
    .testimonials-brands span { font-size: 0.72rem; padding: 6px 12px; }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .float-whats { width: 54px; height: 54px; font-size: 1.5rem; bottom: 18px; right: 18px; }
}
