:root {
  --brand-950: #16342a;
  --brand-900: #1e4a3a;
  --brand-800: #2c5e4c;
  --brand-700: #3f7b66;
  --brand-600: #4f9a81;
  --accent-500: #fc7132;
  --accent-400: #ff8a58;
  --ink-950: #121715;
  --ink-900: #24282d;
  --ink-700: #4a5550;
  --ink-500: #6f7a74;
  --surface-000: #ffffff;
  --surface-050: #f6f8f7;
  --surface-100: #eef2f0;
  --surface-150: #e2e9e5;
  --surface-900: #0f1915;
  --line-soft: rgba(39, 74, 61, 0.1);
  --line-strong: rgba(39, 74, 61, 0.18);
  --glow-green: rgba(79, 154, 129, 0.28);
  --glow-orange: rgba(252, 113, 50, 0.24);
  --shadow-xl: 0 30px 80px rgba(17, 36, 29, 0.16);
  --shadow-lg: 0 18px 40px rgba(17, 36, 29, 0.12);
  --shadow-md: 0 10px 24px rgba(17, 36, 29, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --nav-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(79, 154, 129, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(252, 113, 50, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfcfb 0%, #f5f8f6 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--ink-700); line-height: 1.75; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; }
.site-shell { min-height: 100vh; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-dark {
  color: #fff;
  background: linear-gradient(180deg, #102019 0%, #0d1713 100%);
}
.section-dark p { color: rgba(255, 255, 255, 0.82); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand-950);
  color: #fff;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(251, 252, 251, 0.82);
  border-bottom: 1px solid rgba(22, 52, 42, 0.06);
}
.topbar-inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 154px; height: auto; }
.topbar .brand img { width: 186px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  color: var(--ink-700);
  font-size: 0.97rem;
  font-weight: 600;
}
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-700);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-dropdown-toggle.active,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-active .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--brand-900);
}
.nav-dropdown-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}
.nav-dropdown.is-open .nav-dropdown-caret {
  transform: rotate(-135deg) translate(-1px, -1px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(44, 94, 76, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(17, 36, 29, 0.14);
}
.nav-dropdown.is-open .nav-dropdown-menu {
  display: flex;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
}
.nav-dropdown-menu a.active,
.nav-dropdown-menu a:hover {
  background: rgba(79, 154, 129, 0.1);
}
.nav a.active,
.nav a:hover { color: var(--brand-900); }
.nav-toggle {
  display: none;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface-100);
  color: var(--brand-800);
}

.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover,
.button-secondary:hover,
.button-ghost:hover { transform: translateY(-1px); }
.button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-500), var(--brand-700));
  box-shadow: 0 12px 26px rgba(44, 94, 76, 0.24);
}
.button-secondary {
  color: var(--brand-900);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(44, 94, 76, 0.12);
}
.button-ghost {
  color: var(--brand-800);
  background: rgba(79, 154, 129, 0.1);
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(79, 154, 129, 0.1);
  color: var(--brand-800);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.eyebrow::before,
.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-500);
}
.eyebrow-light {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}
.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-head h1,
.section-head h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.section-head p { font-size: 1.06rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 120px;
  background:
    radial-gradient(circle at 18% 18%, rgba(79, 154, 129, 0.18), transparent 22%),
    radial-gradient(circle at 84% 22%, rgba(252, 113, 50, 0.16), transparent 18%),
    linear-gradient(180deg, #0f1f18 0%, #10231c 88%, #f5f8f6 88%, #f5f8f6 100%);
}
.hero .container {
  width: min(calc(100% - 40px), 1280px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 42px;
  align-items: start;
}
.hero-grid > *,
.hero-copy,
.hero-media,
.hero-stack,
.hero-slider,
.hero-slider-viewport,
.hero-slider-track,
.hero-slide,
.hero-slide-card,
.hero-slide-copy,
.hero-slide-device {
  min-width: 0;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 18px;
  padding-right: 8px;
}
.hero-copy h1 {
  margin: 18px 0 18px;
  color: #fff;
  max-width: 11ch;
  font-size: clamp(3rem, 4.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.hero-copy p {
  max-width: 660px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}
.hero-note {
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.hero-proof article {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(39, 74, 61, 0.1);
  backdrop-filter: blur(12px);
}
.hero-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-900);
}
.hero-proof p {
  font-size: 0.95rem;
  color: var(--ink-700);
}
.hero-proof-strip {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-top: 12px;
}
.hero-media {
  position: relative;
  min-height: 680px;
  padding-top: 18px;
}
.hero-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
}
.hero-card,
.panel,
.feature-card,
.product-card,
.use-case,
.blog-card,
.contact-card,
.quote-card,
.legal-card,
.mini-card,
.metric-card {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hero-visual-main {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 244, 241, 0.92));
}
.hero-visual-main img {
  width: 100%;
  border-radius: 20px;
}
.mini-card {
  padding: 20px;
  min-height: 220px;
}
.mini-card h3 {
  margin: 14px 0 10px;
  color: var(--ink-900);
  font-size: 1.18rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
}
.mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-900);
}
.mini-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-700);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.8;
}
.hero-orb.one {
  top: 20px;
  right: 16px;
  width: 180px;
  height: 180px;
  background: var(--glow-green);
}
.hero-orb.two {
  bottom: 74px;
  left: 12px;
  width: 150px;
  height: 150px;
  background: var(--glow-orange);
}

.surface-card,
.panel,
.form-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
}
.dark-surface {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #143127, #0f201a);
  color: #fff;
  box-shadow: var(--shadow-xl);
}
.dark-surface p,
.dark-surface li { color: rgba(255, 255, 255, 0.76); }
.label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(252, 113, 50, 0.11);
  color: var(--accent-500);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.list { display: grid; gap: 12px; margin-top: 12px; }
.list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-700);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-500), var(--brand-600));
}
.dark-surface .list li::before { background: linear-gradient(135deg, #fff, var(--accent-400)); }

.logo-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.logo-rail div,
.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.7);
}
.logo-rail strong,
.metric-card strong {
  display: block;
  color: var(--brand-900);
}
.logo-rail span,
.metric-card span {
  display: block;
  margin-top: 6px;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.grid-2,
.grid-3,
.feature-grid,
.product-grid,
.industry-grid,
.blog-grid,
.contact-grid,
.doc-grid {
  display: grid;
  gap: 22px;
}
.grid-2,
.product-grid,
.contact-grid,
.doc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3,
.feature-grid,
.industry-grid,
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.contact-grid > div:first-child {
  display: grid;
  align-content: start;
}
.contact-grid .stack {
  display: grid;
  gap: 18px;
}
.contact-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
}
.contact-card .label {
  margin: 0;
  justify-self: start;
}
.contact-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.product-card,
.feature-card,
.use-case,
.blog-card,
.contact-card,
.quote-card {
  overflow: hidden;
}
.product-card .visual,
.feature-card .visual,
.use-case .visual,
.blog-card .visual {
  margin: -1px -1px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(135deg, rgba(79, 154, 129, 0.12), rgba(252, 113, 50, 0.1));
}
.product-card .visual img,
.feature-card .visual img,
.use-case .visual img,
.blog-card .visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.product-card .content,
.feature-card .content,
.use-case .content,
.blog-card .content { padding: 0 24px 24px; }
.product-card h3,
.feature-card h3,
.use-case h3,
.blog-card h3,
.contact-card h3,
.quote-card h3,
.surface-card h3,
.form-card h3 {
  margin: 16px 0 12px;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.product-card .content,
.feature-card .content,
.use-case .content,
.blog-card .content,
.surface-card,
.form-card {
  color: var(--ink-900);
}
.product-card .content h3,
.feature-card .content h3,
.use-case .content h3,
.blog-card .content h3,
.surface-card h3,
.form-card h3 {
  color: var(--ink-900);
}
.product-card .content p,
.feature-card .content p,
.use-case .content p,
.blog-card .content p,
.surface-card p,
.form-card p {
  color: var(--ink-700);
}
.product-card .content .label,
.feature-card .content .label,
.use-case .content .label,
.blog-card .content .label {
  margin-top: 2px;
}
.section-dark .product-card,
.section-dark .feature-card,
.section-dark .use-case,
.section-dark .blog-card,
.section-dark .surface-card {
  color: var(--ink-900);
}
.section-dark .product-card h3,
.section-dark .feature-card h3,
.section-dark .use-case h3,
.section-dark .blog-card h3,
.section-dark .surface-card h3 {
  color: var(--ink-900);
}
.section-dark .product-card p,
.section-dark .feature-card p,
.section-dark .use-case p,
.section-dark .blog-card p,
.section-dark .surface-card p {
  color: var(--ink-700);
}
.section-dark .product-card .label,
.section-dark .feature-card .label,
.section-dark .use-case .label,
.section-dark .blog-card .label {
  color: var(--accent-500);
}

.industry-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(79, 154, 129, 0.08), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(252, 113, 50, 0.08), transparent 18%);
}
.industry-page-shell {
  display: grid;
  gap: 28px;
  width: min(calc(100% - 24px), 1380px);
}
.industry-page .section-head {
  max-width: 860px;
  margin-bottom: 0;
}
.industry-story-stack {
  display: grid;
  gap: 34px;
}
.industry-story-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
}
.industry-story-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 22px 22px 0;
  background:
    radial-gradient(circle at top left, rgba(79, 154, 129, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(252, 113, 50, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(247, 251, 248, 0.98) 0%, rgba(238, 244, 240, 0.98) 100%);
}
.industry-story-media-link {
  display: block;
  width: 100%;
}
.industry-story-media img {
  width: 100%;
  max-height: none;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(17, 36, 29, 0.12);
}
.industry-story-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 28px 30px;
}
.industry-story-copy .label {
  margin-top: 0;
}
.industry-story-copy h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.2vw, 2.3rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: var(--ink-900);
}
.industry-story-copy p {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--ink-700);
}
.industry-story-action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(79, 154, 129, 0.18);
  background: rgba(79, 154, 129, 0.08);
  color: var(--brand-900);
  font-size: 0.92rem;
  font-weight: 700;
}
.industry-story-action:hover {
  background: rgba(79, 154, 129, 0.14);
}

.showcase-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}
.showcase-shell img { width: 100%; }
.showcase-photo {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 26px;
}

.showcase-copy h2,
.callout-copy h2,
.cta-band h2 {
  margin: 16px 0 14px;
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.cta-band {
  padding: 40px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 18%, rgba(79, 154, 129, 0.26), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(252, 113, 50, 0.2), transparent 22%),
    linear-gradient(135deg, #17392d 0%, #102119 100%);
  color: #fff;
  box-shadow: var(--shadow-xl);
}
.cta-band p { color: rgba(255, 255, 255, 0.76); }
.lead-capture-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.lead-capture-copy {
  width: 100%;
}
.lead-capture-form {
  position: relative;
  z-index: 1;
  width: 100%;
}
.lead-capture-form p {
  margin-bottom: 18px;
}


.form-card {
  padding: 34px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.field { display: grid; gap: 10px; }
.field-full { grid-column: 1 / -1; }
.field label {
  color: var(--brand-900);
  font-weight: 700;
  font-size: 0.95rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid var(--surface-150);
  background: #fbfcfb;
  color: var(--ink-900);
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(79, 154, 129, 0.46);
  box-shadow: 0 0 0 4px rgba(79, 154, 129, 0.14);
}
.form-note { margin-top: 16px; color: var(--ink-500); }

.policy-copy h1,
.blog-post h1 {
  margin: 18px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.policy-copy h2,
.blog-post h2 {
  margin: 34px 0 14px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 26px;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.doc-list {
  display: grid;
  gap: 14px;
}
.doc-list li {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--surface-050);
  border: 1px solid var(--line-soft);
}

.site-footer {
  margin-top: 8px;
  padding: 18px 0 12px;
  border-top: 1px solid rgba(22, 52, 42, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 247, 0.96) 100%);
}
.footer-shell {
  display: grid;
  gap: 18px;
}
.footer-topline {
  display: flex;
  align-items: center;
}
.footer-logo {
  width: 168px;
  height: 52px;
  display: block;
  overflow: hidden;
}
.footer-logo img {
  width: 210px;
  max-width: none;
  margin-top: -34px;
  margin-left: -22px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}
.footer-brand {
  max-width: 460px;
}
.footer-brand p {
  margin-top: 0;
  line-height: 1.7;
}
.footer-summary {
  margin-top: 0;
}
.footer-nav-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: start;
}
.footer-column {
  display: grid;
  gap: 10px;
}
.footer-heading {
  color: var(--brand-900);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 11px;
}
.footer-links a {
  color: var(--ink-700);
  line-height: 1.5;
}
.footer-links a:hover {
  color: var(--brand-900);
}
.footer-note {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 0.95rem;
}
.footer-bottom {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(22, 52, 42, 0.08);
}
.footer-bottom p {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.industry-matrix {
  padding: 34px;
  border-radius: 36px;
  background: linear-gradient(180deg, #dbe5f7 0%, #d3def3 100%);
  border: 1px solid rgba(30, 74, 58, 0.08);
  box-shadow: var(--shadow-lg);
}
.matrix-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.matrix-tab {
  appearance: none;
  cursor: pointer;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-700);
  font-weight: 600;
  border: 1px solid rgba(30, 74, 58, 0.08);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.matrix-tab:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-900);
  transform: translateY(-1px);
}
.matrix-tab.active {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(30, 74, 58, 0.2);
}
.matrix-grid {
  display: grid;
  grid-template-columns: 0.72fr 0.9fr 1fr;
  gap: 34px;
  align-items: center;
}
.matrix-menu {
  display: grid;
  gap: 14px;
}
.matrix-item {
  appearance: none;
  cursor: pointer;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 16px 22px;
  border-radius: 18px;
  color: var(--ink-700);
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.matrix-item:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-900);
  transform: translateX(2px);
}
.matrix-item.active {
  background: #ffffff;
  color: var(--brand-900);
  box-shadow: 0 10px 20px rgba(30, 74, 58, 0.12);
  font-weight: 700;
}
.matrix-phone {
  display: flex;
  justify-content: center;
}
.matrix-device {
  width: 286px;
  padding: 10px;
  border-radius: 42px;
  background: linear-gradient(180deg, #101312 0%, #232826 100%);
  box-shadow: 0 24px 46px rgba(30, 74, 58, 0.2);
}
.matrix-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px 10px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
}
.matrix-status-icons {
  display: flex;
  gap: 4px;
}
.matrix-status-icons span {
  display: block;
  width: 12px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}
.matrix-screen {
  min-height: 490px;
  border-radius: 32px;
  padding: 14px 12px 12px;
  background: linear-gradient(180deg, #d8f5e6 0%, #eefcf4 100%);
  overflow: hidden;
  position: relative;
}
.matrix-device[data-channel="rcs"] .matrix-screen {
  background: linear-gradient(180deg, #dbe8ff 0%, #eef4ff 100%);
}
.matrix-appbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 20px 20px 16px 16px;
  background: linear-gradient(135deg, #0c7b58 0%, #1a9b6d 100%);
  color: #ffffff;
}
.matrix-device[data-channel="rcs"] .matrix-appbar {
  background: linear-gradient(135deg, #2557a7 0%, #4c7fe0 100%);
}
.matrix-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.matrix-appmeta {
  display: grid;
  gap: 5px;
  flex: 1;
}
.matrix-appmeta strong {
  font-size: 0.92rem;
  line-height: 1.1;
}
.matrix-appmeta span {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.76);
}
.matrix-apptools {
  display: flex;
  align-items: center;
}
.matrix-verified {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.matrix-thread {
  display: grid;
  gap: 10px;
  padding: 12px 4px 0;
}
.matrix-date-chip {
  justify-self: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 700;
}
.matrix-bubble {
  padding: 14px;
  border-radius: 18px;
  color: var(--ink-700);
  box-shadow: 0 8px 18px rgba(30, 74, 58, 0.08);
  font-size: 0.9rem;
  line-height: 1.45;
}
.matrix-bubble strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-900);
}
.matrix-bubble-in {
  margin-right: 22px;
  background: #ffffff;
  border-top-left-radius: 10px;
}
.matrix-bubble-out {
  margin-left: 28px;
  background: linear-gradient(135deg, rgba(203, 245, 228, 0.95), rgba(175, 233, 209, 0.95));
  border-top-right-radius: 10px;
}
.matrix-device[data-channel="rcs"] .matrix-bubble-in {
  margin-right: 0;
  border: 1px solid rgba(76, 127, 224, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.matrix-device[data-channel="rcs"] .matrix-bubble-out {
  margin-left: 0;
  background: linear-gradient(135deg, rgba(76, 127, 224, 0.16), rgba(37, 87, 167, 0.1));
}
.matrix-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.matrix-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 123, 88, 0.15);
  color: #0c6a4c;
  font-size: 0.79rem;
  font-weight: 700;
}
.matrix-device[data-channel="rcs"] .matrix-pill {
  background: rgba(76, 127, 224, 0.14);
  color: #2557a7;
}
.matrix-pill.muted {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-500);
}
.matrix-compose {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 6px 2px;
}
.matrix-compose-field {
  flex: 1;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-500);
  font-size: 0.82rem;
}
.matrix-compose-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink-500);
  font-size: 1rem;
  font-weight: 700;
}
.matrix-compose-icon-accent {
  border-radius: 50%;
  background: #0c7b58;
  color: #ffffff;
  font-size: 0.7rem;
}
.matrix-device[data-channel="rcs"] .matrix-compose-field {
  background: rgba(255, 255, 255, 0.9);
}
.matrix-device[data-channel="rcs"] .matrix-compose-icon-accent {
  background: #2557a7;
}
.matrix-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--ink-900);
}
.matrix-copy p {
  max-width: 500px;
  font-size: 1.06rem;
}
.matrix-cta {
  margin-top: 24px;
}
@media (max-width: 1080px) {
  .hero-grid,
  .showcase-shell,
  .matrix-grid,
  .grid-2,
  .grid-3,
  .feature-grid,
  .product-grid,
  .industry-grid,
  .blog-grid,
  .contact-grid,
  .doc-grid,
  .footer-main,
  .footer-nav-group { grid-template-columns: 1fr; }
  .hero-media { min-height: 0; }
}

@media (max-width: 900px) {
  .lead-capture-shell { grid-template-columns: 1fr; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(22, 52, 42, 0.08);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: flex; }
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 42px;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 6px 0 0 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-dropdown-menu a {
    min-height: 34px;
    padding: 0;
    border-radius: 0;
  }
  .nav-dropdown-menu a.active,
  .nav-dropdown-menu a:hover {
    background: transparent;
  }
  .hero-proof,
  .logo-rail,
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero .container { width: min(calc(100% - 24px), 1280px); }
  .section { padding: 82px 0; }
  .section-tight { padding: 64px 0; }
  .hero { padding: 24px 0 72px; }
  .hero-copy { padding-right: 0; }
  .hero-copy h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .section-head h1,
  .section-head h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .surface-card,
  .panel,
  .dark-surface,
  .form-card,
  .cta-band,
  .industry-matrix { padding: 24px; border-radius: 26px; }
  .product-card .content,
  .feature-card .content,
  .use-case .content,
  .blog-card .content { padding: 0 20px 20px; }
  .industry-page-shell {
    width: min(calc(100% - 20px), 100%);
  }
  .industry-story-media {
    padding: 16px 16px 0;
  }
  .industry-story-media img {
    border-radius: 18px;
  }
  .industry-story-copy {
    padding: 22px 18px 24px;
  }
  .topbar .brand img { width: 156px; }
}



.hero-proof article p { color: #1f4638 !important; }
.hero-proof article strong { color: #16342a !important; }















































.hero-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
}



.hero-visual-wrap {
  position: relative;
}
.hero-phone-mockup {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 210px;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, #141917 0%, #252c29 100%);
  box-shadow: 0 24px 44px rgba(15, 31, 24, 0.28);
}
.hero-phone-notch {
  width: 86px;
  height: 14px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.hero-phone-screen {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8f7ee 0%, #f7fbf8 100%);
}
.hero-phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 10px;
  background: linear-gradient(135deg, #0d7b57 0%, #17966b 100%);
  color: #ffffff;
}
.hero-phone-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
}
.hero-phone-meta {
  display: grid;
  gap: 2px;
}
.hero-phone-meta strong {
  font-size: 0.84rem;
  line-height: 1.1;
}
.hero-phone-meta span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero-phone-body {
  display: grid;
  gap: 10px;
  padding: 14px 12px;
}
.hero-chat {
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(30, 74, 58, 0.08);
}
.hero-chat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-900);
}
.hero-chat-incoming {
  margin-right: 12px;
  background: #ffffff;
  color: var(--ink-700);
}
.hero-chat-outgoing {
  margin-left: 22px;
  background: linear-gradient(135deg, rgba(203, 245, 228, 0.98), rgba(175, 233, 209, 0.98));
  color: var(--brand-900);
}
.hero-phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-phone-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(12, 123, 88, 0.12);
  color: #0d7b57;
  font-size: 0.72rem;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .hero-phone-mockup {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 240px);
    margin: -40px auto 0;
  }
}
.hero-slider {
  padding: 24px;
}
.hero-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.hero-slider-dots {
  display: flex;
  gap: 8px;
}
.hero-slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(30, 74, 58, 0.18);
  cursor: pointer;
}
.hero-slider-dot.active {
  background: var(--accent-500);
}
.hero-slider-viewport {
  overflow: hidden;
  width: 100%;
}
.hero-slider-track {
  display: flex;
  transition: transform 320ms ease;
}
.hero-slide {
  min-width: 100%;
}
.hero-slide-copy h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink-900);
}
.hero-slide-copy p {
  color: var(--ink-700);
}
.hero-slide-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(252, 113, 50, 0.12);
  color: var(--accent-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-slide-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-slide-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(79, 154, 129, 0.12);
  color: var(--brand-900);
  font-size: 0.8rem;
  font-weight: 700;
}
.hero-slide-device {
  display: flex;
  justify-content: center;
}
.hero-device-shell {
  width: 220px;
  padding: 10px;
  border-radius: 30px;
  background: linear-gradient(180deg, #151917 0%, #252d2a 100%);
  box-shadow: 0 24px 44px rgba(15, 31, 24, 0.24);
}
.hero-device-notch {
  width: 82px;
  height: 14px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.hero-device-screen {
  min-height: 390px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8f7ee 0%, #f7fbf8 100%);
}
.hero-device-screen-rcs {
  background: linear-gradient(180deg, #e6eeff 0%, #f7faff 100%);
}
.hero-device-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: #ffffff;
}
.hero-device-top-whatsapp {
  background: linear-gradient(135deg, #0d7b57 0%, #17966b 100%);
}
.hero-device-top-rcs {
  background: linear-gradient(135deg, #2557a7 0%, #4c7fe0 100%);
}
.hero-device-top strong {
  display: block;
  font-size: 0.84rem;
  line-height: 1.1;
}
.hero-device-top span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero-device-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
}
.hero-device-body {
  display: grid;
  gap: 10px;
  padding: 14px 12px;
}
.hero-device-bubble {
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(30, 74, 58, 0.08);
}
.hero-device-bubble strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-900);
}
.hero-device-bubble-in {
  margin-right: 12px;
  background: #ffffff;
  color: var(--ink-700);
}
.hero-device-bubble-out {
  margin-left: 22px;
  background: linear-gradient(135deg, rgba(203, 245, 228, 0.98), rgba(175, 233, 209, 0.98));
  color: var(--brand-900);
}
.hero-device-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-device-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(12, 123, 88, 0.12);
  color: #0d7b57;
  font-size: 0.72rem;
  font-weight: 700;
}
.hero-device-actions-rcs span {
  background: rgba(76, 127, 224, 0.14);
  color: #2557a7;
}
.hero-rcs-card {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(76, 127, 224, 0.14);
  box-shadow: 0 10px 20px rgba(37, 87, 167, 0.08);
}
.hero-rcs-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--ink-900);
  font-size: 1rem;
}
.hero-rcs-card p {
  font-size: 0.82rem;
  line-height: 1.6;
}
.hero-rcs-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(76, 127, 224, 0.14);
  color: #2557a7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 1080px) {
  .hero-slide-device {
    justify-content: flex-start;
  }
}

.hero-slide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 24px;
  align-items: center;
  width: 100%;
  min-height: 460px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 253, 252, 0.98) 100%);
  border: 1px solid rgba(30, 74, 58, 0.08);
  box-shadow: 0 16px 34px rgba(20, 36, 29, 0.08);
  border-radius: 28px;
}
.hero-slide {
  padding: 4px;
  box-sizing: border-box;
}
@media (max-width: 1080px) {
  .hero-slide-card {
    grid-template-columns: 1fr;
  }
  .hero-slide-whatsapp .hero-slide-card {
    grid-template-columns: 1fr;
  }
  .hero-slide-whatsapp .hero-slide-copy h3,
  .hero-slide-whatsapp .hero-slide-copy p {
    max-width: none;
  }
  .hero-slide-whatsapp .hero-device-shell {
    width: min(100%, 220px);
    padding: 10px;
  }
}
@media (max-width: 900px) {
  .hero-slide-card,
  .hero-slide-whatsapp .hero-slide-card,
  .hero-slide-rcs .hero-slide-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    min-height: 0;
  }
  .hero-slide-copy {
    display: grid;
    gap: 14px;
  }
  .hero-slide-copy h3,
  .hero-slide-copy p {
    max-width: 100%;
  }
  .hero-slide-pills {
    margin-top: 0;
  }
  .hero-slide-device,
  .hero-slide-device-whatsapp,
  .hero-slide-device-rcs {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
  .hero-device-shell {
    width: min(100%, 220px);
    margin-inline: auto;
  }
}
@media (max-width: 720px) {
  .hero-slider-head {
    flex-wrap: wrap;
    padding: 0 26px 12px;
  }
  .hero-slide-card {
    min-height: 0;
    padding: 22px;
    gap: 20px;
  }
  .hero-slide-copy h3 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .hero-slide-device {
    width: 100%;
    justify-content: center;
  }
  .hero-device-shell {
    width: min(100%, 220px);
  }
}

.hero-card.hero-visual-main.hero-slider {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.hero-slider-head {
  padding: 0 24px 10px;
  box-sizing: border-box;
}
.hero-slide-card {
  overflow: hidden;
}
.hero-slide-whatsapp .hero-slide-card {
  background: linear-gradient(180deg, rgba(250, 253, 251, 0.99) 0%, rgba(244, 250, 246, 0.99) 100%);
}
.hero-slide-rcs .hero-slide-card {
  background: linear-gradient(180deg, rgba(251, 252, 255, 0.99) 0%, rgba(244, 247, 255, 0.99) 100%);
}
.hero-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 0;
}











.proof-shell {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(79, 154, 129, 0.12), transparent 22%),
    radial-gradient(circle at 86% 22%, rgba(252, 113, 50, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 248, 0.98) 100%);
  border: 1px solid rgba(39, 74, 61, 0.08);
  box-shadow: var(--shadow-md);
}
.proof-intro {
  max-width: 760px;
  margin-bottom: 28px;
}
.proof-intro h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--ink-900);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.proof-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(39, 74, 61, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(17, 36, 29, 0.06);
}
.proof-card strong {
  display: block;
  margin: 16px 0 8px;
  color: var(--brand-900);
  font-size: 1.08rem;
}
.proof-card p {
  color: var(--ink-700);
  font-size: 0.96rem;
  line-height: 1.7;
}
.proof-graphic {
  position: relative;
  min-height: 168px;
  padding: 16px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(39, 74, 61, 0.08);
}
.proof-graphic-promo {
  background: linear-gradient(135deg, #e4f4ec 0%, #f6fbf8 100%);
}
.proof-graphic-utility {
  background: linear-gradient(135deg, #eef4ff 0%, #f9fbff 100%);
}
.proof-graphic-support {
  background: linear-gradient(135deg, #fff1ea 0%, #fffaf7 100%);
}
.proof-graphic-sales {
  background: linear-gradient(135deg, #ecf6f3 0%, #f9fcfb 100%);
}
.proof-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-900);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.proof-bars {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.proof-bars span {
  flex: 1;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, rgba(79, 154, 129, 0.45), rgba(30, 74, 58, 0.9));
}
.proof-bars span:nth-child(1) { height: 44px; }
.proof-bars span:nth-child(2) { height: 74px; }
.proof-bars span:nth-child(3) { height: 108px; }
.proof-bubble {
  position: absolute;
  right: 16px;
  top: 56px;
  padding: 10px 14px;
  border-radius: 16px 16px 4px 16px;
  background: #ffffff;
  color: var(--brand-900);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(17, 36, 29, 0.1);
}
.proof-checklist {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.proof-checklist span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-700);
  font-size: 0.84rem;
  font-weight: 600;
}
.proof-checklist span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4c7fe0;
}
.proof-chat-stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.proof-chat-stack span {
  display: inline-flex;
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink-700);
  font-size: 0.84rem;
  line-height: 1.45;
  box-shadow: 0 10px 20px rgba(17, 36, 29, 0.08);
}
.proof-chat-stack span:last-child {
  justify-self: end;
  background: rgba(252, 113, 50, 0.16);
  color: #9c4a22;
}
.proof-funnel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 18px;
}
.proof-funnel span {
  display: block;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 154, 129, 0.85), rgba(30, 74, 58, 0.95));
}
.proof-funnel span:nth-child(1) { width: 112px; }
.proof-funnel span:nth-child(2) { width: 78px; }
.proof-funnel span:nth-child(3) { width: 44px; }
@media (max-width: 1080px) {
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* Homepage image-led refresh */
.visual-frame {
  position: relative;
  overflow: hidden;
}
.visual-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(13, 23, 19, 0) 0%, rgba(13, 23, 19, 0.72) 100%);
  pointer-events: none;
}
.visual-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.visual-overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 25, 21, 0.72);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.showcase-visual {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}
.showcase-photo-card,
.showcase-insight-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(39, 74, 61, 0.1);
  box-shadow: var(--shadow-md);
}
.showcase-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 224px;
  object-fit: cover;
}
.showcase-photo-card-primary img {
  min-height: 460px;
}
.showcase-stack {
  display: grid;
  gap: 18px;
}
.showcase-insight-card {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(252, 113, 50, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}
.showcase-insight-card h3 {
  margin: 14px 0 0;
  font-size: 1.5rem;
  line-height: 1.16;
  letter-spacing: -0.04em;
  color: var(--ink-900);
}
.showcase-inline-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.showcase-inline-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(68, 141, 117, 0.1);
  color: var(--brand-900);
  font-size: 0.84rem;
  font-weight: 700;
}
.proof-card-photo {
  padding: 14px;
}
.proof-card-media {
  position: relative;
  overflow: hidden;
  min-height: 182px;
  border-radius: 20px;
}
.proof-card-media img {
  width: 100%;
  height: 100%;
  min-height: 182px;
  object-fit: cover;
}
.proof-card-media .proof-chip {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(17, 36, 29, 0.08);
}
.audience-card {
  overflow: hidden;
  padding: 0;
}
.audience-media {
  margin: -1px -1px 0;
  border-bottom: 1px solid var(--line-soft);
}
.audience-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.audience-copy {
  padding: 24px 24px 26px;
}
.lead-visual-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.lead-visual {
  position: relative;
  overflow: hidden;
  min-height: 152px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.lead-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lead-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background: linear-gradient(180deg, rgba(13, 23, 19, 0) 0%, rgba(13, 23, 19, 0.82) 100%);
}
.lead-visual span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media (max-width: 1080px) {
  .showcase-visual,
  .lead-visual-rail {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .showcase-photo-card-primary img,
  .audience-media img {
    min-height: 320px;
    height: 320px;
  }
  .lead-visual-rail {
    grid-template-columns: 1fr;
  }
}

/* Product page rebuild */
.product-hero {
  padding-top: 84px;
  background:
    radial-gradient(circle at 12% 18%, rgba(79, 154, 129, 0.12), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(252, 113, 50, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 248, 247, 0.96) 100%);
}
.product-hero-grid,
.product-common-layout,
.product-service-hero,
.product-rollout-panel {
  display: grid;
  gap: 28px;
}
.product-hero-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}
.product-hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.9rem, 4.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--ink-950);
}
.product-hero-copy p {
  max-width: 640px;
  font-size: 1.06rem;
}
.product-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}
.product-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(68, 141, 117, 0.1);
  border: 1px solid rgba(39, 74, 61, 0.08);
  color: var(--brand-900);
  font-size: 0.84rem;
  font-weight: 700;
}
.product-hero-visual {
  display: grid;
  gap: 18px;
}
.product-photo-panel,
.product-service-photo,
.product-rollout-shot,
.product-photo-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
}
.product-photo-panel img {
  width: 100%;
  min-height: 430px;
  height: 430px;
  object-fit: cover;
}
.product-hero-stack {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}
.product-mini-surface {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}
.product-mini-surface h3,
.product-insight-card h3,
.product-capability-card h3,
.product-module-card h3,
.product-rollout-copy h2 {
  margin: 16px 0 10px;
  color: var(--ink-950);
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.product-mini-surface p,
.product-insight-card p,
.product-capability-card p,
.product-module-card p,
.product-rollout-copy p {
  color: var(--ink-700);
}
.product-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}
.product-chip-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 154, 129, 0.12), rgba(252, 113, 50, 0.08));
  color: var(--brand-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-common-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}
.product-common-side {
  display: grid;
  gap: 18px;
}
.product-photo-card img {
  width: 100%;
  object-fit: cover;
}
.product-photo-card-tall img {
  min-height: 520px;
  height: 520px;
}
.product-insight-card {
  padding: 30px;
}
.product-capability-grid,
.product-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.product-capability-card,
.product-module-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}
.product-capability-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.product-capability-card .list,
.product-module-card .list {
  margin-top: 16px;
}

.product-service-section {
  background:
    radial-gradient(circle at top right, rgba(252, 113, 50, 0.12), transparent 18%),
    linear-gradient(180deg, #102019 0%, #0d1713 100%);
}
.product-service-hero {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  margin-bottom: 34px;
}
.product-service-copy h2 {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #fff;
}
.product-service-hero-reverse .product-service-copy h2 {
  color: var(--ink-950);
}
.product-service-copy p {
  font-size: 1.04rem;
}
.product-service-photo img {
  width: 100%;
  min-height: 430px;
  height: 430px;
  object-fit: cover;
}
.product-service-grid .product-module-card {
  height: 100%;
}
.product-service-grid-light .product-module-card {
  background: rgba(255, 255, 255, 0.94);
}
.product-service-hero-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}
.product-service-hero-reverse .product-service-copy {
  order: 2;
}
.product-service-hero-reverse .product-service-media {
  order: 1;
}

.product-rollout-panel {
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  padding: 34px;
  overflow: hidden;
}
.product-rollout-copy h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}
.product-rollout-points {
  margin-top: 22px;
}
.product-rollout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.product-rollout-shot img {
  width: 100%;
  min-height: 320px;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .product-hero-grid,
  .product-common-layout,
  .product-service-hero,
  .product-rollout-panel {
    grid-template-columns: 1fr;
  }
  .product-service-hero-reverse .product-service-copy,
  .product-service-hero-reverse .product-service-media {
    order: initial;
  }
}

@media (max-width: 900px) {
  .product-hero-stack,
  .product-capability-grid,
  .product-service-grid,
  .product-rollout-grid {
    grid-template-columns: 1fr;
  }
  .product-photo-panel img,
  .product-service-photo img,
  .product-rollout-shot img,
  .product-photo-card-tall img {
    min-height: 320px;
    height: 320px;
  }
  .product-capability-card,
  .product-module-card,
  .product-mini-surface,
  .product-rollout-panel,
  .product-insight-card {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .product-hero {
    padding-top: 62px;
  }
  .product-hero-copy h1,
  .product-service-copy h2,
  .product-rollout-copy h2 {
    letter-spacing: -0.045em;
  }
  .product-capability-card h3,
  .product-module-card h3,
  .product-mini-surface h3,
  .product-insight-card h3 {
    font-size: 1.34rem;
  }
}

.product-ui-frame::after {
  display: none;
}
.product-ui-frame .visual-overlay span {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(39, 74, 61, 0.08);
  color: var(--brand-900);
}
img.product-ui-visual {
  object-fit: contain;
  background: linear-gradient(180deg, rgba(247, 251, 248, 0.96) 0%, rgba(237, 245, 240, 0.96) 100%);
}
.section-dark img.product-ui-visual {
  background: linear-gradient(180deg, rgba(247, 251, 248, 0.98) 0%, rgba(237, 245, 240, 0.98) 100%);
}

/* Features page rebuild */
.feature-page-hero {
  padding-top: 84px;
  background:
    radial-gradient(circle at 12% 14%, rgba(79, 154, 129, 0.14), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(252, 113, 50, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 248, 246, 0.98) 100%);
}
.feature-page-intro {
  max-width: 860px;
}
.whatsapp-feature-section {
  padding-top: 30px;
}
.whatsapp-feature-head {
  max-width: 860px;
  margin-bottom: 34px;
}
.wa-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.wa-category-tab {
  appearance: none;
  cursor: pointer;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(30, 74, 58, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-700);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}
.wa-category-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(30, 74, 58, 0.18);
  color: var(--brand-900);
}
.wa-category-tab.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  box-shadow: 0 14px 28px rgba(30, 74, 58, 0.18);
}
.wa-explorer-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}
.wa-explorer-main {
  display: grid;
  gap: 20px;
}
.wa-copy-panel,
.wa-brand-brief,
.wa-message-selector,
.wa-preview-panel,
.rcs-placeholder-card {
  border: 1px solid rgba(30, 74, 58, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}
.wa-copy-panel,
.wa-brand-brief,
.wa-message-selector {
  padding: 28px;
}
.wa-copy-panel h3,
.wa-selector-head h4,
.rcs-placeholder-copy h2 {
  margin: 16px 0 12px;
  color: var(--ink-950);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.wa-capability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.wa-capability-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(68, 141, 117, 0.1);
  color: var(--brand-900);
  font-size: 0.82rem;
  font-weight: 700;
}
.wa-brief-head {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.wa-brief-kicker,
.wa-selector-kicker {
  color: var(--brand-800);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wa-brief-head strong {
  color: var(--ink-950);
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.wa-brand-brief p {
  color: var(--ink-700);
}
.wa-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.wa-brief-grid article {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(247, 251, 248, 0.96) 0%, rgba(238, 244, 241, 0.96) 100%);
  border: 1px solid rgba(30, 74, 58, 0.06);
}
.wa-brief-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wa-brief-grid strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.98rem;
  line-height: 1.5;
}
.wa-selector-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.wa-selector-head h4 {
  margin: 8px 0 0;
  font-size: 1.35rem;
}
.wa-message-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.wa-message-option {
  appearance: none;
  cursor: pointer;
  width: 100%;
  padding: 18px;
  text-align: left;
  border-radius: 24px;
  border: 1px solid rgba(30, 74, 58, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 248, 0.98) 100%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.wa-message-option:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 74, 58, 0.18);
  box-shadow: 0 16px 24px rgba(17, 36, 29, 0.08);
}
.wa-message-option.active {
  border-color: rgba(252, 113, 50, 0.18);
  background: linear-gradient(180deg, rgba(255, 246, 241, 0.98) 0%, rgba(255, 251, 248, 0.98) 100%);
  box-shadow: 0 18px 28px rgba(252, 113, 50, 0.12);
}
.wa-message-option span,
.wa-message-option strong,
.wa-message-option small {
  display: block;
}
.wa-message-option span {
  color: var(--accent-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wa-message-option strong {
  margin: 10px 0 8px;
  color: var(--ink-950);
  font-size: 1rem;
  line-height: 1.35;
}
.wa-message-option small {
  color: var(--ink-500);
  font-size: 0.86rem;
  line-height: 1.5;
}
.wa-preview-panel {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(79, 154, 129, 0.14), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(252, 113, 50, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(248, 251, 249, 0.98) 0%, rgba(239, 245, 241, 0.98) 100%);
}
.wa-preview-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.wa-preview-chip {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(30, 74, 58, 0.08);
}
.wa-preview-chip span,
.wa-preview-chip strong {
  display: block;
}
.wa-preview-chip span {
  margin-bottom: 8px;
  color: var(--ink-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wa-preview-chip strong {
  color: var(--ink-950);
  font-size: 0.98rem;
  line-height: 1.35;
}
.wa-device-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 26px 0 20px;
}
.wa-device-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.78;
}
.wa-device-glow-green {
  left: 12%;
  top: 16%;
  width: 150px;
  height: 150px;
  background: rgba(79, 154, 129, 0.34);
}
.wa-device-glow-orange {
  right: 10%;
  bottom: 12%;
  width: 130px;
  height: 130px;
  background: rgba(252, 113, 50, 0.3);
}
.wa-ios-device {
  position: relative;
  width: 356px;
  padding: 10px;
  border-radius: 44px;
  background: linear-gradient(180deg, #171b19 0%, #2b322f 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 36px 70px rgba(17, 36, 29, 0.22),
    0 10px 22px rgba(17, 36, 29, 0.14);
}
.wa-ios-device::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 148px;
  width: 4px;
  height: 36px;
  border-radius: 3px 0 0 3px;
  background: rgba(17, 19, 18, 0.9);
  box-shadow: 0 48px 0 rgba(17, 19, 18, 0.9), 0 86px 0 rgba(17, 19, 18, 0.9);
}
.wa-ios-device::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 176px;
  width: 4px;
  height: 68px;
  border-radius: 0 3px 3px 0;
  background: rgba(17, 19, 18, 0.9);
}
.wa-ios-notch {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 124px;
  height: 30px;
  border-radius: 999px;
  background: #000;
  z-index: 3;
}
.wa-ios-screen {
  position: relative;
  overflow: hidden;
  min-height: 730px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, #ece5dd 0%, #e8dfd4 100%);
  background-size: 36px 36px, 52px 52px, auto;
}
.wa-ios-statusbar,
.wa-ios-appbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #0b6f5b;
  color: #fff;
}
.wa-ios-statusbar {
  height: 54px;
  padding-top: 10px;
  font-size: 0.92rem;
  font-weight: 800;
}
.wa-ios-statusicons {
  display: flex;
  gap: 4px;
}
.wa-ios-statusicons span {
  display: block;
  width: 12px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}
.wa-ios-appbar {
  height: 58px;
  justify-content: flex-start;
  gap: 10px;
}
.wa-ios-appavatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 800;
}
.wa-ios-appcopy {
  display: grid;
  gap: 4px;
  flex: 1;
}
.wa-ios-appcopy strong {
  font-size: 1rem;
  line-height: 1.1;
}
.wa-ios-appcopy span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
}
.wa-ios-appverify {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.wa-ios-encryption {
  position: relative;
  z-index: 1;
  padding: 7px 12px;
  background: #f8efc9;
  color: #8c8b7c;
  font-size: 0.74rem;
  text-align: center;
}
.wa-ios-thread {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 618px;
  padding: 12px 12px 82px;
}
.wa-ios-compose {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 12px;
  background: rgba(240, 242, 245, 0.92);
  backdrop-filter: blur(12px);
}
.wa-ios-compose-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #758188;
  font-size: 1rem;
  font-weight: 700;
}
.wa-ios-compose-field {
  flex: 1;
  min-height: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  color: #8a959c;
  font-size: 0.9rem;
}
.wa-ios-compose-send {
  background: #00a884;
}
.wa-ios-compose-send::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}
.wa-thread-day {
  justify-self: center;
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #6d7770;
  font-size: 0.74rem;
  font-weight: 700;
}
.wa-bubble,
.wa-reply-stack,
.wa-carousel-card,
.wa-flow-step {
  box-shadow: 0 10px 22px rgba(17, 36, 29, 0.08);
}
.wa-bubble {
  max-width: 286px;
  overflow: hidden;
  border-radius: 0 18px 18px 18px;
  background: #fff;
}
.wa-bubble-body {
  padding: 14px;
}
.wa-bubble-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-800);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wa-bubble-heading {
  margin: 0 0 8px;
  color: var(--ink-950);
  font-size: 1.04rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.wa-bubble-body p {
  color: var(--ink-700);
  font-size: 0.88rem;
  line-height: 1.6;
}
.wa-bubble-footer {
  padding: 0 14px 12px;
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.5;
}
.wa-button-stack {
  display: grid;
  border-top: 1px solid rgba(30, 74, 58, 0.08);
}
.wa-button-stack button {
  appearance: none;
  cursor: pointer;
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(30, 74, 58, 0.08);
  background: transparent;
  color: #00a884;
  font-weight: 700;
}
.wa-button-stack button:last-child {
  border-bottom: 0;
}
.wa-quick-replies {
  display: grid;
  gap: 8px;
  max-width: 286px;
}
.wa-quick-replies span {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: #00a884;
  font-size: 0.82rem;
  font-weight: 700;
}
.wa-media-frame {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  background: linear-gradient(135deg, rgba(79, 154, 129, 0.16), rgba(252, 113, 50, 0.12));
}
.wa-media-frame img {
  width: 100%;
  height: 156px;
  object-fit: cover;
}
.wa-video-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(12, 27, 22, 0.66);
  box-shadow: 0 10px 24px rgba(12, 27, 22, 0.2);
}
.wa-video-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-40%, -50%);
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.wa-doc-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid rgba(30, 74, 58, 0.08);
}
.wa-doc-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.wa-doc-card strong,
.wa-doc-card span {
  display: block;
}
.wa-doc-card strong {
  color: var(--ink-950);
  font-size: 0.88rem;
  line-height: 1.3;
}
.wa-doc-card span {
  margin-top: 6px;
  color: var(--ink-500);
  font-size: 0.72rem;
}
.wa-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 2px;
  scrollbar-width: none;
}
.wa-carousel-track::-webkit-scrollbar {
  display: none;
}
.wa-carousel-card {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(30, 74, 58, 0.08);
}
.wa-carousel-card img {
  width: 100%;
  height: 122px;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(247, 251, 248, 0.98) 0%, rgba(237, 245, 240, 0.98) 100%);
}
.wa-carousel-card-body {
  padding: 14px;
}
.wa-carousel-card-body strong,
.wa-carousel-card-body span {
  display: block;
}
.wa-carousel-card-body strong {
  color: var(--ink-950);
  font-size: 0.92rem;
  line-height: 1.3;
}
.wa-carousel-card-body span {
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 0.76rem;
}
.wa-carousel-card .wa-button-stack button {
  min-height: 38px;
  font-size: 0.8rem;
}
.wa-utility-bubble {
  max-width: 296px;
}
.wa-utility-status {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}
.wa-progress-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.wa-progress-rail span {
  height: 6px;
  border-radius: 999px;
  background: rgba(30, 74, 58, 0.12);
}
.wa-progress-rail span.is-complete {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
}
.wa-progress-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.wa-progress-labels span {
  color: var(--ink-500);
  font-size: 0.66rem;
  line-height: 1.35;
  text-align: center;
  font-weight: 700;
}
.wa-progress-labels span.is-complete {
  color: var(--brand-900);
}
.wa-otp-code {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  margin-top: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79, 154, 129, 0.2), rgba(79, 154, 129, 0.12));
  border: 1px solid rgba(30, 74, 58, 0.12);
  color: var(--brand-900);
  font-family: "Courier New", monospace;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.32em;
}
.wa-chatbot-stack {
  display: grid;
  gap: 10px;
  max-width: 292px;
}
.wa-chatbot-user {
  justify-self: end;
  max-width: 248px;
  padding: 12px 14px;
  border-radius: 16px 16px 4px 16px;
  background: rgba(211, 244, 229, 0.92);
  color: var(--brand-900);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
}
.wa-chatbot-actions {
  display: grid;
  gap: 8px;
  max-width: 292px;
}
.wa-chatbot-actions span {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: #00a884;
  font-size: 0.82rem;
  font-weight: 700;
}
.wa-flow-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.wa-flow-step {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 74, 58, 0.08);
}
.wa-flow-step span,
.wa-flow-step strong {
  display: block;
}
.wa-flow-step span {
  margin-bottom: 8px;
  color: var(--accent-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wa-flow-step strong {
  color: var(--ink-950);
  font-size: 0.98rem;
  line-height: 1.35;
}
.wa-flow-step p {
  margin-top: 8px;
  font-size: 0.84rem;
  line-height: 1.6;
}
.rcs-placeholder-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 14% 16%, rgba(79, 154, 129, 0.12), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(76, 127, 224, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.98) 100%);
}
.rcs-placeholder-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}
.rcs-placeholder-visual {
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(76, 127, 224, 0.12);
}
.rcs-placeholder-visual img {
  width: 100%;
}

@media (max-width: 1180px) {
  .wa-explorer-shell,
  .rcs-placeholder-card {
    grid-template-columns: 1fr;
  }
  .wa-preview-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .wa-message-list,
  .wa-brief-grid,
  .wa-preview-meta,
  .wa-flow-panel {
    grid-template-columns: 1fr;
  }
  .wa-copy-panel,
  .wa-brand-brief,
  .wa-message-selector,
  .wa-preview-panel,
  .rcs-placeholder-card {
    padding: 22px;
  }
  .wa-device-stage {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .feature-page-hero {
    padding-top: 58px;
  }
  .wa-ios-device {
    width: 318px;
  }
  .wa-ios-screen {
    min-height: 690px;
  }
  .wa-ios-thread {
    min-height: 580px;
  }
  .wa-message-list {
    grid-template-columns: 1fr;
  }
  .wa-preview-meta {
    grid-template-columns: 1fr;
  }
}

/* Features dropdown — open on hover/focus so no-JS (static) pages work too. */
@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
  .nav-dropdown:hover .nav-dropdown-caret,
  .nav-dropdown:focus-within .nav-dropdown-caret {
    transform: rotate(-135deg) translate(-1px, -1px);
  }
}
