/* CLENIZA complete buyer-experience redesign */
:root {
  --cz-ink: #061826;
  --cz-navy: #063f78;
  --cz-blue: #075fae;
  --cz-cyan: #10b9d8;
  --cz-green: #15b884;
  --cz-leaf: #dff8e9;
  --cz-sky: #eefaff;
  --cz-paper: #ffffff;
  --cz-mist: #f5fbfc;
  --cz-line: #d7e8ef;
  --cz-muted: #52687a;
  --cz-soft-shadow: 0 18px 50px rgba(6, 63, 120, 0.1);
  --cz-strong-shadow: 0 28px 80px rgba(6, 63, 120, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cz-ink);
  background: var(--cz-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0;
  color: var(--cz-muted);
  font-size: 16px;
  line-height: 1.72;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--cz-ink);
  letter-spacing: 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--cz-navy);
  color: #e9fbff;
  font-size: 13px;
  font-weight: 800;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(215, 232, 239, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 26px;
}

.brand {
  display: grid;
  grid-template-columns: 48px auto;
  align-items: center;
  gap: 12px;
  color: var(--cz-blue);
  font-weight: 950;
}

.brand img {
  width: 48px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 24px;
  line-height: 0.95;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--cz-green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #243b51;
  font-size: 14px;
  font-weight: 850;
}

.nav-links a:hover {
  color: var(--cz-blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cz-line);
  border-radius: 12px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--cz-navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--cz-navy);
  box-shadow: 0 16px 34px rgba(6, 63, 120, 0.18);
}

.btn-secondary {
  color: var(--cz-navy);
  background: #fff;
  border-color: var(--cz-line);
}

.btn-accent {
  color: #fff;
  background: var(--cz-green);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cz-blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  content: "";
  background: var(--cz-green);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(240, 252, 246, 0.98) 0%, rgba(255, 255, 255, 0.99) 44%, rgba(233, 249, 255, 0.96) 100%);
}

.hero::before,
.hero::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  gap: 56px;
  align-items: center;
  min-height: 680px;
  padding: 62px 0;
}

.hero-copy-wrap {
  max-width: 650px;
}

.hero-title {
  max-width: 650px;
  margin: 18px 0 20px;
  color: var(--cz-navy);
  font-size: clamp(52px, 5.4vw, 76px);
  font-weight: 950;
  line-height: 0.94;
}

.hero-title span {
  display: block;
}

.hero-title-accent {
  color: var(--cz-green);
}

.hero-copy {
  max-width: 610px;
  color: #314b60;
  font-size: 18px;
  line-height: 1.75;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(215, 232, 239, 0.95);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--cz-strong-shadow);
}

.hero-promo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.hero-commerce {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 610px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--cz-line);
  border-left: 5px solid var(--cz-green);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--cz-soft-shadow);
}

.hero-commerce span {
  display: block;
  color: var(--cz-green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-commerce strong {
  display: block;
  margin-top: 6px;
  color: var(--cz-navy);
  font-size: 22px;
  line-height: 1.22;
}

.hero-commerce small {
  display: block;
  margin-top: 6px;
  color: #50687a;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.hero-commerce nav {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 10px;
}

.hero-commerce a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--cz-line);
  border-radius: 10px;
  color: var(--cz-navy);
  background: #fff;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.hero-commerce .hero-commerce-primary {
  border-color: var(--cz-navy);
  color: #fff;
  background: var(--cz-navy);
}

.hero-signal-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
  color: var(--cz-navy);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-signal-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-signal-line span::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cz-green);
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--cz-mist);
}

.section-dark {
  color: #fff;
  background: var(--cz-navy);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.two-col h2,
.page-hero h1,
.cta-band h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 950;
  line-height: 1.02;
}

.lead {
  color: #445e72;
  font-size: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.panel,
.variant-card,
.product-detail img {
  border: 1px solid var(--cz-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(6, 63, 120, 0.08);
}

.card-body {
  padding: 22px;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--cz-navy);
  font-size: 22px;
}

.product-card {
  display: grid;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 360px;
  padding: 20px;
  object-fit: contain;
  background: linear-gradient(180deg, #fff 0%, var(--cz-sky) 100%);
}

.product-card .card-body {
  display: grid;
  gap: 12px;
}

.product-card .btn {
  width: 100%;
}

.product-tag,
.price-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--cz-navy);
  background: #eaf8ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-pill {
  min-height: 48px;
  margin-top: 20px;
  color: #fff;
  background: var(--cz-green);
  font-size: 14px;
  text-transform: none;
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
  color: #314b60;
  line-height: 1.62;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--cz-green);
}

.lineup-frame img {
  width: 100%;
  border-radius: 12px;
}

.refill-story {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    linear-gradient(90deg, var(--cz-navy) 0%, var(--cz-navy) 45%, #f1fcf7 45%, #f1fcf7 100%);
}

.refill-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 58px;
  align-items: center;
}

.refill-story h2,
.refill-story-lead p {
  color: #fff;
}

.refill-story h2 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
}

.refill-story .eyebrow {
  color: #bff7df;
}

.refill-path {
  display: grid;
  gap: 14px;
}

.refill-path article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(6, 63, 120, 0.09);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--cz-soft-shadow);
}

.refill-path article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--cz-green);
  font-size: 13px;
  font-weight: 950;
}

.refill-path h3 {
  color: var(--cz-navy);
  font-size: 20px;
}

.refill-path p {
  margin-top: 6px;
  font-weight: 650;
}

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

.advantage {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.steps .card {
  padding: 28px;
}

.audience-card {
  min-height: 190px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--cz-navy), var(--cz-blue));
  box-shadow: var(--cz-strong-shadow);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.page-hero {
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(240, 253, 246, 0.96), rgba(238, 250, 255, 0.96));
}

.page-hero p {
  max-width: 760px;
  margin-top: 16px;
  font-size: 18px;
}

.product-detail {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.product-detail img {
  width: 100%;
  max-height: 650px;
  padding: 24px;
  object-fit: contain;
  background: linear-gradient(180deg, #fff, var(--cz-sky));
}

.product-detail h2 {
  margin: 28px 0 12px;
  color: var(--cz-navy);
  font-size: 24px;
}

.product-detail ol {
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--cz-ink);
  line-height: 1.7;
}

.checkout-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 54px;
  align-items: center;
}

.checkout-banner {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  padding: 16px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--cz-strong-shadow);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.checkout-head {
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}

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

.variant-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 126px;
  padding: 14px;
}

.variant-card img {
  width: 88px;
  height: 96px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--cz-sky);
}

.variant-card h3 {
  color: var(--cz-ink);
  font-size: 18px;
}

.variant-card p {
  font-size: 13px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 36px 36px 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--cz-line);
  border-radius: 999px;
  background: #fff;
}

.qty-control button {
  width: 36px;
  height: 36px;
  border: 0;
  color: var(--cz-navy);
  background: #f0f9fb;
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
}

.qty-control strong {
  color: var(--cz-navy);
  text-align: center;
}

.order-summary {
  position: sticky;
  top: 94px;
}

.panel-pad {
  padding: 24px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cz-line);
}

.summary-line span {
  color: var(--cz-muted);
  font-weight: 850;
}

.summary-line strong {
  color: var(--cz-navy);
}

.summary-list {
  min-height: 58px;
  margin: 16px 0;
  color: var(--cz-muted);
  line-height: 1.7;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--cz-line);
}

.checkout-status {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--cz-navy);
  background: #eef9fd;
  font-weight: 850;
}

.checkout-status.ready {
  color: #07543f;
  background: #e7fbf3;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--cz-ink);
  font-size: 13px;
  font-weight: 900;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--cz-line);
  border-radius: 10px;
  font: inherit;
  color: var(--cz-ink);
  background: #fff;
}

.form textarea {
  min-height: 112px;
  resize: vertical;
}

.footer {
  padding: 54px 0 22px;
  color: #dcefff;
  background: #052f59;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.8fr;
  gap: 28px;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer p,
.footer a {
  display: block;
  margin-top: 10px;
  color: #cfe8f8;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #cfe8f8;
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--cz-line);
    background: #fff;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .hero-grid,
  .two-col,
  .section-head,
  .checkout-hero-grid,
  .checkout-layout,
  .product-detail,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-stage {
    order: -1;
  }

  .grid-3,
  .grid-4,
  .variant-grid,
  .footer-grid,
  .refill-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .refill-story {
    background: var(--cz-navy);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar .container {
    display: block;
  }

  .topbar span {
    display: block;
    margin: 4px 0;
  }

  .nav {
    min-height: 66px;
  }

  .nav-links {
    inset: 66px 0 auto 0;
  }

  .brand {
    grid-template-columns: 42px auto;
    gap: 9px;
  }

  .brand img {
    width: 42px;
    height: 35px;
  }

  .brand span {
    font-size: 22px;
  }

  .hero-grid {
    gap: 26px;
    padding: 28px 0 50px;
  }

  .hero-stage {
    padding: 12px;
  }

  .hero-title {
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.05;
  }

  .hero-copy,
  .page-hero p,
  .lead,
  .section-head p {
    font-size: 15px;
    line-height: 1.66;
  }

  .hero-commerce {
    margin-top: 24px;
    padding: 16px;
  }

  .hero-commerce strong {
    font-size: 19px;
  }

  .hero-commerce nav {
    grid-template-columns: 1fr;
  }

  .hero-commerce a {
    width: 100%;
  }

  .hero-signal-line {
    gap: 10px 16px;
    font-size: 11px;
  }

  .section,
  .refill-story {
    padding: 52px 0;
  }

  .page-hero {
    padding: 42px 0;
  }

  .section-head h2,
  .two-col h2,
  .page-hero h1,
  .cta-band h2 {
    font-size: 32px;
    line-height: 1.06;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .variant-grid,
  .footer-grid,
  .refill-story-grid {
    grid-template-columns: 1fr;
  }

  .refill-path article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .refill-path article > span {
    width: 40px;
    height: 40px;
  }

  .product-card img {
    height: 330px;
  }

  .variant-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .variant-card img {
    width: 64px;
    height: 84px;
  }

  .variant-card .qty-control {
    grid-column: 1 / -1;
    justify-self: stretch;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }

  .variant-card .qty-control button,
  .variant-card .qty-control strong {
    display: grid;
    place-items: center;
    width: auto;
    height: 40px;
  }

  .checkout-banner {
    padding: 10px;
  }

  .product-detail img {
    max-height: 520px;
  }

  .cta-band {
    padding: 24px;
  }
}
