:root {
  --blue: #1463ff;
  --blue2: #0c50db;
  --ink: #0b0d12;
  --muted: #667085;
  --line: #e7eaf0;
  --soft: #f6f8fc;
  --white: #fff;
  --green: #139765;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(16,24,40,.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(1180px,calc(100% - 40px));
  margin: auto;
}

.narrow {
  width: min(820px,calc(100% - 40px));
  margin: auto;
}

.section {
  padding: 92px 0;
}

.section-sm {
  padding: 62px 0;
}

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

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid #d8e6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.title {
  font-size: clamp(40px,6vw,70px);
  line-height: .99;
  letter-spacing: -.055em;
  margin: 18px 0;
}

.lead {
  font-size: clamp(17px,2vw,20px);
  color: var(--muted);
  max-width: 760px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 14px;
  cursor: pointer;
  transition: .18s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 28px rgba(20,99,255,.24);
}

.btn-primary:hover {
  background: var(--blue2);
  transform: translateY(-1px);
}

.btn-light {
  background: #fff;
  border-color: var(--line);
  color: #000;
}

.btn-dark {
  background: #090b10;
  color: #fff;
}

.btn-block {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231,234,240,.82);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 198px;
  height: auto;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
}

.navlinks a {
  color: #303744;
}

.navlinks a:hover, .navlinks a.active {
  color: var(--blue);
}

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

.lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.lang button, .footer-lang button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  padding: 7px 9px;
  border-radius: 9px;
  color: #505866;
}

.lang button.active {
  background: #090b10;
  color: #fff;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 15px 20px 22px;
  box-shadow: 0 20px 35px rgba(16,24,40,.1);
}

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

.mobile-menu a {
  display: block;
  padding: 11px 0;
  font-weight: 850;
}

.mobile-menu .btn {
  margin-top: 9px;
  width: 100%;
}

.hero {
  padding: 86px 0 72px;
  overflow: hidden;
  background: radial-gradient(circle at 82% 12%,#e7f0ff 0,transparent 33%),linear-gradient(180deg,#fff,#fbfcff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 70px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(50px,7vw,82px);
  line-height: .94;
  letter-spacing: -.065em;
  margin: 20px 0 24px;
  max-width: 790px;
}

.hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 670px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 800;
  color: #586170;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dotcheck {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f7f0;
  color: var(--green);
  font-size: 11px;
}

.launch-note {
  margin-top: 19px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 850;
  color: #596273;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f0a316;
  box-shadow: 0 0 0 5px #fff0d3;
}

.preview-shell {
  position: relative;
  min-height: 570px;
}

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

.preview-main {
  right: 3%;
  top: 14px;
  width: 430px;
  padding: 28px;
  transform: rotate(1.5deg);
}

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

.preview-logo {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 950;
  font-size: 23px;
}

.preview-status {
  font-size: 11px;
  font-weight: 900;
  color: var(--blue);
  background: #eef4ff;
  padding: 7px 9px;
  border-radius: 999px;
}

.preview-main h3 {
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 22px 0 9px;
}

.preview-main p {
  font-size: 14px;
  margin: 0;
}

.audience-mini {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 24px;
}

.audience-mini div {
  padding: 17px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid #eef0f4;
}

.audience-mini b {
  display: block;
  font-size: 14px;
  margin-top: 9px;
}

.audience-mini small {
  color: var(--muted);
}

.mini-icon {
  font-size: 25px;
}

.preview-list {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.preview-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.preview-row i {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: #eef4ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}

.preview-row span {
  font-size: 13px;
  font-weight: 800;
}

.float-card {
  position: absolute;
  z-index: 2;
  background: #090b10;
  color: #fff;
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 20px 55px rgba(0,0,0,.23);
}

.float-one {
  left: 0;
  top: 110px;
  width: 218px;
}

.float-two {
  right: 0;
  bottom: 34px;
  width: 230px;
  background: var(--blue);
}

.float-card b {
  display: block;
  font-size: 17px;
}

.float-card small {
  display: block;
  margin-top: 4px;
  color: #c5cbd5;
}

.float-two small {
  color: #dce7ff;
}

.trustbar {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trustitems {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  color: #747d8b;
  font-size: 13px;
  font-weight: 850;
}

.what-section {
  background: #fff;
}

.what-section .title {
  max-width: 920px;
  margin-inline: auto;
}

.what-section .lead {
  max-width: 860px;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 38px;
  text-align: left;
}

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

.what-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 23px;
  font-weight: 950;
}

.what-card h3 {
  margin: 20px 0 9px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.what-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 900;
}

.product-flow i {
  color: var(--blue);
  font-style: normal;
}

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

.audience-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  transition: .18s;
  min-height: 330px;
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.audience-card.dark {
  background: #090b10;
  color: #fff;
  border-color: #090b10;
}

.audience-card .aud-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eef4ff;
  color: var(--blue);
  font-size: 28px;
}

.audience-card.dark .aud-icon {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.audience-card h3 {
  font-size: 32px;
  letter-spacing: -.045em;
  margin: 22px 0 10px;
}

.audience-card p {
  color: var(--muted);
  margin: 0;
}

.audience-card.dark p {
  color: #b9c0cb;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
}

.checkline {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 760;
}

.checkline i {
  font-style: normal;
  color: var(--green);
}

.audience-card.dark .checkline i {
  color: #74ddb2;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 34px;
}

.benefit {
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.benefit i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef4ff;
  color: var(--blue);
  font-style: normal;
  font-weight: 950;
}

.benefit h3 {
  font-size: 19px;
  margin: 17px 0 7px;
}

.benefit p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.band {
  background: #f7f9fd;
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}

.step {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.step-num {
  min-width: 32px;
  height: 32px;
  border-radius: 11px;
  background: #eef4ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 950;
}

.step b {
  display: block;
}

.step small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.vision-panel {
  border-radius: 34px;
  background: #07101f;
  color: #fff;
  padding: 38px;
  box-shadow: 0 26px 70px rgba(6,17,36,.2);
}

.vision-panel .lead {
  color: #c2ccda;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 24px;
}

.vision-grid div {
  padding: 16px;
  border-radius: 17px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}

.vision-grid b {
  display: block;
}

.vision-grid small {
  color: #aeb9c8;
}

.country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.country-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.flag {
  font-size: 38px;
}

.country-card h3 {
  margin: 0 0 3px;
}

.country-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: #000;
  color: #fff;
  padding: 54px;
}

.cta:after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,#1463ff,transparent 67%);
  right: -160px;
  top: -185px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta h2 {
  font-size: clamp(34px,5vw,54px);
  line-height: 1.02;
  letter-spacing: -.05em;
  margin: 0 0 10px;
}

.cta p {
  margin: 0;
  color: #bbc3ce;
  max-width: 610px;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg,#f6f9ff,#fff);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(44px,6vw,70px);
  line-height: 1;
  letter-spacing: -.055em;
  margin: 17px 0 15px;
}

.page-hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 32px;
}

.feature-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.feature-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #eef4ff;
  color: var(--blue);
  font-style: normal;
  font-size: 21px;
  font-weight: 950;
}

.feature-card h3 {
  margin: 17px 0 8px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.waitlist-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.waitlist-side {
  position: sticky;
  top: 102px;
}

.role-picker {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.role-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: .18s;
}

.role-option.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px #edf3ff;
}

.role-option b {
  display: block;
  font-size: 17px;
}

.role-option span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.waitlist-form {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16,24,40,.08);
}

.waitlist-form h2 {
  font-size: 31px;
  letter-spacing: -.04em;
  margin: 0 0 8px;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 23px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.field label {
  font-size: 12px;
  font-weight: 900;
  color: #343b48;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #dfe3ea;
  border-radius: 13px;
  padding: 12px 13px;
  outline: none;
  background: #fff;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px #edf3ff;
}

.field textarea {
  min-height: 105px;
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 19px 0;
  color: #626b78;
  font-size: 12px;
}

.consent input {
  margin-top: 3px;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: #eaf8f2;
  color: #0c704c;
  border: 1px solid #cdeedf;
}

.form-status.error {
  background: #fff0f0;
  color: #a83232;
  border: 1px solid #f1cccc;
}

.honeypot {
  position: absolute!important;
  left: -9999px!important;
  opacity: 0!important;
}

.hidden {
  display: none!important;
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 17px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.open .faq-a {
  display: block;
}

.legal h2 {
  font-size: 25px;
  letter-spacing: -.03em;
  margin: 34px 0 9px;
}

.legal p, .legal li {
  color: #555e6b;
}

.legal ul {
  padding-left: 22px;
}

.legal-notice {
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff7e8;
  border: 1px solid #f3ddb1;
  color: #805900;
  font-size: 13px;
  font-weight: 750;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 38px;
}

.footer-brand img {
  width: 190px;
  height: auto;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  max-width: 360px;
}

.footer h4 {
  margin: 0 0 13px;
}

.footer a {
  display: block;
  color: #626b78;
  font-size: 13px;
  margin: 8px 0;
}

.footer a:hover {
  color: var(--blue);
}

.footer-lang {
  display: flex;
  gap: 5px;
  margin-top: 15px;
}

.footer-lang button.active {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 20px;
  color: #8a919c;
  font-size: 12px;
}

@media(max-width:980px) {
  .navlinks {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-actions>.btn {
    display: none;
  }
  .hero-grid, .split, .waitlist-wrap {
    grid-template-columns: 1fr;
  }
  .preview-shell {
    min-height: 540px;
  }
  .preview-main {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(1deg);
  }
  .float-one {
    left: 8%;
  }
  .float-two {
    right: 8%;
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .what-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .waitlist-side {
    position: static;
  }
}

@media(max-width:680px) {
  .container, .narrow {
    width: min(100% - 28px,1180px);
  }
  .section {
    padding: 70px 0;
  }
  .section-sm {
    padding: 46px 0;
  }
  .nav {
    height: 68px;
  }
  .brand img {
    width: 158px;
  }
  .lang button {
    padding: 7px;
  }
  .hero {
    padding: 56px 0 44px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero p {
    font-size: 17px;
  }
  .product-flow {
    gap: 10px;
    padding: 16px;
  }
  .what-card {
    padding: 25px;
  }
  .preview-shell {
    min-height: 475px;
  }
  .preview-main {
    width: min(355px,95%);
    padding: 22px;
  }
  .audience-mini {
    grid-template-columns: 1fr 1fr;
  }
  .float-one {
    left: 0;
    top: 75px;
    width: 175px;
    padding: 14px;
  }
  .float-two {
    right: 0;
    bottom: 10px;
    width: 190px;
    padding: 14px;
  }
  .audience-grid, .benefit-grid, .country-grid, .feature-grid, .vision-grid, .footer-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .audience-card {
    min-height: 0;
    padding: 27px;
  }
  .cta {
    padding: 36px 25px;
    border-radius: 28px;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .field.full {
    grid-column: auto;
  }
  .waitlist-form {
    padding: 24px;
    border-radius: 24px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .page-hero {
    padding: 52px 0 42px;
  }
  .title {
    font-size: 44px;
  }
}

/* Small layout helpers used across static pages. */
.title-section {
  font-size: 48px;
}

.title-subsection {
  font-size: 42px;
}

.actions-centered {
  justify-content: center;
}

.section-spacious {
  padding: 80px 0;
}

.inline-link {
  color: var(--blue);
  font-weight: 850;
}


/* Official GoReserva brand assets and customer experience. */
.preview-logo {
  overflow: hidden;
  background: transparent;
}
.preview-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
}
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}
.customer-card {
  background: linear-gradient(180deg,#f7faff,#fff);
  border-color: #dce8ff;
}
.customer-flow-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 38px;
  text-align: left;
}
.customer-flow-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #fff;
}
.customer-flow-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 950;
}
.customer-flow-grid h3 {
  margin: 17px 0 7px;
  font-size: 20px;
}
.customer-flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.category-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.category-cloud span {
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 850;
}
.customer-hero {
  background: radial-gradient(circle at 84% 14%,#dfeaff 0,transparent 34%),linear-gradient(180deg,#f7faff,#fff);
}
@media(max-width:1180px) {
  .navlinks { gap: 18px; font-size: 13px; }
  .brand img { width: 176px; }
}
@media(max-width:980px) {
  .audience-grid { grid-template-columns: 1fr; }
  .customer-flow-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:680px) {
  .customer-flow-grid { grid-template-columns: 1fr; }
  .audience-mini { grid-template-columns: 1fr; }
  .brand img { width: 160px; }
}
