:root {
  --navy-950: #071127;
  --navy-900: #0a1735;
  --navy-800: #10244b;
  --navy-700: #183768;
  --blue-700: #1746b2;
  --blue-600: #1d5bd8;
  --blue-500: #3478f6;
  --blue-100: #dfeaff;
  --blue-50: #eef4ff;
  --mint-500: #18b98a;
  --mint-100: #d9f8ec;
  --ink: #13203a;
  --ink-soft: #42516b;
  --muted: #65738a;
  --line: #dce3ed;
  --line-soft: #e9edf4;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --surface-blue: #f1f5ff;
  --success: #13815f;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(11, 29, 63, 0.07);
  --shadow-md: 0 22px 55px rgba(11, 29, 63, 0.12);
  --shadow-lg: 0 36px 90px rgba(5, 20, 52, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.28rem;
}

::selection {
  background: var(--blue-100);
  color: var(--navy-900);
}

:focus-visible {
  outline: 3px solid rgba(52, 120, 246, 0.52);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  transition: transform var(--transition);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(220, 227, 237, 0.82);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 40px rgba(9, 28, 65, 0.07);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #394862;
  font-size: 0.92rem;
  font-weight: 650;
  transition: color var(--transition);
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-600);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.primary-nav > a:not(.button):hover {
  color: var(--blue-600);
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--navy-900);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span + span {
  margin-top: 5px;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 730;
  line-height: 1.2;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue-600), #1747bd);
  color: #fff;
  box-shadow: 0 12px 28px rgba(29, 91, 216, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #2166e4, #133fa8);
  box-shadow: 0 16px 34px rgba(29, 91, 216, 0.31);
}

.button-secondary {
  border-color: #cfd8e7;
  background: var(--surface);
  color: var(--navy-900);
}

.button-secondary:hover {
  border-color: #aebcd2;
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.89rem;
}

.button-large {
  min-height: 54px;
  padding: 15px 22px;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 90px) 0 0;
  background:
    radial-gradient(circle at 7% 5%, rgba(52, 120, 246, 0.13), transparent 31%),
    radial-gradient(circle at 94% 18%, rgba(24, 185, 138, 0.11), transparent 27%),
    linear-gradient(180deg, #fbfdff 0%, #f7f9fd 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(24, 55, 104, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 55, 104, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 92%);
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 180px;
  right: -180px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(52, 120, 246, 0.13);
}

.hero-glow-two {
  top: 230px;
  right: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(24, 185, 138, 0.14);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(470px, 0.97fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(29, 91, 216, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 30px rgba(23, 70, 178, 0.06);
  letter-spacing: 0.08em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-500);
  box-shadow: 0 0 0 5px rgba(24, 185, 138, 0.13);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(3.3rem, 6.4vw, 5.7rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  background: linear-gradient(105deg, var(--blue-600) 10%, #1b83d9 58%, var(--mint-500));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.27rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 29px;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-assurances svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  background: var(--mint-100);
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.hero-visual {
  position: relative;
  padding: 28px 8px 36px 30px;
}

.hero-visual::before {
  position: absolute;
  top: 1%;
  right: -4%;
  bottom: 2%;
  left: 10%;
  border-radius: 44% 56% 49% 51% / 52% 36% 64% 48%;
  background: linear-gradient(145deg, rgba(52, 120, 246, 0.12), rgba(24, 185, 138, 0.08));
  content: "";
  transform: rotate(-5deg);
}

.setup-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(17, 44, 91, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.setup-panel::after {
  position: absolute;
  top: -90px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 120, 246, 0.13), transparent 69%);
  content: "";
  pointer-events: none;
}

.setup-panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 28px 24px;
  border-bottom: 1px solid var(--line-soft);
}

.panel-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.setup-panel h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.status-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mint-100);
  color: var(--success);
  font-size: 0.68rem;
  font-weight: 750;
}

.status-pill > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-500);
}

.setup-timeline {
  position: relative;
  margin: 0;
  padding: 7px 28px;
  list-style: none;
}

.setup-timeline::before {
  position: absolute;
  top: 43px;
  bottom: 43px;
  left: 46px;
  width: 1px;
  background: #d7dfeb;
  content: "";
}

.setup-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 17px 0;
}

.setup-timeline li + li {
  border-top: 1px solid var(--line-soft);
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #d8e0ec;
  border-radius: 11px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 780;
}

.setup-timeline .is-active .timeline-number {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #fff;
  box-shadow: 0 8px 18px rgba(29, 91, 216, 0.25);
}

.setup-timeline strong,
.setup-timeline small {
  display: block;
}

.setup-timeline strong {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 0.92rem;
}

.setup-timeline small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.73rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeline-state {
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 730;
}

.setup-timeline .is-active .timeline-state {
  background: var(--blue-50);
  color: var(--blue-600);
}

.setup-panel-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-top: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.panel-stat {
  padding: 20px 26px;
  background: #fbfcfe;
}

.panel-stat span,
.panel-stat small {
  display: block;
}

.panel-stat span {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 1.02rem;
  font-weight: 790;
}

.panel-stat small {
  color: var(--muted);
  font-size: 0.71rem;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 44, 91, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 720;
}

.floating-note-one {
  right: -8px;
  bottom: -4px;
  padding: 10px 13px;
}

.floating-note-one svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: var(--mint-100);
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.floating-note-two {
  top: -16px;
  left: 30px;
  padding: 9px 12px 9px 9px;
}

.floating-note-two > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy-900);
  color: #fff;
  font-size: 0.61rem;
  letter-spacing: 0.05em;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 80px;
  padding: 25px 0 27px;
  border-top: 1px solid var(--line);
}

.trust-strip > p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px 32px;
}

.trust-items span {
  position: relative;
  color: #35445e;
  font-size: 0.85rem;
  font-weight: 680;
}

.trust-items span:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -17px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b7c3d4;
  content: "";
  transform: translateY(-50%);
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading h2,
.requirements-intro h2,
.faq-intro h2,
.confidence-copy h2,
.contact-copy h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child,
.section-heading-split > p,
.requirements-intro > p,
.faq-intro > p,
.confidence-copy > p,
.contact-copy > p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  align-items: end;
  gap: 70px;
}

.section-heading-split h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading-split > p {
  margin: 0 0 6px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .section-label {
  justify-content: center;
}

.section-heading.centered > p:last-child {
  max-width: 650px;
  margin: 0 auto;
}

.services {
  background: var(--surface);
}

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

.service-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 7px 24px rgba(11, 29, 63, 0.04);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: #c9d6e8;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card-featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 90% 10%, rgba(52, 120, 246, 0.1), transparent 30%),
    linear-gradient(135deg, #f8faff, #eef4ff);
}

.service-card-featured::after {
  position: absolute;
  right: -50px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(52, 120, 246, 0.14);
  border-radius: 50%;
  content: "";
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(29, 91, 216, 0.12);
  border-radius: 13px;
  background: var(--blue-50);
  color: var(--blue-600);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #52627c;
  font-size: 0.7rem;
  font-weight: 790;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-bottom: 12px;
}

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

.tick-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 19px;
  color: #34445f;
  font-size: 0.82rem;
  font-weight: 630;
}

.tick-list li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-500);
  box-shadow: 0 0 0 4px var(--mint-100);
  content: "";
}

.confidence-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy-900);
  background-size: 56px 56px;
  color: #fff;
}

.confidence-orb {
  position: absolute;
  top: -180px;
  left: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 120, 246, 0.25), transparent 68%);
  pointer-events: none;
}

.confidence-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 80px;
}

.section-label-light {
  color: #77a9ff;
}

.confidence-copy h2,
.contact-copy h2 {
  color: #fff;
}

.confidence-copy > p,
.contact-copy > p {
  color: #b9c5d8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-600);
  font-weight: 730;
}

.text-link svg {
  transition: transform var(--transition);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link-light {
  color: #fff;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.confidence-grid article {
  min-height: 210px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.confidence-grid article:hover {
  border-color: rgba(119, 169, 255, 0.3);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-3px);
}

.confidence-grid article > span {
  display: inline-block;
  margin-bottom: 31px;
  color: #6c9ff5;
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.09em;
}

.confidence-grid h3 {
  margin-bottom: 9px;
  color: #fff;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.confidence-grid p {
  margin: 0;
  color: #aebcd1;
  font-size: 0.9rem;
}

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

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 24px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: #cfd8e6;
  content: "";
}

.process-grid li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-marker {
  display: grid;
  width: 49px;
  height: 49px;
  margin: 0 auto 28px;
  place-items: center;
  border: 1px solid #ced8e6;
  border-radius: 50%;
  background: var(--surface-soft);
}

.process-marker > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 4px 15px rgba(11, 29, 63, 0.09);
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 790;
}

.process-kicker {
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-grid h3 {
  max-width: 230px;
  margin: 0 auto 12px;
  font-size: 1.13rem;
  line-height: 1.25;
}

.process-grid li > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.requirements-section {
  background: var(--surface);
}

.requirements-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 90px;
}

.requirements-intro {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.requirements-intro > p {
  margin-bottom: 24px;
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-600);
  font-weight: 720;
}

.source-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.requirements-note {
  margin-top: 32px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 0.8rem !important;
}

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

.requirement-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 23px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.requirement-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 800;
}

.requirement-list h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

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

.pricing-section {
  background:
    radial-gradient(circle at 20% 0, rgba(52, 120, 246, 0.08), transparent 27%),
    var(--surface-soft);
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 33px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.pricing-card-featured {
  border: 1px solid var(--blue-600);
  box-shadow: 0 24px 60px rgba(23, 70, 178, 0.16);
  transform: translateY(-12px);
}

.popular-label {
  position: absolute;
  right: 20px;
  bottom: calc(100% - 15px);
  left: 20px;
  padding: 7px 12px;
  border-radius: 9px 9px 0 0;
  background: var(--blue-600);
  color: #fff;
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
}

.pricing-card-head {
  min-height: 205px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}

.package-type {
  min-height: 40px;
  margin-bottom: 11px;
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 750;
}

.pricing-card h3 {
  margin-bottom: 26px;
  font-size: 1.4rem;
}

.price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1px;
  color: var(--navy-900);
  font-size: 3.35rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price > span {
  margin-top: 6px;
  margin-right: 4px;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
}

.price-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.package-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 25px;
  color: #3f4e68;
  font-size: 0.9rem;
}

.package-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--success);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 16px;
  text-align: center;
}

.package-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.pricing-footnote {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 920px;
  margin: 42px auto 0;
  padding: 17px 20px;
  border: 1px solid #d7e2f1;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.74);
}

.pricing-footnote svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 3px;
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pricing-footnote p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.add-ons {
  max-width: 920px;
  margin: 16px auto 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.add-ons summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 730;
  list-style: none;
}

.add-ons summary::-webkit-details-marker {
  display: none;
}

.add-ons summary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform var(--transition);
}

.add-ons[open] summary svg {
  transform: rotate(180deg);
}

.add-on-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  border-top: 1px solid var(--line);
  background: var(--line-soft);
}

.add-on-grid > div {
  display: grid;
  padding: 20px;
  background: var(--surface);
}

.add-on-grid span,
.add-on-grid strong,
.add-on-grid small {
  display: block;
}

.add-on-grid span {
  color: var(--muted);
  font-size: 0.76rem;
}

.add-on-grid strong {
  margin: 4px 0 2px;
  color: var(--navy-900);
}

.add-on-grid small {
  color: var(--muted);
  font-size: 0.7rem;
}

.founder-section {
  background: var(--surface);
}

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

.founder-grid article {
  position: relative;
  display: flex;
  min-height: 355px;
  flex-direction: column;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.founder-grid article::after {
  position: absolute;
  right: -65px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 28px solid var(--blue-50);
  border-radius: 50%;
  content: "";
  opacity: 0.72;
}

.founder-grid article:hover {
  border-color: #cbd7e8;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.scenario-tag {
  align-self: flex-start;
  margin-bottom: 47px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.68rem;
  font-weight: 770;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.founder-grid h3 {
  margin-bottom: 14px;
  font-size: 1.31rem;
  line-height: 1.25;
}

.founder-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 0.91rem;
}

.founder-grid .text-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-size: 0.88rem;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.faq-intro > p {
  margin-bottom: 28px;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  color: var(--navy-900);
  font-size: 1.05rem;
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary > span {
  position: relative;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border: 1px solid #cbd5e4;
  border-radius: 50%;
  background: var(--surface);
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--blue-600);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-list summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details[open] summary {
  padding-bottom: 15px;
  color: var(--blue-600);
}

.faq-list details > p {
  max-width: 700px;
  margin: 0;
  padding: 0 48px 26px 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy-900);
  background-size: 56px 56px;
}

.contact-glow {
  position: absolute;
  top: -230px;
  right: -150px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 120, 246, 0.26), transparent 66%);
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 90px;
}

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

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.contact-direct > a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact-direct > a:hover {
  border-color: rgba(119, 169, 255, 0.34);
  background: rgba(255, 255, 255, 0.075);
  transform: translateX(3px);
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: rgba(52, 120, 246, 0.17);
  color: #8bb6ff;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-direct small,
.contact-direct strong {
  display: block;
}

.contact-direct small {
  margin-bottom: 1px;
  color: #8f9db3;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-direct strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.88rem;
}

.company-details {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  color: #7f8ea6;
  font-size: 0.72rem;
}

.contact-form {
  padding: 37px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(2, 10, 28, 0.35);
}

.form-heading {
  margin-bottom: 27px;
}

.form-heading h3 {
  margin-bottom: 7px;
  font-size: 1.45rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

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

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #34445f;
  font-size: 0.77rem;
  font-weight: 710;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8e0eb;
  border-radius: 10px;
  outline: none;
  background: #fafbfd;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input,
.field select {
  min-height: 47px;
  padding: 11px 13px;
}

.field textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa6b8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(52, 120, 246, 0.11);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 0.78rem;
  font-weight: 670;
  text-align: center;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-consent {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.form-consent a {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  background: var(--navy-950);
  color: #9cabc0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.75fr repeat(3, 0.75fr);
  gap: 60px;
  padding: 70px 0 60px;
}

.brand-inverse img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: #8392a9;
  font-size: 0.9rem;
}

.footer-top h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-top ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-top a {
  font-size: 0.84rem;
  transition: color var(--transition);
}

.footer-top a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 23px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #718198;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > p:last-child {
  text-align: right;
}

.footer-bottom > div {
  display: flex;
  gap: 19px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: #16a875;
  box-shadow: 0 13px 30px rgba(15, 111, 79, 0.3);
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.whatsapp-float:hover {
  background: #128e63;
  box-shadow: 0 17px 34px rgba(15, 111, 79, 0.37);
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* Legal pages */
.legal-page {
  background: var(--surface-soft);
}

.legal-header {
  position: sticky;
}

.legal-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-600);
  font-size: 0.88rem;
  font-weight: 710;
}

.legal-nav-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.legal-main {
  min-height: calc(100vh - 270px);
  padding: calc(var(--header-height) + 72px) 0 100px;
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 42px;
}

.legal-hero h1 {
  margin-bottom: 17px;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
}

.legal-hero p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-card {
  max-width: 900px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.legal-card section + section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.86rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 6vw, 4.8rem);
  }

  .floating-note-one {
    right: -4px;
  }

  .footer-top {
    gap: 40px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--header-height));
    gap: 0;
    overflow-y: auto;
    padding: 16px 20px 24px;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 22px 40px rgba(9, 28, 65, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.98rem;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .primary-nav .button {
    margin-top: 16px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 72px);
  }

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

  .hero-copy {
    max-width: 800px;
  }

  .hero h1 {
    max-width: 780px;
    font-size: clamp(3.6rem, 10vw, 5.6rem);
  }

  .hero-visual {
    width: min(100%, 650px);
    margin: 0 auto;
  }

  .trust-strip {
    align-items: flex-start;
  }

  .trust-items {
    max-width: 620px;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading-split > p {
    max-width: 680px;
  }

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

  .confidence-layout,
  .requirements-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .confidence-copy,
  .requirements-intro,
  .faq-intro,
  .contact-copy {
    max-width: 720px;
  }

  .requirements-intro,
  .faq-intro {
    position: static;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }

  .process-grid::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
    gap: 26px;
  }

  .pricing-card-featured {
    order: -1;
    transform: none;
  }

  .pricing-card-head,
  .package-type {
    min-height: 0;
  }

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

  .founder-grid article {
    min-height: 300px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 700px);
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
    gap: 28px;
  }
}

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

  .brand img {
    width: 172px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 58px);
  }

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

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    padding: 16px 0 32px;
  }

  .setup-panel-top {
    padding: 23px 20px 20px;
  }

  .setup-timeline {
    padding: 6px 20px;
  }

  .setup-timeline::before {
    left: 38px;
  }

  .setup-timeline small {
    white-space: normal;
  }

  .panel-stat {
    padding: 17px 19px;
  }

  .floating-note-two {
    top: -14px;
    left: 22px;
  }

  .floating-note-one {
    right: -2px;
    bottom: -3px;
  }

  .trust-strip {
    display: block;
    margin-top: 54px;
  }

  .trust-strip > p {
    margin-bottom: 17px;
  }

  .trust-items {
    justify-content: flex-start;
    gap: 10px 20px;
  }

  .trust-items span:not(:first-child)::before {
    left: -11px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

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

  .service-card-featured {
    grid-column: span 1;
  }

  .tick-list {
    grid-template-columns: 1fr;
  }

  .confidence-grid,
  .process-grid,
  .add-on-grid {
    grid-template-columns: 1fr;
  }

  .confidence-grid article {
    min-height: auto;
  }

  .process-grid {
    gap: 34px;
  }

  .process-grid li {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 17px;
    text-align: left;
  }

  .process-marker {
    grid-row: 1 / span 3;
    margin: 0;
  }

  .process-kicker,
  .process-grid h3,
  .process-grid li > p:last-child {
    grid-column: 2;
  }

  .process-grid h3 {
    max-width: none;
    margin: 0 0 9px;
  }

  .requirements-layout,
  .faq-layout,
  .contact-layout {
    gap: 45px;
  }

  .requirement-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 17px;
  }

  .requirement-icon {
    width: 44px;
    height: 44px;
  }

  .pricing-card {
    padding: 29px 25px;
  }

  .add-on-grid {
    gap: 0;
  }

  .founder-grid article {
    min-height: 330px;
    padding: 27px;
  }

  .faq-list summary {
    font-size: 0.98rem;
  }

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

  .contact-form {
    padding: 28px 22px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 42px 30px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom > p:last-child {
    text-align: left;
  }

  .legal-main {
    padding-top: calc(var(--header-height) + 55px);
  }

  .legal-card {
    padding: 30px 24px;
  }
}

@media (max-width: 470px) {
  .eyebrow {
    align-items: flex-start;
    border-radius: 13px;
  }

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

  .hero-assurances {
    display: grid;
  }

  .setup-panel-top {
    display: block;
  }

  .status-pill {
    margin-top: 12px;
  }

  .setup-timeline li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .timeline-state {
    display: none;
  }

  .floating-note {
    display: none;
  }

  .trust-items span:not(:first-child)::before {
    display: none;
  }

  .pricing-footnote {
    padding: 15px;
  }

  .contact-direct > a {
    align-items: flex-start;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }
}

@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;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
