/* Piadero marketing site v0.1.1 */

@font-face {
  font-family: "Shabnam-FD";
  src: url("assets/fonts/shabnam/Shabnam-FD.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shabnam-FD";
  src: url("assets/fonts/shabnam/Shabnam-Medium-FD.woff2") format("woff2");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shabnam-FD";
  src: url("assets/fonts/shabnam/Shabnam-Bold-FD.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal-900: #004d40;
  --teal-800: #00695c;
  --teal-700: #00796b;
  --teal-600: #00897b;
  --teal-500: #26a69a;
  --teal-100: #e0f2f1;
  --teal-50: #eafbfb;

  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 48px rgba(0, 137, 123, 0.14);
  --shadow-lg: 0 28px 80px rgba(0, 121, 107, 0.2);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] {
  scroll-margin-top: 5.5rem;
}

body {
  margin: 0;
  font-family: "Shabnam-FD", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-900);
  background: var(--slate-50);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--teal-600); }

h1, h2, h3 { line-height: 1.35; margin: 0 0 0.6em; font-weight: 900; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.2rem); letter-spacing: -0.025em; direction: rtl; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.12rem; font-weight: 800; }
p { margin: 0 0 1em; }
strong { font-weight: 800; color: var(--teal-800); }

.hero__copy h1 [data-edit] {
  display: inline;
  unicode-bidi: isolate;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  position: relative;
}

/* Background */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(165deg, var(--teal-50) 0%, var(--slate-50) 45%, var(--white) 100%);
}

.page-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.page-bg__blob--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  inset-inline-start: -100px;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.35), transparent 70%);
  animation: blobFloat 14s ease-in-out infinite;
}

.page-bg__blob--2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  inset-inline-end: -80px;
  background: radial-gradient(circle, rgba(0, 137, 123, 0.2), transparent 70%);
  animation: blobFloat 18s ease-in-out infinite reverse;
}

.page-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 137, 123, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 137, 123, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: var(--teal-700);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 137, 123, 0.1);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; color: inherit; }

.brand__mark {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 137, 123, 0.22);
}

.brand__mark img { width: 100%; height: 100%; object-fit: cover; }

.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-size: 1.12rem; font-weight: 900; color: var(--teal-800); }
.brand__sub { font-size: 0.72rem; font-weight: 700; color: var(--slate-500); letter-spacing: 0.06em; }

.site-nav { display: flex; align-items: center; gap: 1.1rem; }
.site-nav a { font-size: 0.9rem; font-weight: 700; color: var(--slate-700); transition: color 0.2s; }
.site-nav a.is-active { color: var(--teal-700); }

.site-nav__cta {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(0, 137, 123, 0.25);
}

.site-nav__cta:hover { color: var(--white) !important; filter: brightness(1.05); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--slate-200);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-weight: 700;
  color: var(--slate-700);
  cursor: pointer;
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

/* Hero */

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.text-gradient {
  display: block;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 137, 123, 0.12);
  color: var(--teal-800);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(38, 166, 154, 0.25);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.lead { font-size: 1.1rem; color: var(--slate-700); line-height: 1.85; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.94rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { color: var(--white); box-shadow: var(--shadow-lg); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-800);
  border-color: rgba(0, 137, 123, 0.18);
}

.btn--light { background: var(--white); color: var(--teal-800); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-light:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }

.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero__stats li {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 137, 123, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__stats li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero__stats-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  background: var(--teal-100);
  color: var(--teal-700);
}

.hero__stats-icon svg { width: 18px; height: 18px; }
.hero__stats-icon--purple { background: #f3e5f5; color: #8e24aa; }
.hero__stats-icon--gold { background: #fff3e0; color: #ff8f00; }

.hero__stats strong { display: block; font-size: 0.95rem; margin-bottom: 0.1rem; }
.hero__stats span:last-child { display: block; font-size: 0.76rem; color: var(--slate-500); font-weight: 600; line-height: 1.5; }

/* Showcase */

.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 600px; }

.showcase {
  position: relative;
  width: min(100%, 360px);
}

.showcase__badge {
  position: absolute;
  top: -8px;
  inset-inline-end: -12px;
  z-index: 3;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 137, 123, 0.35);
  animation: floatBadge 5s ease-in-out infinite;
}

.showcase__badge img { width: 100%; height: 100%; object-fit: cover; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.showcase__float {
  position: absolute;
  z-index: 3;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 137, 123, 0.1);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.showcase__float--steps {
  top: 18%;
  inset-inline-start: -24px;
  animation: floatCard 6s ease-in-out infinite;
}

.showcase__float--streak {
  bottom: 38%;
  inset-inline-end: -20px;
  animation: floatCard 7s ease-in-out infinite reverse;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.showcase__float-label { display: block; font-size: 0.68rem; font-weight: 700; color: var(--slate-500); }
.showcase__float-value { display: block; font-size: 1.1rem; font-weight: 900; color: var(--teal-800); line-height: 1.2; }

.phone-mock {
  position: relative;
  z-index: 2;
  width: min(100%, 318px);
  margin-inline: auto;
  aspect-ratio: 9 / 19.5;
  padding: 11px;
  border-radius: 42px;
  background: linear-gradient(155deg, #1e293b 0%, #0f172a 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  display: flex;
  flex-direction: column;
}

.phone-mock__island {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 20px;
  border-radius: 999px;
  background: #0a0f1a;
  z-index: 4;
}

.phone-mock__screen {
  flex: 1;
  min-height: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, #f8fffe 0%, #eef8f6 100%);
  padding: 2rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: hidden;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--slate-700);
}

.mock-header__live {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.65rem;
}

.mock-map {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #e8e4df;
}

.mock-map__base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.22) contrast(0.9) brightness(1.14) grayscale(0.55);
}

.mock-map__toner {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(248, 252, 251, 0.42), rgba(236, 246, 243, 0.28)),
    rgba(255, 255, 255, 0.08);
}

.mock-map__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mock-map__territory {
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.mock-map__territory--mine {
  fill: rgba(0, 137, 123, 0.34);
  stroke: #00897b;
  animation: territoryPulse 4s ease-in-out infinite;
}

.mock-map__territory--other {
  fill: rgba(100, 116, 139, 0.22);
  stroke: #64748b;
  stroke-dasharray: 5 4;
}

.mock-map__territory--selected {
  fill: rgba(100, 116, 139, 0.3);
  stroke: #475569;
  stroke-width: 2.5;
  stroke-dasharray: none;
}

.mock-map__route {
  fill: none;
  stroke: #00695c;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.92;
}

.mock-map__user-marker {
  animation: pinBounce 2s ease infinite;
}

.mock-map__user {
  fill: #00897b;
  stroke: #fff;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.mock-map__user-ring {
  fill: none;
  stroke: rgba(0, 137, 123, 0.35);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  animation: userRing 2.4s ease-out infinite;
}

.mock-map__territory-card {
  position: absolute;
  inset-inline: 8px;
  bottom: 8px;
  z-index: 3;
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(6px);
  text-align: right;
}

.mock-map__territory-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem;
}

.mock-map__territory-card-copy {
  flex: 1;
  min-width: 0;
}

.mock-map__territory-card-owner-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18rem;
  width: 3.4rem;
}

.mock-map__territory-card-avatar {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--slate-100);
  border: 2px solid #c45c3e;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
}

.mock-map__territory-card-badge {
  display: inline-flex;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  font-size: 0.48rem;
  font-weight: 800;
  color: var(--slate-600);
}

.mock-map__territory-card-title {
  margin: 0.2rem 0 0;
  font-size: 0.62rem;
  font-weight: 900;
  color: var(--slate-800);
  line-height: 1.45;
}

.mock-map__territory-card-owner {
  margin: 0;
  font-size: 0.44rem;
  font-weight: 700;
  color: var(--slate-500);
  text-align: center;
  line-height: 1.35;
}

.mock-map__territory-card-owner strong {
  color: var(--slate-800);
  font-weight: 800;
}

.mock-map__territory-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.mock-map__territory-card-meta div {
  padding: 0.3rem 0.4rem;
  border-radius: 8px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
}

.mock-map__territory-card-meta span {
  display: block;
  font-size: 0.46rem;
  font-weight: 700;
  color: var(--slate-400);
}

.mock-map__territory-card-meta strong {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.5rem;
  font-weight: 900;
  color: var(--slate-800);
  line-height: 1.35;
}

@keyframes userRing {
  0% { opacity: 0.65; transform: scale(0.85); }
  70%, 100% { opacity: 0; transform: scale(1.5); }
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes territoryPulse {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}

.mock-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--slate-200);
  overflow: hidden;
  position: relative;
}

.mock-bar::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 84%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-500));
}

.mock-bar span {
  position: absolute;
  inset-inline-start: 0;
  top: -1.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--slate-500);
}

/* Sections */

[data-section] {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

[data-section="hero"] {
  padding-top: clamp(2.5rem, 6vw, 5.5rem);
  padding-bottom: 1.75rem;
}

[data-section="mission"] {
  padding-top: 1.75rem;
}

.section--alt {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid rgba(0, 137, 123, 0.06);
  backdrop-filter: blur(4px);
}

.section__header { margin-bottom: 2.25rem; }
.section__header:not(.section__header--center) { max-width: 52ch; }
.section__header--center { margin-inline: auto; text-align: center; }
.section__header--center [data-layout] {
  margin-inline: auto;
}

.section__header--center .section__lead {
  margin-inline: auto;
}

.hero__copy [data-layout] {
  width: 100%;
}
.section__lead { color: var(--slate-700); margin-bottom: 0; }

.card-grid { display: grid; gap: 1rem; }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 137, 123, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  color: var(--teal-700);
}

.info-card__icon svg { width: 24px; height: 24px; }
.info-card__icon--teal { background: var(--teal-100); color: var(--teal-700); }
.info-card__icon--blue { background: #e3f2fd; color: #1565c0; }
.info-card__icon--purple { background: #f3e5f5; color: #8e24aa; }

.info-card p:last-child { margin-bottom: 0; color: var(--slate-700); font-size: 0.94rem; width: 100%; }

.info-card h3 { width: 100%; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.split__copy {
  align-self: start;
}

.split__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  min-height: 100%;
  padding-bottom: 1.75rem;
}

.split__aside .quote-card {
  width: 100%;
  margin-top: 0;
}

.check-list { margin: 1.25rem 0 0; padding: 0; list-style: none; }

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.65rem 0;
  margin-bottom: 0.35rem;
  color: var(--slate-700);
  border-bottom: 1px solid rgba(0, 137, 123, 0.06);
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' fill='none' stroke='%2300897B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.quote-card {
  margin: 0;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--teal-800), var(--teal-500));
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.quote-card__mark {
  position: absolute;
  top: 0.65rem;
  inset-inline-end: 1.1rem;
  font-size: 4.75rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 900;
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
  user-select: none;
}

.quote-card p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.9;
  margin: 1.35rem 0 1.25rem;
  padding-inline-end: 2.25rem;
  position: relative;
}

.quote-card footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 800;
  opacity: 0.92;
}

.quote-card footer img { border-radius: 8px; }

.cta-slot {
  width: 100%;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.04);
}

.cta-btn--sm { padding: 0.55rem 1rem; font-size: 0.82rem; }
.cta-btn--md { padding: 0.82rem 1.4rem; font-size: 0.94rem; }
.cta-btn--lg { padding: 1rem 1.75rem; font-size: 1.02rem; }

.is-content-hidden,
.is-cta-hidden {
  display: none !important;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 137, 123, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent, var(--teal-600));
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  background: var(--tint, var(--teal-100));
  color: var(--accent, var(--teal-600));
}

.feature-card__icon svg { width: 22px; height: 22px; }

.feature-card p { margin: 0; font-size: 0.9rem; color: var(--slate-700); line-height: 1.7; width: 100%; }

.feature-card h3 { width: 100%; }

.values-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.value-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.15rem 0.75rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--slate-200);
  transition: transform 0.2s, border-color 0.2s;
}

.value-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 137, 123, 0.25);
}

.value-pill__n {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: 0.85rem;
  font-weight: 900;
  align-self: center;
}

.value-pill__title { font-weight: 900; color: var(--teal-800); }
.value-pill__text { grid-column: 2; font-size: 0.86rem; color: var(--slate-600); line-height: 1.55; }

/* CTA */

.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 45%, var(--teal-500) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-section__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 50%);
  pointer-events: none;
}

.cta-section__copy {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}

.cta-section__icon {
  flex-shrink: 0;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-section h2 { color: var(--white); }
.cta-section__lead { margin: 0; opacity: 0.92; font-size: 0.95rem; }
.cta-section__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; flex-shrink: 0; position: relative; }

/* Footer */

.site-footer {
  padding: 2.25rem 0 2.75rem;
  border-top: 1px solid rgba(0, 137, 123, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.site-footer__inner { display: grid; gap: 1.1rem; }

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__logo { border-radius: 10px; box-shadow: var(--shadow-sm); }

.site-footer__tag { display: block; font-size: 0.8rem; color: var(--slate-500); font-weight: 700; }

.site-footer__nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-footer__nav a { font-size: 0.9rem; font-weight: 700; color: var(--slate-600); }
.site-footer__copy { margin: 0; font-size: 0.82rem; color: var(--slate-500); }

/* Responsive */

@media (max-width: 960px) {
  .hero__grid, .split, .card-grid--3, .feature-grid, .values-row {
    grid-template-columns: 1fr;
  }

  .split__aside {
    justify-content: flex-start;
    padding-bottom: 0;
    margin-top: 1.5rem;
  }

  .split__aside .quote-card {
    margin-top: 0;
  }

  .hero__visual { order: -1; min-height: 520px; }
  .showcase__float--steps { inset-inline-start: 0; }
  .showcase__float--streak { inset-inline-end: 0; }

  .cta-section__inner { flex-direction: column; align-items: flex-start; }
  .cta-section__copy { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    inset-inline: 1rem;
    top: calc(var(--header-h) - 6px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.55rem 0.35rem; }
  .hero__stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .info-card:hover, .feature-card:hover, .value-pill:hover, .hero__stats li:hover {
    transform: none;
  }
  .page-bg__blob, .showcase__badge, .showcase__float, .mock-map__user-marker, .eyebrow__dot {
    animation: none;
  }
}
