/* ============================================================
   Comunite — Sitio multipágina CXaaS operativo
   ============================================================ */

:root {
  --dark: #06313d;
  --navy: #034052;
  --deep: #071c25;
  --teal: #14adbf;
  --blue: #56b9fc;
  --red: #ef402f;
  --amber: #eaa83a;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --soft2: #eef5f8;
  --line: #dbe8ee;
  --text: #172a34;
  --muted: #5c7180;
  --shadow: 0 18px 50px rgba(7,28,37,.12);
  --shadow-soft: 0 10px 30px rgba(7,28,37,.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --font: 'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

/* Reset & base elements */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Layout helpers */

.container {
  width: min(100%,var(--max));
  margin-inline: auto;
  padding-inline: 22px;
}

/* Header & navigation */

.brand-strip {
  height: 10px;
  background: url('../images/franja-colores.webp') center/cover no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
}

.site-header {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7,28,37,.90);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 178px;
  max-height: 46px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,.78);
  font-weight: 650;
  font-size: .94rem;
}

.nav a {
  position: relative;
  padding: 8px 0;
  transition: .2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  background: var(--deep);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
}

.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: .22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 26px rgba(20,173,191,.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #0f9bad;
}

.btn-secondary {
  background: var(--amber);
  color: #10242d;
  box-shadow: 0 12px 26px rgba(234,168,58,.25);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  filter: brightness(.96);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,.10);
  border-color: #fff;
}

.btn-outline-dark {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-outline-dark:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-small {
  padding: 9px 15px;
  font-size: .88rem;
}

/* Hero */

main {
  padding-top: 86px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 25%,rgba(20,173,191,.28),transparent 32%),linear-gradient(135deg,var(--deep),var(--navy));
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size: 58px 58px;
  opacity: .8;
}

.hero-photo {
  background-image: linear-gradient(100deg,rgba(6,26,33,.95) 32%,rgba(6,49,61,.6) 62%,rgba(6,49,61,.2) 100%),url('../images/home_escritiorio.webp');
  background-size: cover;
  background-position: center right;
}

.hero-photo::before {
  display: none;
}

.hero-photo .hero-inner {
  grid-template-columns: 1.55fr .45fr;
}

.hero-photo .lead {
  max-width: 820px;
}

.hero-photo .hero-proof {
  max-width: 720px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: start;
  padding: 96px 22px 88px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(20,173,191,.35);
  background: rgba(20,173,191,.13);
  color: #8be4ef;
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 850;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(20,173,191,.15);
}

h1,
h2,
h3,
h4 {
  line-height: 1.12;
  color: var(--dark);
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(2.4rem,5vw,4.7rem);
  margin: 18px 0 18px;
  color: #fff;
}

h2 {
  font-size: clamp(2rem,3.7vw,3.05rem);
}

h3 {
  font-size: 1.45rem;
}

h4 {
  font-size: 1.12rem;
}

.lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,.78);
  max-width: 62ch;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 680px;
}

.proof {
  background: rgba(1,23,44,1);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 16px;
}

.proof b {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.proof span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .86rem;
}

.hero-visual {
  position: relative;
}

.screen-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.screen-card img {
  border-radius: 16px;
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.float-note {
  position: absolute;
  left: -26px;
  bottom: -142px;
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 613px;
}

.float-note b {
  display: block;
  color: var(--navy);
}

/* Sections, grids & cards */

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--deep);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark .section-sub {
  color: rgba(255,255,255,.66);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 36px;
  margin-bottom: 34px;
}

.section-head.center {
  display: block;
  text-align: center;
}

.section-head.center .section-sub {
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: .82rem;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 70ch;
  margin-top: 12px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2,1fr);
}

.grid-3 {
  grid-template-columns: repeat(3,1fr);
}

.grid-4 {
  grid-template-columns: repeat(4,1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.card h3,
.card h4 {
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--muted);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,173,191,.12);
  color: var(--teal);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.icon.red {
  background: rgba(239,64,47,.10);
  color: var(--red);
}

.icon.amber {
  background: rgba(234,168,58,.14);
  color: #b17109;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--muted);
  font-weight: 750;
  font-size: .86rem;
}

/* Split layout & process panel */

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.05fr .95fr;
}

.rich-panel {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  height: 42px;
  background: #eef6f8;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9d8df;
}

.dot:nth-child(1) {
  background: var(--red);
}

.dot:nth-child(2) {
  background: var(--amber);
}

.dot:nth-child(3) {
  background: var(--teal);
}

.panel-body {
  padding: 22px;
}

.flow {
  display: grid;
  gap: 12px;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Comparison blocks */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-box {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.compare-box.bad {
  background: #fff8f7;
  border-color: #f4c6be;
}

.compare-box.good {
  background: #f0fbfd;
  border-color: #b9ecf3;
}

.check-list {
  display: grid;
  gap: 11px;
  margin-top: 14px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(20,173,191,.14);
  color: var(--teal);
  font-weight: 900;
  text-align: center;
  line-height: 22px;
  font-size: .82rem;
}

.x-list li::before {
  content: "!";
  background: rgba(239,64,47,.12);
  color: var(--red);
}

.term-tag {
  background: #63adc1;
  border-radius: 10px;
  padding: 2px 8px;
  color: #fff;
  font-weight: 750;
  white-space: nowrap;
}

/* Demo videos */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.video-box {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1.5px solid rgba(20,173,191,.55);
  border-radius: var(--radius);
  background: linear-gradient(135deg,#fff,#f2fbfd);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.video-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(6,26,33,.55),rgba(6,26,33,.92));
  z-index: 1;
}

.video-box-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-box .play {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 15px;
  box-shadow: 0 12px 32px rgba(20,173,191,.28);
  cursor: pointer;
}

.video-box .play:hover {
  background: #0f9bad;
}

.video-box h3 {
  position: relative;
  z-index: 2;
  color: #fff;
}

.video-box p {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,.82);
  font-size: .93rem;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,10,14,.86);
}

.video-modal-dialog {
  position: relative;
  width: min(920px,100%);
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-modal-dialog video {
  display: block;
  width: 100%;
  max-height: 80vh;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 2;
}

.video-modal-close:hover {
  background: rgba(255,255,255,.28);
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 24px 60px rgba(20,173,191,.18);
}

.price-tag {
  font-size: 2.2rem;
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -.05em;
  margin: 14px 0 2px;
}

.price-tag small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 800;
}

.flag {
  position: absolute;
  top: -13px;
  right: 18px;
  border-radius: 999px;
  background: var(--amber);
  color: #12242d;
  padding: 6px 10px;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-note {
  margin-top: 14px;
  font-size: .78rem;
  color: var(--muted);
}

/* Notes & calculator form */

.note-box {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.calc {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.field label {
  display: block;
  font-weight: 850;
  margin-bottom: 7px;
  color: var(--dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20,173,191,.10);
}

.calc-result {
  background: var(--deep);
  color: #fff;
  border-radius: 16px;
  padding: 18px;
}

.calc-result b {
  font-size: 1.6rem;
  display: block;
}

/* Logos & case studies */

.stack-group {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
}

.stack-group h4 {
  color: #fff;
  margin-bottom: 12px;
}

.stack-group ul {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.stack-group li {
  color: rgba(255,255,255,.82);
}

.case-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.case-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.tag {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(20,173,191,.12);
  color: var(--teal);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 14px;
}

.metric {
  background: var(--soft);
  border-radius: 14px;
  padding: 14px;
}

.metric b {
  display: block;
  color: var(--navy);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}

/* Inner page hero */

.page-hero {
  background: linear-gradient(135deg,var(--deep),var(--navy));
  color: #fff;
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 15%,rgba(20,173,191,.24),transparent 30%);
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  margin-top: 16px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #a9edf4;
}

/* CTA band */

.cta-band {
  background: linear-gradient(135deg,var(--navy),var(--teal));
  color: #fff;
  border-radius: var(--radius);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255,255,255,.78);
  max-width: 62ch;
  margin-top: 8px;
}

/* Footer */

.footer {
  background: var(--deep);
  color: rgba(255,255,255,.72);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr .8fr;
  gap: 32px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.68);
}

.footer a:hover {
  color: #fff;
}

.footer a.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #25d366;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  box-shadow: 0 14px 35px rgba(0,0,0,.28);
  z-index: 1500;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .9rem;
}

/* Forms & utilities */

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

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

.form-grid .full {
  grid-column: 1/-1;
}

.muted {
  color: var(--muted);
}

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

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 18px;
}

.mt-3 {
  margin-top: 28px;
}

.mb-0 {
  margin-bottom: 0;
}

/* Image frames & tables */

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  /*border: 1px solid var(--line);*/
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.split-match-height {
  align-items: stretch;
}

.split-match-height .image-frame,
.split-match-height .image-frame img {
  height: 100%;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 720px;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--soft);
  color: var(--dark);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

/* Alerts & timeline */

.alert {
  border-radius: 16px;
  padding: 18px 20px;
  background: #fff8e9;
  border: 1px solid #f3d391;
  color: #684605;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
}

.timeline-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  z-index: 1;
}

.timeline-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

/* Responsive: tablet */

@media (max-width:1020px) {
  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-inner,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .grid-4,
  .grid-3,
  .video-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    display: block;
  }

  .cta-band {
    display: block;
  }

  .cta-band .btn {
    margin-top: 22px;
  }

  .calc {
    grid-template-columns: 1fr;
  }

  .compare {
    grid-template-columns: 1fr;
  }
}

/* Responsive: mobile */

@media (max-width:700px) {
  main {
    padding-top: 86px;
  }

  .hero-inner {
    padding: 70px 22px 58px;
  }

  .hero-proof,
  .grid-2,
  .grid-3,
  .grid-4,
  .video-grid,
  .pricing-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .screen-card img,
  .image-frame img {
    height: auto;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero {
    padding: 70px 0 48px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 28px;
  }

  .logo img {
    width: 148px;
  }

  .table-wrap {
    overflow-x: visible;
  }

  table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  table,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }

  tr {
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
  }

  tr:last-child {
    border-bottom: 0;
  }

  td {
    border-bottom: 0;
    padding: 6px 0;
  }

  td::before {
    content: attr(data-label);
    display: block;
    color: var(--teal);
    font-weight: 800;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 2px;
  }
}
