/* ======================================
   Belediye Plus — Tanıtım Sitesi
   ====================================== */

:root {
  --c-primary: #0f766e;
  --c-primary-600: #0d6b64;
  --c-primary-700: #0b5e58;
  --c-primary-900: #042f2e;
  --c-primary-50: #f0fdfa;
  --c-primary-100: #ccfbf1;

  --c-blue: #0284c7;
  --c-blue-50: #eff6ff;
  --c-blue-100: #dbeafe;
  --c-blue-200: #bfdbfe;
  --c-blue-light: #e0f2fe;

  --c-bg: #ffffff;
  --c-bg-soft: #f8fafc;
  --c-surface: #ffffff;
  --c-border: #e2e8f0;
  --c-border-soft: #edf1f6;
  --c-text: #0f172a;
  --c-text-soft: #475569;
  --c-text-muted: #64748b;

  --c-success: #059669;
  --c-success-bg: #d1fae5;
  --c-warn: #d97706;
  --c-warn-bg: #fef3c7;
  --c-info: #0284c7;
  --c-info-bg: #e0f2fe;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-xl: 0 30px 80px -20px rgba(4, 47, 46, 0.35);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font: 'Plus Jakarta Sans', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1200px;
}

[data-theme="dark"] {
  --c-bg: #0b1220;
  --c-bg-soft: #0f172a;
  --c-surface: #131c30;
  --c-border: #1e293b;
  --c-border-soft: #182238;
  --c-text: #f1f5f9;
  --c-text-soft: #cbd5e1;
  --c-text-muted: #94a3b8;

  --c-primary-50: rgba(20, 184, 166, 0.1);
  --c-primary-100: rgba(20, 184, 166, 0.22);

  --c-blue-50: rgba(2, 132, 199, 0.1);
  --c-blue-100: rgba(2, 132, 199, 0.22);
  --c-blue-light: rgba(2, 132, 199, 0.15);

  --c-success-bg: rgba(5, 150, 105, 0.18);
  --c-warn-bg: rgba(217, 119, 6, 0.18);
  --c-info-bg: rgba(2, 132, 199, 0.18);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.55);
  --shadow-xl: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.18s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--c-text);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.4em;
  font-weight: 700;
}
p { margin: 0 0 1em; color: var(--c-text-soft); }
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.18s ease,
    color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn--lg { padding: 14px 26px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(15, 118, 110, 0.45);
}
.btn--primary:hover {
  background: var(--c-primary-700);
  transform: translateY(-1px);
}
.btn--outline {
  background: var(--c-surface);
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}
.btn--outline:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn--ghost { background: transparent; color: var(--c-text-soft); }
.btn--ghost:hover { color: var(--c-primary); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: var(--c-primary-50);
  color: var(--c-primary-700);
  border: 1px solid var(--c-primary-100);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.eyebrow--center { margin-left: auto; margin-right: auto; }
.eyebrow--light {
  background: rgba(255, 255, 255, 0.1);
  color: #ccfbf1;
  border-color: rgba(255, 255, 255, 0.18);
}
.eyebrow--ai {
  background: #f5f3ff;
  border-color: #ddd6fe;
  color: #4c1d95;
}
.eyebrow--ai .eyebrow__dot {
  background: #7c3aed;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.18);
}
.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
}
.eyebrow--light .eyebrow__dot {
  background: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.25);
}

/* ---------- Section head ---------- */
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 14px;
}
.section__head p { font-size: 17px; color: var(--c-text-soft); }
.section__head--light h2 { color: #fff; }
.section__head--light p { color: #cbd5e1; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled {
  border-color: var(--c-border);
  background: rgba(255, 255, 255, 0.95);
}
[data-theme="dark"] .nav { background: rgba(11, 18, 32, 0.78); }
[data-theme="dark"] .nav.is-scrolled { background: rgba(11, 18, 32, 0.95); }

.nav__theme {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-soft);
  border: 1px solid transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.nav__theme:hover {
  background: var(--c-bg-soft);
  border-color: var(--c-border);
  color: var(--c-text);
}
.nav__theme-icon { display: none; }
.nav__theme-icon--moon { display: block; }
[data-theme="dark"] .nav__theme-icon--moon { display: none; }
[data-theme="dark"] .nav__theme-icon--sun { display: block; }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-primary);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.logo__mark { display: inline-flex; }
.logo__mark img { width: 32px; height: 32px; object-fit: contain; display: block; }
.logo__text { color: var(--c-text); }
.logo__text span { color: var(--c-primary); }
.logo--light .logo__text,
.logo--light { color: #fff; }
.logo--light .logo__text span { color: #5eead4; }

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: 8px;
  margin-right: auto;
}
.nav__links a {
  color: var(--c-text-soft);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.nav__links a:hover { color: var(--c-text); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
  background: var(--c-bg-soft);
}
.hero__city {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 60%;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0.06;
}
.hero__city img {
  width: 100%;
  max-width: 720px;
  object-fit: contain;
  filter: brightness(0);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { position: relative; }

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 14px 22px 14px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.hero__brand-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.hero__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hero__brand-text strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.025em;
}
.hero__brand-text strong span { color: var(--c-primary); }
.hero__brand-text small {
  font-size: 13px;
  color: var(--c-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.hero__title {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--c-text);
}
.hero__lede {
  font-size: 18px;
  color: var(--c-text-soft);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text-soft);
  font-size: 14px;
  font-weight: 500;
}
.hero__badges svg { color: var(--c-primary); }

/* Hero device area (right) */
.hero__device {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}
.hero__circle {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: #e0f2fe;
  z-index: 1;
}
[data-theme="dark"] .hero__circle { background: rgba(2, 132, 199, 0.18); }
[data-theme="dark"] .hero__city img { filter: brightness(0) invert(1); opacity: 0.85; }

/* ---------- iPhone mockup ---------- */
.iphone {
  position: relative;
  width: 280px;
  height: 580px;
  background: #1f2937;
  border-radius: 50px;
  padding: 12px;
  box-shadow:
    0 40px 80px -20px rgba(15, 23, 42, 0.45),
    0 0 0 2px #3b4453,
    inset 0 0 0 2px #0f172a;
  z-index: 2;
}
.iphone--small {
  width: 200px;
  height: 420px;
  border-radius: 36px;
  padding: 8px;
}
.iphone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #0f172a;
  border-radius: 0 0 18px 18px;
  z-index: 4;
}
.iphone--small .iphone__notch {
  width: 80px;
  height: 22px;
  top: 8px;
}
.iphone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background: #f8fafc;
  overflow: hidden;
}
.iphone--small .iphone__screen { border-radius: 28px; }
.iphone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating cards */
.float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--c-surface);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  animation: floaty 5s ease-in-out infinite;
  z-index: 3;
}
.float small {
  display: block;
  color: var(--c-text-muted);
  font-size: 11px;
  margin-top: 2px;
}
.float strong {
  display: block;
  font-size: 13px;
  color: var(--c-text);
}
.float__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.float--1 { bottom: 60px; left: -20px; animation-delay: 0.5s; }
.float--2 { top: 60px; right: -20px; animation-delay: 1.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Trust bar ---------- */
.trust {
  padding: 40px 0;
  border-top: 1px solid var(--c-border-soft);
  border-bottom: 1px solid var(--c-border-soft);
  background: var(--c-bg);
}
.trust__title {
  text-align: center;
  margin: 0 0 18px;
  color: var(--c-text-muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.trust__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--c-text-soft);
  font-weight: 600;
  font-size: 16px;
}
.trust__row .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-border);
}

/* ---------- Products section ---------- */
.products {
  padding: 110px 0;
  background: var(--c-bg-soft);
  position: relative;
  overflow: hidden;
}

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.product:last-child { margin-bottom: 0; }

.product__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.product__circle {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  z-index: 0;
}
.product__circle--blue { background: #e0f2fe; }
.product__circle--teal { background: #ccfbf1; }
[data-theme="dark"] .product__circle--blue { background: rgba(2, 132, 199, 0.18); }
[data-theme="dark"] .product__circle--teal { background: rgba(15, 118, 110, 0.22); }

.device-stack {
  position: relative;
  width: 100%;
  max-width: 540px;
  z-index: 2;
}
.device-stack .mac { width: 100%; transform: none; }
.device-stack .iphone--small {
  position: absolute;
  bottom: -50px;
  left: -40px;
  z-index: 3;
}
.product--ik .device-stack .iphone--small {
  left: auto;
  right: -40px;
  bottom: -50px;
}

.product__text { position: relative; }
.product__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product__tag--blue {
  background: var(--c-blue-light);
  color: #075985;
  border: 1px solid #bae6fd;
}
.product__tag--blue .product__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.18);
}
.product__tag--teal {
  background: var(--c-primary-50);
  color: var(--c-primary-700);
  border: 1px solid var(--c-primary-100);
}
.product__tag--teal .product__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.18);
}

.product__text h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 12px;
  letter-spacing: -0.025em;
}
.product__brand-plus {
  color: #22c55e;
  font-weight: 800;
  margin: 0 1px;
}
.product__lede {
  font-size: 17px;
  color: var(--c-text-soft);
  line-height: 1.55;
  margin-bottom: 24px;
}
.product__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product__bullets li {
  position: relative;
  padding-left: 30px;
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.55;
}
.product__bullets li strong { color: var(--c-text); font-weight: 700; }
.product__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-primary-50)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    no-repeat center / 11px;
  border: 1px solid var(--c-primary-100);
}
.product--superapp .product__bullets li::before {
  background-color: var(--c-blue-50);
  border-color: var(--c-blue-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.product__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Mac mockup ---------- */
.mac {
  position: relative;
  width: 100%;
  z-index: 2;
}
.mac__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #e2e8f0;
  border-radius: 14px 14px 0 0;
  border: 1px solid #cbd5e1;
  border-bottom: 0;
}
[data-theme="dark"] .mac__bar { background: #1e293b; border-color: #334155; }
.mac__dot { width: 11px; height: 11px; border-radius: 50%; }
.mac__dot--red { background: #f87171; }
.mac__dot--yellow { background: #fbbf24; }
.mac__dot--green { background: #34d399; }
.mac__url {
  margin-left: 14px;
  font-size: 12px;
  color: var(--c-text-muted);
  background: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  font-family: 'IBM Plex Sans', monospace;
}
[data-theme="dark"] .mac__url { background: #0f172a; border-color: #334155; color: var(--c-text-soft); }
.mac__screen {
  position: relative;
  background: var(--c-surface);
  border: 1px solid #cbd5e1;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 30px 70px -20px rgba(15, 23, 42, 0.4);
}
[data-theme="dark"] .mac__screen { border-color: #334155; }
[data-theme="dark"] .mac__base { background: #334155; }
.mac__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mac__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 160px 1fr;
}
.mac__screen img + .mac__fallback { display: none; }
.mac__screen--fallback .mac__fallback { display: grid; }

.mac__sidebar {
  background: var(--c-primary-900);
  color: #ccfbf1;
  padding: 14px 10px;
  font-size: 11.5px;
}
.mac__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 12.5px;
}
.mac__brand img { width: 22px; height: 22px; border-radius: 6px; object-fit: contain; }
.mac__sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mac__sidebar li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #94a3b8;
}
.mac__sidebar li.is-active {
  background: rgba(20, 184, 166, 0.15);
  color: #5eead4;
}
.mac__sidebar .ico {
  width: 11px;
  height: 11px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.65;
}
.mac__main {
  padding: 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.mac__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mac__title { font-weight: 700; font-size: 13px; color: var(--c-text); }
.mac__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #14b8a6;
}
.mac__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mac__card {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--c-border-soft);
}
.mac__label { font-size: 10.5px; color: var(--c-text-muted); }
.mac__value { font-size: 18px; font-weight: 800; color: var(--c-text); }
.mac__trend { font-size: 10.5px; font-weight: 600; }
.mac__trend--up { color: var(--c-success); }
.mac__trend--neutral { color: var(--c-text-muted); }
.mac__chart {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--c-border-soft);
}
.mac__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}
.mac__pill {
  background: var(--c-primary-50);
  color: var(--c-primary);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid var(--c-primary-100);
}
.mac__svg { width: 100%; height: 50px; }
.mac__base {
  margin: -2px auto 0;
  width: 16%;
  height: 7px;
  background: #cbd5e1;
  border-radius: 0 0 6px 6px;
}

/* Tag colors (shared) */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 10.5px;
  width: fit-content;
}
.tag--ok { background: var(--c-success-bg); color: var(--c-success); }
.tag--warn { background: var(--c-warn-bg); color: var(--c-warn); }
.tag--info { background: var(--c-info-bg); color: var(--c-info); }

/* ---------- AI Assistants ---------- */
.ai {
  position: relative;
  padding: 110px 0;
  background: var(--c-bg);
  overflow: hidden;
}
.ai__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ai-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px 30px;
  box-shadow: 0 8px 30px -16px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ai-card__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
.ai-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  overflow: hidden;
  padding: 4px;
}
.ai-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.ai-card__icon--alt { background: #ecfeff; border-color: #cffafe; }
[data-theme="dark"] .ai-card__icon { background: rgba(124, 58, 237, 0.15); border-color: rgba(124, 58, 237, 0.35); }
[data-theme="dark"] .ai-card__icon--alt { background: rgba(8, 145, 178, 0.15); border-color: rgba(8, 145, 178, 0.35); }
.ai-card__header h3 {
  font-size: 20px;
  margin: 0;
  letter-spacing: -0.015em;
}
.ai-card__sub {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--c-text-muted);
  font-weight: 500;
}
.ai-card__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4c1d95;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
}
[data-theme="dark"] .ai-card__live { background: rgba(124, 58, 237, 0.18); border-color: rgba(124, 58, 237, 0.35); color: #c4b5fd; }
[data-theme="dark"] .eyebrow--ai { background: rgba(124, 58, 237, 0.15); border-color: rgba(124, 58, 237, 0.3); color: #c4b5fd; }
.ai-card__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7c3aed;
  position: relative;
  animation: aiPulse 1.8s ease-out infinite;
}
@keyframes aiPulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

.ai-card__chat {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-msg { display: flex; gap: 10px; max-width: 92%; }
.ai-msg p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text);
}
.ai-msg--user {
  align-self: flex-end;
  background: var(--c-primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px 14px 2px 14px;
}
.ai-msg--user p { color: #fff; }
.ai-msg--bot {
  align-self: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 2px;
  align-items: flex-start;
}
.ai-msg__avatar {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f3ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd6fe;
  overflow: hidden;
}
[data-theme="dark"] .ai-msg__avatar { background: rgba(124, 58, 237, 0.15); border-color: rgba(124, 58, 237, 0.35); }
.ai-msg__avatar img { width: 22px; height: 22px; object-fit: contain; }
.ai-msg__meta {
  margin-top: 6px !important;
  font-size: 12px !important;
  color: var(--c-text-muted) !important;
  border-top: 1px dashed var(--c-border);
  padding-top: 6px;
}

.ai-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-card__bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--c-text);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
}
.ai-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-primary-50)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    no-repeat center / 11px;
  border: 1px solid var(--c-primary-100);
}

.ai__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 36px auto 0;
  padding: 10px 18px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  color: var(--c-text-soft);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  width: fit-content;
  max-width: 100%;
}
.ai__note svg { color: var(--c-primary); flex-shrink: 0; }

/* ---------- IK Features ---------- */
.ik-features {
  padding: 110px 0;
  background: var(--c-bg-soft);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
[data-theme="dark"] .feature__icon {
  background: color-mix(in srgb, var(--c, #0f766e) 18%, transparent);
}
.feature:hover {
  transform: translateY(-3px);
  border-color: var(--c-primary-100);
  box-shadow: 0 12px 30px -16px rgba(15, 23, 42, 0.18);
}
.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg, var(--c-primary-50));
  color: var(--c, var(--c-primary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature h3 { font-size: 19px; margin: 0 0 8px; }
.feature p {
  margin: 0;
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 1.6;
}

/* ---------- How ---------- */
.how {
  background: var(--c-primary-900);
  color: #f1f5f9;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how__step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}
.how__step:hover {
  border-color: rgba(94, 234, 212, 0.4);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}
.how__num {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #5eead4;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(94, 234, 212, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(94, 234, 212, 0.2);
}
.how__step h3 { color: #fff; font-size: 22px; margin: 0 0 10px; }
.how__step p { color: #cbd5e1; font-size: 15px; margin: 0; }

/* ---------- Stats ---------- */
.stats { padding: 80px 0; background: var(--c-bg); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat__num {
  display: block;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__num span {
  color: var(--c-primary);
  font-size: 0.5em;
  margin-left: 4px;
}
.stat__label { color: var(--c-text-muted); font-weight: 500; font-size: 15px; }

/* ---------- Why ---------- */
.why { padding: 110px 0; background: var(--c-bg-soft); }
.why__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.why__text h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 18px; }
.why__text p { font-size: 17px; margin-bottom: 28px; }
.why__quote {
  margin: 0;
  background: var(--c-surface);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  position: relative;
}
.why__quote::before {
  content: '“';
  position: absolute;
  top: -6px;
  left: 22px;
  font-size: 100px;
  color: var(--c-primary-100);
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 700;
}
.why__quote blockquote {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--c-text);
  position: relative;
}
.why__quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border-soft);
  color: var(--c-text);
  font-size: 14px;
}
.why__quote figcaption small {
  display: block;
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}
.why__ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checks--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.checks li {
  position: relative;
  padding-left: 32px;
  color: var(--c-text);
  font-weight: 500;
  line-height: 1.5;
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-primary-50)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    no-repeat center / 12px;
  border: 1px solid var(--c-primary-100);
}

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--c-bg); }
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 4px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq__item[open] { border-color: var(--c-primary-100); box-shadow: var(--shadow); }
.faq__item summary {
  padding: 18px 0;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--c-text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--c-primary);
  font-weight: 300;
  transition: transform 0.25s;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin: 0 0 18px;
  color: var(--c-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- CTA ---------- */
.cta {
  padding: 110px 0;
  background: var(--c-primary-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta__text h2 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 42px);
  margin: 14px 0 16px;
  letter-spacing: -0.02em;
}
.cta__text p { color: #cbd5e1; font-size: 17px; margin-bottom: 28px; }
.cta__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #e2e8f0;
  font-weight: 500;
}
.cta__contact { display: flex; flex-direction: column; gap: 10px; }
.cta__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ccfbf1;
  font-weight: 600;
}
.cta__contact-item:hover { color: #fff; }
.cta__contact-item span {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.25;
}
.cta__contact-item small {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(204, 251, 241, 0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.cta__form {
  background: var(--c-surface);
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  color: var(--c-text);
}
.cta__form h3 { font-size: 22px; margin: 0 0 20px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field__select {
  width: 100%;
  background: var(--c-bg-soft);
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-text);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field__select:focus {
  outline: none;
  border-color: var(--c-primary);
  background: var(--c-surface);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
}
.field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta__note {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--c-text-muted);
  min-height: 20px;
}
.cta__note.is-success { color: var(--c-success); }
.cta__note.is-error { color: #dc2626; }

/* ---------- Footer ---------- */
.footer {
  background: #020617;
  color: #94a3b8;
  padding-top: 60px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  max-width: 320px;
  color: #94a3b8;
  line-height: 1.65;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer__cols h4 {
  color: #fff;
  font-size: 13px;
  margin: 0 0 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer__cols a,
.footer__addr {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.18s;
}
.footer__cols a:hover { color: #fff; }
.footer__bottom { padding: 20px 0; font-size: 13px; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { padding: 50px 0 70px; }
  .hero__city { width: 100%; height: 50%; opacity: 0.05; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero__device {
    max-width: 580px;
    margin: 0 auto;
    min-height: 540px;
  }
  .hero__circle { width: 380px; height: 380px; }
  .product {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .product--ik .product__visual { order: -1; }
  .product__visual { min-height: 460px; }
  .product__circle { width: 380px; height: 380px; }
  .device-stack { max-width: 460px; }
  .device-stack .iphone--small { left: -30px; bottom: -40px; }
  .product--ik .device-stack .iphone--small { right: -30px; left: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .ai__grid { grid-template-columns: 1fr; gap: 22px; }
  .how__steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner,
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .nav__links,
  .nav__demo {
    display: none;
  }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    inset: 72px 0 auto;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 0;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow);
  }
  .nav.is-open .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--c-border-soft);
    font-size: 16px;
  }
  .hero { padding: 40px 0 60px; }
  .hero__title { font-size: 32px; }
  .hero__brand { padding: 12px 18px 12px 14px; gap: 12px; }
  .hero__brand-icon { width: 44px; height: 44px; }
  .hero__brand-text strong { font-size: 22px; }
  .hero__circle { width: 300px; height: 300px; }
  .iphone { width: 240px; height: 500px; }
  .iphone--small { width: 150px; height: 320px; }
  .products,
  .ik-features,
  .how,
  .why,
  .faq,
  .cta,
  .ai {
    padding: 70px 0;
  }
  .product__visual { min-height: 380px; }
  .product__circle { width: 300px; height: 300px; }
  .device-stack .iphone--small { bottom: -30px; left: -10px; }
  .product--ik .device-stack .iphone--small { right: -10px; left: auto; }
  .ai-card { padding: 24px 22px; }
  .ai-card__header {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .ai-card__live {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .section__head { margin-bottom: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .trust__row { font-size: 14px; gap: 12px; }
  .checks--2col { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .float--1 { left: 10px; bottom: 30px; }
  .float--2 { right: 10px; top: 30px; }
  .cta__form { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Dark theme — text/stroke contrast overrides ---------- */
[data-theme="dark"] .eyebrow:not(.eyebrow--ai):not(.eyebrow--light) { color: #5eead4; }
[data-theme="dark"] .stat__num,
[data-theme="dark"] .stat__num span { color: #5eead4; }
[data-theme="dark"] .product__tag--teal { color: #5eead4; }
[data-theme="dark"] .product__tag--blue { color: #7dd3fc; background: rgba(2, 132, 199, 0.18); border-color: rgba(2, 132, 199, 0.35); }
[data-theme="dark"] .why__quote::before { color: rgba(20, 184, 166, 0.22); }
[data-theme="dark"] .faq__item summary::after { color: #5eead4; }
[data-theme="dark"] .btn--outline:hover { color: #5eead4; border-color: #5eead4; }
[data-theme="dark"] .btn--ghost:hover { color: #5eead4; }
[data-theme="dark"] .nav__links a:hover { color: #f1f5f9; }
[data-theme="dark"] .nav__links a::after { background: #5eead4; }
[data-theme="dark"] .mac__pill { background: rgba(20, 184, 166, 0.18); border-color: rgba(20, 184, 166, 0.35); color: #5eead4; }
[data-theme="dark"] .ai-msg--user { background: var(--c-primary); }
[data-theme="dark"] .checks li::before,
[data-theme="dark"] .ai-card__bullets li::before,
[data-theme="dark"] .product--ik .product__bullets li::before,
[data-theme="dark"] .product:not(.product--superapp) .product__bullets li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235eead4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  border-color: rgba(20, 184, 166, 0.35);
}
[data-theme="dark"] .product--superapp .product__bullets li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338bdf8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  border-color: rgba(2, 132, 199, 0.35);
}
[data-theme="dark"] .field__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
