/* ─── RESET & BASE ─────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal: #00C4A7;
    --teal-dark: #00a98e;
    --teal-soft: rgba(0, 196, 167, .08);
    --navy: #1A2B5F;
    --navy-mid: #243470;
    --navy-light: #2f4196;
    --off-white: #F7F9FC;
    --white: #FFFFFF;
    --ink: #0f1624;
    --muted: #6B7A99;
    --border: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(26, 43, 95, .08);
    --shadow-md: 0 8px 32px rgba(26, 43, 95, .12);
    --shadow-lg: 0 24px 64px rgba(26, 43, 95, .16);
    --r: 16px;
    --r-sm: 8px;
    --r-pill: 100px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --t: .3s;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

body.has-cookie-banner {
    --floating-offset: 136px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.18;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t) var(--ease);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 100px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-soft);
    padding: 8px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 20px;
}

.section-tag i {
    font-size: 16px;
}

.section-title {
    font-size: clamp(1.5rem, 2.6vw, 2.05rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.75;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

/* ─── BUTTONS ──────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .9375rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--r-pill);
    transition: all var(--t) var(--ease);
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 16px;
    font-size: .875rem;
}

.btn-teal {
    background: var(--teal);
    color: var(--white);
}

.btn-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 196, 167, .35);
    color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 43, 95, .35);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .5);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .12);
    color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
}

.btn-outline-dark:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.btn-link {
    background: transparent;
    color: var(--teal);
    padding: 0;
    font-size: .9375rem;
}

.btn-link:hover {
    color: var(--teal-dark);
}

/* ─── HEADER ───────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.header.transparent {
    background: transparent;
}

.header.solid {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header-bar {
    background: var(--navy);
    padding: 10px 0;
    font-size: .8125rem;
    color: rgba(255, 255, 255, .7);
}

.header-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-bar a {
    color: rgba(255, 255, 255, .7);
}

.header-bar a:hover {
    color: var(--teal);
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-item i {
    font-size: 16px;
    color: var(--teal);
}

.header-main {
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.logo img {
    height: 34px;
    width: auto;
    transition: opacity .4s var(--ease), transform var(--t) var(--ease);
}

.logo .logo-white {
    position: absolute;
    top: 0;
    left: 0;
}

.header.transparent .logo .logo-dark {
    opacity: 0;
}

.header.transparent .logo .logo-white {
    opacity: 1;
}

.header.solid .logo .logo-dark {
    opacity: 1;
}

.header.solid .logo .logo-white {
    opacity: 0;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .94rem;
    font-weight: 600;
    color: var(--ink);
    padding: 10px 11px;
    border-radius: var(--r-sm);
    transition: all var(--t) var(--ease);
}

.header.transparent .nav-link {
    color: rgba(255, 255, 255, .9);
}

.header.transparent .nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .12);
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
    background: var(--teal-soft);
}

.header.transparent .nav-link:hover,
.header.transparent .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, .12);
}

.nav-link i {
    font-size: 14px;
    transition: transform var(--t) var(--ease);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.header.transparent .nav-item:hover .nav-link,
.header.transparent .nav-item:hover .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, .12);
}

.nav-item:hover .nav-link,
.nav-item:hover .nav-link.active {
    color: var(--teal);
    background: var(--teal-soft);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t) var(--ease);
    border: 1px solid var(--border);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink);
    transition: all var(--t) var(--ease);
}

.dropdown-link:hover {
    background: var(--teal-soft);
    color: var(--teal);
}

.dropdown-icon {
    width: 36px;
    height: 34px;
    background: var(--teal-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-icon i {
    font-size: 18px;
    color: var(--teal);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--off-white);
    border-radius: var(--r-pill);
    padding: 4px;
    height: 42px;
}

.lang-btn {
    padding: 8px 13px;
    font-size: .82rem;
    font-weight: 700;
    border-radius: var(--r-pill);
    color: var(--muted);
    transition: all var(--t) var(--ease);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn.active {
    background: var(--navy);
    color: var(--white);
}

.header-actions .btn-teal {
    height: 40px;
    padding: 0 18px;
    font-size: .9rem;
    display: flex;
    align-items: center;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid rgba(0, 196, 167, .25);
    outline-offset: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 4px;
    transition: all var(--t) var(--ease);
}

.header.transparent .hamburger span {
    background: white;
}

.header.solid .hamburger span {
    background: var(--ink);
}

/* Mobile header fix - solid state on mobile */
@media (max-width: 768px) {
    .header.transparent {
        background: var(--white);
        box-shadow: var(--shadow-sm);
    }

    .header.transparent .hamburger span {
        background: var(--ink);
    }

    .header.transparent .logo .logo-dark {
        opacity: 1;
    }

    .header.transparent .logo .logo-white {
        opacity: 0;
    }
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 890;
    padding: 100px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover {
    color: var(--teal);
}

.mobile-sub {
    padding: 8px 0 4px 20px;
    display: none;
}

.mobile-sub.open {
    display: block;
}

.mobile-sub a {
    display: block;
    padding: 10px 0;
    font-size: .9375rem;
    color: var(--muted);
}

.mobile-sub a:hover {
    color: var(--teal);
}

.mobile-nav-toggle i {
    transition: transform var(--t) var(--ease);
}

.mobile-nav-toggle.active i {
    transform: rotate(180deg);
}

.mobile-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-lang-toggle .lang-btn {
    padding: 10px 20px;
    font-size: .875rem;
    font-weight: 700;
    border-radius: var(--r-pill);
    color: var(--muted);
    background: var(--off-white);
    transition: all var(--t) var(--ease);
}

.mobile-lang-toggle .lang-btn.active {
    background: var(--navy);
    color: var(--white);
}

.mobile-nav-actions {
    margin-top: auto;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ─── HERO SWIPER ──────────────────────────────── */
.hero {
    margin-top: 40px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    height: 100%;
}

.hero-slide {
    min-height: 760px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.hero-slide>.container {
    width: 100%;
    display: flex;
}

.hero-slide-1 {
    background: linear-gradient(130deg, var(--navy) 0%, var(--navy-mid) 55%, #1e3a8a 100%);
}

.hero-slide-2 {
    background: linear-gradient(130deg, #0d4f4a 0%, #0a7a6a 55%, var(--teal-dark) 100%);
}

.hero-slide-3 {
    background: linear-gradient(130deg, #1a1f5f 0%, #2d2b7a 55%, #3b3399 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .08) 1px, transparent 0);
    background-size: 32px 32px;
    z-index: 1;
    pointer-events: none;
}

.hero-slide::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    right: -100px;
    bottom: -100px;
    background: rgba(0, 196, 167, .06);
    border: 1px solid rgba(0, 196, 167, .08);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    align-items: center;
    width: 100%;
    min-height: 760px;
    padding: 120px 0;
    flex: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-width: 0;
    color: white;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    display: none;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -.02em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.hero-title em {
    font-style: normal;
    color: var(--teal);
}

.hero-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 480px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.hero-stat-label {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
    padding-left: 40px;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-img-main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, .3);
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-float-card {
    display: none;
}

/* Swiper custom */
.hero-swiper .swiper-pagination {
    bottom: 32px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .4);
    opacity: 1;
    transition: all var(--t) var(--ease);
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 5px;
    background: var(--teal);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: white;
    backdrop-filter: blur(6px);
    transition: all var(--t) var(--ease);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: scale(1.05);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

/* ─── TRUST BAR ────────────────────────────────── */
.trust-bar {
    background: var(--off-white);
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 22px;
    color: var(--teal);
}

/* ─── CATEGORIES ───────────────────────────────── */
.categories {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.cat-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    cursor: pointer;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cat-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: .65;
    transition: transform .6s var(--ease), opacity .4s var(--ease);
}

.cat-card:hover .cat-bg {
    transform: scale(1.08);
    opacity: .75;
}

.cat-overlay {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(to top, rgba(10, 20, 50, .9) 0%, rgba(10, 20, 50, .4) 40%, rgba(10, 20, 50, .1) 100%);
}

.cat-body {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.cat-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform var(--t) var(--ease);
}

.cat-card:hover .cat-icon-wrap {
    transform: scale(1.1);
}

.cat-icon-wrap i {
    font-size: 28px;
    color: white;
}

.cat-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.cat-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .9375rem;
    font-weight: 700;
    transition: gap var(--t) var(--ease);
}

.cat-card:hover .cat-link {
    gap: 14px;
}

/* ─── PRODUCTS SWIPER ──────────────────────────── */
.products {
    background: var(--off-white);
}

.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.products-swiper {
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 60px !important;
}

.products-swiper .swiper-pagination {
    bottom: 0;
}

.products-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border);
    opacity: 1;
}

.products-swiper .swiper-pagination-bullet-active {
    background: var(--teal);
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 0 rgba(0, 196, 167, 0);
    transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-img-link {
    display: block;
    cursor: pointer;
}

.product-name-link {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--t) var(--ease);
}

.product-name-link:hover {
    color: var(--teal);
}

.product-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.product-img {
    height: 220px;
    background: linear-gradient(135deg, var(--off-white) 0%, #e2eaf4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-cat {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 8px;
    letter-spacing: .04em;
}

.product-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.4;
    min-height: 3em;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-detail-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--t) var(--ease);
}

.product-detail-btn:hover {
    color: var(--teal);
    gap: 10px;
}

.product-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t) var(--ease);
}

.product-card:hover .product-icon {
    background: var(--teal);
}

.product-card:hover .product-icon i {
    color: white;
}

.product-icon i {
    font-size: 20px;
    color: var(--teal);
    transition: color var(--t) var(--ease);
}

/* ─── ABOUT ────────────────────────────────────── */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    width: 100%;
    height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-img-card {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--white);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
}

.about-img-card-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.about-img-card-label {
    font-size: .875rem;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500;
}

.about-accent {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    background: var(--teal);
    border-radius: 24px;
    opacity: .12;
    z-index: -1;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-tag {
    margin-bottom: 16px;
    background: var(--teal-soft);
    width: auto;
    display: inline-flex;
}

.about-title em,
.about-title strong,
.about-title b {
    font-style: normal;
    color: var(--teal);
}

.about-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-desc {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: var(--off-white);
    border-radius: var(--r);
    transition: all var(--t) var(--ease);
}

.about-feature:hover {
    background: var(--teal-soft);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 20px;
    color: white;
}

.about-feature-text {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

.about-stats {
    display: none;
}

.about-actions {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-top: 32px;
}

.about-actions .btn {
    flex: 1;
    justify-content: center;
    display: flex;
    align-items: center;
}

/* ─── WHY US ────────────────────────────────────── */
.why {
    background: var(--navy);
}

.why .section-title {
    color: var(--white);
}

.why .section-subtitle {
    color: rgba(255, 255, 255, .55);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.why-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--t) var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t) var(--ease);
    border-radius: 2px 2px 0 0;
}

.why-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(0, 196, 167, .25);
    transform: translateY(-4px);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 196, 167, .12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background var(--t) var(--ease);
}

.why-card:hover .why-icon {
    background: rgba(0, 196, 167, .2);
}

.why-icon i {
    font-size: 28px;
    color: var(--teal);
}

.why-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-desc {
    font-size: .9375rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
}

/* ─── BRANDS MARQUEE ───────────────────────────── */
.brands {
    background: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.brands .section-tag {
    margin: 0 auto 12px;
    display: flex;
    width: fit-content;
}

.brands .section-title {
    text-align: center;
    margin-bottom: 0;
}

.brands-head {
    margin-bottom: 52px;
}

.brands-track-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.brands-track-wrapper::before,
.brands-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.brands-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.brands-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.brands-marquee {
    overflow: hidden;
    padding-top: 5px;
    width: 100%;
}

.brands-marquee-track {
    --brands-gap: 24px;
    --brands-duration: 24s;
    --brands-distance: 0px;
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    will-change: transform;
    animation: brands-marquee-scroll var(--brands-duration) linear infinite;
}

.brands-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: var(--brands-gap);
    padding-right: 24px;
    flex: 0 0 auto;
    min-width: max-content;
}

.brands-marquee-item {
    flex: 0 0 auto;
}

@keyframes brands-marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-1 * var(--brands-distance)), 0, 0);
    }
}

.brand-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 180px;
    background: var(--off-white);
    border-radius: var(--r);
    border: 1px solid var(--border);
    box-shadow: 0 0 0 rgba(0, 196, 167, 0);
    padding: 16px 28px;
    transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
    flex-shrink: 0;
}

.brand-slide:hover {
    border-color: var(--teal);
    background: var(--teal-soft);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.brand-slide img {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .6;
    transition: all var(--t) var(--ease);
}

.brand-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ─── CATALOG ───��──────────────────────────────── */
.catalog {
    background: var(--off-white);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.catalog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 0 rgba(0, 196, 167, 0);
    transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-6px);
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.catalog-thumb-link {
    display: block;
    cursor: pointer;
}

.catalog-name-link {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--t) var(--ease);
}

.catalog-name-link:hover {
    color: var(--teal);
}


.catalog-thumb {
    height: 345px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.catalog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.catalog-card:hover .catalog-thumb img {
    transform: scale(1.05);
}

.catalog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.catalog-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.catalog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8125rem;
    color: var(--muted);
    font-weight: 500;
}

.catalog-badge i {
    font-size: 18px;
    color: var(--navy);
}

.catalog-all {
    grid-column: 1 / -1;
    margin-top: 32px;
    text-align: center;
}

.catalog-all-text {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.7;
}

.catalog-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal);
    transition: all var(--t) var(--ease);
}

.catalog-all-link:hover {
    gap: 12px;
    color: var(--teal-dark);
}

/* ─── CTA ──────────────────────────────────────── */
.cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-shape-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -100px;
    bottom: -140px;
    background: rgba(0, 196, 167, .08);
    border: 1px solid rgba(0, 196, 167, .1);
    border-radius: 50%;
}

.cta-bg-shape-2 {
    position: absolute;
    width: 280px;
    height: 280px;
    left: 5%;
    top: -80px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1 1 420px;
    min-width: 0;
}

.cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-desc {
    color: rgba(255, 255, 255, .65);
    max-width: 500px;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ─── FOOTER ───────────────────────────────────── */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .65);
}

.footer-top {
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns: 1.45fr .95fr .95fr 1.1fr;
    gap: 48px;
}

.footer-brand .footer-logo {
    height: 36px;
    margin-bottom: 24px;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t) var(--ease);
    color: rgba(255, 255, 255, .6);
}

.social-btn:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 20px;
}

.footer-col-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .875rem;
    font-weight: 700;
    color: white;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
    transition: all var(--t) var(--ease);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--teal);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    font-size: 20px;
    color: var(--teal);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .5);
}

.footer-contact-item a:hover {
    color: var(--teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: .9rem;
    color: rgba(255, 255, 255, .3);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .3);
    transition: color var(--t) var(--ease);
}

.footer-legal a:hover {
    color: var(--teal);
}


/* ─── QUOTE MODAL ─────────────────────────────── */
.quote-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 32, .58);
    backdrop-filter: blur(6px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t) var(--ease);
}

.quote-overlay.show {
    opacity: 1;
    visibility: visible;
}

.quote-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.96);
    width: min(680px, calc(100% - 32px));
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(15, 22, 36, .28);
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t) var(--ease);
}

.quote-modal.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.quote-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 28px 0;
}

.quote-modal-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 800;
}

.quote-modal-desc {
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
}

.quote-close {
    width: 42px;
    height: 42px;
    background: var(--off-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
    transition: all var(--t) var(--ease);
}

.quote-close:hover {
    background: var(--teal-soft);
    color: var(--teal);
    transform: rotate(90deg);
}

.quote-form {
    padding: 24px 28px 28px;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-field-full {
    grid-column: 1 / -1;
}

.quote-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
}

.quote-input,
.quote-textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    color: var(--ink);
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.quote-input:hover,
.quote-textarea:hover {
    border-color: rgba(26, 43, 95, .22);
}

.quote-input:focus,
.quote-textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 196, 167, .12);
}

.quote-input.input-error,
.quote-textarea.input-error,
.quote-consent.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, .10);
    background: rgba(239, 68, 68, .03);
}

.quote-error {
    min-height: 18px;
    font-size: .8125rem;
    line-height: 1.35;
    color: #dc2626;
    display: block;
    margin-top: 2px;
}

.quote-error-consent {
    margin: -12px 0 16px;
}

.quote-textarea {
    min-height: 132px;
    resize: vertical;
}

.quote-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 8px 0 22px;
    padding: 14px 16px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.quote-consent input {
    width: 18px;
    height: 18px;
    accent-color: var(--teal);
    margin-top: 2px;
    flex-shrink: 0;
}

.quote-consent label {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.65;
}

.quote-form .btn {
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 44px;
}

.efamed-alert {
    border-radius: 24px !important;
    padding: 20px 18px 18px !important;
}

.swal2-confirm {
    border-radius: 999px !important;
    padding: 12px 24px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600 !important;
}

.copyright-kodes {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding-left: 0;
    border-left: 0;
    border-top: 0;
}

.copyright-kodes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: .9;
    transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}

.copyright-kodes a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.img-kodes {
    width: 96px;
    height: 52px;
    object-fit: contain;
}

/* ─── SCROLL TOP ───────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 92px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all var(--t) var(--ease);
    box-shadow: 0 4px 20px rgba(0, 196, 167, .4);
}

.scroll-top.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--teal-dark);
    transform: translateY(-4px);
}

.scroll-top i {
    font-size: 22px;
}

/* ─── WHATSAPP BUTTON ───────────────────────────── */
.whatsapp-btn {
    position: fixed;
    bottom: calc(28px + env(safe-area-inset-bottom, 0px));
    right: 28px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: opacity .5s var(--ease), transform .5s var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}

.whatsapp-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, .5);
}

.whatsapp-btn.is-visible:hover {
    transform: translateY(-4px);
}

.whatsapp-btn i {
    font-size: 22px;
    font-weight: 400;
}

/* ─── COOKIE BANNER ───────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 28px;
    left: 28px;
    max-width: 380px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 24px;
    z-index: 850;
    border: 1px solid var(--border);
    transform: translateY(120%);
    transition: transform .4s var(--ease);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner-title i {
    font-size: 20px;
    color: var(--teal);
}

.cookie-banner-text {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.cookie-banner-actions .btn {
    padding: 10px 18px;
    font-size: .8125rem;
    flex: 1;
    justify-content: center;
}

/* ─── PROMO MODAL ───────────────────────────────── */
.promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 22, 36, .7);
    backdrop-filter: blur(6px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease);
}

.promo-overlay.show {
    opacity: 1;
    visibility: visible;
}

.promo-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    max-width: 620px;
    width: 90%;
    z-index: 1001;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease);
}

.promo-modal.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.promo-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all var(--t) var(--ease);
}

.promo-close:hover {
    background: var(--white);
    transform: rotate(90deg);
}

.promo-close i {
    font-size: 20px;
    color: var(--ink);
}

.promo-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.promo-body {
    padding: 32px;
    text-align: center;
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-soft);
    color: var(--teal);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
}

.promo-tag i {
    font-size: 16px;
}

.promo-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.promo-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.promo-btn {
    width: 100%;
    justify-content: center;
}

/* ─── ANIMATIONS ───────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

/* Hero slide animations */
.hero-content .hero-title,
.hero-content .hero-desc,
.hero-content .hero-btns,
.hero-content .hero-stats,
.hero-visual {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.swiper-slide-active .hero-content .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
}

.swiper-slide-active .hero-content .hero-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .35s;
}

.swiper-slide-active .hero-content .hero-btns {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .5s;
}

.swiper-slide-active .hero-content .hero-stats {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .65s;
}

.swiper-slide-active .hero-visual {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .4s;
}

/* Footer reveal animation */
.footer .footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.footer.in-view .footer-col:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .1s;
}

.footer.in-view .footer-col:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
}

.footer.in-view .footer-col:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s;
}

.footer.in-view .footer-col:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .4s;
}

.brands-marquee {
    overflow: hidden;
    width: 100%;
    --marquee-speed: 65;
    --marquee-pause: running;
}

.brands-marquee-track {
    display: flex;
    flex-wrap: nowrap;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    animation: marquee linear infinite;
    animation-play-state: var(--marquee-pause);
    animation-duration: calc(var(--marquee-group-width) / var(--marquee-speed) * 1s);
}

.brands-marquee:hover .brands-marquee-track {
    --marquee-pause: paused;
}

.brands-marquee-group {
    display: flex;
    flex-shrink: 0;
    gap: 3rem;
    align-items: center;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}


@media (max-width: 768px) {
    .brands-marquee-group {
        gap: 1.8rem;
    }

    .brands-marquee {
        --marquee-speed: 70;
    }
}

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-visual {
        padding-left: 0;
    }
}

@media (max-width: 1073px) {
    .header-inner {
        gap: 14px;
    }

    .logo img {
        height: 30px;
    }

    .nav {
        gap: 0;
    }

    .nav-link {
        font-size: .88rem;
        padding: 10px 8px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .btn-teal {
        padding: 0 14px;
        font-size: .86rem;
        height: 38px;
    }

    .lang-toggle {
        height: 40px;
    }

    .lang-btn {
        padding: 8px 10px;
        font-size: .78rem;
        height: 32px;
    }
}

@media (max-width: 1024px) {
    .hero-slide {
        min-height: 680px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
        gap: 32px;
        min-height: 680px;
        padding: 100px 0;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        padding-left: 0;
    }

    .hero-img-wrapper {
        max-width: 420px;
    }

    .hero-img-main {
        height: 380px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
    }

    .about-grid {
        gap: 56px;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-title {
        font-size: clamp(1.45rem, 2.35vw, 1.92rem);
    }

    .cat-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 964px) and (min-width: 769px) {
    .cta-inner {
        justify-content: center;
        text-align: center;
    }

    .cta-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-desc {
        max-width: 640px;
    }

    .cta-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 850px) and (min-width: 768px) {
    .header-actions .btn-teal {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .header-bar {
        display: none;
    }

    .nav,
    .header-actions .btn-teal,
    .lang-toggle {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo img {
        height: 26px;
    }

    .header-inner {
        height: 72px;
        gap: 14px;
    }

    .hero {
        margin-top: 40px;
    }

    .hero-slide {
        min-height: 0;
        padding: 32px 0 36px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 24px 0;
        gap: 28px;
    }

    .hero-grid .hero-visual {
        order: -1;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
    }

    .hero-img-wrapper {
        max-width: 100%;
    }

    .hero-img-main {
        height: clamp(240px, 58vw, 360px);
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat-num {
        font-size: 1.75rem;
    }

    .trust-bar {
        display: none;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .cat-card {
        min-height: 340px;
    }

    .cat-body {
        padding: 28px;
    }

    .cat-title {
        font-size: 1.35rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-visual {
        display: block;
        order: -1;
        max-width: 100%;
    }

    .about-img-main {
        height: clamp(260px, 55vw, 420px);
    }

    .about-img-card {
        right: 20px;
        bottom: 20px;
        padding: 18px 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col-hizli,
    .footer-col-urunler {
        display: none;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .footer-logo {
        margin: 0 auto 24px;
    }

    .footer-tagline {
        margin: 0 auto 28px;
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .copyright-kodes {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        padding: 8px 0 0;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        flex: 1 1 auto;
        width: 100%;
    }

    .cta-desc {
        max-width: 100%;
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
        bottom: 16px;
    }

    .whatsapp-btn {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: 16px;
        width: 46px;
        height: 46px;
    }

    .scroll-top {
        bottom: calc(72px + env(safe-area-inset-bottom, 0px) + var(--floating-offset, 0px));
        right: 16px;
        width: 46px;
        height: 46px;
    }

    .about-actions {
        flex-direction: column;
        gap: 12px;
    }

    .about-actions .btn {
        border-radius: var(--r-pill) !important;
        width: 100%;
    }

    .catalog-all {
        text-align: center;
        margin-top: 0;
    }

    .brand-slide {
        min-width: 140px;
        height: 70px;
        padding: 12px 20px;
    }

    .brand-slide span {
        font-size: 1rem;
    }

    .section-tag {
        font-size: .7rem;
        padding: 6px 12px;
    }

    .quote-modal {
        width: min(680px, calc(100% - 20px));
        max-height: calc(100vh - 20px);
    }

    .quote-modal-head,
    .quote-form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .quote-grid {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .products-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        align-items: center;
    }

    .products-header>div {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .products-header .section-tag {
        margin: 0 auto 20px;
    }

    .products-header .section-title {
        text-align: center;
    }

    .products-header .section-subtitle {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .copyright-kodes {
        margin: 0 auto;
        padding-left: 0;
        border-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 64px 0;
    }

    .container {
        padding: 0 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .section-title {
        font-size: clamp(1.35rem, 6vw, 1.68rem);
    }

    .cat-title {
        font-size: 1.28rem;
    }

    .mobile-nav-link {
        font-size: .98rem;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .catalog-footer {
        gap: 12px;
        flex-wrap: wrap;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature {
        padding: 8px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    .catalog-all-text {
        font-size: 1rem;
    }

    .product-card {
        margin: 0 4px;
    }

    .hero-slide::after {
        width: 320px;
        height: 320px;
        right: -120px;
        bottom: -120px;
    }

    .about-img-card {
        max-width: calc(100% - 32px);
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 20px;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-banner-actions .btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .hero-stats {
        flex-direction: column;
    }

    .hero-stat {
        width: 100%;
    }

    .about-img-card {
        position: static;
        margin-top: 16px;
    }

    .footer-contact-item {
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
}