/* ============================================================
   COSMOCHEM — Design system
   Colors: OKLCH. Blue primary + Pink accent. Full palette.
   Fonts: Sora (headings) + Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');





/* debug border removed */
/* ─── Tokens ─── */
:root {
  --blue: oklch(75.5% 0.12 212deg);
  --blue-dark: oklch(55% 0.13 212deg);
  --blue-xdark: oklch(38% 0.12 212deg);
  --blue-light: oklch(92% 0.05 212deg);
  --blue-tint: oklch(96.5% 0.02 212deg);

  --pink: oklch(54% 0.25 350deg);
  --pink-light: oklch(72% 0.18 350deg);
  --pink-tint: oklch(96% 0.04 350deg);

  --bg: oklch(99.2% 0.003 212deg);
  --surface: oklch(97.5% 0.006 212deg);
  --surface-2: oklch(95% 0.009 212deg);
  --border: oklch(91% 0.008 212deg);
  --border-2: oklch(87% 0.010 212deg);

  --ink: oklch(18% 0.012 212deg);
  --ink-2: oklch(40% 0.008 212deg);
  --ink-3: oklch(62% 0.006 212deg);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px oklch(0% 0 0 / 0.06), 0 1px 2px oklch(0% 0 0 / 0.04);
  --shadow: 0 4px 16px oklch(0% 0 0 / 0.07), 0 1px 4px oklch(0% 0 0 / 0.04);
  --shadow-lg: 0 12px 40px oklch(0% 0 0 / 0.10), 0 4px 12px oklch(0% 0 0 / 0.06);

  --max-w: 1280px;
  --header-h: 72px;
  --header-total-h: calc(var(--header-h) + 20px);
  /* actual rendered height = 92px */
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  /* prevent any stray element from causing horizontal scroll */
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Explicit resets prevent Bootstrap Reboot from adding padding-left to lists
   and margin-bottom to paragraphs. Visually identical to the universal * reset. */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* ─── Typography ─── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5vw + 1rem, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.2rem, 2vw + 0.2rem, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  max-width: 68ch;
  margin: 0;
}

/* ─── Utilities ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 56px;
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.18s cubic-bezier(0.22, 1, 0.36, 1), background 0.15s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--blue);
  color: oklch(18% 0.01 212deg);
  box-shadow: 0 2px 10px oklch(75.5% 0.12 212deg / 0.4);
}

.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--bg);
  box-shadow: 0 4px 20px oklch(55% 0.13 212deg / 0.45);
}

.btn-pink {
  background: var(--pink);
  color: oklch(97% 0.01 350deg);
  box-shadow: 0 2px 10px oklch(54% 0.25 350deg / 0.35);
}

.btn-pink:hover {
  background: oklch(46% 0.25 350deg);
  box-shadow: 0 4px 20px oklch(54% 0.25 350deg / 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-2);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
  background: var(--blue-tint);
}

.btn-wa {
  background: oklch(52% 0.18 148deg);
  color: oklch(97% 0.01 148deg);
  gap: 7px;
  box-shadow: 0 2px 10px oklch(52% 0.18 148deg / 0.35);
}

.btn-wa:hover {
  background: oklch(44% 0.18 148deg);
  box-shadow: 0 4px 20px oklch(52% 0.18 148deg / 0.45);
}

.btn-wa-outline {
  background: transparent;
  color: oklch(38% 0.16 148deg);
  border: 1.5px solid oklch(70% 0.14 148deg);
}

.btn-wa-outline:hover {
  background: oklch(97% 0.03 148deg);
  border-color: oklch(52% 0.18 148deg);
}

/* ─── WhatsApp icon SVG ─── */
.wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ====================================================================
   HEADER & NAV — clean flexbox rebuild (no position:absolute on nav)
   ==================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;

  height: calc(var(--header-h) + 20px);
  padding-top: 20px;

  background: oklch(99.5% 0.002 212deg / 0.92);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid oklch(92% 0.008 212deg / 0.6);

  box-shadow:
    0 1px 0 oklch(92% 0.008 212deg / 0.4),
    0 4px 20px oklch(0% 0 0 / 0.04);

  transition: box-shadow 0.2s;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  margin-top: 0;
}

/* ── LEFT: logo fills equal share, content left-aligned ── */
.logo {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}


@media (max-width:768px) {


.logo img {
  height: 100% !important;
  width: auto !important;

}
}

/* ── CENTER: nav at natural width, anchored for mega menu ── */
.nav {
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.nav-list {
  display: flex;
  align-items: stretch;
  /* items stretch to full header height — mega top:100% lands at header bottom */
  gap: 2px;
  list-style: none;
}

.nav-list>li {
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  height: 100%;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color 0.13s, background 0.13s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-dark);
  background: var(--blue-tint);
}

.nav-chevron {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.has-mega.open .nav-chevron {
  transform: rotate(180deg);
}

/* ── RIGHT: fills equal share, content right-aligned ── */
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

/* Phone icon — matches button height */
.nav-phone {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  flex-shrink: 0;
  transition: background 0.13s, color 0.13s;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
}

.nav-phone:hover {
  background: var(--surface-2);
  color: var(--blue-dark);
}

/* Shared button sizing — identical height, padding, and font for both CTA buttons */
.header-wa,
.header-book {
  height: 40px;
  padding: 0 20px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  border-radius: var(--radius-sm);
  display: none;
  /* shown conditionally below */
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mobile hamburger */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background 0.13s;
}

.mobile-toggle:hover {
  background: var(--surface-2);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-2);
  border-radius: 2px;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.15s, width 0.15s;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Responsive breakpoints ─── */

/* MOBILE < 900px: only logo + hamburger */
@media (max-width: 899px) {
  .nav {
    display: none !important;
  }

  .nav-phone {
    display: none !important;
  }

  .header-wa {
    display: none !important;
  }

  .header-book {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* DESKTOP ≥ 900px: show full nav, hide hamburger */
@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-phone {
    display: flex;
  }

  .header-wa {
    display: flex;
  }

  .mobile-toggle {
    display: none !important;
  }
}

/* WIDE ≥ 1100px: also show Book Consultation */
@media (min-width: 1100px) {
  .header-book {
    display: flex;
  }
}

/* ─── Mega menu — hover-gap fix + 3-column layout ─── */

/* has-mega stretches full header height; mega-menu top:100% = bottom of header */
.has-mega {
  position: relative;
  display: flex;
  align-items: center;
}

/* invisible hover bridge: extends .has-mega hover zone 10px below itself */
.has-mega::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -16px;
  right: -16px;
  height: 10px;
  display: none;
}

.has-mega.open::after {
  display: block;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  /* 10px visual gap (covered by ::after bridge) */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 620px;
  max-width: 90vw;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px oklch(0% 0 0 / 0.10), 0 4px 12px oklch(0% 0 0 / 0.06);
  overflow-y: scroll !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.22s;
    max-height: 600px !important;
}

.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* 3-column inner layout */
.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px 20px 16px;
  gap: 0;

}

.mega-col {
  padding: 0 12px;
  border-right: 1px solid var(--border);
    /* border: 1px solid red !important; */
    margin-bottom: 10px !important;



}

.mega-col:first-child {
  padding-left: 4px;
}

.mega-col:last-child {
  padding-right: 4px;
  border-right: none;
}

.mega-col-heading {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: bolder !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-dark);
  padding: 2px 10px 10px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: background 0.13s, color 0.13s;
}

.mega-item:hover {
  background: var(--blue-tint);
  color: var(--blue-dark);
}

.mega-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-2);
  flex-shrink: 0;
  transition: background 0.13s;
}

.mega-item:hover .mega-dot {
  background: var(--blue);
}

.mega-footer {
  display: flex;
  gap: 10px;
  padding: 14px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* ─── Mobile nav — outer container ─── */
.mobile-nav {
  position: fixed;
  top: var(--header-total-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  overflow: hidden;
  /* panels handle their own scroll */
  z-index: 99;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

@media (min-width: 900px) {
  .mobile-nav {
    display: none !important;
  }
}

/* ─── Drilldown panel system ───────────────────────────────────────────
   .mob-panels   → clipping container, fills the mobile nav height
   .mob-panel    → each individual screen (main menu, products sub-menu)
   Add more .mob-panel--sub siblings for deeper category levels.
   ──────────────────────────────────────────────────────────────────── */
.mob-panels {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.mob-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Main panel — shown by default */
.mob-panel--main {
  z-index: 1;
  transform: translateX(0);
  opacity: 1;
}

/* Products panel — hidden off-screen right */
.mob-panel--sub {
  z-index: 2;
  transform: translateX(100%);
}

/* Subcategory panel — hidden off-screen right (deepest level) */
.mob-panel--subsub {
  z-index: 3;
  transform: translateX(100%);
}

/* Level 1: products panel active — main recedes */
.mob-panels.drill-active .mob-panel--main {
  transform: translateX(-28%);
  opacity: 0.35;
  pointer-events: none;
}

.mob-panels.drill-active .mob-panel--sub {
  transform: translateX(0);
}

/* Level 2: subcategory panel active — sub recedes behind it */
.mob-panels.drill-subcats .mob-panel--sub {
  transform: translateX(-28%);
  opacity: 0.35;
  pointer-events: none;
}

.mob-panels.drill-subcats .mob-panel--subsub {
  transform: translateX(0);
}

/* ── Panel sub-components ── */

/* Header bar shown on sub-panels (back button + title) */
.mob-panel-head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.mob-panel-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.mob-back-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--blue-tint);
  transition: background 0.13s;
  flex-shrink: 0;
}

.mob-back-btn:hover {
  background: var(--blue-light);
}

.mob-back-btn svg {
  width: 14px;
  height: 14px;
}

/* Scrollable content area — this is the scroll container */
.mob-panel-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 10px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Sticky CTA footer inside each panel */
.mob-panel-footer {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* ── Nav links ── */
.mob-link {
  display: block;
  padding: 13px 14px;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
  transition: background 0.14s, color 0.14s;
}

.mob-link:hover {
  background: var(--blue-tint);
  color: var(--blue-dark);
}

/* "Products" link — button styled as a link, has right arrow */
.mob-link--drill {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.mob-drill-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), color 0.13s;
}

.mob-link--drill:hover .mob-drill-arrow,
.mob-link--drill[aria-expanded="true"] .mob-drill-arrow {
  color: var(--blue-dark);
  transform: translateX(3px);
}

/* ── Products panel — category rows ── */
.mob-group-label {
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  padding: 14px 4px 4px;
}

.mob-group-label:first-child {
  padding-top: 4px;
}

.mob-cat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  transition: background 0.13s, color 0.13s;
}

.mob-cat-row:hover {
  background: var(--blue-tint);
  color: var(--blue-dark);
}

.mob-cat-row-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.13s;
}

.mob-cat-row-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue-dark);
}

.mob-cat-row:hover .mob-cat-row-icon {
  background: var(--blue-light);
}

.mob-cat-row-name {
  flex: 1;
  line-height: 1.25;
}

.mob-cat-row-arrow {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 0.15s, color 0.13s;
}

.mob-cat-row:hover .mob-cat-row-arrow {
  color: var(--blue);
  transform: translateX(2px);
}

/* ── Subcategory item (product list inside a category panel) ── */
.mob-subcat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 12px;
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.13s, color 0.13s;
}

.mob-subcat-item:last-child {
  border-bottom: none;
}

.mob-subcat-item:hover {
  background: var(--blue-tint);
  color: var(--blue-dark);
}

.mob-subcat-item-name {
  flex: 1;
  line-height: 1.3;
}

.mob-subcat-item .mob-cat-row-arrow {
  flex-shrink: 0;
  transition: transform 0.15s, color 0.13s;
}

.mob-subcat-item:hover .mob-cat-row-arrow {
  color: var(--blue);
  transform: translateX(2px);
}

/* ── Panel footer buttons ── */
.mob-footer-btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
  padding: 12px 14px;
  font-size: 0.875rem;
}

/* Narrow screens: shrink button text/padding so they fit side-by-side */
@media (max-width: 400px) {
  .mob-panel-footer {
    padding: 12px 10px;
    gap: 6px;
  }

  .mob-footer-btn {
    padding: 10px 8px;
    font-size: 0.75rem;
    gap: 4px;
    white-space: normal;
    text-align: center;
    min-width: 0;
  }

  .mob-footer-btn .wa-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
}

/* Extra-narrow: stack footer buttons vertically */
@media (max-width: 320px) {
  .mob-panel-footer {
    flex-direction: column;
  }

  .mob-footer-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  padding: 72px 0 80px;
  overflow: hidden;
}

@media (max-width:456px) {

  .hero{
    padding: 40px 0px 40px;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-light);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--blue-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.hero-title {
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-title strong {
  color: var(--blue-dark);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-actions .btn {
  padding: 14px 28px;
  font-size: 0.95rem;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat-item {}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-num span {
  color: var(--blue);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 2px;
  font-weight: 500;
}

/* Hero visual — 2x2 product collage */
.hero-visual {
  position: relative;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

.hero-collage-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface-2);
  position: relative;
}

.hero-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-collage-item:hover img {
  transform: scale(1.04);
}

.hero-collage-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.hero-collage-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
}

.hero-collage-item:nth-child(2) {
  aspect-ratio: unset;
}

.hero-collage-item:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.collage-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: oklch(18% 0.01 212deg / 0.75);
  backdrop-filter: blur(8px);
  color: oklch(97% 0.003 212deg);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.hero-accent-dot {
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--pink-tint);
  z-index: -1;
  overflow: hidden;
  /* Prevent extending outside viewport on narrow screens */
  max-width: 50%;
}

/* ====================================================================
   SECTION SHARED
   ==================================================================== */
.section-header {
  margin-bottom: 40px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 10px;
}

.section-title {
  color: var(--ink);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--ink-2);
  margin-top: 10px;
  line-height: 1.65;
}

/* ====================================================================
   CATEGORIES
   ==================================================================== */
.categories-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 600px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.cat-item {
  display: flex;
  flex-direction: column;
  padding: 20px 18px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  color: inherit;
}

.cat-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow), 0 0 0 1px var(--blue);
  transform: translateY(-2px);
  background: var(--bg);
}

.cat-item--featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: var(--blue-tint);
  border-color: var(--blue-light);
  padding: 24px 22px;
}

.cat-item--featured:hover {
  background: oklch(94% 0.04 212deg);
  border-color: var(--blue);
}

.cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 14px;
  transition: background 0.18s;
}

.cat-item:hover .cat-icon {
  background: var(--blue-light);
}

.cat-item--featured .cat-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  margin-bottom: 0;
}

.cat-item--featured:hover .cat-icon {
  background: var(--blue);
}

.cat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-dark);
}

.cat-item--featured .cat-icon svg {
  color: var(--blue-xdark);
}

.cat-body {}

.cat-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}

.cat-item--featured .cat-name {
  font-size: 1rem;
}

.cat-desc {
  font-size: 0.78rem;
  color: var(--ink-3);
  line-height: 1.4;
  display: none;
}

.cat-item--featured .cat-desc {
  display: block;
}

.cat-arrow {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.15s;
}

.cat-item:hover .cat-arrow {
  opacity: 1;
}

.cat-item--featured .cat-arrow {
  display: none;
}

.cat-arrow svg {
  width: 12px;
  height: 12px;
}

/* ====================================================================
   FEATURED PRODUCTS
   ==================================================================== */
.products-section {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width:496px) {
  /* .products-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  } */

  .product-badge{
    font-size: 0.40rem !important;

  }

  .product-sizes {
  font-size: 0.55rem !important;}


  .product-inquire {

  gap: 7px  !important;
  padding: 9px 14px !important;

  font-size: 0.62rem !important;

}


.product-inquire svg {
  width: 12px !important;
  height: 12px !important;
  flex-shrink: 0;
}


}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--pink-tint);
  color: var(--pink);
  border: 1px solid oklch(88% 0.08 350deg);
  align-self: flex-start;
}

.product-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.product-sizes {
  font-size: 0.75rem;
  color: var(--ink-3);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.product-size-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

.product-inquire {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  background: oklch(52% 0.18 148deg);
  color: oklch(97% 0.01 148deg);
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px oklch(52% 0.18 148deg / 0.3);
}

.product-inquire:hover {
  background: oklch(44% 0.18 148deg);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px oklch(52% 0.18 148deg / 0.4);
}

.product-inquire svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ====================================================================
   TRUST STRIP
   ==================================================================== */
.trust-section {
  padding: 60px 0;
  background: var(--blue-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 600px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: oklch(62% 0.12 212deg / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.trust-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: oklch(99% 0.003 212deg);
  letter-spacing: -0.04em;
  line-height: 1;
}

.trust-num sup {
  font-size: 1rem;
  vertical-align: super;
}

.trust-label {
  font-size: 0.82rem;
  color: oklch(80% 0.05 212deg);
  font-weight: 500;
  line-height: 1.3;
}

/* ====================================================================
   ABOUT TEASER
   ==================================================================== */
.about-section {
  padding: 80px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}

.about-content {}

.about-content .section-header {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--ink-2);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.about-content .btn {
  margin-top: 12px;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-visual-item {
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-visual-item:first-child {
  grid-column: 1 / -1;
  background: var(--blue-tint);
  border: 1px solid var(--blue-light);
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
}

.about-vi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-vi-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-dark);
}

.about-vi-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.about-vi-sub {
  font-size: 0.78rem;
  color: var(--ink-3);
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  background: var(--ink);
  color: oklch(70% 0.006 212deg);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 600px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 56px;
  }
}

.footer-brand {}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  border-radius: 6px;
}

.footer-logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: oklch(97% 0.003 212deg);
  letter-spacing: -0.04em;
}

.footer-logo-text span {
  color: var(--blue);
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: oklch(90% 0.005 212deg);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.875rem;
  color: oklch(65% 0.007 212deg);
  transition: color 0.14s;
}

.footer-link:hover {
  color: var(--blue);
}

.footer-contact {}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid oklch(30% 0.005 212deg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  color: oklch(45% 0.005 212deg);
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ====================================================================
   FLOATING WHATSAPP
   ==================================================================== */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: oklch(52% 0.18 148deg);
  color: oklch(97% 0.01 148deg);
  padding: 14px 20px;
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 20px oklch(52% 0.18 148deg / 0.5), 0 2px 8px oklch(0% 0 0 / 0.15);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s, opacity 0.25s ease;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
}

.float-wa:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px oklch(52% 0.18 148deg / 0.55), 0 3px 12px oklch(0% 0 0 / 0.18);
}

.float-wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.float-wa-label {
  display: none;
}

@media (min-width: 480px) {
  .float-wa-label {
    display: inline;
  }
}

/* ====================================================================
   SECTION DIVIDERS / SPACING
   ==================================================================== */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ====================================================================
   REVEAL ANIMATION (reduced-motion safe)
   ==================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .reveal-delay-1 {
    transition-delay: 0.08s;
  }

  .reveal-delay-2 {
    transition-delay: 0.16s;
  }

  .reveal-delay-3 {
    transition-delay: 0.24s;
  }

  .reveal-delay-4 {
    transition-delay: 0.32s;
  }
}

/* ====================================================================
   S1 — WHO WE SERVE
   ==================================================================== */
.serve-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.serve-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.serve-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow), 0 0 0 1px var(--blue);
  transform: translateY(-2px);
}

.serve-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.18s;
}

.serve-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue-dark);
}

.serve-card:hover .serve-icon {
  background: var(--blue-light);
}

.serve-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.serve-desc {
  font-size: 0.84rem;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ====================================================================
   S2 — TRAINING
   ==================================================================== */
.training-section {
  padding: 88px 0;
  background: var(--bg);
}

.training-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 960px) {
  .training-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.training-courses {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.training-course {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.training-course:hover {
  background: var(--surface);
}

.tc-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.tc-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue-dark);
}

.tc-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tc-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.tc-desc {
  font-size: 0.8rem;
  color: var(--ink-3);
  line-height: 1.45;
}

.training-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Training visual — CSS-composed premium card scene */
.training-visual {
  position: relative;
}

.tv-bg {
  background: linear-gradient(135deg,
      oklch(38% 0.12 212deg) 0%,
      oklch(28% 0.10 212deg) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px 36px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.tv-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, oklch(60% 0.12 212deg / 0.15) 0%, transparent 60%);
}

.tv-main-card {
  background: oklch(99% 0.002 212deg / 0.12);
  border: 1px solid oklch(99% 0.002 212deg / 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tv-badge {
  display: inline-block;
  background: var(--blue);
  color: oklch(18% 0.01 212deg);
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.tv-title {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: oklch(99% 0.002 212deg);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.tv-subtitle {
  font-size: 0.8rem;
  color: oklch(75% 0.04 212deg);
  font-family: 'Sora', sans-serif;
  font-weight: 500;
}

.tv-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tv-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: oklch(99% 0.002 212deg / 0.1);
  border: 1px solid oklch(99% 0.002 212deg / 0.18);
  border-radius: 100px;
  padding: 7px 14px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: oklch(88% 0.04 212deg);
  position: absolute;
}

.tv-chip--1 {
  bottom: 84px;
  right: 24px;
}

.tv-chip--2 {
  bottom: 44px;
  right: 24px;
}

.tv-chip--3 {
  bottom: 4px;
  right: 24px;
}

.tv-stat {
  position: absolute;
  top: 32px;
  right: 32px;
  background: oklch(99% 0.002 212deg / 0.12);
  border: 1px solid oklch(99% 0.002 212deg / 0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tv-stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.04em;
}

.tv-stat-num sup {
  font-size: 0.8rem;
  vertical-align: super;
}

.tv-stat-label {
  display: block;
  margin-top: 2px;
  font-size: 0.68rem;
  color: oklch(78% 0.04 212deg);
  font-family: 'Sora', sans-serif;
  font-weight: 500;
}

/* ====================================================================
   S3 — WHY CHOOSE
   ==================================================================== */
.why-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 8px 28px oklch(0% 0 0 / 0.07);
  transform: translateY(-2px);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.18s;
}

.why-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-dark);
}

.why-card:hover .why-card-icon {
  background: var(--blue-light);
}

.why-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.why-card-desc {
  font-size: 0.84rem;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ====================================================================
   S4 — POPULAR FORMULATION INGREDIENTS
   ==================================================================== */
.ingr-section {
  padding: 80px 0;
}

.ingr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 600px) {
  .ingr-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .ingr-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.ingr-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.ingr-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.ingr-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ingr-abbr {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}

.ingr-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ingr-use {
  font-size: 0.78rem;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: none;
}

/* ====================================================================
   S5 — CONSULTATION CTA
   ==================================================================== */
.consult-section {
  padding: 72px 0;
  background: var(--blue-tint);
  border-top: 1px solid var(--blue-light);
  border-bottom: 1px solid var(--blue-light);
}

.consult-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .consult-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
  }
}

.consult-text {
  max-width: 540px;
}

.consult-headline {
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
  margin: 8px 0 12px;
}

.consult-sub {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.65;
}

.consult-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ====================================================================
   S6 — FAQ
   ==================================================================== */
.faq-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.14s;
}

.faq-q:hover {
  color: var(--blue-dark);
}

.faq-q[aria-expanded="true"] {
  color: var(--blue-dark);
}

.faq-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--ink-3);
}

.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-a.open {
  grid-template-rows: 1fr;
}

.faq-a>p {
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.7;
  padding-bottom: 20px;
  padding-right: 32px;
  max-width: none;
}

/* ====================================================================
   S7 — FINAL CTA
   ==================================================================== */
.final-cta-section {
  padding: 96px 0;
  background: var(--blue-xdark);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, oklch(55% 0.13 212deg / 0.3) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, oklch(54% 0.25 350deg / 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.final-cta-eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  opacity: 0.9;
}

.final-cta-headline {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: oklch(98% 0.003 212deg);
}

.final-cta-sub {
  font-size: 1rem;
  color: oklch(72% 0.05 212deg);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.6;
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-top: 8px;
}

.final-btn-primary {
  background: var(--blue);
  color: oklch(16% 0.01 212deg);
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px oklch(75.5% 0.12 212deg / 0.4);
}

.final-btn-primary:hover {
  background: oklch(82% 0.11 212deg);
  box-shadow: 0 6px 28px oklch(75.5% 0.12 212deg / 0.5);
}

.final-btn-wa {
  background: oklch(52% 0.18 148deg);
  color: oklch(97% 0.01 148deg);
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px oklch(52% 0.18 148deg / 0.4);
}

.final-btn-wa:hover {
  background: oklch(44% 0.18 148deg);
  box-shadow: 0 6px 28px oklch(52% 0.18 148deg / 0.5);
}

.final-btn-outline {
  background: transparent;
  color: oklch(88% 0.04 212deg);
  border: 1.5px solid oklch(60% 0.06 212deg);
  padding: 14px 28px;
  font-size: 0.95rem;
}

.final-btn-outline:hover {
  background: oklch(99% 0.002 212deg / 0.08);
  border-color: oklch(78% 0.06 212deg);
  color: oklch(96% 0.003 212deg);
}

/* ====================================================================
   TRUST BAR
   ==================================================================== */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

@media (max-width:426px) {

  .trust-bar{
    padding: 16px 5px;
  }
  .trust-bar-grid{
    display: grid !important;

    grid-template-columns: repeat(2,1fr);
    /* padding: 0 10px; */
    
  }
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  min-width: 0;
}

.tb-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tb-icon svg {
  width: 15px;
  height: 15px;
  color: var(--blue-dark);
}

.tb-text {
  font-size: 0.8rem;
  color: var(--ink-3);
  white-space: normal;
  line-height: 1.3;
  min-width: 0;
}

.tb-text strong {
  color: var(--ink-2);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  display: block;
  font-size: 0.82rem;
}

.tb-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
  display: none;
}

@media (min-width: 768px) {
  .tb-divider {
    display: block;
  }
}

/* ====================================================================
   DESKTOP FLOATING CTA SIDEBAR
   ==================================================================== */
.cta-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(110%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 0 0 8px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cta-sidebar.visible {
  transform: translateY(-50%) translateX(0);
  pointer-events: all;
}

@media (max-width: 1099px) {
  .cta-sidebar {
    display: none !important;
  }
}

.csb-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px 11px 13px;
  border-radius: 10px 0 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.csb-btn:hover {
  transform: translateX(-5px);
}

.csb-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.csb-label {
  font-size: 0.78rem;
}

.csb-wa {
  background: oklch(52% 0.18 148deg);
  color: oklch(97% 0.01 148deg);
  box-shadow: -3px 0 14px oklch(52% 0.18 148deg / 0.3);
}

.csb-wa:hover {
  box-shadow: -6px 0 20px oklch(52% 0.18 148deg / 0.45);
}

.csb-call {
  background: var(--blue-dark);
  color: oklch(97% 0.003 212deg);
  box-shadow: -3px 0 14px oklch(55% 0.13 212deg / 0.22);
}

.csb-call:hover {
  box-shadow: -6px 0 20px oklch(55% 0.13 212deg / 0.38);
}

.csb-consult {
  background: var(--blue);
  color: oklch(16% 0.01 212deg);
  box-shadow: -3px 0 14px oklch(75.5% 0.12 212deg / 0.28);
}

.csb-consult:hover {
  box-shadow: -6px 0 20px oklch(75.5% 0.12 212deg / 0.42);
}

/* Hide float-wa when sidebar is active (desktop >= 1100px) */
@media (min-width: 1100px) {
  .float-wa {
    display: none !important;
  }
}

/* ====================================================================
   MOBILE STICKY BOTTOM BAR
   ==================================================================== */
.mob-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px oklch(0% 0 0 / 0.08);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.mob-bottom-bar.visible {
  transform: translateY(0);
}

@media (min-width: 900px) {
  .mob-bottom-bar {
    display: none !important;
  }
}

/* Pad body on mobile to prevent content hiding behind bottom bar */
@media (max-width: 899px) {
  body {
    padding-bottom: 64px;
  }
}

/* Hide float-wa on mobile (bottom bar replaces it) */
@media (max-width: 899px) {
  .float-wa {
    display: none !important;
  }
}

.mbb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink-2);
  transition: background 0.14s, color 0.14s;
  border-right: 1px solid var(--border);
  text-decoration: none;
}

.mbb-btn:last-child {
  border-right: none;
}

.mbb-btn svg {
  width: 19px;
  height: 19px;
}

.mbb-btn:active {
  opacity: 0.75;
}

.mbb-wa {
  color: oklch(38% 0.16 148deg);
}

.mbb-wa:hover,
.mbb-wa:active {
  background: oklch(97% 0.03 148deg);
}

.mbb-call {
  color: var(--blue-dark);
}

.mbb-call:hover,
.mbb-call:active {
  background: var(--blue-tint);
}

.mbb-form {
  color: var(--pink);
}

.mbb-form:hover,
.mbb-form:active {
  background: var(--pink-tint);
}

/* ====================================================================
   INQUIRY FORM
   ==================================================================== */
.form-section {
  padding: 88px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;

}

@media (min-width: 900px) {
  .form-inner {
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
  }
}

.form-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}

.form-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.45;
}

.fb-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.fb-check svg {
  width: 10px;
  height: 10px;
  color: var(--blue-dark);
}

.form-respond-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: oklch(38% 0.16 148deg);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

.form-respond-note svg {
  flex-shrink: 0;
  color: oklch(48% 0.18 148deg);
}

/* Form card */
.form-wrapper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);

}

/* Form layout */
.inquiry-form,
#inquiry-form-el {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 160px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-family: 'Sora', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink-2);
}

.f-req {
  color: var(--pink);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 13px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-3);
  font-size: 0.87rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px oklch(75.5% 0.12 212deg / 0.14);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px oklch(75.5% 0.12 212deg / 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 86px;
  line-height: 1.5;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 13px;
  padding-right: 34px;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.92rem;
  margin-top: 4px;
  gap: 10px;
}

.form-submit-btn svg {
  flex-shrink: 0;
}

.form-privacy {
  font-size: 0.73rem;
  color: var(--ink-3);
  text-align: center;
  margin-top: 2px;
}

.form-error {
  font-size: 0.82rem;
  color: oklch(50% 0.2 25deg);
  /* warm error red */
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  min-height: 0;
}

.form-error:not(:empty) {
  padding: 8px 12px;
  background: oklch(96% 0.04 25deg);
  border-radius: var(--radius-sm);
}


@media (max-width: 400px) {
  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .form-row .form-group {
    min-width: 0;
    width: 100%;
  }

  .form-wrapper {
    padding: 20px;
  }

  .form-section{
    padding: 40px 0px !important;
  }

  .form-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center !important;
  align-items: center;

}
}
/* ====================================================================
   MICRO-INTERACTION IMPROVEMENTS
   ==================================================================== */

/* Buttons: better press feedback + will-change */
.btn {
  will-change: transform;
}

.btn:active {
  transform: translateY(0) scale(0.98) !important;
}

/* Product / ingr cards: explicit will-change */
.product-card,
.ingr-card,
.serve-card,
.why-card,
.cat-item {
  will-change: transform;
}

/* Nav link transitions: tighten timing */
.nav-link {
  transition: color 0.13s ease, background 0.13s ease;
}

/* Mega menu items: tighter hover */
.mega-item {
  transition: background 0.11s ease, color 0.11s ease;
}

/* Hero collage: softer hover scale */
.hero-collage-item:hover img {
  transform: scale(1.03);
}

/* Product card: coordinated badge + button reveal */
.product-card .product-badge {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-badge {
  transform: translateY(-1px);
}

/* Ingr card abbr scale on hover */
.ingr-card:hover .ingr-abbr {
  transform: scale(1.06);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.ingr-abbr {
  display: inline-block;
  transition: transform 0.2s;
}

/* Why card icon: color shift on hover */
.why-card:hover .why-card-icon svg {
  color: var(--blue);
}

/* Serve card icon */
.serve-card:hover .serve-icon svg {
  color: var(--blue);
}

/* FAQ: button color matches chevron */
.faq-q .faq-chevron {
  color: var(--ink-3);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), color 0.14s;
}

.faq-q:hover .faq-chevron {
  color: var(--blue-dark);
}

.faq-q[aria-expanded="true"] .faq-chevron {
  color: var(--blue-dark);
}

/* Mobile toggle: smoother bar transition */
.mobile-toggle span {
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.15s, width 0.15s, background 0.14s;
}

.mobile-toggle:hover span {
  background: var(--ink);
}

/* Focus-visible ring for keyboard nav (global) */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Smooth anchor scroll offset for sticky header */
[id] {
  scroll-margin-top: calc(var(--header-total-h) + 16px);
}