/* ============================================================
   Malaysia Clear Ice | Fun Black
   ============================================================ */

:root {
  /* Fun Black palette: ink-blue near-black + cobalt + coral + mint */
  --bg:      #0A0F1A;
  --surface: #141B2E;     /* slightly lighter "dark card" surface */
  --ink:     #F4F1E8;     /* the foreground / text / border color */
  --ink-2:   rgba(244,241,232,0.72);
  --mint:    #5EEAD4;     /* replaces yellow's role */
  --yellow:  #5EEAD4;     /* alias for legacy var(--yellow) usage */
  --cobalt:  #2854F4;
  --coral:   #FF6B4A;
  --white:   #ffffff;
  --line:    #F4F1E8;
  --rule:    rgba(244,241,232,0.14);

  --display: "Archivo Black", "Inter", system-ui, sans-serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --pad: clamp(20px, 4vw, 64px);
  --maxw: 1280px;
  --r: 24px;
  --r-sm: 14px;
  /* Sticker offset shadows: now in coral so they pop against the black page */
  --shadow-ink: 6px 6px 0 var(--coral);
  --shadow-ink-lg: 8px 8px 0 var(--coral);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--cobalt); color: var(--white); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 14px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Container / shared type
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 12px 0 0;
  text-wrap: balance;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0;
}

.t-cobalt { color: var(--cobalt); }
.t-yellow { color: var(--yellow); }
.t-mint   { color: var(--mint); }
.t-coral  { color: var(--coral); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 16px 22px;
  cursor: pointer;
  transition: transform .15s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--cobalt);
  color: var(--white);
}
.btn--primary:hover { background: #1f4fe0; }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--yellow); }

.btn--wa {
  background: var(--ink);
  color: var(--yellow);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.86rem;
}
.btn--wa:hover { background: #1a2138; }

.btn--pill {
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.8rem;
}
.btn--pill--ink { background: var(--ink); color: var(--yellow); }
.btn--pill--ink:hover { background: var(--cobalt); color: var(--white); }
.btn--pill--white { background: var(--white); color: var(--ink); }
.btn--pill--white:hover { background: var(--ink); color: var(--white); }

.btn--final {
  background: var(--ink);
  color: var(--yellow);
  font-size: 1.05rem;
  padding: 20px 32px;
  border-radius: 999px;
}
.btn--final:hover { background: var(--cobalt); color: var(--white); }

.link--underline {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
}
.link--underline:hover { color: var(--cobalt); border-color: var(--cobalt); }

/* ============================================================
   Dots & chips
   ============================================================ */
.dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 99px;
  background: #22c55e;
  flex: 0 0 auto;
}
.dot--cobalt { background: var(--cobalt); width: 8px; height: 8px; }
.dot--pulse { animation: pulse 1.6s ease-out infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  padding: 4px;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.04); background: var(--coral); }

.brand__mark--on-ink {
  background: var(--cobalt);
  border-color: var(--yellow);
}
.brand__name {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  gap: clamp(18px, 2.5vw, 32px);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav__links a { position: relative; padding: 6px 0; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  gap: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--yellow);
  margin: 4px 0;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 8px var(--pad) 22px;
  border-bottom: 2px solid var(--ink);
  background: var(--bg);
}
.nav__mobile a {
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  background: var(--white);
  border: 2px solid var(--ink);
}
.nav__mobile a.btn--wa { background: var(--ink); color: var(--yellow); }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__inner > .btn--wa { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; flex-direction: column; }
  .nav__mobile[data-open="true"] { display: flex; }
}

/* ============================================================
   Sections (shared spacing)
   ============================================================ */
.section {
  padding: clamp(60px, 9vw, 120px) 0;
}
.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.section__head--center {
  justify-content: center;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(32px, 5vw, 56px) 0 clamp(60px, 9vw, 100px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero__headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.8rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 20px 0 0;
  text-wrap: balance;
}
.hero__lastline {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  flex-wrap: wrap;
}
.hero__dot {
  display: inline-block;
  width: clamp(48px, 6vw, 86px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--coral);
  border: 2px solid var(--ink);
}
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.5;
  color: var(--ink-2);
  margin: clamp(20px, 2.5vw, 28px) 0 0;
  max-width: 540px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3vw, 32px);
}
.hero__stats {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(32px, 4vw, 40px);
  flex-wrap: wrap;
}
.hero__stats .stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1;
}
.hero__stats .stat__lbl {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-2);
  margin-top: 6px;
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 660px;
}
.hero__media-card {
  position: absolute;
  inset: 0;
}
.hero__media-bg {
  position: absolute;
  inset: 0;
  background: var(--cobalt);
  border-radius: clamp(20px, 2.5vw, 32px);
  transform: rotate(-3deg);
  border: 2px solid var(--ink);
}
.hero__media-img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: clamp(16px, 2vw, 24px);
  object-fit: cover;
  border: 2px solid var(--ink);
}
.hero__badge {
  position: absolute;
  top: -24px;
  right: -16px;
  width: clamp(90px, 11vw, 120px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1.05;
  transform: rotate(8deg);
  border: 4px solid var(--ink);
}
.hero__badge span {
  font-size: 0.7rem;
  display: block;
  margin-top: 2px;
}
.hero__pop {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-ink-lg);
  max-width: 280px;
}
.hero__pop-dot {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: var(--coral);
  flex: 0 0 auto;
  border: 2px solid var(--ink);
}
.hero__pop strong {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
}
.hero__pop span {
  font-size: 0.78rem;
  color: var(--ink-2);
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 1 / 1; max-height: none; margin-top: 24px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--yellow);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -0.01em;
}
.marquee__track {
  display: inline-block;
  animation: scroll 30s linear infinite;
  padding-left: 100%;
}
.marquee__track span { display: inline-block; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products__grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: var(--r);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-ink);
}
.card--yellow { background: var(--yellow); color: var(--ink); }
.card--white  { background: var(--white);  color: var(--ink); }
.card--coral  { background: var(--coral);  color: var(--white); }
.card--cobalt { background: var(--cobalt); color: var(--white); }
.card--ask {
  background: var(--ink);
  color: var(--yellow);
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.card--ask .card__name {
  font-size: clamp(1.6rem, 2.8vw, 2rem);
}
.card--ask .card__sub {
  max-width: 32ch;
  margin: 4px auto 18px;
}

.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--ink);
  color: var(--yellow);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card--coral .tag { background: var(--white); color: var(--ink); }
.card--cobalt .tag { background: var(--white); color: var(--ink); }
.card--yellow .tag { background: var(--ink); color: var(--yellow); }

.card__media {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: rgba(255,255,255,0.45);
  overflow: hidden;
  border: 2px solid rgba(14,20,40,0.06);
}
.card--white .card__media { background: rgba(14,20,40,0.04); }
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover .card__media img { transform: scale(1.04); }

.card__name {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}
.card__sub {
  margin: 0;
  font-size: 0.86rem;
  opacity: 0.85;
}
.card__foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}
.card__price {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  letter-spacing: -0.02em;
}
.card__price span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  margin-left: 2px;
}
.card__pack {
  font-size: 0.74rem;
  opacity: 0.7;
  margin-top: 2px;
}

/* ============================================================
   B2B / WHOLESALE
   ============================================================ */
.b2b__panel {
  background: var(--cobalt);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(36px, 6vw, 64px) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  box-shadow: var(--shadow-ink-lg);
}
@media (max-width: 880px) {
  .b2b__panel { grid-template-columns: 1fr; }
}
.b2b__panel .display { color: var(--white); }
.b2b__lede {
  margin: 18px 0 22px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.55;
  opacity: 0.95;
  max-width: 48ch;
}
.b2b__perks {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.b2b__perks li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}
.b2b__perks li span {
  color: var(--yellow);
  font-weight: 900;
  font-size: 1rem;
}
.b2b__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 32px);
}
.b2b__cta .btn--final {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.btn--final--ink {
  background: var(--ink);
  color: var(--yellow);
}
.btn--final--ink:hover {
  background: var(--yellow);
  color: var(--ink);
}
.b2b__note {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.85;
  text-align: center;
}

/* ============================================================
   REASONS
   ============================================================ */
.reasons__panel {
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(36px, 6vw, 64px) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 880px) { .reasons__panel { grid-template-columns: 1fr; } }

.reasons__panel .display { color: var(--white); }
.reasons__lede {
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.88;
  max-width: 38ch;
}
.reasons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
}
@media (max-width: 540px) { .reasons__grid { grid-template-columns: 1fr; } }
.reasons__grid li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 22px;
}
.reasons__num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.reasons__panel .eyebrow { color: var(--white); }
.reasons__grid h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 10px 0 8px;
  letter-spacing: -0.01em;
}
.reasons__grid p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.82;
}

/* ============================================================
   SEE THE DIFFERENCE (cloudy vs clear)
   ============================================================ */
.difference__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .difference__grid { grid-template-columns: 1fr; } }
.difference__lede {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.55;
  max-width: 52ch;
  color: var(--ink-2);
}
.difference__media img {
  width: 100%;
  height: auto;
  border-radius: clamp(16px, 2vw, 24px);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--coral);
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .who__grid { grid-template-columns: 1fr; } }
.who__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 480px) { .who__tiles { grid-template-columns: 1fr; } }
.tile {
  padding: 16px 18px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  transition: transform .2s var(--ease);
}
.tile:hover { transform: translateY(-2px); }
.tile--white { background: var(--white); }
.tile--yellow { background: var(--yellow); }
.tile h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.tile p { margin: 0; font-size: 0.82rem; color: var(--ink-2); }

.who__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.who__photos img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid var(--ink);
}
.who__photos img:nth-child(1) { aspect-ratio: 3/4; }
.who__photos img:nth-child(4) { aspect-ratio: 3/4; }

/* ============================================================
   ENGRAVING
   ============================================================ */
.engraving__panel {
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 64px) clamp(28px, 4vw, 56px);
}
.engraving__blob {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: var(--coral);
  border: 2px solid var(--ink);
}
.engraving__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .engraving__inner { grid-template-columns: 1fr; } }

.engraving__lede {
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 52ch;
  margin: 18px 0 0;
}
.engraving__cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 26px;
}
.engraving__cta .btn--primary { background: var(--ink); color: var(--yellow); }
.engraving__cta .btn--primary:hover { background: var(--cobalt); color: var(--white); }
.engraving__price {
  padding: 16px 22px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
}
.engraving__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  border: 3px solid var(--ink);
  transform: rotate(2deg);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
@media (max-width: 980px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process__grid { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.step:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.step__num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--coral);
  line-height: 1;
}
.step h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 6px 0 8px;
  letter-spacing: -0.01em;
}
.step p { margin: 0; font-size: 0.88rem; color: var(--ink-2); line-height: 1.5; }

/* ============================================================
   CARE GUIDE (handling tips)
   ============================================================ */
.care__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 880px) { .care__grid { grid-template-columns: 1fr; } }
.care__cta {
  margin: clamp(28px, 4vw, 40px) auto 0;
  text-align: center;
  font-size: 1rem;
  max-width: 56ch;
  color: var(--ink-2);
}
.care__cta .link--underline { margin-left: 6px; }
.care__poster {
  margin: clamp(36px, 5vw, 56px) auto 0;
  max-width: 360px;
  text-align: center;
}
.care__poster img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--coral);
}
.care__poster figcaption {
  margin: 16px 0 0;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.faq__item {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow .25s var(--ease), transform .2s var(--ease);
}
.faq__item[open] {
  box-shadow: 6px 6px 0 var(--coral);
  transform: translate(-2px, -2px);
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--mint); }
.faq__toggle {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--mint);
  line-height: 1;
  transition: transform .25s var(--ease);
}
.faq__item[open] .faq__toggle { transform: rotate(45deg); }
.faq__answer {
  padding: 0 24px 22px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.faq__answer p { margin: 0; }
.faq__cta {
  margin: clamp(28px, 4vw, 40px) auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--ink-2);
}
.faq__cta .link--underline { margin-left: 6px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__title {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: clamp(24px, 4vw, 36px);
}
.testimonials__note {
  margin-top: clamp(20px, 3vw, 32px);
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 70ch;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .testimonials__grid { grid-template-columns: 1fr; } }
.quote {
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 26px;
  background: var(--white);
}
.quote--coral { background: var(--coral); color: var(--white); }
.quote p {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-size: 0.84rem;
  font-weight: 600;
}
.quote footer img {
  width: 42px; height: 42px;
  border-radius: 99px;
  object-fit: cover;
  border: 2px solid var(--ink);
}

/* ============================================================
   DELIVERY
   ============================================================ */
.delivery__panel {
  background: var(--ink);
  color: var(--white);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(36px, 6vw, 56px) clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
@media (max-width: 880px) { .delivery__panel { grid-template-columns: 1fr; } }
.delivery__panel .display { color: var(--white); }
.delivery__lede {
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.5;
  opacity: 0.72;
  max-width: 52ch;
}
.delivery__cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.delivery__cities li {
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255,210,63,0.10);
  border: 1px solid var(--yellow);
}
.delivery__cities h3 {
  font-family: var(--display);
  color: var(--yellow);
  font-size: 1.3rem;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.delivery__cities p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center;
  padding-bottom: clamp(60px, 8vw, 96px);
}
.final__title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 11vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
}
.final .btn--final { margin-top: 28px; }
.final__alt {
  margin: 28px 0 0;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.final__alt a {
  font-weight: 700;
  color: var(--cobalt);
  border-bottom: 2px solid currentColor;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(40px, 6vw, 56px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.brand__name--lg {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__sub {
  font-size: 0.82rem;
  opacity: 0.7;
  margin: 8px 0 0;
}
.footer__sub a {
  color: var(--mint);
  border-bottom: 1px solid rgba(94,234,212,0.4);
  transition: border-color .25s var(--ease);
}
.footer__sub a:hover { border-color: var(--mint); }
.footer__about {
  margin: 18px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.72;
  max-width: 36ch;
}
.footer__col h4 {
  font-family: var(--display);
  font-size: 0.82rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.footer__col ul li {
  margin: 8px 0 0;
}
.footer__col a {
  font-size: 0.9rem;
  opacity: 0.78;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.footer__col a:hover { opacity: 1; color: var(--yellow); }
.footer__bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.76rem;
  opacity: 0.55;
}

/* ============================================================
   Floating WhatsApp FAB (mobile-helpful)
   ============================================================ */
.fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18), 0 0 0 2px var(--ink);
  transition: transform .25s var(--ease);
}
.fab:hover { transform: translateY(-3px); }
@media (min-width: 881px) {
  .fab { bottom: 28px; right: 28px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; padding-left: 0; }
}

/* ============================================================
   FUN BLACK — overrides for the previously light-themed rules.
   These cascade-win because they appear last.
   ============================================================ */

:root {
  /* Always-dark color used for borders on light cards, tag pills, etc.
     where the design needs a stamp-black look regardless of page bg.   */
  --ink-deep: #0E1428;
}

html, body { background: var(--bg); color: var(--ink); }

/* subtle "spotlight" depth on the page so pure black doesn't feel flat */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 50% -10%, rgba(40,84,244,0.18), transparent 70%),
    radial-gradient(50% 40% at 85% 25%, rgba(255,107,74,0.10), transparent 70%),
    radial-gradient(40% 35% at 10% 60%, rgba(94,234,212,0.07), transparent 70%);
}

/* Brand mark tiles */
.brand__mark           { background: var(--cobalt); border-color: var(--ink); }
.brand__mark--on-ink   { background: var(--coral);  border-color: var(--mint); }
.brand:hover .brand__mark { background: var(--mint); transform: rotate(-6deg) scale(1.04); }

/* Nav */
.nav__mobile           { background: var(--bg); border-bottom-color: var(--ink); }
.nav__mobile a         { background: var(--surface); color: var(--ink); border-color: var(--ink); }
.nav__mobile a.btn--wa { background: var(--mint); color: var(--ink-deep); }
.nav__toggle           { background: var(--cobalt); border-color: var(--ink); }
.nav__toggle span      { background: var(--mint); }
.nav__links a::after   { background: var(--mint); }

/* Buttons */
.btn--wa               { background: var(--mint); color: var(--ink-deep); }
.btn--wa:hover         { background: var(--cobalt); color: var(--white); }
.btn--outline          { color: var(--ink); border-color: var(--ink); }
.btn--outline:hover    { background: var(--ink); color: var(--ink-deep); }
.btn--final            { background: var(--mint); color: var(--ink-deep); }
.btn--final:hover      { background: var(--cobalt); color: var(--white); }
.btn--final--ink       { background: var(--mint); color: var(--ink-deep); }
.btn--final--ink:hover { background: var(--white); color: var(--cobalt); }
.btn--pill--ink        { background: var(--ink-deep); color: var(--mint); }
.btn--pill--ink:hover  { background: var(--coral); color: var(--ink-deep); }
.btn--pill--white      { background: var(--white); color: var(--ink-deep); }
.btn--pill--white:hover{ background: var(--ink-deep); color: var(--mint); }

/* Tag */
.tag                   { background: var(--ink-deep); color: var(--mint); }
.card--coral .tag      { background: var(--ink-deep); color: var(--mint); }
.card--cobalt .tag     { background: var(--mint); color: var(--ink-deep); }
.card--yellow .tag     { background: var(--ink-deep); color: var(--mint); }
.card--white .tag      { background: var(--ink-deep); color: var(--mint); }

/* Signature tag: coral pill, dark text, gentle pulse to draw the eye */
.tag--signature {
  background: var(--coral) !important;
  color: var(--ink-deep) !important;
  border: 1.5px solid var(--ink-deep);
  box-shadow: 2px 2px 0 var(--ink-deep);
  font-weight: 800;
}
.tag--signature::before {
  content: "\2605";
  margin-right: 5px;
  font-size: 0.85em;
}

/* Chip in hero */
.chip                  { background: var(--mint); color: var(--ink-deep); border-color: var(--ink-deep); }
.dot--cobalt           { background: var(--cobalt); }

/* Hero */
.hero__sub             { color: var(--ink-2); }
.hero__media-bg        { background: var(--cobalt); border-color: var(--ink); }
.hero__media-img       { border-color: var(--ink); }
.hero__badge           { background: var(--mint); color: var(--ink-deep); border-color: var(--ink-deep); }
.hero__pop             { background: var(--surface); border-color: var(--ink); box-shadow: 8px 8px 0 var(--coral); }
.hero__pop strong      { color: var(--ink); }
.hero__pop span        { color: var(--ink-2); }
.hero__pop-dot         { background: var(--coral); border-color: var(--ink); }
.hero__stats .stat__lbl{ color: var(--ink-2); }

/* Eyebrows + utility colors */
.eyebrow               { color: var(--ink-2); }
.t-yellow              { color: var(--mint); }

/* Section head link */
.section__head .link--underline { color: var(--ink); border-bottom-color: var(--ink); }
.section__head .link--underline:hover { color: var(--mint); border-bottom-color: var(--mint); }

/* Marquee — was ink/yellow, now cobalt with mint text */
.marquee               { background: var(--cobalt); color: var(--mint); }

/* Products grid: rework card colors for dark theme */
.products              { background: transparent; border: none; }
.card                  { border-color: var(--ink); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.card:hover            { box-shadow: 6px 6px 0 var(--mint); }
.card--yellow          { background: var(--mint); color: var(--ink-deep); border-color: var(--ink-deep); }
.card--white           { background: var(--white); color: var(--ink-deep); border-color: var(--ink-deep); }
.card--coral           { color: var(--white); border-color: var(--ink); }
.card--cobalt          { color: var(--white); border-color: var(--ink); }
.card--ask             { background: var(--cobalt); color: var(--white); border-color: var(--ink); }
.card--ask .btn--primary       { background: var(--mint); color: var(--ink-deep); }
.card--ask .btn--primary:hover { background: var(--white); color: var(--cobalt); }
.card__media           { background: rgba(244,241,232,0.08); border-color: transparent; }
.card--white .card__media { background: rgba(14,20,40,0.06); }

/* B2B panel (already cobalt — adjust shadow + perk tick color) */
.b2b__panel            { box-shadow: 8px 8px 0 var(--coral); }
.b2b__perks li span    { color: var(--mint); }
.b2b__cta .btn--final       { background: var(--mint); color: var(--ink-deep); }
.b2b__cta .btn--final:hover { background: var(--white); color: var(--cobalt); }

/* Reasons panel (already coral) — adjust shadow */
.reasons__panel        { box-shadow: 8px 8px 0 var(--mint); }

/* Who's it for: tiles */
.tile                  { border-color: var(--ink); background: var(--surface); color: var(--ink); }
.tile--yellow          { background: var(--mint); color: var(--ink-deep); border-color: var(--ink-deep); }
.tile--white           { background: var(--white); color: var(--ink-deep); border-color: var(--ink-deep); }
.tile p                { color: var(--ink-2); }
.tile--yellow p,
.tile--white p         { color: rgba(14,20,40,0.72); }
.who__photos img       { border-color: var(--ink); }

/* Engraving panel — was yellow, becomes mint with coral blob */
.engraving__panel      { background: var(--mint); color: var(--ink-deep); border-color: var(--ink-deep); box-shadow: 8px 8px 0 var(--coral); }
.engraving__blob       { background: var(--coral); border-color: var(--ink-deep); }
.engraving__price      { border-color: var(--ink-deep); color: var(--ink-deep); }
.engraving__cta .btn--primary       { background: var(--ink-deep); color: var(--mint); }
.engraving__cta .btn--primary:hover { background: var(--cobalt); color: var(--white); }
.engraving__img        { border-color: var(--ink-deep); }

/* Process steps */
.step                  { background: var(--surface); color: var(--ink); border-color: var(--ink); box-shadow: 6px 6px 0 var(--coral); }
.step:hover            { box-shadow: 8px 8px 0 var(--mint); }
.step__num             { color: var(--mint); }
.step p                { color: var(--ink-2); }

/* Testimonials */
.quote                 { border-color: var(--ink); background: var(--surface); color: var(--ink); }
.quote--white          { background: var(--white); color: var(--ink-deep); border-color: var(--ink-deep); }
.quote--coral          { background: var(--coral); color: var(--white); border-color: var(--ink); }
.quote footer img      { border-color: var(--ink); }
.quote--white footer img { border-color: var(--ink-deep); }

/* Delivery panel — was ink, stays dark via --surface with mint accents */
.delivery__panel       { background: var(--surface); color: var(--ink); border: 2px solid var(--mint); }
.delivery__cities li   { background: rgba(94,234,212,0.08); border-color: var(--mint); }
.delivery__cities h3   { color: var(--mint); }

/* Final CTA */
.final__title          { color: var(--ink); }

/* Footer */
.footer                { background: var(--surface); color: var(--ink); }
.footer__col h4        { color: var(--mint); }
.footer__col a         { color: rgba(244,241,232,0.78); }
.footer__col a:hover   { color: var(--mint); }
.footer__bottom        { border-top-color: var(--rule); }

/* Focus + selection + skip link */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline-color: var(--mint);
}
::selection            { background: var(--mint); color: var(--ink-deep); }
.skip-link             { background: var(--mint); color: var(--ink-deep); }

/* ===========================================================
   AREAS — chip cloud (50 KL/Selangor neighbourhoods)
   =========================================================== */
.areas {
  padding: clamp(56px, 8vw, 96px) 0;
}
.areas__group {
  margin-top: clamp(28px, 4vw, 44px);
}
.areas__heading {
  font-family: var(--display-font, "Archivo Black", system-ui, sans-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.02em;
  color: var(--mint);
  margin: 0 0 14px 0;
  text-transform: uppercase;
}
.areas__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.areas__chips li {
  margin: 0;
}
.areas__chips a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  border: 2px solid var(--mint);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.areas__chips a:hover,
.areas__chips a:focus-visible {
  background: var(--mint);
  color: var(--ink-deep);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--coral);
}
.areas__cta {
  margin-top: clamp(28px, 4vw, 44px);
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-2);
}
.areas__cta .link--underline {
  color: var(--mint);
  border-bottom-color: var(--mint);
  margin-left: 6px;
}
.areas__cta .link--underline:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}
@media (max-width: 640px) {
  .areas__chips a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

/* ===========================================================
   CITY LANDING PAGES (/areas/{slug}/)
   =========================================================== */
.breadcrumb {
  font-size: 1rem;
  color: var(--ink-2);
  margin: 0 0 22px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb a {
  color: var(--mint);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.breadcrumb a:hover { border-bottom-color: var(--mint); }
.breadcrumb span { color: var(--ink); }

/* Home anchor gets pill-button treatment so it stands out as a clear way back */
.breadcrumb a[href="/"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 2px solid var(--mint);
  color: var(--mint);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.breadcrumb a[href="/"]::before {
  content: "\2190";
  font-size: 1.05rem;
}
.breadcrumb a[href="/"]:hover {
  background: var(--mint);
  color: var(--ink-deep);
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 var(--coral);
  border-bottom-color: var(--mint);
}

.area-hero {
  padding-top: clamp(80px, 14vw, 140px);
  padding-bottom: clamp(40px, 7vw, 72px);
}
.area-h1 {
  margin: 8px 0 18px 0;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.04;
  color: var(--ink);
}
.area-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 70ch;
  margin: 0 0 28px 0;
}
.area-hero .btn--final {
  display: inline-block;
}

.area-prices {
  padding: clamp(40px, 6vw, 72px) 0;
}
.area-prices__grid {
  list-style: none;
  padding: 0;
  margin: 22px 0 18px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 720px;
}
.area-prices__grid li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--surface);
  border: 1.5px solid var(--mint);
  border-radius: 12px;
  color: var(--ink);
  gap: 18px;
}
.area-prices__grid li span { font-size: 0.98rem; }
.area-prices__grid li strong {
  font-family: var(--display-font, "Archivo Black", system-ui, sans-serif);
  color: var(--mint);
  font-size: 1.05rem;
  white-space: nowrap;
}
.area-prices__note {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 0.95rem;
  max-width: 70ch;
}

.area-faq {
  padding: clamp(40px, 6vw, 72px) 0;
}
.area-faq .faq__list {
  margin-top: 22px;
}

.area-others {
  padding-bottom: clamp(48px, 7vw, 80px);
}
.area-others__title {
  margin-bottom: 22px;
}

/* Simple footer used on city pages */
.footer__simple {
  padding: 28px 0;
  text-align: center;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.footer__simple a {
  color: var(--mint);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer__simple a:hover { border-bottom-color: var(--mint); }

/* ===========================================================
   ARTICLE PAGES (/why-clear-ice/, /how-clear-ice-is-made/)
   =========================================================== */
.article {
  padding-top: clamp(80px, 14vw, 140px);
  padding-bottom: clamp(48px, 7vw, 80px);
}
.article__h1 {
  margin: 8px 0 22px 0;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  color: var(--ink);
}
.article__lede {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 68ch;
  margin: 0 0 32px 0;
}
.article__hero-img {
  display: block;
  width: 100%;
  max-width: 880px;
  height: auto;
  border-radius: 14px;
  border: 2px solid var(--mint);
  margin: 0 0 36px 0;
  box-shadow: 8px 8px 0 var(--coral);
}
.article__h2 {
  font-family: "Archivo Black", system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  color: var(--mint);
  margin: clamp(36px, 5vw, 56px) 0 14px 0;
  letter-spacing: -0.01em;
}
.article p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 68ch;
  margin: 0 0 16px 0;
}
.article p:has(.link--underline) {
  color: var(--ink-2);
}
.article__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 22px 0;
  max-width: 70ch;
}
.article__list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(94,234,212,0.12);
  color: var(--ink);
  line-height: 1.55;
}
.article__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 2px var(--bg);
}
.article__list strong {
  color: var(--mint);
  font-weight: 700;
}

.article__usecases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 22px 0 28px 0;
}
.article__usecase {
  padding: 20px 22px;
  background: var(--surface);
  border: 2px solid var(--mint);
  border-radius: 14px;
}
.article__usecase h3 {
  font-family: "Archivo Black", system-ui, sans-serif;
  font-size: 1.1rem;
  color: var(--mint);
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.article__usecase p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
}
.article .faq__list {
  margin-top: 18px;
  max-width: 80ch;
}

/* Homepage footer: AREAS WE DELIVER full-width row */
.footer__areas {
  margin-top: clamp(24px, 4vw, 40px);
  padding-top: clamp(24px, 4vw, 40px);
  border-top: 1px solid rgba(94,234,212,0.18);
}
.footer__areas h4 {
  color: var(--mint);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  margin: 0 0 14px 0;
}

/* Homepage footer column for city backlinks */
.footer__cities {
  columns: 3;
  column-gap: 18px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  font-size: 0.85rem;
  line-height: 1.7;
}
.footer__cities li { break-inside: avoid; }
.footer__cities a {
  color: rgba(244,241,232,0.72);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer__cities a:hover {
  color: var(--mint);
  border-bottom-color: var(--mint);
}
@media (max-width: 720px) {
  .footer__cities { columns: 2; }
}

