/* =============================================
   COLLIE — Design System
   Navy #0a1628 · Green #00c896 · Indigo #6366f1
   ============================================= */

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

/* ── 1. Custom Properties ── */
:root {
  --navy:        #0a1628;
  --navy-light:  #0f2040;
  --navy-mid:    #162d52;
  --green:       #00c896;
  --green-dark:  #00a87e;
  --indigo:      #6366f1;
  --indigo-dark: #4f46e5;
  --white:       #ffffff;
  --slate-50:    #f8fafc;
  --slate-100:   #f1f5f9;
  --slate-200:   #e2e8f0;
  --slate-300:   #cbd5e1;
  --slate-400:   #94a3b8;
  --slate-500:   #64748b;
  --slate-600:   #475569;
  --slate-700:   #334155;
  --slate-900:   #0f172a;
  --red:         #ef4444;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px -2px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 40px -8px rgba(0,0,0,.14);
  --shadow-green: 0 8px 24px -4px rgba(0,200,150,.35);

  --nav-h: 68px;
  --max-w: 1200px;
  --section-py: 88px;
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── 3. Container & Section ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 640px)  { .container { padding-inline: 28px; } }
@media (min-width: 1024px) { .container { padding-inline: 40px; } }

.section { padding-block: var(--section-py); }
.section--sm { padding-block: 56px; }
.section--lg { padding-block: 112px; }

/* ── 4. Typography ── */
.display-xl {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.display-lg {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.text-xl  { font-size: 1.25rem; line-height: 1.6; }
.text-lg  { font-size: 1.125rem; line-height: 1.65; }
.text-base{ font-size: 1rem; line-height: 1.65; }
.text-sm  { font-size: 0.875rem; line-height: 1.6; }
.text-xs  { font-size: 0.75rem; line-height: 1.5; }

.text-muted   { color: var(--slate-500); }
.text-white   { color: var(--white); }
.text-white-60{ color: rgba(255,255,255,.6); }
.text-white-40{ color: rgba(255,255,255,.4); }
.text-green   { color: var(--green); }
.text-indigo  { color: var(--indigo); }
.text-navy    { color: var(--navy); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.text-center { text-align: center; }

.text-gradient-green {
  background: linear-gradient(135deg, #00c896 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-indigo {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 5. Backgrounds ── */
.bg-white   { background: var(--white); }
.bg-slate   { background: var(--slate-50); }
.bg-navy    { background: var(--navy); }
.bg-navy-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, #1a3560 100%);
}

/* ── 6. Grid & Flex Utilities ── */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col    { flex-direction: column; }
.items-center{ align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2  { gap: 8px; }
.gap-3  { gap: 12px; }
.gap-4  { gap: 16px; }
.gap-5  { gap: 20px; }
.gap-6  { gap: 24px; }

.split {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split.split--reverse > *:first-child { order: 2; }
  .split.split--reverse > *:last-child  { order: 1; }
}

.max-prose { max-width: 680px; }
.mx-auto   { margin-inline: auto; }
.mb-2  { margin-bottom: 8px; }
.mb-3  { margin-bottom: 12px; }
.mb-4  { margin-bottom: 16px; }
.mb-5  { margin-bottom: 20px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }

/* ── 7. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  padding: 14px 28px;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

.btn-primary {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

.btn-indigo {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
}
.btn-indigo:hover {
  background: var(--indigo-dark);
  border-color: var(--indigo-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -4px rgba(99,102,241,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.65);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

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

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── 8. Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid;
}
.badge-green {
  color: var(--green);
  background: rgba(0,200,150,.1);
  border-color: rgba(0,200,150,.25);
}
.badge-indigo {
  color: #818cf8;
  background: rgba(99,102,241,.1);
  border-color: rgba(99,102,241,.25);
}
.badge-white {
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
.badge-slate {
  color: var(--slate-600);
  background: var(--slate-100);
  border-color: var(--slate-200);
}

/* ── 9. Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-300);
}
.card--green:hover { border-color: rgba(0,200,150,.4); box-shadow: 0 20px 40px -8px rgba(0,200,150,.12); }
.card--indigo:hover{ border-color: rgba(99,102,241,.4); box-shadow: 0 20px 40px -8px rgba(99,102,241,.12); }
.card--dark {
  background: var(--navy);
  border-color: rgba(255,255,255,.1);
}
.card--slate { background: var(--slate-50); }
.card-icon  { font-size: 2.5rem; margin-bottom: 16px; }
.card-tag   { margin-bottom: 16px; }
.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.card--dark .card-title { color: var(--white); }
.card-desc  { font-size: 0.9375rem; color: var(--slate-600); line-height: 1.65; }
.card--dark .card-desc { color: rgba(255,255,255,.65); }

/* ── 10. Check List ── */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--slate-700);
  line-height: 1.55;
}
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  margin-top: 1px;
}
.check-icon--green { background: rgba(0,200,150,.15); color: var(--green); }
.check-icon--red   { background: rgba(239,68,68,.1);  color: var(--red);   }
.check-icon--slate { background: var(--slate-100);    color: var(--slate-400); }
.check-item--dark  { color: rgba(255,255,255,.8); }

/* ── 11. Stat Strip ── */
.trust-strip { display: flex; flex-wrap: wrap; gap: 20px 28px; margin-top: 40px; }
.trust-item  {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.5);
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── 12. Comparison table ── */
.compare-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .compare-wrap { grid-template-columns: 1fr 1fr; } }

.compare-col {
  border-radius: var(--radius-xl);
  padding: 32px;
}
.compare-col--light { background: var(--white); border: 1px solid var(--slate-200); }
.compare-col--dark  { background: var(--navy); }
.compare-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-dot-x { width: 28px; height: 28px; border-radius: 50%; background: var(--slate-100); color: var(--slate-400); display: flex; align-items: center; justify-content: center; font-size: .75rem; }
.compare-dot-check { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; }
.compare-dot-check--green { background: rgba(0,200,150,.2); color: var(--green); }
.compare-dot-check--indigo{ background: rgba(99,102,241,.2); color: var(--indigo); }
.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid;
  font-size: 0.9375rem;
}
.compare-col--light .compare-item { border-color: var(--slate-100); color: var(--slate-500); }
.compare-col--dark  .compare-item { border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.75); }
.compare-item:last-child { border-bottom: none; }
.compare-bullet { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.compare-bullet--slate  { background: var(--slate-300); }
.compare-bullet--green  { background: var(--green); }
.compare-bullet--indigo { background: var(--indigo); }

/* ── 13. Section Header ── */
.section-header { max-width: 640px; }
.section-header.center { margin-inline: auto; text-align: center; }

/* ── 14. Feature Box ── */
.feature-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.feature-box--dark { background: var(--navy); border-color: rgba(255,255,255,.08); }

/* ── 15. Pill Tags ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}

/* ── 16. Glow backgrounds ── */
.hero-glow-right {
  position: absolute;
  top: 0; right: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,.14) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-glow-left {
  position: absolute;
  top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.14) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-glow-center {
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── 17. Hero sections ── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 100px 80px;
}
@media (min-width: 1024px) { .hero { padding-block: 136px 100px; } }

.hero__content { position: relative; z-index: 1; }
.hero__tag      { margin-bottom: 24px; }
.hero__title    { margin-bottom: 20px; }
.hero__subtitle { margin-bottom: 16px; }
.hero__desc     { margin-bottom: 40px; max-width: 600px; }
.hero__desc p   { margin-bottom: 8px; }
.hero--center   { text-align: center; }
.hero--center .hero__desc { margin-inline: auto; }

/* ── 18. Quote / Testimonial ── */
.quote-box {
  background: var(--slate-50);
  border-top: 3px solid;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 20px 24px;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--slate-500);
}
.quote-box--green { border-color: var(--green); }

/* ── 19. Dark inline box ── */
.dark-box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px;
}

/* ── 20. Pricing Cards ── */
.pricing-wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .pricing-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pricing-wrap { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--slate-200);
  background: var(--white);
}
.pricing-card--featured {
  background: var(--navy);
  border-color: rgba(0,200,150,.3);
  box-shadow: 0 24px 60px -12px rgba(0,200,150,.15);
}
.pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-capacity {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.pricing-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.pricing-subtitle {
  font-size: 0.8125rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-price .amount {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-price .period {
  font-size: 1rem;
  font-weight: 500;
  opacity: .6;
}
.pricing-iva { font-size: .75rem; opacity: .5; margin-bottom: 28px; }
.pricing-features {
  flex: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  line-height: 1.5;
}
.pricing-feat-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-setup {
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.pricing-setup-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 4px;
}
.pricing-setup-value { font-size: 1.125rem; font-weight: 800; }
.pricing-setup-note  { font-size: .75rem; margin-top: 2px; }

.pricing-card:not(.pricing-card--featured) .pricing-capacity { color: var(--slate-500); }
.pricing-card:not(.pricing-card--featured) .pricing-name { color: var(--slate-900); }
.pricing-card:not(.pricing-card--featured) .pricing-subtitle { color: var(--slate-500); }
.pricing-card:not(.pricing-card--featured) .pricing-price .amount { color: var(--slate-900); }
.pricing-card:not(.pricing-card--featured) .pricing-feat { color: var(--slate-600); }
.pricing-card:not(.pricing-card--featured) .pricing-setup { background: var(--slate-50); border: 1px solid var(--slate-100); }
.pricing-card:not(.pricing-card--featured) .pricing-setup-label { color: var(--slate-400); }
.pricing-card:not(.pricing-card--featured) .pricing-setup-value { color: var(--slate-900); }
.pricing-card:not(.pricing-card--featured) .pricing-setup-note { color: var(--slate-400); }

.pricing-card--featured .pricing-capacity { color: rgba(255,255,255,.5); }
.pricing-card--featured .pricing-name { color: var(--white); }
.pricing-card--featured .pricing-subtitle { color: rgba(255,255,255,.55); }
.pricing-card--featured .pricing-price .amount { color: var(--white); }
.pricing-card--featured .pricing-feat { color: rgba(255,255,255,.78); }
.pricing-card--featured .pricing-setup { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); }
.pricing-card--featured .pricing-setup-label { color: rgba(255,255,255,.4); }
.pricing-card--featured .pricing-setup-value { color: var(--white); }
.pricing-card--featured .pricing-setup-note { color: rgba(255,255,255,.4); }

/* ── 21. Forms ── */
.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--slate-900);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--slate-400); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,200,150,.15);
}
.field textarea { resize: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

.form-hint { font-size: .8125rem; color: var(--slate-400); margin-top: 4px; }

/* ── 22. Contact Page layout ── */
.contact-wrap {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-wrap { grid-template-columns: 5fr 7fr; }
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-100);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-700);
}
.contact-info-item:last-child { border: none; }
.contact-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 36px;
}
@media (min-width: 640px) { .form-card { padding: 44px; } }

.success-state {
  text-align: center;
  padding: 60px 24px;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,200,150,.12);
  color: var(--green);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* ── 23. Navbar ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(10,22,40,.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
  height: 100%;
}
@media (min-width: 640px)  { .nav-inner { padding-inline: 28px; } }
@media (min-width: 1024px) { .nav-inner { padding-inline: 40px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 18px; height: 18px; }
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  list-style: none;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-link {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.07); }
.nav-link.active { color: var(--green); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--white); background: rgba(255,255,255,.07); }
.nav-dropdown-toggle .chevron {
  transition: transform .15s;
  display: flex;
}
.nav-dropdown.open .nav-dropdown-toggle { color: var(--white); background: rgba(255,255,255,.07); }
.nav-dropdown.open .chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
  padding: 8px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .15s, transform .15s;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: var(--radius);
  transition: background .12s, color .12s;
  text-decoration: none;
}
.nav-dropdown-item:hover { background: var(--slate-50); color: var(--green); }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  border-radius: var(--radius);
  transition: background .15s;
}
.nav-hamburger:hover { background: rgba(255,255,255,.1); }
@media (min-width: 900px) { .nav-hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 20px 24px;
  z-index: 998;
}
.mobile-menu.open { display: block; }
.mobile-menu-link {
  display: block;
  padding: 12px 12px;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  text-decoration: none;
}
.mobile-menu-link:hover, .mobile-menu-link.active { color: var(--white); background: rgba(255,255,255,.06); }
.mobile-submenu { margin-left: 12px; border-left: 1.5px solid rgba(255,255,255,.1); padding-left: 14px; }
.mobile-submenu-link {
  display: block;
  padding: 9px 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
  text-decoration: none;
}
.mobile-submenu-link:hover { color: var(--green); }
.mobile-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 12px;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  text-align: left;
  background: none; border: none; cursor: pointer;
}
.mobile-toggle-btn:hover { color: var(--white); background: rgba(255,255,255,.06); }
.mobile-toggle-btn .chevron { transition: transform .15s; }
.mobile-toggle-btn.open .chevron { transform: rotate(180deg); }
.mobile-submenu-wrap { display: none; }
.mobile-submenu-wrap.open { display: block; }
.mobile-cta-wrap { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }

/* ── 24. Footer ── */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 72px;
  padding-bottom: 32px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 48px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  max-width: 300px;
  margin-top: 14px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .15s, color .15s;
}
.footer-social-btn:hover { background: rgba(0,200,150,.2); color: var(--green); }

.footer-col h3 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .15s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }

/* ── 25. Page wrapper ── */
.page-top { padding-top: var(--nav-h); }

/* ── 26. Result cards ── */
.result-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  transition: background .2s;
}
.result-card:hover { background: rgba(255,255,255,.08); }
.result-card .icon  { font-size: 2.25rem; margin-bottom: 12px; color: #fff; }
.result-card .label { font-size: .9375rem; font-weight: 600; color: var(--white); }

/* ── 27. CTA section ── */
.cta-section { padding-block: var(--section-py); }
.cta-content  { max-width: 600px; margin-inline: auto; text-align: center; }

/* ── 28. Audience list box ── */
.audience-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.audience-box-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--slate-400);
  margin-bottom: 20px;
}

/* ── 29. Dark pill row (channels / compat) ── */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }

/* ── 30. Spacing helpers ── */
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ── 31. Hero Chat ── */
.hero-chat {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: stretch;
}

.hero-chat__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 52px;
  padding-bottom: 44px;
  gap: 28px;
}

.hero-chat__display {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 860px;
  padding: 16px 0;
}

.hero-chat__status {
  margin-bottom: 28px;
}

.chat-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

.hero-chat__user-msg {
  font-size: .9375rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
  font-style: italic;
  min-height: 1.5em;
  transition: opacity .2s;
}

.hero-chat__title {
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--white);
  transition: none;
}

/* Typing dots */
.chat-typing-dots span {
  display: inline-block;
  font-size: 2.75rem;
  color: rgba(255,255,255,.35);
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.chat-typing-dots span:nth-child(2) { animation-delay: .15s; }
.chat-typing-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-10px); }
}

/* Suggestion chips */
.hero-chat__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 700px;
  width: 100%;
}

.chat-suggestion {
  padding: 9px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,.68);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  font-family: inherit;
}
.chat-suggestion:hover {
  background: rgba(0,200,150,.12);
  border-color: rgba(0,200,150,.3);
  color: var(--green);
}

/* Input area */
.hero-chat__bottom {
  width: 100%;
  max-width: 680px;
}

.hero-chat__form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 20px;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.hero-chat__form:focus-within {
  border-color: rgba(0,200,150,.5);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(0,200,150,.1);
}

.hero-chat__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  padding: 10px 12px 10px 0;
  min-width: 0;
}
.hero-chat__input::placeholder { color: rgba(255,255,255,.3); }
.hero-chat__input:disabled      { opacity: .5; }

.hero-chat__send {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .15s, opacity .15s;
}
.hero-chat__send:hover:not(:disabled) {
  background: var(--green-dark);
  transform: scale(1.05);
}
.hero-chat__send:disabled {
  opacity: .3;
  cursor: not-allowed;
  transform: none;
}

.hero-chat__hint {
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.2);
  margin-top: 12px;
}

/* ── 32. WhatsApp Floating Widget ── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.wa-fab svg { width: 32px; height: 32px; }

.wa-fab__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.wa-panel {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 8999;
  width: 340px;
  max-width: calc(100vw - 40px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
  transform: translateY(16px) scale(.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.wa-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-panel__header {
  background: #075e54;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-panel__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.wa-panel__info { flex: 1; min-width: 0; }
.wa-panel__name  { color: #fff; font-weight: 700; font-size: .9375rem; line-height: 1.2; }
.wa-panel__status { color: rgba(255,255,255,.65); font-size: .75rem; margin-top: 2px; }
.wa-panel__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color .15s;
}
.wa-panel__close:hover { color: #fff; }

.wa-panel__body {
  background: #ece5dd;
  padding: 16px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-msg {
  max-width: 82%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: .875rem;
  line-height: 1.45;
  word-break: break-word;
}
.wa-msg--agent {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  color: #111;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.wa-msg--user {
  background: #dcf8c6;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  color: #111;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.wa-panel__form {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #ddd;
}
.wa-panel__input {
  flex: 1;
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: .875rem;
  font-family: inherit;
  background: #fff;
  color: #111;
}
.wa-panel__input::placeholder { color: #aaa; }
.wa-panel__send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.wa-panel__send:hover { background: #1ebe5c; }
.wa-panel__send svg  { width: 18px; height: 18px; color: #fff; }

/* ── 33. About Float (Index propuesta) ── */
.about-wrap {
  max-width: 860px;
  margin: 0 auto;
}
/* Desktop: imagen flota a la derecha y el texto la envuelve */
.about-float-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  float: right;
  width: 42%;
  margin: 0 0 28px 40px;
}
.about-float-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.about-float-img:hover img { transform: scale(1.03); }
/* Móvil: sin float, imagen debajo del título y arriba del resto */
@media (max-width: 720px) {
  .about-float-img {
    float: none;
    width: 100%;
    margin: 0 0 28px 0;
  }
  .about-float-img img { height: 280px; }
}
.about-split__img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(6,15,35,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-service-icon {
  width: 40px;
  height: 40px;
  background: var(--slate-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ── 34. Testimonios Carrusel ── */
.testi-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.testi-track--fwd { animation: testi-fwd 40s linear infinite; }
.testi-track--rev { animation: testi-rev 45s linear infinite; }
.testi-track:hover { animation-play-state: paused; }

@keyframes testi-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes testi-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.testi-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.testi-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.11); }
.testi-card__top  { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: .02em;
}
.testi-name  { font-size: .9375rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.testi-role  { font-size: .75rem; color: var(--slate-400); margin-top: 2px; line-height: 1.3; }
.testi-text  { font-size: .875rem; color: var(--slate-600); line-height: 1.6; flex: 1; }
.testi-logo  {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate-300);
  border-top: 1px solid var(--slate-100);
  padding-top: 12px;
}

/* ── 34. Banner Proximidad (Nosotros) ── */
.banner-proximity {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.banner-proximity__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.82) 0%, rgba(0,200,150,.18) 100%);
}
.banner-proximity__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.banner-proximity__label {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.banner-proximity__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto;
}

/* ── Icon: SVG replacements for emoji ── */
.check-icon { font-size: 0 !important; line-height: 0 !important; width: 18px; height: 18px; flex-shrink: 0; }
.check-icon::before { content: ''; display: block; width: 18px; height: 18px; background: center/contain no-repeat; }
.check-icon--green::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300c896' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.check-icon--red::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); }
.compare-dot-x { font-size: 0; line-height: 0; display: inline-flex; width: 20px; height: 20px; flex-shrink: 0; }
.compare-dot-x::before { content: ''; display: block; width: 20px; height: 20px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat; }
.compare-dot-check { font-size: 0; line-height: 0; display: inline-flex; width: 20px; height: 20px; flex-shrink: 0; }
.compare-dot-check--green::before { content: ''; display: block; width: 20px; height: 20px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300c896' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; }
