/* ================================================================
   PearlGrid Technologies — styles.css
   Aesthetic Direction: Editorial African Premium
   Display: Cormorant Garamond (refined, fashion-editorial)
   Body:    Plus Jakarta Sans (modern, tech-forward)
   Palette: Warm ivory · Deep navy · Living teal · Gold accent
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --ink:         #0a1628;
  --ink-mid:     #1c3050;
  --teal:        #0b7a6e;
  --teal-vivid:  #0d9488;
  --teal-pale:   #e6f5f4;
  --teal-faint:  #f0faf9;
  --gold:        #b8922a;
  --gold-pale:   #fdf6e3;
  --cream:       #fafaf6;
  --white:       #ffffff;
  --muted:       #526273;
  --muted-light: #8899aa;
  --rule:        #e4e9f0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --r-card:  32px;
  --r-pill:  999px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── Scroll reveal ───────────────────────────────────────────── */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.sr.in { opacity: 1; transform: none; }
.sr.d1 { transition-delay: 0.08s; }
.sr.d2 { transition-delay: 0.16s; }
.sr.d3 { transition-delay: 0.24s; }
.sr.d4 { transition-delay: 0.32s; }

/* ================================================================
   HEADER
================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 250, 246, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link img {
  height: 56px;
  width: auto;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.primary-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.primary-nav a:hover { color: var(--teal); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-pill);
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 16px rgba(11, 122, 110, 0.28);
}
.btn-teal:hover {
  background: var(--teal-vivid);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(11, 122, 110, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--rule);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(10,22,40,0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,22,40,0.16);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 12px rgba(184,146,42,0.3);
}
.btn-gold:hover {
  background: #a07d22;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--teal-faint); }
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  top: 79px;
  background: var(--cream);
  z-index: 199;
  padding: 36px 28px;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--rule);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-size: 26px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-drawer a:hover { color: var(--teal); padding-left: 8px; }
.mobile-drawer a:last-child { border-bottom: none; }

/* ================================================================
   HERO
================================================================ */
.hero {
  padding-block: 88px 104px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Concentric circle ornament */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -140px;
  width: 720px; height: 720px;
  border-radius: 50%;
  border: 1px solid rgba(11, 122, 110, 0.08);
  box-shadow: inset 0 0 0 80px rgba(11, 122, 110, 0.025),
              inset 0 0 0 200px rgba(11, 122, 110, 0.018);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -180px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 42, 0.04) 0%, transparent 70%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Tagline badge ── */
.tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: var(--gold-pale);
  border: 1px solid rgba(184, 146, 42, 0.22);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: heartbeat 2.8s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.6); opacity: 0.4; }
}

/* ── Hero headline ── */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 84px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-h1 .word-accent {
  font-style: italic;
  color: var(--teal);
  position: relative;
  display: inline-block;
}

/* Underline draw on "Africa." */
.hero-h1 .word-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-vivid));
  transform: scaleX(0);
  transform-origin: left;
  animation: drawline 1.1s 0.8s var(--ease) forwards;
}

@keyframes drawline {
  to { transform: scaleX(1); }
}

.hero-p {
  font-size: 18px;
  line-height: 1.78;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── Hero Visual — Pearl Network Card ── */
.pearl-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 40px;
  padding: 48px 44px;
  box-shadow: 0 24px 80px rgba(10, 22, 40, 0.1), 0 2px 8px rgba(10, 22, 40, 0.04);
  position: relative;
  overflow: hidden;
}

/* Shimmer top bar */
.pearl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #38bdf8, var(--gold), var(--teal));
  background-size: 300% 100%;
  animation: shimmer-bar 4s linear infinite;
}

@keyframes shimmer-bar {
  0%   { background-position: 300% 0; }
  100% { background-position: -300% 0; }
}

/* SVG Pearl Network — animated */
.pearl-network-svg {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto 32px;
}

/* Outer ring rotation */
.pearl-ring-outer {
  animation: spin-slow 18s linear infinite;
  transform-origin: 90px 90px;
}

/* Inner ring counter-rotation */
.pearl-ring-inner {
  animation: spin-slow 12s linear infinite reverse;
  transform-origin: 90px 90px;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* Node pulse */
.pearl-node {
  animation: node-pulse 3s ease-in-out infinite;
}
.pearl-node:nth-child(2) { animation-delay: 0.5s; }
.pearl-node:nth-child(3) { animation-delay: 1s; }
.pearl-node:nth-child(4) { animation-delay: 1.5s; }

@keyframes node-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Pearl sphere glow */
.pearl-glow {
  animation: pearl-breathe 4s ease-in-out infinite;
}

@keyframes pearl-breathe {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.pearl-card-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}

.pearl-card-sub {
  font-size: 14px;
  text-align: center;
  color: var(--muted-light);
  margin-bottom: 28px;
}

/* Product chips in hero card */
.product-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--rule);
  background: var(--cream);
  transition: all 0.22s var(--ease);
  cursor: default;
}

.product-chip:hover {
  border-color: var(--teal);
  background: var(--teal-faint);
  transform: translateX(5px);
}

.chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.chip-icon.fashion   { background: linear-gradient(135deg, #fdf2f8, #ede9fe); }
.chip-icon.rental    { background: linear-gradient(135deg, #ecfdf5, #e0f2fe); }
.chip-icon.ecommerce { background: linear-gradient(135deg, #fff7ed, #ffedd5); }
.chip-icon.events    { background: linear-gradient(135deg, #f5f3ff, #e0e7ff); }

.chip-icon:has(.chip-icon-img) { background: none; }

.chip-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.chip-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.chip-text span {
  font-size: 12px;
  color: var(--muted-light);
}

.chip-arrow {
  margin-left: auto;
  font-size: 16px;
  color: var(--muted-light);
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
}
.product-chip:hover .chip-arrow {
  transform: translateX(4px);
  color: var(--teal);
}

/* ================================================================
   STAT BAR
================================================================ */
.stat-bar {
  background: var(--ink);
  padding-block: 20px;
}

.stat-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ================================================================
   SECTION COMMON
================================================================ */
section.padded { padding-block: 104px; }

.kicker {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-lead {
  font-size: 18px;
  line-height: 1.78;
  color: var(--muted);
  max-width: 600px;
}

/* ================================================================
   PRODUCTS
================================================================ */
.products-section {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.products-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Editorial product card */
.pcard {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(10,22,40,0.06);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.pcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.12);
}

.pcard-top {
  padding: 40px 40px 32px;
  flex: 1;
}

.pcard-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.pcard-icon-wrap.fashion {
  background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
}

.pcard-icon-wrap.rental {
  background: linear-gradient(135deg, #f0fdf4 0%, #cffafe 100%);
}

.pcard-icon-wrap.ecommerce {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.pcard-icon-wrap.events {
  background: linear-gradient(135deg, #f5f3ff 0%, #e0e7ff 100%);
}

/* Real brand icons override the gradient tile and fill the rounded box */
.pcard-icon-wrap:has(.pcard-icon-img) { background: none; }

.pcard-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.pcard-type {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.pcard-name {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 16px;
}

.pcard-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  background: var(--cream);
  color: var(--ink-mid);
  border: 1px solid var(--rule);
}

/* Card footer bar */
.pcard-foot {
  padding: 20px 40px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pcard-foot.fashion   { background: linear-gradient(90deg, #fdf2f8, #f5f3ff); }
.pcard-foot.rental    { background: linear-gradient(90deg, #f0fdf4, #f0fafe); }
.pcard-foot.ecommerce { background: linear-gradient(90deg, #fff7ed, #fffbeb); }
.pcard-foot.events    { background: linear-gradient(90deg, #f5f3ff, #eef2ff); }

.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

.soon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-vivid);
  animation: heartbeat 2s ease-in-out infinite;
}

.pcard-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, gap 0.2s;
}

.pcard:hover .pcard-cta {
  color: var(--teal);
  gap: 9px;
}

/* ================================================================
   MISSION
================================================================ */
.mission-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

/* Geometric concentric rings */
.mission-rings {
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  opacity: 0.06;
}

.mission-rings circle {
  fill: none;
  stroke: #fff;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.mission-section .kicker { color: #5eead4; }

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 16px;
}

.mission-quote em {
  font-style: italic;
  color: #5eead4;
}

.mission-body-text {
  font-size: 17.5px;
  line-height: 1.82;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.val {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: all 0.28s var(--ease);
}

.val:hover {
  background: rgba(13, 148, 136, 0.12);
  border-color: rgba(94, 234, 212, 0.25);
  transform: translateY(-4px);
}

.val-glyph {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}

.val strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.val span {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

/* ================================================================
   CTA / CONTACT
================================================================ */
.cta-section {
  background: var(--cream);
  padding-block: 80px;
}

.cta-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 44px;
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 8px 48px rgba(10,22,40,0.08);
  position: relative;
  overflow: hidden;
}

/* Geometric corner ornament */
.cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(11,122,110,0.08);
  box-shadow: inset 0 0 0 60px rgba(11,122,110,0.04);
  pointer-events: none;
}

/* Accent strip left */
.cta-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--teal), var(--teal-vivid), #38bdf8);
  border-radius: 0 4px 4px 0;
}

.cta-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}

.cta-p {
  font-size: 17px;
  line-height: 1.76;
  color: var(--muted);
  max-width: 560px;
}

.cta-btn-wrap { flex-shrink: 0; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--ink);
  padding-block: 48px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo { display: flex; align-items: center; gap: 9px; }
.footer-logo img { height: 44px; width: auto; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}

.footer-copy {
  font-size: 13.5px;
  color: rgba(255,255,255,0.3);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(94,234,212,0.7);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .pearl-card {
    max-width: 520px;
  }

  .mission-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .products-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 56px 48px;
  }
}

@media (max-width: 700px) {
  .container { width: calc(100% - 32px); }

  .primary-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding-block: 56px 72px; }
  .hero-h1 { font-size: 46px; }

  .stat-inner {
    flex-wrap: wrap;
    gap: 0;
    justify-content: flex-start;
  }
  .stat-item {
    padding: 12px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 50%;
  }
  .stat-item:nth-child(3),
  .stat-item:last-child { border-bottom: none; }

  .product-cards { grid-template-columns: 1fr; }

  .pcard-name { font-size: 38px; }

  .pcard-top { padding: 28px 28px 24px; }
  .pcard-foot { padding: 16px 28px; }

  .values-list { grid-template-columns: 1fr; }

  .cta-card {
    padding: 40px 32px;
    border-radius: 32px;
  }

  section.padded { padding-block: 72px; }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
