/* ============ Wipe Worx — 2026 navy & steel refresh ============ */
:root {
  --ink: #101623;            /* body text / darkest */
  --navy: #16305e;           /* primary brand navy */
  --navy-d: #0e2145;         /* darker navy */
  --navy-deep: #0a1834;      /* footer / deepest navy */
  --silver: #c9d4e2;         /* steel highlight on dark */
  --steel: #5b6b80;          /* muted steel text */
  --paper: #f5f7fa;          /* page background */
  --line: #e3e9f1;           /* light borders */
  --pink: #e3197f;           /* Pink Wipe / PinkDrive accent (sparing) */
  --accent: #16305e;         /* per-product accent, overridden inline */
  --r: 18px;
  --r-sm: 12px;
  --shadow-1: 0 1px 2px rgba(14,33,69,.05), 0 4px 14px rgba(14,33,69,.06);
  --shadow-2: 0 2px 6px rgba(14,33,69,.07), 0 16px 40px rgba(14,33,69,.13);
  --maxw: 1140px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .display {
  font-family: 'Sora', 'Manrope', system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid rgba(77,159,214,.75); outline-offset: 3px; border-radius: 6px; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* icon helpers */
.ic svg, .chip svg, .more svg { display: block; }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw); margin: 0 auto; padding: 8px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav .logo img { height: 72px; width: auto; }
.nav ul { display: flex; list-style: none; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav a.navlink {
  color: #3c4a60; text-decoration: none; font-weight: 700;
  font-size: 15px; padding: 9px 15px; border-radius: 999px;
  transition: color .2s, background-color .2s;
}
.nav a.navlink:hover { color: var(--navy); background: rgba(22,48,94,.06); }
.nav a.navlink.active { color: var(--navy); background: rgba(22,48,94,.09); }
.nav .btn { margin-left: 8px; padding: 10px 20px; font-size: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-weight: 700; letter-spacing: 0.015em;
  font-size: 15px; padding: 13px 26px; border: none; cursor: pointer;
  border-radius: 999px; font-family: 'Manrope', system-ui, sans-serif;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-red { background: var(--navy); color: #fff; box-shadow: 0 6px 18px rgba(14,33,69,.28); } /* primary */
.btn-red:hover { background: var(--navy-d); box-shadow: 0 10px 26px rgba(14,33,69,.34); }
.btn-yellow { background: #e7edf6; color: var(--navy); border: 1px solid #d6dfec; }           /* secondary / silver */
.btn-yellow:hover { background: #dbe4f1; }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
/* button context on dark backdrops */
.hero .btn-red, .section-dark .btn-red { background: #fff; color: var(--navy); box-shadow: 0 10px 26px rgba(0,0,0,.35); }
.hero .btn-red:hover, .section-dark .btn-red:hover { background: var(--silver); }
.hero .btn-yellow { background: #fff; color: var(--navy); border-color: transparent; box-shadow: 0 10px 26px rgba(0,0,0,.35); }
.hero .btn-yellow:hover { background: var(--silver); }
.section-dark .btn-yellow { background: rgba(201,212,226,.16); color: #e6edf6; border-color: rgba(201,212,226,.35); }
.section-dark .btn-yellow:hover { background: rgba(201,212,226,.26); }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 88% -12%, rgba(201,212,226,.20), transparent 62%),
    radial-gradient(720px 460px at -8% 112%, rgba(227,25,127,.13), transparent 60%),
    linear-gradient(163deg, #1e3f78 0%, var(--navy) 46%, var(--navy-d) 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 84px 24px 96px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(36px, 4.8vw, 60px); color: #fff; font-weight: 800; letter-spacing: -0.03em; }
.hero h1 .yl {
  background: linear-gradient(92deg, #c9d4e2 0%, #f2f6fb 60%, #b6c6da 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .slogan { color: var(--silver); font-size: 19px; font-weight: 700; margin: 20px 0 10px; }
.hero p.sub { color: #b4c1d6; font-size: 17.5px; max-width: 48ch; }
.hero .cta-row { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* hero product visual + glow + floating chips */
.hero-visual { position: relative; justify-self: center; }
.hero-visual .glow {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%,-50%);
  width: 130%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201,212,226,.30), rgba(201,212,226,.10) 55%, transparent 72%);
  filter: blur(6px); pointer-events: none;
}
.hero .tub { position: relative; max-height: 470px; width: auto; margin: 0 auto; filter: drop-shadow(0 34px 44px rgba(0,0,0,.5)); }

/* brand emblem (about hero) — navy wordmark needs a lighter halo to read on navy */
.hero .emblem {
  position: relative; width: min(440px, 100%); height: auto; margin: 0 auto;
  filter: drop-shadow(0 16px 26px rgba(4,10,24,.32));
}
.hero-visual .glow.glow-bright {
  width: 134%; aspect-ratio: 1.3; top: 50%;
  background: radial-gradient(closest-side, rgba(248,251,254,.98), rgba(217,227,239,.55) 54%, rgba(217,227,239,.18) 72%, transparent 82%);
  filter: blur(8px);
}
.chips-float { position: absolute; inset: 0; pointer-events: none; }
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.94); color: var(--navy);
  font-weight: 800; font-size: 13px; padding: 9px 15px; border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  white-space: nowrap; animation: chip-float 5.5s ease-in-out infinite;
}
.chip svg { width: 15px; height: 15px; }
.chip-1 { top: 7%; right: calc(100% + 14px); }
.chip-2 { top: 44%; left: calc(100% + 14px); animation-delay: 1.6s; }
.chip-3 { bottom: 5%; right: calc(100% + 30px); color: var(--pink); animation-delay: 3.1s; }
@keyframes chip-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* per-product hero accent glow */
.product-hero {
  background:
    radial-gradient(760px 420px at 84% -6%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 62%),
    radial-gradient(560px 380px at -8% 112%, rgba(227,25,127,.10), transparent 60%),
    linear-gradient(163deg, #1e3f78 0%, var(--navy) 46%, var(--navy-d) 100%);
}
.product-hero .hero-inner { padding: 68px 24px 76px; }
.product-hero .tub { max-height: 430px; }

/* ---------- stats strip (overlaps hero) ---------- */
.stats-wrap { max-width: var(--maxw); margin: -46px auto 0; padding: 0 24px; position: relative; z-index: 5; }
.stats {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-2); display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.stat { padding: 24px 16px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat strong { font-family: 'Sora', sans-serif; font-size: 25px; letter-spacing: -0.02em; color: var(--navy); display: block; line-height: 1.2; }
.stat span { font-size: 13.5px; color: var(--steel); font-weight: 600; }

/* ---------- sections ---------- */
section { padding: 84px 0; }
.section-dark {
  background:
    radial-gradient(800px 420px at 90% 0%, rgba(201,212,226,.10), transparent 60%),
    linear-gradient(180deg, #152c56 0%, #0f2348 100%);
  color: #fff;
}
.kicker {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(22,48,94,.08); color: var(--navy);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.13em; font-size: 12px;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 18px;
}
.section-dark .kicker, .hero .kicker { background: rgba(201,212,226,.16); color: #dbe5f1; }
.kicker-accent, .hero .kicker-accent, .section-dark .kicker-accent { background: var(--accent); color: #fff; }
.kicker-pink { background: rgba(227,25,127,.10); color: var(--pink); }
h2.title { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 14px; letter-spacing: -0.025em; }
p.lede { font-size: 17.5px; max-width: 62ch; color: #4b586b; }
.section-dark p.lede { color: #aebbd0; }

/* ---------- grid cards ---------- */
.grid { display: grid; gap: 22px; margin-top: 40px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; box-shadow: var(--shadow-1);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 15px; color: #5d6a7d; }
.card .ic {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 18px;
  background: color-mix(in srgb, var(--accent) 11%, #fff);
  color: var(--accent);
}
.card .ic svg { width: 23px; height: 23px; }
.section-dark .card { background: rgba(255,255,255,.05); border-color: rgba(201,212,226,.16); box-shadow: none; }
.section-dark .card h3 { color: #fff; }
.section-dark .card p { color: #aebbd0; }
.section-dark .card .ic { background: color-mix(in srgb, var(--accent) 26%, transparent); color: #dbe5f1; }

/* ---------- pinkdrive highlight panel ---------- */
.pink-panel {
  background: linear-gradient(135deg, #ffffff 0%, #fdf2f8 55%, #fbe8f2 100%);
  border: 1px solid #f4d3e5; border-radius: 24px;
  padding: 52px 56px; box-shadow: var(--shadow-1);
  position: relative; overflow: hidden;
}
.pink-panel::after {
  content: ""; position: absolute; right: -90px; top: -90px; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(closest-side, rgba(227,25,127,.12), transparent); pointer-events: none;
}
.pink-panel > * { position: relative; }
@media (max-width: 560px) { .pink-panel { padding: 32px 24px; } }

/* white contact backdrop for section rhythm */
#contact { background: #fff; }

/* ---------- range cards ---------- */
.range-grid { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin-top: 44px; }
.range-card {
  position: relative; flex: 0 1 calc((100% - 44px) / 3); min-width: 255px;
  background: #fff; border-radius: 20px; text-align: center; padding: 34px 22px 28px;
  text-decoration: none; color: var(--ink); overflow: hidden;
  box-shadow: 0 10px 30px rgba(3,10,26,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.range-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 55%, #fff), var(--accent));
}
.range-card::after {
  content: ""; position: absolute; top: -70px; left: 50%; transform: translateX(-50%);
  width: 75%; height: 150px; pointer-events: none;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 20%, transparent), transparent);
}
.range-card .art {
  display: flex; align-items: center; justify-content: center;
  position: relative; width: 100%; height: 250px;
  margin: 0 auto 18px;
}
.range-card .art img { width: auto; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 20px rgba(3,10,26,.35)); transition: transform .35s ease; }
.range-card:hover { transform: translateY(-6px); box-shadow: 0 24px 52px rgba(3,10,26,.5); }
.range-card:hover .art img { transform: scale(1.05); }
.range-card h3 { font-size: 18px; }
.range-card p { font-size: 14px; color: #5d6a7d; margin-top: 7px; }
.range-card .more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 15px;
  color: var(--accent); font-weight: 800; font-size: 13.5px;
}
.more svg { width: 16px; height: 16px; transition: transform .2s ease; }
.range-card:hover .more svg, .post:hover .more svg { transform: translateX(4px); }

/* ---------- product list (products page) ---------- */
.post {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 260px 1fr; gap: 0; margin-top: 26px;
  text-decoration: none; color: var(--ink); box-shadow: var(--shadow-1);
  transition: transform .25s ease, box-shadow .25s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.post .thumb {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, #fff), color-mix(in srgb, var(--accent) 16%, #fff));
  overflow: hidden; border-right: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.post .thumb img { width: auto; height: 250px; min-height: 0; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(14,33,69,.22)); transition: transform .35s ease; }
.post:hover .thumb img { transform: scale(1.04); }
.post .body { padding: 30px 34px; align-self: center; }
.post .meta {
  display: inline-block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, #fff);
  font-weight: 800; padding: 5px 12px; border-radius: 999px;
}
.post h3 { font-size: 23px; margin: 12px 0 8px; }
.post p { color: #5d6a7d; font-size: 15px; }
.post .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--accent); font-weight: 800; font-size: 13.5px; }

/* ---------- product page ---------- */
.spec-table {
  width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-1);
}
.spec-table td { padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: 15px; }
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table td:first-child {
  font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em;
  width: 190px; color: var(--steel); background: #fafbfd;
}
.checklist { list-style: none; margin-top: 26px; }
.checklist li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 16px 12px 48px; margin-bottom: 10px; position: relative;
  font-size: 15.5px; box-shadow: var(--shadow-1);
}
.checklist li::before {
  content: "✓"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 23px; height: 23px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 14%, #fff); color: var(--accent);
  font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 40px; }
form .field { margin-bottom: 16px; }
form label { display: block; font-weight: 800; font-size: 13px; letter-spacing: 0.02em; margin-bottom: 6px; color: #33415a; }
form input, form textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); background: #fff;
  font-family: inherit; font-size: 15px; border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s;
}
form input:focus, form textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(22,48,94,.10);
}
form .btn { margin: 4px 10px 8px 0; }
.map-frame {
  border: 1px solid var(--line); border-radius: var(--r); width: 100%; height: 100%;
  min-height: 400px; box-shadow: var(--shadow-1);
}
.contact-info { margin-top: 26px; font-size: 15px; }
.contact-info strong { text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.1em; display: block; color: var(--steel); }
.contact-info div { margin-bottom: 12px; }
.form-note { font-size: 13px; color: var(--steel); margin-top: 12px; }

/* ---------- footer ---------- */
footer { background: linear-gradient(180deg, var(--navy-d), var(--navy-deep)); color: #a6b4ca; }
.foot {
  max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 28px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
.foot .logobox { background: #fff; display: inline-block; padding: 12px 16px; border-radius: 14px; margin-bottom: 16px; box-shadow: 0 8px 22px rgba(0,0,0,.3); }
.foot .logobox img { height: 50px; width: auto; }
.foot h4 { color: #fff; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.foot ul { list-style: none; }
.foot li { margin-bottom: 9px; }
.foot a { color: #a6b4ca; text-decoration: none; font-size: 14.5px; transition: color .2s; }
.foot a:hover { color: #fff; }
.foot p { font-size: 14.5px; max-width: 36ch; }
.legal {
  border-top: 1px solid rgba(201,212,226,.14); text-align: center; padding: 20px 24px; font-size: 12.5px; color: #7d8ca8;
}
.legal .af { color: var(--silver); }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  background: linear-gradient(160deg, #2ee06f, #1eb85a); color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  box-shadow: 0 10px 26px rgba(20,120,60,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float svg { width: 29px; height: 29px; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 34px rgba(20,120,60,.5); }

/* ---------- reveal on scroll (JS adds .rv; degrades gracefully) ---------- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.rv-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .chip { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; padding: 60px 24px 76px; }
  .hero .cta-row { justify-content: center; }
  .hero p.sub { margin: 0 auto; }
  .hero .tub, .product-hero .tub { max-height: 340px; }
  .hero .emblem { width: min(380px, 86vw); }
  .hero-visual { display: flex; flex-direction: column; align-items: center; gap: 18px; }
  .chips-float { position: static; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; pointer-events: auto; }
  .chip { position: static; animation: none; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 320px; }
  .foot { grid-template-columns: 1fr; gap: 30px; }
  .post { grid-template-columns: 1fr; }
  .post .thumb { border-right: 0; border-bottom: 1px solid var(--line); }
  .post .thumb img { height: 210px; }
  .post .body { padding: 24px 26px; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .range-card { flex-basis: 100%; }
  .nav { flex-direction: column; gap: 10px; padding: 14px 16px; }
  .nav ul { justify-content: center; gap: 2px; }
  .nav .btn { margin-left: 4px; }
  .hero-inner { padding: 44px 20px 64px; }
  .stats-wrap { margin-top: -36px; }
  .stat strong { font-size: 21px; }
  .stat span { font-size: 12.5px; }
}
