/* =========================================================================
   PT. LAJU LANCAR ANUGRAH ABADI (LLAA)
   Corporate website — Indonesian B2B/distributor style
   Royal Foam reseller, Tangerang
   ========================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Montserrat:wght@500;600;700;800;900&display=swap");

:root {
  /* Brand */
  --primary:        #1A3A8F;     /* Royal Foam corporate blue */
  --primary-deep:   #122A6A;
  --primary-light:  #2E54A6;
  --primary-pale:   #EAEFF8;

  --accent:         #F2A52B;     /* Royal Foam amber */
  --accent-deep:    #D88A0E;
  --accent-pale:    #FEF4E2;

  /* Neutrals */
  --black:          #0E1320;
  --ink:            #1A2236;
  --gray-900:       #2B3548;
  --gray-700:       #4A5468;
  --gray-500:       #707A8C;
  --gray-300:       #C9CFDB;
  --gray-200:       #DDE2EC;
  --gray-100:       #ECEFF5;
  --gray-50:        #F5F7FB;
  --white:          #FFFFFF;

  /* Action */
  --wa:             #25D366;
  --wa-deep:        #128C7E;
  --success:        #15803D;
  --danger:         #B91C1C;

  /* Type */
  --font-body:    "Open Sans", -apple-system, "Segoe UI", Arial, sans-serif;
  --font-heading: "Montserrat", "Open Sans", sans-serif;

  /* Geometry */
  --r-sm: 3px;
  --r:    6px;
  --r-lg: 8px;
  --max:  1280px;
  --gutter: clamp(16px, 3.2vw, 32px);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,19,32,.06);
  --shadow:    0 2px 8px rgba(15,19,32,.07);
  --shadow-lg: 0 8px 24px rgba(15,19,32,.10);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
h1, h2, h3, h4, h5, p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }

/* =========================== TYPOGRAPHY =========================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(28px, 3.8vw, 42px); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; }
h3 { font-size: clamp(18px, 1.6vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
h5 { font-size: 14px; font-weight: 700; }

p { color: var(--gray-700); }
p.lede {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--gray-700); max-width: 65ch;
  line-height: 1.7;
}

.text-mute { color: var(--gray-500); }
.text-small { font-size: 13px; }
.text-tiny { font-size: 12px; }

/* Eyebrow / section label — corporate uppercase */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.12em;
  padding-bottom: 8px;
  position: relative;
  margin-bottom: 16px;
}
.eyebrow::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--accent);
}

/* =========================== LAYOUT =========================== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(34px, 4.4vw, 64px) 0; }
.section-bg-gray { background: var(--gray-50); }
.section-bg-dark { background: var(--primary-deep); color: #fff; }
.section-bg-dark h2, .section-bg-dark h3 { color: #fff; }
.section-bg-dark p { color: rgba(255,255,255,.85); }
.section-bg-dark .eyebrow { color: var(--accent); }

/* =========================== UTILITY BAR =========================== */
.utility {
  background: var(--primary-deep);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.utility .wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px var(--gutter); gap: 28px; flex-wrap: wrap;
}
.utility .left, .utility .right {
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
}
.utility a, .utility span {
  color: rgba(255,255,255,.85);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 0;
  white-space: nowrap;
}
.utility a:hover { color: var(--accent); }
.utility .ic { width: 14px; height: 14px; }
.utility .pill {
  background: var(--accent); color: var(--primary-deep);
  padding: 3px 10px; border-radius: 100px;
  font-weight: 700; font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.utility .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================== HEADER =========================== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-sm);
}
.header .wrap {
  display: flex; align-items: center; gap: 32px;
  padding: 20px var(--gutter);
}
.header .brand {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}
.header .brand .logo { height: 56px; width: auto; }
.header .brand .titles {
  display: flex; flex-direction: column;
  line-height: 1.2;
  border-left: 2px solid var(--gray-200);
  padding-left: 16px;
}
.header .brand .titles .pt {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: -0.005em;
}
.header .brand .titles .sub {
  font-size: 11px;
  color: var(--gray-700);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.header .nav-main {
  display: flex; gap: 4px; flex: 1; justify-content: center;
}
.header .nav-main > li {
  position: relative;
}
.header .nav-main > li > a,
.header .nav-main > li > .nav-row > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
  cursor: pointer;
}
.header .nav-main > li > a:hover,
.header .nav-main > li > .nav-row > a:hover { color: var(--primary); }
.header .nav-main > li > a.active,
.header .nav-main > li > .nav-row > a.active { color: var(--primary); border-bottom-color: var(--accent); }

/* The mobile accordion toggle button (injected by site.js) is hidden on
   desktop; it only appears inside the @media (max-width:1100px) block. */
.header .nav-main .acc-toggle { display: none; }

/* Dropdown caret */
.header .nav-main > li.has-dropdown > a::after,
.header .nav-main > li.has-dropdown > .nav-row > a::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  margin-left: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform .2s;
}
.header .nav-main > li.has-dropdown:hover > a::after,
.header .nav-main > li.has-dropdown:hover > .nav-row > a::after { transform: rotate(180deg); }

/* Dropdown panel */
.header .nav-main .dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 60;
}
.header .nav-main > li.has-dropdown:hover .dropdown,
.header .nav-main > li.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.header .nav-main .dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  white-space: nowrap;
  border: 0;
  margin: 0;
}
.header .nav-main .dropdown a:hover {
  background: var(--primary-pale);
  color: var(--primary);
}
.header .nav-main .dropdown a small {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 2px;
  font-weight: 400;
}
.header .nav-main .dropdown a:hover small { color: var(--primary-light); }
.header .nav-main .dropdown .lbl {
  font-family: var(--font-heading);
  font-size: 10.5px; font-weight: 700;
  color: var(--accent-deep);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 10px 14px 6px;
}
.header .nav-main .dropdown hr {
  border: 0; border-top: 1px solid var(--gray-100);
  margin: 6px 0;
}
.header .nav-main .dropdown.wide { min-width: 280px; }

.header .header-cta { display: flex; gap: 10px; flex-shrink: 0; }
.header .nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
  padding: 8px; color: var(--ink);
}

@media (max-width: 1100px) {
  .header .wrap { padding: 16px var(--gutter); gap: 16px; }
  .header .nav-main {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; padding: 8px 0 108px;
    background: #fff; border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .header.open .nav-main { display: flex; }
  .header .nav-main > li { width: 100%; }
  /* Row that holds the primary link + accordion toggle */
  .header .nav-main > li.has-dropdown > .nav-row {
    display: flex; align-items: stretch; width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  .header .nav-main > li > a {
    padding: 14px var(--gutter); border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }
  .header .nav-main > li.has-dropdown > .nav-row > a {
    flex: 1; border-bottom: 0;
  }
  .header .nav-main > li > a.active { border-bottom-color: var(--gray-100); background: var(--primary-pale); }

  /* Dropdowns collapse into tap-to-expand accordions on mobile */
  .header .nav-main > li.has-dropdown > a::after,
  .header .nav-main > li.has-dropdown > .nav-row > a::after { display: none; }
  .header .nav-main .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0; border-top: 0; border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
    border-radius: 0;
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .25s ease;
  }
  .header .nav-main > li.has-dropdown.open > .dropdown {
    max-height: 1200px;
    padding: 8px 0;
  }
  /* Accordion toggle button (injected by site.js) */
  .header .nav-main .acc-toggle {
    flex: 0 0 56px; display: flex; align-items: center; justify-content: center;
    align-self: stretch; min-height: 44px;
    background: none; border: 0; border-left: 1px solid var(--gray-100);
    color: var(--gray-700); cursor: pointer; padding: 0;
  }
  .header .nav-main .acc-toggle svg { transition: transform .2s; }
  .header .nav-main > li.has-dropdown.open > .nav-row .acc-toggle svg { transform: rotate(180deg); }
  .header .nav-main .dropdown a {
    padding: 12px var(--gutter) 12px calc(var(--gutter) + 20px);
    border-radius: 0;
    font-size: 13px;
  }
  .header .nav-main .dropdown .lbl { padding: 10px var(--gutter) 4px; }
  .header .nav-toggle { display: inline-flex; }
  /* Hide the floating sticky WhatsApp bar while the mobile menu is open
     so bottom items (Info/Kontak) are never covered. */
  .header.open ~ .wa-sticky { display: none; }
}
@media (max-width: 720px) {
  .header .brand .titles { display: none; }
  .header .brand .logo { height: 48px; }
  .utility .right { display: none; }
}

/* =========================== BUTTONS =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r);
  font-weight: 600; font-size: 14px;
  font-family: var(--font-body);
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
  cursor: pointer;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 13px 24px; font-size: 14.5px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-deep); }
.btn-accent  { background: var(--accent); color: var(--primary-deep); font-weight: 700; }
.btn-accent:hover { background: var(--accent-deep); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-deep); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline-white:hover { background: #fff; color: var(--primary-deep); border-color: #fff; }
.btn .ic { width: 16px; height: 16px; }

/* =========================== HERO (slider-style) =========================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(242,165,43,.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(46,84,166,.4), transparent 50%);
  pointer-events: none;
}
.hero .wrap {
  position: relative; z-index: 1;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-text .eyebrow {
  color: var(--accent);
  border: 0;
  padding-bottom: 0;
}
.hero-text .eyebrow::after { display: none; }
.hero-text .eyebrow .bar {
  display: inline-block; width: 24px; height: 2px; background: var(--accent);
  vertical-align: middle; margin-right: 10px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(30px, 4.2vw, 48px);
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p.lede {
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  font-size: clamp(15px, 1.2vw, 17px);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn-wa::before {
  content: ""; width: 16px; height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M19.05 4.91A10 10 0 0 0 4.5 18.36L3 22l3.74-1.47a10 10 0 1 0 12.31-15.62Zm-2.47 8.36c-.06-.1-.23-.16-.48-.29-.25-.13-1.49-.74-1.72-.82s-.4-.13-.56.13-.65.82-.79.99-.29.19-.54.06a6.84 6.84 0 0 1-2-1.23 7.55 7.55 0 0 1-1.39-1.73c-.15-.25 0-.38.11-.5s.25-.29.37-.43a1.71 1.71 0 0 0 .25-.41.46.46 0 0 0 0-.43c-.06-.13-.56-1.35-.77-1.85s-.41-.42-.56-.42h-.48a.92.92 0 0 0-.67.31 2.81 2.81 0 0 0-.87 2.08 4.87 4.87 0 0 0 1 2.6 11.16 11.16 0 0 0 4.26 3.77c.59.26 1.05.41 1.41.52a3.42 3.42 0 0 0 1.56.1 2.55 2.55 0 0 0 1.68-1.18 2.07 2.07 0 0 0 .14-1.18Z'/></svg>") center/contain no-repeat;
}
.hero-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img .floating-card {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: #fff;
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg);
}
.hero-img .floating-card img { height: 36px; width: auto; }
.hero-img .floating-card .t1 { font-family: var(--font-heading); font-weight: 800; font-size: 14px; color: var(--primary-deep); }
.hero-img .floating-card .t2 { font-size: 11px; color: var(--gray-700); margin-top: 2px; }

.hero-trust {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero-trust .item .v { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--accent); }
.hero-trust .item .l { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { aspect-ratio: 16/10; }
  /* Promo banner has headline text baked in near the right edge; cover
     crops it off on narrow viewports. Use contain so the full image
     (incl. "Imperial · GARANSI SEUMUR HIDUP") stays visible. Accept
     minor letterboxing; backdrop matches the dark hero. */
  .hero-img img { object-fit: contain; background: var(--primary-deep); }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
}

/* =========================== HIGHLIGHTS BAR =========================== */
.highlights {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.highlights .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 0 var(--gutter);
}
.highlights .item {
  padding: 24px 18px;
  display: flex; gap: 14px; align-items: flex-start;
  border-right: 1px solid var(--gray-100);
}
.highlights .item:last-child { border-right: 0; }
.highlights .item .ic {
  width: 40px; height: 40px;
  background: var(--primary-pale); color: var(--primary);
  border-radius: var(--r);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.highlights .item .ic img { width: 24px; height: 24px; object-fit: contain; }
.highlights .item .ic svg { width: 20px; height: 20px; }
.highlights .item .t { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.highlights .item .d { font-size: 12px; color: var(--gray-500); margin-top: 2px; line-height: 1.45; }
@media (max-width: 900px) {
  .highlights .wrap { grid-template-columns: repeat(2, 1fr); }
  .highlights .item:nth-child(2n) { border-right: 0; }
  .highlights .item { border-bottom: 1px solid var(--gray-100); }
}
@media (max-width: 540px) {
  .highlights .wrap { grid-template-columns: 1fr; }
  .highlights .item { border-right: 0; }
}

/* =========================== SECTION HEADER =========================== */
.section-head {
  margin-bottom: clamp(22px, 3vw, 38px);
}
.section-head.row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
}
.section-head .left { max-width: 65ch; }
.section-head .right a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--primary);
}
.section-head .right a:hover { color: var(--accent-deep); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { display: inline-block; }
.section-head.center .eyebrow::after { left: 50%; transform: translateX(-50%); }
.section-head.center .left { max-width: 65ch; margin: 0 auto; }

/* =========================== ABOUT / TENTANG =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.about-img {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img .stamp {
  position: absolute;
  bottom: 20px; right: 20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-img .stamp .y { font-family: var(--font-heading); font-size: 34px; font-weight: 800; color: var(--primary); line-height: 1; }
.about-img .stamp .l { font-size: 11px; color: var(--gray-500); margin-top: 4px; letter-spacing: 0.08em; text-transform: uppercase; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.about-text .signature {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-700);
}
.about-text .signature b { color: var(--ink); display: block; font-size: 14px; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

/* =========================== VISI MISI =========================== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vm-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--primary);
  border-radius: var(--r);
  padding: 32px;
}
.vm-card.misi { border-top-color: var(--accent); }
.vm-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: var(--font-heading);
}
.vm-card.misi h3 { color: var(--accent-deep); }
.vm-card p, .vm-card li { font-size: 14.5px; line-height: 1.7; color: var(--gray-700); }
.vm-card ol { counter-reset: misi; padding-left: 0; }
.vm-card ol li {
  counter-increment: misi;
  padding: 8px 0 8px 32px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.vm-card ol li:last-child { border-bottom: 0; }
.vm-card ol li::before {
  content: counter(misi, decimal-leading-zero) ".";
  position: absolute; left: 0; top: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent);
  font-size: 14px;
}
@media (max-width: 720px) { .vm-grid { grid-template-columns: 1fr; } }

/* =========================== PRODUCT/SERVICE GRID =========================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .2s, transform .15s, border-color .15s;
  display: flex; flex-direction: column;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}
.svc-card .img {
  aspect-ratio: 4/3;
  background: var(--gray-50);
  overflow: hidden;
  position: relative;
}
.svc-card .img img { width: 100%; height: 100%; object-fit: cover; }
.svc-card .img .tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 3px;
  letter-spacing: 0.02em;
}
.svc-card .body {
  padding: 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.svc-card h3 { margin-bottom: 8px; font-size: 18px; }
.svc-card .desc { font-size: 14px; color: var(--gray-700); line-height: 1.6; flex: 1; }
.svc-card .foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  display: flex; justify-content: space-between; align-items: center;
}
.svc-card .price-from .l { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.svc-card .price-from .v { font-family: var(--font-heading); font-size: 17px; font-weight: 800; color: var(--primary); }
.svc-card .arr { color: var(--primary); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.svc-card .arr:hover { color: var(--accent-deep); }
@media (max-width: 880px) { .svc-grid { grid-template-columns: 1fr; } }

/* Product card (4-up) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .2s, transform .15s;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-card .img {
  aspect-ratio: 1/1;
  background: var(--gray-50);
  overflow: hidden;
  position: relative;
}
.product-card .img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: var(--primary-deep);
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
}
.product-card .body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card .tier { font-size: 10.5px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }
.product-card h4 { font-size: 17px; margin: 6px 0 8px; font-family: var(--font-heading); }
.product-card .spec { font-size: 12.5px; color: var(--gray-700); line-height: 1.55; flex: 1; }
.product-card .row {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--gray-200);
  display: flex; justify-content: space-between; align-items: end;
}
.product-card .price .l { font-size: 10px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.product-card .price .v { font-family: var(--font-heading); font-size: 17px; font-weight: 800; color: var(--primary); }
.product-card .warr {
  font-size: 10.5px; font-weight: 700; padding: 4px 10px;
  background: var(--accent-pale); color: var(--accent-deep);
  border-radius: 100px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .product-grid { grid-template-columns: 1fr; } }

/* =========================== WHY US =========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
}
.why-item {
  padding: 32px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.why-item:nth-child(3n) { border-right: 0; }
.why-item:nth-last-child(-n+3) { border-bottom: 0; }
.why-item .n {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: inline-block;
}
.why-item h4 { font-size: 17px; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: var(--gray-700); line-height: 1.65; }
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: 0; }
  .why-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--gray-200); }
  .why-item:last-child { border-bottom: 0; }
}

/* =========================== STATS / KPIs =========================== */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--primary-deep);
  border-radius: var(--r);
  overflow: hidden;
}
.kpi-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.kpi-item:last-child { border-right: 0; }
.kpi-item .v {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.kpi-item .l { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.kpi-item .d { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 6px; }
@media (max-width: 720px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-item:nth-child(2n) { border-right: 0; }
  .kpi-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  .kpi-item:nth-last-child(-n+2) { border-bottom: 0; }
}

/* =========================== TWO-COLUMN FEATURE =========================== */
.feat-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.feat-2.reverse > div:first-child { order: 2; }
.feat-2 .img-box {
  aspect-ratio: 4/3;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.feat-2 .img-box img { width: 100%; height: 100%; object-fit: cover; }
.feat-2 .img-box.dark { background: var(--primary-deep); }
.feat-2 .pts { display: grid; gap: 14px; margin: 24px 0; }
.feat-2 .pt {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.feat-2 .pt:last-child { border-bottom: 0; padding-bottom: 0; }
.feat-2 .pt .ic {
  width: 28px; height: 28px;
  background: var(--primary-pale); color: var(--primary);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.feat-2 .pt .ic svg, .feat-2 .pt .ic img { width: 16px; height: 16px; }
.feat-2 .pt .t { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.feat-2 .pt .d { font-size: 13.5px; color: var(--gray-700); margin-top: 2px; line-height: 1.55; }
@media (max-width: 900px) {
  .feat-2 { grid-template-columns: 1fr; }
  .feat-2.reverse > div:first-child { order: 0; }
}

/* =========================== TABLE (price) =========================== */
.table-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
}
.price-table {
  width: 100%; border-collapse: collapse;
}
.price-table th, .price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.price-table th {
  background: var(--primary-deep); color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-table tbody tr:hover td { background: var(--gray-50); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td b { color: var(--primary-deep); font-weight: 700; }

/* =========================== SIZE GRID =========================== */
.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}
.size-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 16px;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .15s, transform .1s;
}
.size-card:hover { border-color: var(--primary); }
.size-card .dim {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-deep);
}
.size-card .use { font-size: 12px; color: var(--gray-500); }
.size-card .pr {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--gray-100);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-deep);
  font-family: var(--font-heading);
}

/* =========================== CERTIFICATION =========================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.cert-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 16px 14px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}
.cert-item .y {
  display: block; font-size: 10px; color: var(--gray-500); margin-top: 2px; font-weight: 500;
}
@media (max-width: 880px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================== REVIEWS =========================== */
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.review {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 28px;
}
.review .stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.review .q {
  margin: 14px 0;
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.7;
}
.review .by {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.review .by .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-pale); color: var(--primary);
  font-weight: 700; font-size: 14px;
  display: grid; place-items: center;
}
.review .by .n { font-weight: 700; font-size: 14px; color: var(--ink); }
.review .by .m { font-size: 12px; color: var(--gray-500); }
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }

/* =========================== AREA / MAP =========================== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
}
.area-grid .map-box {
  aspect-ratio: 4/3;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.area-grid .map-box img { width: 100%; height: 100%; object-fit: cover; }
.area-grid .map-box .pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--primary); color: #fff;
  padding: 10px 18px; border-radius: 100px;
  font-weight: 700; font-size: 13px;
  box-shadow: 0 8px 24px rgba(26,58,143,.4);
}
.area-list {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
}
.area-list h4 {
  padding: 18px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  font-family: var(--font-heading);
  color: var(--primary-deep);
}
.area-list ul { padding: 8px 0; }
.area-list li {
  padding: 12px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.area-list li:last-child { border-bottom: 0; }
.area-list li small { color: var(--accent-deep); font-weight: 700; font-size: 12px; font-family: var(--font-heading); }
@media (max-width: 880px) { .area-grid { grid-template-columns: 1fr; } }

/* =========================== MARKETPLACE =========================== */
.mp-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.mp-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  transition: border-color .15s, transform .1s;
}
.mp-item:hover { border-color: var(--primary); transform: translateY(-1px); }
.mp-item img { height: 28px; width: auto; }
.mp-item .info .n { font-size: 13px; font-weight: 700; color: var(--ink); }
.mp-item .info .s { font-size: 11px; color: var(--gray-500); margin-top: 2px; }
@media (max-width: 900px) { .mp-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .mp-row { grid-template-columns: 1fr; } }

/* =========================== FAQ =========================== */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-heading);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: transform .2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { background: var(--primary-pale); color: var(--primary-deep); }
.faq-item .a {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 75ch;
}

/* =========================== CTA BLOCK =========================== */
.cta-block {
  background: var(--primary-deep);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(242,165,43,.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(46,84,166,.4), transparent 50%);
  color: #fff;
  border-radius: var(--r);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-block h2 { color: #fff; max-width: 24ch; }
.cta-block p { color: rgba(255,255,255,.8); margin-top: 12px; max-width: 56ch; }
@media (max-width: 720px) { .cta-block { grid-template-columns: 1fr; } }

/* =========================== WHATSAPP TEMPLATE =========================== */
.wa-block {
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
}
.wa-block h2 { color: #064E3B; }
.wa-block .lede { color: #065F46; }
.wa-block pre {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,19,32,.06);
  border-radius: var(--r);
  padding: 22px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink);
  white-space: pre-wrap;
  margin: 0;
}
.wa-block pre b { color: #064E3B; }
@media (max-width: 880px) { .wa-block { grid-template-columns: 1fr; } }

/* =========================== PAGE HEAD =========================== */
.page-head {
  background: var(--primary-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(242,165,43,.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(46,84,166,.3), transparent 50%);
}
.page-head .wrap {
  position: relative; z-index: 1;
  padding: clamp(40px, 5vw, 64px) var(--gutter);
}
.crumb {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.crumb a { color: var(--accent); }
.crumb a:hover { color: #fff; }
.crumb span { margin: 0 6px; color: rgba(255,255,255,.4); }
.page-head h1 { color: #fff; margin-bottom: 14px; }
.page-head p.lede { color: rgba(255,255,255,.85); max-width: 65ch; }
.page-head .actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================== FOOTER =========================== */
footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
  margin-top: 0;
  border-top: 4px solid var(--accent);
}
footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}
footer .foot-brand img { height: 52px; width: auto; margin-bottom: 16px; background: #fff; padding: 4px 8px; border-radius: 4px; }
footer .foot-brand .pt-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
footer .foot-brand .pt-sub {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
footer .foot-brand p {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
footer .foot-contact { font-size: 13px; line-height: 1.8; }
footer .foot-contact div { display: flex; gap: 10px; align-items: start; color: rgba(255,255,255,.75); margin-bottom: 8px; }
footer .foot-contact .lbl { color: var(--accent); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; width: 70px; flex-shrink: 0; padding-top: 2px; }
footer h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255,255,255,.65); font-size: 13px; }
footer ul a:hover { color: #fff; }
footer .foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
footer .foot-bottom a { color: rgba(255,255,255,.6); margin: 0 6px; }
footer .foot-bottom a:hover { color: #fff; }
@media (max-width: 1000px) { footer .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { footer .foot-grid { grid-template-columns: 1fr; gap: 36px; } }

/* =========================== STICKY WA =========================== */
.wa-sticky {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 60; display: none;
}
.wa-sticky a {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--wa); color: #fff;
  padding: 10px 18px;
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(18,140,126,.4);
  font-weight: 700;
}
.wa-sticky a small { display: block; font-size: 11px; opacity: .8; font-weight: 500; }
.wa-sticky a b { font-size: 14px; }
.wa-sticky a .arr { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; }
@media (max-width: 880px) { .wa-sticky { display: block; } body { padding-bottom: 84px; } }
/* Pages that already have a prominent inline WhatsApp CTA hide the docked bar
   to avoid two stacked green CTAs (e.g. /kontak). */
body.no-wa-sticky .wa-sticky { display: none !important; }
@media (max-width: 880px) { body.no-wa-sticky { padding-bottom: 0; } }
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: none;
}
.wa-float a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff;
  padding: 14px 22px; border-radius: 100px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(18,140,126,.5);
}
.wa-float a:hover { background: var(--wa-deep); }
@media (min-width: 881px) { .wa-float { display: block; } }

/* =========================== HELPERS =========================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
.flex-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

/* spec list */
.spec-list { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r); overflow: hidden; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list .k { color: var(--gray-700); }
.spec-list .v { color: var(--ink); font-weight: 700; text-align: right; font-family: var(--font-heading); }

/* photo placeholder — clean corporate version */
.ph {
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  border-radius: var(--r);
  display: grid; place-items: center;
  color: var(--gray-500);
  position: relative;
  min-height: 180px;
}
.ph .ph-label {
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  max-width: 80%;
}
.ph svg {
  position: absolute;
  width: 32px; height: 32px;
  color: var(--gray-300);
  bottom: 14px; right: 14px;
}

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  grid-auto-rows: 220px;
}
.gallery .item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.gallery .item img { width: 100%; height: 100%; object-fit: cover; }
.gallery .item.tall { grid-row: span 2; }
.gallery .item.wide { grid-column: span 2; }
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery .item.wide { grid-column: span 2; }
}

/* small icon-only banner showing certifications */
.cert-banner {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 24px;
}
.cert-banner img { width: 100%; height: auto; }

/* steps (corporate look) */
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 24px;
  position: relative;
  padding-top: 32px;
}
.step-card .n {
  position: absolute; top: 0; left: 24px;
  transform: translateY(-50%);
  background: var(--primary); color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
}
.step-card h4 { font-size: 15px; margin-bottom: 8px; }
.step-card p { font-size: 13.5px; line-height: 1.6; color: var(--gray-700); }
@media (max-width: 720px) { .steps-row { grid-template-columns: 1fr 1fr; } }
