:root {
  --bg: #070911;
  --bg-soft: #0d101d;
  --surface: #121626;
  --surface-raised: #181d31;
  --surface-light: #f4f6fb;
  --text: #f8f9ff;
  --text-dark: #111524;
  --muted: #b9c0d4;
  --muted-dark: #5b6477;
  --line: rgba(221, 227, 255, 0.14);
  --orange: #ff9654;
  --orange-strong: #ff7a28;
  --blue: #54b5ff;
  --violet: #a886ff;
  --success: #73e6b5;
  --gradient: linear-gradient(120deg, var(--orange) 0%, var(--blue) 52%, var(--violet) 100%);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1220px;
  --section-space: clamp(5rem, 9vw, 8rem);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 122, 40, 0.09), transparent 25rem),
    radial-gradient(circle at 88% 28%, rgba(84, 181, 255, 0.08), transparent 28rem),
    var(--bg);
  content: "";
}

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

a {
  color: inherit;
}

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

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

::selection {
  background: var(--orange);
  color: #090b12;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h3 {
  line-height: 1.25;
}

code {
  padding: 0.1em 0.3em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.3em;
  font-size: 0.86em;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--text);
  color: var(--text-dark);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 1.9rem;
  height: 2px;
  background: var(--gradient);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--gradient);
  box-shadow: 0 14px 38px rgba(84, 181, 255, 0.18);
  color: #090b12;
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(84, 181, 255, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 17, 0.82);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: block;
  width: clamp(10rem, 16vw, 12.5rem);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.8vw, 1.55rem);
}

.main-nav > a:not(.button) {
  padding-block: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.button):hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 0.35rem;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 5rem);
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: -14rem;
  bottom: -20rem;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 103, 255, 0.12), transparent 68%);
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-layout {
  display: grid;
  min-height: min(760px, calc(100svh - 12rem));
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(25rem, 0.97fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.65rem;
  font-size: clamp(3rem, 6.1vw, 6.2rem);
}

.hero h1 span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 42rem;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.human-review {
  max-width: 40rem;
  padding-left: 1rem;
  border-left: 2px solid var(--orange);
  color: #e5e8f4;
  font-size: 0.95rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-facts {
  display: grid;
  max-width: 42rem;
  padding: 1.6rem 0 0;
  margin: 2.4rem 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 0.1rem;
  padding-right: 1rem;
}

.hero-facts strong {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 35rem;
  place-items: center;
}

.hero-visual picture {
  position: relative;
  z-index: 1;
}

.hero-visual img {
  width: min(100%, 44rem);
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.28));
}

.visual-glow {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 20deg, rgba(255, 122, 40, 0.3), rgba(84, 181, 255, 0.26), rgba(168, 134, 255, 0.28), rgba(255, 122, 40, 0.3));
  filter: blur(64px);
  opacity: 0.48;
}

.signal-card {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 13rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(12, 15, 27, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.signal-card span {
  margin-bottom: 0.25rem;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
}

.signal-card strong {
  font-size: 0.85rem;
}

.signal-card small {
  color: var(--muted);
}

.signal-card-top {
  top: 11%;
  right: 0;
}

.signal-card-bottom {
  bottom: 12%;
  left: -3%;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading > p:last-child {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.section-heading-center > p:last-child {
  margin-inline: auto;
}

.services {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.service-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 19rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  transition: background-color 180ms ease;
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.042);
}

.service-number {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

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

.process-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 0.55rem;
  font-size: 1.3rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.production-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(255, 122, 40, 0.16), transparent 28rem),
    radial-gradient(circle at 100% 100%, rgba(93, 104, 255, 0.18), transparent 30rem),
    var(--surface);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.production-copy h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
}

.production-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.production-copy .scope-note {
  padding: 1.1rem 1.25rem;
  margin: 1.8rem 0 0;
  border-left: 3px solid var(--orange);
  background: rgba(0, 0, 0, 0.16);
  color: var(--text);
  font-weight: 700;
}

.production-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.production-list li {
  display: grid;
  gap: 0.2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.production-list li:first-child {
  border-top: 1px solid var(--line);
}

.production-list span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.production-list strong {
  font-size: 1rem;
}

.templates {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 122, 40, 0.07), transparent 24rem),
    radial-gradient(circle at 88% 74%, rgba(84, 181, 255, 0.07), transparent 26rem);
}

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

.template-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  flex-direction: column;
}

.template-visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-raised);
}

.template-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 9, 17, 0.38));
  content: "";
  pointer-events: none;
}

.template-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.template-card:hover .template-visual img,
.template-visual:focus-visible img {
  transform: scale(1.025);
}

.template-content {
  display: flex;
  min-height: 22rem;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  flex: 1;
  flex-direction: column;
}

.template-code {
  align-self: flex-start;
  padding: 0.35rem 0.65rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 150, 84, 0.36);
  border-radius: 999px;
  background: rgba(255, 150, 84, 0.08);
  color: #ffc39d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.template-case {
  margin-bottom: 0.35rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.template-content h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.template-content > p:not(.template-case) {
  margin-bottom: 1.6rem;
  color: var(--muted);
}

.template-footer {
  display: grid;
  align-items: start;
  margin-top: auto;
  gap: 1rem;
}

.template-tech {
  color: #d8dced;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.template-button {
  width: 100%;
  gap: 0.45rem;
}

.plans {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025), transparent);
}

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

.plan-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.plan-card-featured {
  border-color: rgba(84, 181, 255, 0.62);
  background:
    linear-gradient(var(--surface-raised), var(--surface-raised)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 24px 70px rgba(84, 181, 255, 0.13);
}

.recommended {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(84, 181, 255, 0.14);
  color: #bce2ff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-header {
  min-height: 11.2rem;
}

.plan-label {
  margin-bottom: 0.65rem;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-header h3 {
  margin-bottom: 0.65rem;
  font-size: 2rem;
}

.plan-header > p:last-child {
  color: var(--muted);
  font-size: 0.94rem;
}

.price-block {
  display: grid;
  padding: 1.15rem 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-block .price-kicker {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-block .setup-price {
  margin: 0.15rem 0;
  font-size: clamp(2.25rem, 3.5vw, 3.15rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.price-block .setup-price small {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.price-block .price-plus {
  margin: 0.3rem 0 0.2rem;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.price-block .monthly {
  color: #d7dcf0;
  font-size: 1.02rem;
  font-weight: 800;
}

.price-block .monthly-caption {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: none;
}

.feature-list {
  display: grid;
  padding: 0;
  margin: 0 0 1.75rem;
  gap: 0.65rem;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #d8dced;
  font-size: 0.89rem;
  line-height: 1.45;
}

.feature-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gradient);
  content: "";
}

.button-plan {
  width: 100%;
  margin-top: auto;
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--text);
}

.button-plan:hover {
  border-color: var(--blue);
  background: rgba(84, 181, 255, 0.08);
}

.button-plan-featured {
  border-color: transparent;
  background: var(--gradient);
  color: #090b12;
}

.enterprise-card {
  display: grid;
  overflow: hidden;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid rgba(168, 134, 255, 0.48);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(168, 134, 255, 0.17), transparent 25rem),
    radial-gradient(circle at 0 100%, rgba(84, 181, 255, 0.11), transparent 25rem),
    var(--surface-raised);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(21rem, 0.86fr) minmax(0, 1.14fr);
}

.enterprise-visual {
  min-height: 100%;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  border-right: 1px solid var(--line);
}

.enterprise-visual a {
  display: block;
  overflow: hidden;
  height: 100%;
  min-height: 27rem;
  border-radius: calc(var(--radius-lg) - 0.8rem);
  background: #eeeae3;
}

.enterprise-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms ease;
}

.enterprise-visual a:hover img,
.enterprise-visual a:focus-visible img {
  transform: scale(1.02);
}

.enterprise-content {
  display: flex;
  padding: clamp(2rem, 4.6vw, 4.5rem);
  flex-direction: column;
  justify-content: center;
}

.enterprise-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.enterprise-heading h3 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.enterprise-heading strong {
  flex: 0 0 auto;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(168, 134, 255, 0.38);
  border-radius: 999px;
  background: rgba(168, 134, 255, 0.1);
  color: #d9caff;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enterprise-content h4 {
  max-width: 33rem;
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.enterprise-content > p:not(.eyebrow) {
  max-width: 37rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.enterprise-example {
  display: grid;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 0.2rem;
}

.enterprise-example span {
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.enterprise-example strong {
  font-size: 1.05rem;
}

.enterprise-example small {
  color: var(--muted);
  font-size: 0.76rem;
}

.enterprise-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  gap: 0.75rem;
}

.enterprise-actions .button {
  gap: 0.45rem;
}

.monthly-coverage-note,
.webmail-note {
  max-width: 58rem;
  padding: 1.1rem 1.3rem;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.monthly-coverage-note {
  margin-top: 1.5rem;
  color: #dce1f1;
}

.webmail-note {
  margin-top: 0.75rem;
}

.webmail-note strong {
  color: var(--text);
}

.search-section {
  border-top: 1px solid var(--line);
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.search-grid {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(3, 1fr);
}

.search-grid article {
  padding: 1.4rem;
  border-left: 1px solid var(--line);
}

.search-grid span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
}

.search-grid h3 {
  margin: 2.7rem 0 0.65rem;
  font-size: 1.1rem;
}

.search-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 14%, rgba(113, 79, 255, 0.11), transparent 26rem),
    var(--bg-soft);
}

.trust-intro {
  max-width: 62rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.trust-intro h2 {
  max-width: 16ch;
}

.trust-intro > p:last-child {
  max-width: 50rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.client-showcase,
.hosted-sites {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.hosted-sites {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.subsection-heading {
  display: grid;
  align-items: end;
  margin-bottom: 1.5rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1.2fr);
  gap: 2rem;
}

.subsection-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.subsection-heading p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.client-logo-grid,
.hosted-site-grid,
.payment-logo-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.client-logo-grid > li {
  min-width: 0;
}

.logo-tile {
  position: relative;
  display: grid;
  min-height: 10.5rem;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  place-items: center;
  color: inherit;
  text-decoration: none;
  isolation: isolate;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.logo-tile::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 20%, rgba(100, 154, 255, 0.13) 50%, transparent 80%);
  transform: translateX(-115%);
  transition: transform 650ms ease;
  pointer-events: none;
}

.logo-tile::after {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  content: "↗";
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0;
  transform: translate(-0.2rem, 0.2rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.logo-tile:hover,
.logo-tile:focus-visible {
  border-color: rgba(100, 154, 255, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 28px rgba(105, 82, 255, 0.13);
  transform: translateY(-5px);
}

.logo-tile:hover::before,
.logo-tile:focus-visible::before {
  transform: translateX(115%);
}

.logo-tile:hover::after,
.logo-tile:focus-visible::after {
  opacity: 0.9;
  transform: translate(0, 0);
}

.logo-tile-dark {
  background: #090c15;
}

.logo-tile-light {
  background: #f7f8fb;
}

.logo-tile img {
  display: block;
  width: 100%;
  height: 6.5rem;
  object-fit: contain;
  transition: filter 280ms ease;
}

.logo-tile:hover img,
.logo-tile:focus-visible img {
  filter: saturate(1.08) brightness(1.05);
}

.logo-tile-boavista img {
  transform: scale(1.25);
}

.logo-tile-denteq img {
  transform: scale(1.65);
}

.logo-tile-vf img {
  transform: scale(1.35);
}

.logo-tile-soft img {
  transform: scale(1.12);
}

.logo-tile-transharo img {
  transform: scale(1.18);
}

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

.hosted-site-grid a {
  display: flex;
  min-height: 7.5rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hosted-site-grid a:hover {
  border-color: rgba(84, 181, 255, 0.58);
  background: rgba(84, 181, 255, 0.07);
  transform: translateY(-2px);
}

.hosted-site-grid strong {
  font-size: 1rem;
}

.hosted-site-grid a > span {
  color: var(--muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.scope {
  padding-top: 0;
}

.scope-panel {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-light);
  color: var(--text-dark);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.scope-panel .eyebrow {
  color: var(--muted-dark);
}

.scope-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.scope-panel > div:last-child {
  color: #40495c;
  font-size: 1.04rem;
}

.scope-panel > div:last-child p:last-child {
  margin-bottom: 0;
}

.faq {
  background: var(--bg-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 4.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 3rem 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 0;
  color: var(--orange);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 45rem;
  padding: 0 2rem 1.6rem 0;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 5% 10%, rgba(255, 122, 40, 0.18), transparent 28rem),
    var(--surface);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 0.78fr) minmax(30rem, 1.22fr);
}

.contact-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.contact-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-points {
  display: grid;
  margin-top: 2.5rem;
  gap: 0.8rem;
}

.contact-points span {
  position: relative;
  padding-left: 1.2rem;
  color: #d8ddec;
  font-size: 0.9rem;
}

.contact-points span::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.lead-form {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--surface-light);
  color: var(--text-dark);
}

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

.field {
  display: grid;
  margin-bottom: 1rem;
  gap: 0.4rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #c2c8d4;
  border-radius: 0.7rem;
  background: #fff;
  color: var(--text-dark);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #315cf1;
  outline: 3px solid rgba(49, 92, 241, 0.24);
  outline-offset: 1px;
}

.field input:user-invalid,
.field select:user-invalid,
.consent input:user-invalid {
  border-color: #b32222;
}

.consent {
  display: grid;
  align-items: start;
  margin-top: 0.5rem;
  color: #3e475a;
  font-size: 0.83rem;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.7rem;
  cursor: pointer;
}

.consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
  accent-color: #315cf1;
}

.privacy-note {
  margin: 1rem 0;
  color: #596277;
  font-size: 0.76rem;
}

.button-submit {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  color: #235f49;
  font-size: 0.84rem;
  font-weight: 750;
}

.form-status a {
  color: #174dac;
}

.payment-providers {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.payment-panel {
  display: grid;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.payment-copy h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.payment-copy > p:last-child {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.payment-logo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.payment-logo-list a {
  display: grid;
  min-height: 5.5rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: #fff;
  place-items: center;
  transition: border-color 180ms ease, transform 180ms ease;
}

.payment-logo-list a:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.payment-logo-list img {
  display: block;
  width: 100%;
  height: 3.75rem;
  object-fit: contain;
}

.site-footer {
  padding-block: 3.5rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 3rem;
}

.footer-brand img {
  width: 12rem;
  margin-bottom: 1.2rem;
}

.footer-brand p,
.footer-meta p {
  max-width: 26rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-nav {
  display: grid;
  gap: 0.65rem;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

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

.footer-meta {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #f8f9ff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  text-decoration: none;
  isolation: isolate;
  place-items: center;
}

.whatsapp-float::before {
  position: absolute;
  z-index: -1;
  inset: -2px;
  border: 2px solid rgba(37, 211, 102, 0.68);
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  animation: whatsapp-pulse 3.8s ease-out infinite;
}

.whatsapp-logo {
  display: block;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
}

@keyframes whatsapp-pulse {
  0%,
  42% {
    opacity: 0;
    transform: scale(0.96);
  }

  58% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1.25rem;
    left: 1.25rem;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #101423;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a:not(.button) {
    min-height: 2.8rem;
    padding: 0.65rem 0.5rem;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.8fr;
    gap: 1rem;
  }

  .signal-card {
    display: none;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .template-card:last-child {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  }

  .template-card:last-child .template-visual {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .template-card:last-child .template-content {
    min-height: 21rem;
  }

  .plan-card {
    display: grid;
    min-height: auto;
    grid-template-columns: minmax(15rem, 0.72fr) minmax(18rem, 1.28fr);
    column-gap: 2rem;
  }

  .plan-header,
  .price-block,
  .button-plan {
    grid-column: 1;
  }

  .feature-list {
    grid-row: 1 / span 3;
    grid-column: 2;
    margin-bottom: 0;
  }

  .plan-header {
    min-height: auto;
  }

  .search-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 0;
  }

  .hero-visual {
    min-height: auto;
    order: 1;
  }

  .hero-visual img {
    width: min(88vw, 34rem);
  }

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

  .service-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-layout,
  .faq-layout,
  .production-panel,
  .scope-panel {
    grid-template-columns: 1fr;
  }

  .template-grid,
  .template-card:last-child,
  .enterprise-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .template-card:last-child {
    grid-column: auto;
  }

  .template-card:last-child .template-visual {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .template-content,
  .template-card:last-child .template-content {
    min-height: 20rem;
  }

  .enterprise-visual {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .enterprise-visual a {
    min-height: auto;
    aspect-ratio: 1200 / 630;
  }

  .sticky-heading {
    position: static;
  }

  .plan-card {
    display: flex;
  }

  .plan-header,
  .price-block,
  .button-plan,
  .feature-list {
    grid-row: auto;
    grid-column: auto;
  }

  .feature-list {
    margin-bottom: 1.75rem;
  }

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

  .search-grid article {
    padding: 1.25rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .search-grid article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .search-grid h3 {
    margin-top: 1.5rem;
  }

  .subsection-heading,
  .payment-panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .client-logo-grid,
  .hosted-site-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-grid > li:last-child:nth-child(odd) {
    width: calc(50% - 0.5rem);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .payment-logo-list {
    width: min(100%, 28rem);
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .section {
    padding-block: clamp(4rem, 18vw, 5.5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .header-inner {
    min-height: 4.5rem;
  }

  .brand {
    width: 10.5rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-facts {
    gap: 0.85rem;
  }

  .hero-facts li {
    padding-right: 0.35rem;
  }

  .hero-facts span {
    font-size: 0.7rem;
  }

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

  .service-card,
  .service-card:nth-child(2n),
  .service-card:nth-child(3n),
  .service-card:nth-last-child(-n + 2),
  .service-card:nth-last-child(-n + 3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-number {
    margin-bottom: 2.5rem;
  }

  .process-list li {
    grid-template-columns: 2.3rem 1fr;
  }

  .production-panel,
  .contact-panel {
    border-radius: var(--radius-md);
  }

  .production-panel {
    gap: 2rem;
  }

  .template-content {
    min-height: auto;
  }

  .enterprise-card {
    border-radius: var(--radius-md);
  }

  .enterprise-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .enterprise-actions {
    display: grid;
  }

  .client-logo-grid {
    gap: 0.65rem;
  }

  .client-logo-grid > li:last-child:nth-child(odd) {
    width: calc(50% - 0.325rem);
  }

  .logo-tile {
    min-height: 8rem;
    padding: 1rem;
  }

  .logo-tile img {
    height: 5.5rem;
  }

  .hosted-site-grid {
    grid-template-columns: 1fr;
  }

  .hosted-site-grid a {
    min-height: 6.5rem;
  }

  .payment-panel {
    border-radius: var(--radius-sm);
  }

  .recommended {
    position: static;
    align-self: flex-start;
    margin-bottom: 0.9rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-meta {
    grid-column: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .whatsapp-float::before {
    animation: none !important;
  }

  .logo-tile:hover,
  .logo-tile:focus-visible,
  .template-card:hover .template-visual img,
  .template-visual:focus-visible img,
  .enterprise-visual a:hover img,
  .enterprise-visual a:focus-visible img {
    transform: none;
  }
}

@media (forced-colors: active) {
  .eyebrow span,
  .feature-list li::before,
  .contact-points span::before {
    background: CanvasText;
  }

  .hero h1 span {
    color: LinkText;
  }
}
