@font-face {
  font-family: "Onest";
  src: url("assets/onest-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  src: url("assets/onest-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Caveat";
  src: url("assets/caveat-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Caveat";
  src: url("assets/caveat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cream: #f9f5ea;
  --page: #f8f5ec;
  --sand: #f3ecda;
  --sand-deep: #eee3c9;
  --ink: #1b1b1b;
  --ink-soft: #323232;
  --copy: #3d3d3d;
  --muted: #696969;
  --line: rgba(27, 27, 27, 0.13);
  --coral: #ff4a15;
  --coral-dark: #d73708;
  --coral-text: #c83206;
  --pink: #ff7fc4;
  --white: #fff;
  --success: #006a1d;
  --container: 1152px;
  --display: "Onest", "Helvetica Neue", Arial, sans-serif;
  --script: "Caveat", "Onest", sans-serif;
  --gradient: linear-gradient(56deg, #ff4a15 23%, #ff553a 38.58%, #ff6264 58.41%, #ff6c86 78.24%, #ff74a1 99.49%, #ff7fc4 164.65%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

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

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

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

p {
  text-wrap: pretty;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

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

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

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

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.utility-bar {
  position: relative;
  z-index: 101;
  min-height: 42px;
  background: #000;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.utility-inner,
.utility-links {
  display: flex;
  align-items: center;
}

.utility-inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p {
  margin: 0;
}

.utility-links {
  gap: 22px;
}

.utility-links a {
  text-decoration: none;
}

.utility-links a:hover {
  color: var(--pink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(249, 245, 234, 0.84);
  backdrop-filter: blur(16px) saturate(1.3);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(27, 27, 27, 0.05);
}

.nav-inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  text-decoration: none;
}

.brand-mark,
.mini-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: var(--white);
  font-weight: 900;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 20px;
  box-shadow: 0 7px 18px rgba(255, 74, 21, 0.2);
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

img.mini-logo {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name b {
  color: var(--coral-text);
}

.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 28px;
}

.desktop-nav a,
.text-link {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--coral);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 18px;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.cta-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("assets/arrow-up-right.svg") center / contain no-repeat;
  mask: url("assets/arrow-up-right.svg") center / contain no-repeat;
  transition: transform 180ms ease;
}

a:hover .cta-arrow,
button:hover .cta-arrow {
  transform: translate(1.5px, -1.5px);
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-primary:hover,
.button-dark:hover {
  background: var(--coral-dark);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--coral);
  color: var(--ink);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 127, 196, 0.14), transparent 30%),
    linear-gradient(264deg, rgba(238, 227, 201, 0.72) 23%, rgba(238, 227, 201, 0) 72%);
  content: "";
  pointer-events: none;
}

.hero-grid,
.split-grid,
.trust-grid,
.pricing-layout,
.process-grid,
.foreigner-grid,
.contact-grid {
  position: relative;
  display: grid;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 70px;
}

.eyebrow,
.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 74, 21, 0.12);
}

.hero h1,
.section-heading h2,
.trust-copy h2,
.split-copy h2,
.process-intro h2,
.foreigner-copy h2,
.contact-copy h2 {
  margin-bottom: 24px;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.1vw, 66px);
}

.accent-script {
  color: var(--coral);
  font-family: var(--script);
  font-size: 1.08em;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-copy,
.trust-copy,
.split-copy,
.process-intro,
.foreigner-copy,
.contact-copy {
  min-width: 0;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--copy);
  font-size: 19px;
  line-height: 1.45;
}

.source-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.source-hero-trust {
  display: flex;
  min-height: 24px;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.source-hero-trust > span {
  color: #00a67e;
  font-size: 22px;
  line-height: 1;
}

.source-hero-trust strong {
  font-size: 14px;
}

.source-hero-trust small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 12px;
}

.source-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 5.3vw, 68px);
  font-weight: 900;
  line-height: 0.9;
}

.source-hero-copy .hero-lead {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.source-hero-copy .hero-actions {
  margin: 0;
}

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

.hero-proof {
  display: grid;
  max-width: 610px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.proof-item {
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 2px;
  font-size: 16px;
}

.proof-item span {
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 458px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gradient);
  box-shadow: 0 30px 60px rgba(255, 74, 21, 0.12);
}

.hero-reference {
  min-height: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.hero-reference::after {
  display: none;
}

.hero-reference img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(255, 74, 21, 0.13);
}

.hero-reference figcaption {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  gap: 1px;
  border-radius: 10px;
  padding: 10px 13px;
  background: rgba(27, 27, 27, 0.92);
  color: var(--white);
  font-size: 12px;
  line-height: 1.35;
}

.hero-reference figcaption strong {
  color: var(--white);
  font-size: 13px;
}

.hero-reference figcaption span {
  color: rgba(255, 255, 255, 0.75);
}

.hero-visual::after {
  position: absolute;
  right: -58px;
  bottom: -74px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
}

.hero-orbit {
  position: absolute;
  top: 70px;
  right: 45px;
  width: 190px;
  height: 190px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.status-card,
.launch-card {
  position: absolute;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(27, 27, 27, 0.13);
}

.status-card {
  display: grid;
  min-width: 290px;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  padding: 12px;
}

.status-card-one {
  top: 58px;
  left: -28px;
  transform: rotate(-2deg);
}

.status-card-two {
  top: 158px;
  right: -38px;
  transform: rotate(2deg);
}

.status-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 4px;
  background: var(--sand);
  font-weight: 800;
}

.status-card span,
.status-card strong {
  display: block;
}

.status-card div > span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
}

.status-card div > strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-card .status-ok {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #dff5e4;
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
}

.launch-card {
  right: 42px;
  bottom: 40px;
  left: 42px;
  border-radius: 8px;
  padding: 22px;
}

.launch-topline,
.launch-brand,
.progress-label,
.launch-meta {
  display: flex;
  align-items: center;
}

.launch-topline {
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.live-pill {
  border-radius: 99px;
  padding: 4px 8px;
  background: #dff5e4;
  color: var(--success);
}

.launch-brand {
  gap: 11px;
  margin-bottom: 22px;
}

.mini-logo {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  border-radius: 7px;
}

.launch-brand small,
.launch-brand strong {
  display: block;
}

.launch-brand small {
  color: var(--muted);
  font-size: 10px;
}

.launch-brand strong {
  font-size: 13px;
}

.progress-label {
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 10px;
}

.progress {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--sand);
}

.progress span {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient);
}

.launch-meta {
  gap: 42px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 9px;
}

.launch-meta b {
  color: var(--ink);
  font-size: 11px;
}

.visual-note {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing,
.trust,
.split-feature,
.service-standards,
.process,
.foreigner,
.benefits,
.faq,
.contact-section {
  padding: 96px 0;
}

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

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

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2,
.trust-copy h2,
.split-copy h2,
.process-intro h2,
.foreigner-copy h2,
.contact-copy h2 {
  font-size: clamp(40px, 5vw, 64px);
}

.section-heading p:last-child,
.trust-copy > p,
.split-copy > p,
.process-intro > p,
.foreigner-copy > p,
.contact-copy > p {
  color: var(--copy);
  font-size: 18px;
  line-height: 1.5;
}

.kicker {
  margin-bottom: 17px;
  color: var(--coral-text);
}

.pricing-layout {
  grid-template-columns: 380px minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.price-card {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border-radius: 32px;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 11.6px 39.8px rgba(36, 38, 43, 0.07);
}

.price-card::before {
  position: absolute;
  top: -85px;
  right: -85px;
  width: 170px;
  height: 170px;
  border: 26px solid rgba(255, 74, 21, 0.08);
  border-radius: 50%;
  content: "";
}

.offer-badge {
  display: inline-flex;
  margin-bottom: 24px;
  border-radius: 99px;
  padding: 7px 10px;
  background: var(--coral-text);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.price-label {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
}

.main-price {
  margin-bottom: 3px;
  font-size: 51px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.main-price > span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.main-price small {
  font-size: 14px;
  letter-spacing: 0;
}

.price-caption,
.microcopy,
.pricing-note {
  color: var(--muted);
  font-size: 12px;
}

.price-divider {
  height: 1px;
  margin: 25px 0;
  background: var(--line);
}

.compact-checks,
.feature-list,
.accordion-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-checks {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
  font-size: 13px;
}

.compact-checks li {
  position: relative;
  padding-left: 23px;
}

.compact-checks li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  content: "✓";
  font-weight: 900;
}

.microcopy {
  margin: 10px 0 0;
  text-align: center;
}

.included-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.included {
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(36, 38, 43, 0.045);
}

.included-head .kicker {
  margin-bottom: 7px;
}

.included-head h3 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.included-head > strong {
  border-radius: 99px;
  padding: 7px 13px;
  background: rgba(200, 50, 6, 0.08);
  color: var(--coral-text);
  font-family: var(--script);
  font-size: 27px;
  font-style: italic;
}

.accordion-item {
  margin-bottom: 12px;
  border-radius: 16px;
  background: var(--cream);
}

.steps .accordion-item,
.faq-item {
  background: var(--sand);
}

.steps .accordion-item {
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.steps .accordion-item:last-child {
  border-bottom: 1px solid var(--line);
}

.steps .accordion-trigger {
  border-radius: 0;
}

.steps .accordion-trigger i {
  width: 42px;
  height: auto;
  justify-content: flex-start;
  border-radius: 0;
  background: transparent;
  font-size: 22px;
  font-weight: 900;
}

.included .accordion-item {
  margin: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.included .accordion-item:last-child {
  border-bottom: 0;
}

.included .accordion-trigger {
  min-height: 76px;
  padding-inline: 2px;
}

.included .accordion-trigger:focus-visible {
  outline-width: 2px;
  outline-offset: -2px;
}

.included .accordion-panel {
  padding: 0 52px 24px 46px;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-radius: inherit;
  padding: 16px 18px 16px 24px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 800;
}

.accordion-trigger > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.accordion-trigger i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--coral-text);
  font-size: 11px;
  font-style: normal;
}

.accordion-trigger > b {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 4px;
  background: var(--gradient);
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
}

.accordion-panel {
  overflow: hidden;
  padding: 0 24px 24px 68px;
  color: var(--copy);
}

.accordion-panel p {
  margin: 0;
}

.accordion-panel ul {
  display: grid;
  gap: 8px;
}

.accordion-panel li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.accordion-panel li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.extras-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.62fr);
  align-items: end;
  gap: 48px;
  margin-top: 74px;
  margin-bottom: 28px;
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.extras-head .kicker {
  margin-bottom: 8px;
}

.extras-head h3 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.extras-head > p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
}

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

.extra-card {
  position: relative;
  display: flex;
  min-height: 226px;
  grid-column: span 2;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(27, 27, 27, 0.09);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.extra-card.extra-wide {
  min-height: 258px;
  grid-column: span 3;
  padding: 28px;
}

.extra-card.extra-renewal {
  background: var(--ink);
  color: var(--white);
}

.extra-card.extra-accounting {
  background: linear-gradient(135deg, #fff 0%, #fff 58%, rgba(255, 127, 196, 0.12) 100%);
}

.extra-top {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: auto;
}

.extra-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: var(--sand);
  color: var(--coral-text);
  font-size: 17px;
  font-weight: 800;
}

.extra-renewal .extra-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--pink);
}

.extra-label {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.extra-renewal .extra-label {
  color: rgba(255, 255, 255, 0.6);
}

.extra-card > strong {
  display: block;
  margin: 24px 0 12px;
  color: var(--coral-text);
  font-size: 30px;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
}

.extra-wide > strong {
  font-size: 39px;
}

.extra-renewal > strong {
  color: var(--white);
}

.extra-card > strong small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0;
}

.extra-renewal > strong small {
  color: rgba(255, 255, 255, 0.6);
}

.extra-card p,
.extra-card li {
  color: var(--copy);
  font-size: 12px;
  line-height: 1.45;
}

.extra-card p {
  margin: 0;
}

.extra-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.extra-card li {
  position: relative;
  padding-left: 16px;
}

.extra-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.extra-renewal li {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-note {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.source-pricing-intro {
  max-width: 860px;
  margin: 0 auto 72px;
  text-align: center;
}

.source-pricing-intro h2 {
  margin: 0 0 24px;
  font-size: clamp(48px, 5.6vw, 68px);
  font-weight: 900;
  line-height: 0.88;
}

.source-pricing-intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--copy);
  font-size: 18px;
}

.source-pricing-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.source-offer {
  position: sticky;
  top: 100px;
  width: 100%;
  max-width: 380px;
  border-radius: 32px;
  background: #f5f4f1;
  box-shadow: 0 12px 40px rgba(36, 38, 43, 0.07);
}

.source-offer-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 32px;
  padding: 36px 32px;
  background: var(--white);
}

/* the copy fills the space above the button and centres vertically; the button stays pinned to the bottom */
.source-offer-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.source-offer-card h3 {
  max-width: 270px;
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.source-offer-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 5px;
}

.source-offer-price strong {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.82;
}

.source-offer-price span {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.source-offer-card p {
  max-width: 300px;
  margin: 16px 0 22px;
  color: var(--copy);
  font-size: 15px;
  line-height: 1.65;
}

.source-offer-pill {
  display: inline-flex;
  border-radius: 99px;
  padding: 6px 12px;
  background: var(--coral-text);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.source-offer-card .button {
  min-height: 44px;
  border-radius: 99px;
}

.source-offer-sticker {
  position: absolute;
  top: -48px;
  right: -16px;
  z-index: 3;
  display: grid;
  width: 117px;
  height: 117px;
  place-content: center;
  border-radius: 62% 42% 58% 46% / 46% 57% 43% 54%;
  background: var(--gradient);
  color: var(--white);
  filter: drop-shadow(0 8px 8px rgba(27, 27, 27, 0.16));
  text-align: center;
  transform: rotate(8deg);
}

.source-offer-sticker::before {
  position: absolute;
  top: 6px;
  left: 5px;
  width: 34px;
  height: 24px;
  border-radius: 80% 0 80% 10%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transform: rotate(-24deg);
}

.source-offer-sticker span,
.source-offer-sticker strong {
  position: relative;
  display: block;
  line-height: 1;
}

.source-offer-sticker span {
  font-size: 13px;
  font-weight: 800;
}

.source-offer-sticker strong {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 900;
}

.source-included-head {
  margin-bottom: 16px;
}

.source-included-head h3 {
  margin: 0;
  font-size: clamp(34px, 3.55vw, 48px);
  font-weight: 900;
  line-height: 0.96;
}

.source-included-head .accent-script {
  display: inline-block;
  font-size: 1.2em;
  line-height: 0.75;
}

.source-included-head p {
  margin: 3px 0 0;
  font-size: 18px;
}

.source-price-list {
  display: grid;
  gap: 16px;
}

.source-price-item {
  margin: 0;
  border-radius: 16px;
  background: var(--sand);
}

.source-price-item .accordion-trigger {
  min-height: 72px;
  border-radius: 16px;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 650;
}

.source-price-item .accordion-trigger > b {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 0;
}

.source-price-item .accordion-trigger > b::before {
  width: 26px;
  height: 26px;
  background: currentColor;
  content: "";
  -webkit-mask: url("assets/chevron-down.svg") center / contain no-repeat;
  mask: url("assets/chevron-down.svg") center / contain no-repeat;
  transform: translateY(-2px);
  transition: transform 180ms ease;
}

.source-price-item.is-open .accordion-trigger > b::before {
  transform: translateY(2px) rotate(180deg);
}

.source-price-item .accordion-panel {
  padding: 0 70px 24px 24px;
}

.source-price-item .accordion-panel li {
  font-size: 15px;
}

.reference-pricing {
  margin-top: 88px;
  border-radius: 30px;
  padding: 66px 28px 28px;
  background: #fdfdfd;
}

.reference-pricing-head {
  margin-bottom: 70px;
  text-align: center;
}

.reference-pricing-head h3 {
  margin: 0 0 34px;
  font-size: clamp(48px, 5.3vw, 68px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.pricing-country {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-country > div {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 7px rgba(27, 27, 27, 0.08);
  font-size: 15px;
}

.pricing-country i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-style: normal;
}

.pricing-country b {
  margin-left: 6px;
  font-weight: 500;
}

.reference-price-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reference-price-column {
  position: relative;
  min-width: 0;
  border-radius: 30px;
  padding-bottom: 24px;
  background: rgba(249, 249, 249, 0.92);
  box-shadow: 0 14px 32px rgba(27, 27, 27, 0.05);
}

.reference-price-cap {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  border-radius: 30px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(27, 27, 27, 0.11);
}

.reference-price-title {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
}

.reference-price-title img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.reference-price-title h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.reference-price-from {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.reference-price-value {
  margin: 0;
  font-size: 45px;
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 1;
}

.reference-price-value > span {
  margin-right: 3px;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.reference-price-value small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0;
}

.reference-price-caption {
  margin: 6px 0 24px;
  color: var(--copy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.reference-price-actions {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  margin-top: auto;
}

.reference-price-actions .button {
  min-height: 47px;
  padding: 11px 13px;
  font-size: 10px;
  white-space: nowrap;
}

.reference-price-benefits {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 28px 30px 8px 45px;
  list-style: disc;
}

.reference-price-benefits li {
  padding-left: 2px;
  font-size: 13px;
  line-height: 1.25;
}

.reference-price-benefits b,
.reference-price-benefits span {
  display: block;
}

.reference-price-benefits b {
  margin-bottom: 2px;
  font-size: 14px;
}

.reference-price-benefits span {
  color: var(--copy);
}

.reference-price-sticker {
  position: absolute;
  top: -51px;
  right: -9px;
  z-index: 3;
  display: grid;
  width: 98px;
  height: 98px;
  transform: rotate(9deg);
  place-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 7px 18px rgba(27, 27, 27, 0.16);
  font-family: var(--script);
  font-size: 62px;
  font-style: italic;
  line-height: 0.6;
  text-align: center;
  padding-bottom: 12px;
}

.reference-price-sticker strong {
  font-family: var(--display);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.trust-grid {
  grid-template-columns: 421px minmax(0, 1fr);
  gap: 70px;
}

.trust-copy > p,
.split-copy > p,
.process-intro > p,
.contact-copy > p {
  margin-bottom: 28px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

.feature-list li span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 74, 21, 0.11);
  color: var(--coral-dark);
  font-size: 12px;
}

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

.metric {
  position: relative;
  display: flex;
  min-height: 238px;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 26px;
  background: var(--sand);
  text-align: center;
}

.metric > strong {
  color: var(--coral-text);
  font-family: var(--script);
  font-size: 78px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.metric > p {
  max-width: 210px;
  margin: 14px 0 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.metric > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric-coral {
  background: var(--gradient);
  color: var(--ink);
}

.metric-coral > strong,
.metric-coral > span {
  color: var(--ink);
}

.metric-pattern::before {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: radial-gradient(var(--ink) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  content: "";
  mask-image: linear-gradient(135deg, transparent, #000);
}

.metric-pattern > * {
  position: relative;
}

.founder-trust {
  padding: 96px 0;
}

.founder-trust-title {
  max-width: 920px;
  margin: 0 auto 64px;
  font-size: clamp(48px, 5.3vw, 64px);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
}

.founder-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 421px) minmax(0, 1fr);
  align-items: start;
  gap: 70px;
}

.founder-trust-copy {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.founder-trust-copy h3 {
  width: 100%;
  margin: 0;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 900;
  line-height: 0.94;
  text-wrap: wrap;
}

.founder-trust-copy > p {
  margin: 0;
  color: var(--copy);
  font-size: 20px;
  line-height: 1.25;
}

.founder-trust-copy ul,
.founder-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-trust-copy ul {
  display: grid;
  gap: 13px;
}

.founder-trust-copy li {
  position: relative;
  padding-left: 18px;
  font-size: 17px;
  line-height: 1.3;
}

.founder-trust-copy li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--ink);
  content: "";
}

.founder-trust-copy .button {
  margin-top: 4px;
}

.founder-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.founder-metrics > li {
  position: relative;
  display: flex;
  min-height: 250px;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 28px 30px;
  background: var(--sand);
  text-align: center;
}

.founder-metrics strong {
  font-family: var(--script);
  font-size: clamp(72px, 8vw, 112px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.75;
}

.founder-metrics > li > span {
  width: 100%;
  height: 1px;
  margin: 25px 0 20px;
  background: rgba(27, 27, 27, 0.12);
}

.founder-metrics p {
  max-width: 260px;
  margin: 0;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.12;
}

.founder-metrics small {
  position: relative;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founder-metric-pattern::before {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image: radial-gradient(var(--ink) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  content: "";
  mask-image: linear-gradient(135deg, transparent, #000);
}

.founder-metric-pattern > * {
  position: relative;
}

.split-feature {
  border-top: 1px solid rgba(27, 27, 27, 0.05);
}

.split-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 82px;
}

.split-grid.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.mini-features {
  display: grid;
  gap: 22px;
  margin: 34px 0;
}

.mini-features article {
  display: flex;
  gap: 16px;
}

.mini-features h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.mini-features p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
}

.icon-box {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--sand);
  color: var(--coral-text);
  font-weight: 900;
}

.icon-box img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.dashboard-visual,
.portal-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coral), var(--pink));
}

.dashboard-visual::before,
.portal-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(#fff 1.2px, transparent 1.2px);
  background-size: 13px 13px;
  content: "";
  mask-image: linear-gradient(150deg, #000, transparent 68%);
}

.dashboard-reference {
  min-height: 0;
  aspect-ratio: 1008 / 906;
  margin: 0;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 18px;
  background: var(--page);
  box-shadow: 0 22px 50px rgba(27, 27, 27, 0.08);
}

.dashboard-reference::before {
  display: none;
}

.dashboard-reference img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.dash-window {
  position: absolute;
  top: 72px;
  right: 52px;
  left: 52px;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 50px rgba(27, 27, 27, 0.17);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dash-top .mini-logo {
  width: 30px;
  height: 30px;
  margin-right: auto;
  font-size: 12px;
}

.dash-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-top: 26px;
}

.dash-summary small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.dash-summary strong {
  font-size: 46px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.trend {
  border-radius: 99px;
  padding: 5px 8px;
  background: #dff5e4;
  color: var(--success);
  font-size: 11px;
}

.chart {
  display: flex;
  height: 95px;
  align-items: end;
  gap: 8px;
  margin-top: 20px;
  border-bottom: 1px solid var(--line);
}

.chart i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--gradient);
}

.chart i:nth-child(1) { height: 24%; }
.chart i:nth-child(2) { height: 44%; }
.chart i:nth-child(3) { height: 35%; }
.chart i:nth-child(4) { height: 68%; }
.chart i:nth-child(5) { height: 58%; }
.chart i:nth-child(6) { height: 84%; }
.chart i:nth-child(7) { height: 72%; }

.task-card {
  position: absolute;
  right: 24px;
  bottom: 44px;
  display: grid;
  min-width: 255px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  padding: 12px;
  background: var(--white);
  box-shadow: 0 20px 40px rgba(27, 27, 27, 0.18);
}

.task-card-two {
  right: auto;
  bottom: 100px;
  left: 24px;
}

.task-card > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--sand);
  color: var(--coral);
  font-weight: 900;
}

.task-card b,
.task-card small {
  display: block;
}

.task-card b {
  font-size: 12px;
}

.task-card small,
.task-card em {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
}

.task-card em {
  color: var(--success);
  font-weight: 800;
}

.certainty {
  padding: 52px 0 88px;
}

.certainty-card {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 56px;
  border-radius: 24px;
  padding: 54px;
  background: var(--ink);
  color: var(--white);
}

.certainty-card::before {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.16;
  background: radial-gradient(circle, rgba(255, 127, 196, 0.62) 0%, rgba(255, 74, 21, 0.22) 38%, transparent 70%);
  content: "";
}

.certainty-card > * {
  position: relative;
}

.certainty-copy {
  max-width: 520px;
}

.certainty-card h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.1vw, 52px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.certainty-copy > p:not(.kicker) {
  max-width: 510px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.kicker-light {
  color: rgba(255, 255, 255, 0.7);
}

.scope-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  padding: 8px;
  background: var(--page);
  color: var(--ink);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.scope-head,
.scope-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.scope-head {
  min-height: 82px;
  padding: 17px 18px;
}

.scope-head span,
.scope-head strong {
  display: block;
}

.scope-head span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scope-head strong {
  font-size: 16px;
}

.scope-head em {
  flex: 0 0 auto;
  border-radius: 99px;
  padding: 7px 10px;
  background: rgba(0, 106, 29, 0.09);
  color: var(--success);
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
}

.scope-list {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0 17px;
  background: var(--white);
  list-style: none;
}

.scope-list li {
  display: grid;
  min-height: 71px;
  grid-template-columns: 30px 1fr 26px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.scope-list li:last-child {
  border-bottom: 0;
}

.scope-list li > span {
  color: var(--coral-text);
  font-size: 10px;
  font-weight: 750;
}

.scope-list b,
.scope-list small {
  display: block;
}

.scope-list b {
  margin-bottom: 2px;
  font-size: 13px;
}

.scope-list small {
  color: var(--muted);
  font-size: 10px;
}

.scope-list i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 106, 29, 0.09);
  color: var(--success);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.scope-total {
  margin-top: 8px;
  border-radius: 11px;
  padding: 15px 18px;
  background: var(--sand);
}

.scope-total span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scope-total strong {
  max-width: 235px;
  color: var(--coral-text);
  font-size: 12px;
  text-align: right;
}

.certainty-steps {
  display: grid;
  gap: 12px;
}

.certainty-steps article {
  display: grid;
  min-height: 118px;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px 24px;
  background: #292525;
  color: var(--white);
}

.certainty-steps article:nth-child(2) {
  background: #352629;
}

.certainty-steps article:nth-child(3) {
  background: #242424;
}

.certainty-steps i {
  color: #ff7354;
  font-family: var(--script);
  font-size: 62px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.certainty-steps small,
.certainty-steps strong,
.certainty-steps span {
  display: block;
}

.certainty-steps small {
  margin-bottom: 3px;
  color: #ff8a6d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.certainty-steps strong {
  margin-bottom: 4px;
  font-size: 21px;
}

.certainty-steps span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.service-standards {
  padding: 96px 0 110px;
}

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

.standards-intro {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.standards-intro h2 {
  font-size: clamp(38px, 4.1vw, 52px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.standards-intro .button {
  margin-top: 26px;
}

.section-heading.light p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.kicker-coral {
  color: var(--coral);
}

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

.standards-grid article {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  background: var(--ink-soft);
  transition: transform 180ms ease, background 180ms ease;
}

.standards-grid article:hover {
  transform: translateY(-5px);
  background: #3a3a3a;
}

.standard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  padding-bottom: 42px;
}

.standard-top > span {
  color: var(--coral);
  font-family: var(--script);
  font-size: 74px;
  font-weight: 700;
  line-height: 1;
}

.standard-top > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--pink);
  font-size: 16px;
  font-style: normal;
}

.standards-grid h3 {
  margin-bottom: 13px;
  font-size: 28px;
  font-weight: 720;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.standards-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.42;
}

.process-grid {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 86px;
}

.process-intro {
  position: sticky;
  top: 110px;
}

.steps .accordion-panel {
  padding-right: 64px;
}

.steps .step {
  margin-bottom: 0;
}

.foreigner-grid {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 74px;
}

.foreigner-copy > p {
  color: var(--copy);
  font-size: 17px;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-underline-offset: 5px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-arrow span {
  color: var(--coral);
  font-size: 22px;
}

.doc-requirements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.requirement-card {
  min-height: 430px;
  border-radius: 16px;
  padding: 18px;
  background: var(--white);
}

.requirement-card h3,
.requirement-card p {
  padding-inline: 6px;
}

.requirement-card h3 {
  margin: 22px 0 10px;
  font-size: 25px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.requirement-card p {
  margin: 0;
  color: var(--copy);
  font-size: 13px;
}

.requirement-visual {
  position: relative;
  display: grid;
  min-height: 240px;
  overflow: hidden;
  place-items: center;
  border-radius: 12px;
  background: var(--gradient);
}

.requirement-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 11px 11px;
  content: "";
  mask-image: linear-gradient(135deg, transparent 20%, #000);
}

.requirement-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 66%;
  height: auto;
  max-height: 148px;
  object-fit: contain;
}

.benefit-list {
  max-width: 1023px;
  margin-inline: auto;
}

.benefit-row {
  display: grid;
  min-height: 145px;
  grid-template-columns: 52px 1fr 88px;
  align-items: center;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.benefit-row:last-child {
  border-bottom: 1px solid var(--line);
}

.benefit-num {
  color: var(--coral);
  font-family: var(--script);
  font-size: 48px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.standard-top > i img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.benefit-row h3 {
  margin-bottom: 9px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.benefit-row p {
  max-width: 720px;
  margin: 0;
  color: var(--copy);
  font-size: 15px;
}

.benefit-symbol {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 12px;
  background: var(--sand);
  color: var(--coral-text);
  font-family: var(--script);
  font-size: 33px;
  font-weight: 900;
}

.benefit-symbol img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.owner-proof {
  overflow: hidden;
  padding: 98px 0;
}

.owner-proof-head {
  max-width: 850px;
  margin: 0 auto 52px;
  text-align: center;
}

.owner-proof-head h2 {
  margin: 0 0 22px;
  font-size: clamp(43px, 5.2vw, 68px);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.owner-proof-head > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.owner-proof-grid {
  position: relative;
  display: grid;
  max-height: none;
  overflow: visible;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 48px 0;
}

.owner-proof-grid::before,
.owner-proof-grid::after {
  display: none;
  content: none;
}

.owner-proof-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 30px;
  background: var(--ink-soft);
}

.owner-proof-card:nth-child(2n) {
  background: #292929;
}

.owner-proof-card.owner-proof-tall {
  min-height: 350px;
}

.owner-proof-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  border-radius: 13px;
  padding: 8px;
  border: 1px solid rgba(255, 111, 81, 0.18);
  background: linear-gradient(145deg, #fffaf0, #eee5d3);
  object-fit: contain;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.owner-proof-card img[src$=".svg"] {
  filter: none;
  opacity: 1;
}

.owner-proof-card > span {
  margin-bottom: 17px;
  color: #ff7a51;
  font-size: 19.5px;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.1;
}

.owner-proof-card > p {
  flex: 1;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 580;
  letter-spacing: -0.025em;
  line-height: 1.26;
}

.owner-proof-card > strong {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 650;
}

.mid-cta {
  padding: 78px 0 96px;
}

.mid-cta-card {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 24px;
  padding: 42px;
  background: var(--ink);
  color: var(--white);
}

.mid-cta-card span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.mid-cta-card h2 {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: 40px;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.faq {
  padding-top: 30px;
}

.faq-container {
  max-width: 920px;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.faq-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 9px 15px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.faq-tabs button:hover,
.faq-tabs button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.faq-item[hidden] {
  display: none;
}

.faq-item .accordion-panel {
  padding-left: 24px;
  font-size: 15px;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 86px;
}

.contact-options {
  display: grid;
  width: 100%;
  gap: 10px;
}

.contact-points {
  display: grid;
  max-width: none;
  gap: 10px;
  margin-top: 0;
}

.contact-points a {
  display: grid;
  min-height: 82px;
  grid-template-columns: 48px 1fr 34px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-points a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 74, 21, 0.35);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 9px;
  background: var(--white);
}

.contact-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

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

.contact-detail small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-detail strong {
  font-size: 14px;
}

.contact-points a > b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: var(--gradient);
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}

.contact-schedule {
  display: flex;
  max-width: none;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  border-radius: 12px;
  padding: 14px;
  background: var(--sand-deep);
}

.contact-schedule img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.contact-schedule p {
  margin: 0;
}

.contact-schedule span,
.contact-schedule strong {
  display: block;
}

.contact-schedule span {
  color: #626262;
  font-size: 10px;
  text-transform: uppercase;
}

.contact-schedule strong {
  font-size: 13px;
}

.lead-form {
  border-radius: 20px;
  padding: 36px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(27, 27, 27, 0.06);
}

.form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.form-service-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  margin-left: auto;
  object-fit: contain;
}

.form-head h3 {
  margin: 0 0 2px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.lead-form > label:not(.check-label) {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
}

.lead-form input[type="text"],
.lead-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: var(--cream);
  font-size: 15px;
  font-weight: 400;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #7a766e;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 4px 0 20px;
  color: var(--muted);
  font-size: 11px;
}

.check-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--ink);
}

.form-policy {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin: -14px 0 12px 27px;
  color: var(--coral-text);
  font-size: 11px;
  font-weight: 700;
  text-underline-offset: 3px;
}

.form-collection-notice {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.form-fallback {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 7px;
  color: var(--coral-text);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--success);
  font-size: 12px;
  text-align: center;
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 58px;
  padding-bottom: 58px;
}

.brand-inverse {
  color: var(--white);
}

.brand-inverse .brand-name b {
  color: var(--pink);
}

.footer-brand p {
  max-width: 270px;
  margin: 24px 0;
  font-size: 14px;
}

.footer-brand > a:not(.brand) {
  display: block;
  width: max-content;
  margin-top: 7px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
}

.footer-column a:hover,
.footer-brand > a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

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

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

.footer-bottom a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding-block: 5px;
  text-underline-offset: 3px;
}

.mobile-cta {
  display: none;
}

.legal-shell {
  min-height: 100vh;
  padding: 72px 0 96px;
  background: var(--cream);
}

.legal-header {
  position: static;
}

.legal-wrap {
  width: min(calc(100% - 32px), 820px);
  margin-inline: auto;
}

.legal-wrap .kicker {
  margin-bottom: 18px;
}

.legal-wrap > h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.legal-updated {
  margin-bottom: 50px;
  color: var(--muted);
  font-size: 13px;
}

.legal-card {
  border-radius: 16px;
  padding: 38px;
  background: var(--white);
}

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

.legal-card h2 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.legal-card p,
.legal-card li {
  color: var(--copy);
  font-size: 15px;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card a {
  color: var(--coral-text);
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-back {
  display: inline-flex;
  margin-top: 28px;
}

.reveal {
  opacity: 1;
  transform: none;
}

/*
 * Motion is progressively enhanced by app.js. Content stays visible when
 * JavaScript is unavailable; only registered elements are hidden for reveal.
 */
html.motion-ready [data-motion] {
  --motion-x: 0px;
  --motion-y: 20px;
  --motion-scale: 1;
  --parallax-y: 0px;
  --hover-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --motion-delay: 0ms;
  opacity: 0;
  transform: perspective(1100px)
    translate3d(var(--motion-x), calc(var(--motion-y) + var(--parallax-y) + var(--hover-y)), 0)
    scale(var(--motion-scale))
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transform-origin: 50% 50%;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay);
  will-change: opacity, transform;
}

html.motion-ready [data-motion="left"] {
  --motion-x: -26px;
  --motion-y: 4px;
}

html.motion-ready [data-motion="right"] {
  --motion-x: 26px;
  --motion-y: 4px;
}

html.motion-ready [data-motion="visual-right"] {
  --motion-x: 34px;
  --motion-y: 8px;
  --motion-scale: 0.985;
}

html.motion-ready [data-motion="soft"] {
  --motion-y: 12px;
}

html.motion-ready [data-motion].is-visible {
  --motion-x: 0px;
  --motion-y: 0px;
  --motion-scale: 1;
  opacity: 1;
}

html.motion-ready [data-motion].is-motion-settled {
  --motion-delay: 0ms;
  will-change: auto;
}

html.motion-ready [data-motion][data-parallax],
html.motion-ready [data-motion][data-tilt] {
  will-change: transform;
}

html.motion-ready [data-visual-reveal] {
  overflow: hidden;
}

html.motion-ready [data-visual-reveal] > img {
  transform: scale(1.025);
  transform-origin: 50% 50%;
  transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--motion-delay) + 80ms);
  will-change: transform;
}

html.motion-ready [data-visual-reveal].is-visible > img {
  transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
  html.motion-ready [data-tilt].is-visible {
    transition:
      opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay),
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay),
      background-color 180ms ease,
      border-color 180ms ease,
      box-shadow 220ms ease;
  }

  html.motion-ready .standards-grid [data-tilt].is-visible:hover,
  html.motion-ready .owner-proof-grid [data-tilt].is-visible:hover {
    border-color: rgba(255, 125, 91, 0.24);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
  }
}

@media (max-width: 900px) {
  html.motion-ready [data-motion="left"],
  html.motion-ready [data-motion="right"],
  html.motion-ready [data-motion="visual-right"] {
    --motion-x: 0px;
    --motion-y: 14px;
  }

  html.motion-ready [data-motion="visual-right"] {
    --motion-scale: 0.99;
  }
}

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

  .desktop-nav a,
  .text-link {
    font-size: 11px;
  }

  .hero-grid {
    gap: 42px;
  }

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

  .extra-card,
  .extra-card.extra-wide {
    grid-column: span 1;
  }

  .reference-pricing {
    padding-inline: 20px;
  }

  .reference-price-columns {
    gap: 10px;
  }

  .reference-price-cap {
    padding: 24px;
  }

  .reference-price-title h4 {
    font-size: 17px;
  }

  .reference-price-value {
    font-size: 40px;
  }

  .reference-price-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 58px;
  }

  .utility-bar,
  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .site-header {
    position: sticky;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 99;
    height: calc(100dvh - 58px);
    overflow-y: auto;
    padding: 24px 16px 110px;
    background: var(--cream);
  }

  .mobile-menu.is-open {
    display: grid;
    align-content: start;
  }

  .mobile-menu a {
    border-bottom: 1px solid var(--line);
    padding: 18px 4px;
    text-decoration: none;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .hero,
  .pricing,
  .trust,
  .split-feature,
  .service-standards,
  .process,
  .foreigner,
  .benefits,
  .faq,
  .contact-section {
    padding: 72px 0;
  }

  .hero-grid,
  .pricing-layout,
  .trust-grid,
  .split-grid,
  .split-grid.reverse,
  .process-grid,
  .foreigner-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

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

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

  .hero-reference {
    min-height: 0;
  }

  .pricing-layout,
  .trust-grid,
  .split-grid,
  .process-grid,
  .foreigner-grid,
  .contact-grid {
    gap: 54px;
  }

  .price-card,
  .process-intro {
    position: relative;
    top: auto;
  }

  .price-card {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .trust-copy {
    order: 2;
  }

  .metric-grid {
    order: 1;
  }

  .split-copy {
    order: 2;
  }

  .dashboard-visual,
  .portal-visual {
    order: 1;
  }

  .extras-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .certainty-card {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 42px;
  }

  .standards-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .standards-intro {
    position: relative;
    top: auto;
    max-width: 680px;
  }

  .reference-pricing {
    padding: 52px 24px 24px;
  }

  .reference-pricing-head {
    margin-bottom: 54px;
  }

  .reference-price-columns {
    max-width: 620px;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-inline: auto;
  }

  .reference-price-cap {
    min-height: 310px;
    padding: 30px;
  }

  .reference-price-actions {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .reference-price-sticker {
    top: -20px;
    right: -12px;
  }

  .owner-proof-grid {
    max-height: none;
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .owner-proof-grid::before,
  .owner-proof-grid::after {
    display: none;
  }

  .owner-proof-card,
  .owner-proof-card.owner-proof-tall {
    min-height: 300px;
  }

  .foreigner-copy {
    max-width: 700px;
  }

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

  .footer-column:last-child {
    grid-column: 2;
  }

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

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

@media (max-width: 640px) {
  html {
    scroll-padding-top: 52px;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-inner {
    min-height: 52px;
  }

  .mobile-menu {
    top: 100%;
    height: calc(100dvh - 52px);
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero,
  .pricing,
  .trust,
  .split-feature,
  .service-standards,
  .process,
  .foreigner,
  .benefits,
  .faq,
  .contact-section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(40px, 11.5vw, 48px);
  }

  .accent-script {
    white-space: normal;
  }

  .hero-lead {
    font-size: 16px;
  }

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

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

  .hero-proof {
    gap: 0;
    margin-top: 34px;
  }

  .proof-item {
    padding-inline: 10px;
  }

  .proof-item strong {
    font-size: 13px;
  }

  .proof-item span {
    font-size: 10px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-reference {
    min-height: 0;
  }

  .status-card {
    min-width: 240px;
  }

  .status-card-one {
    top: 42px;
    left: -34px;
  }

  .status-card-two {
    top: 126px;
    right: -48px;
  }

  .launch-card {
    right: 22px;
    bottom: 34px;
    left: 22px;
  }

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

  .section-heading h2,
  .trust-copy h2,
  .split-copy h2,
  .process-intro h2,
  .foreigner-copy h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .section-heading p:last-child,
  .trust-copy > p,
  .split-copy > p,
  .process-intro > p,
  .foreigner-copy > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .pricing-layout,
  .trust-grid,
  .split-grid,
  .process-grid,
  .foreigner-grid,
  .contact-grid {
    gap: 42px;
  }

  .price-card {
    border-radius: 24px;
    padding: 26px;
  }

  .main-price {
    font-size: 45px;
  }

  .included-head {
    display: block;
  }

  .included {
    border-radius: 18px;
    padding: 20px;
  }

  .included-head > strong {
    display: inline-block;
    margin-top: 10px;
    font-size: 23px;
  }

  .included .accordion-trigger {
    min-height: 68px;
    padding-inline: 0;
  }

  .included .accordion-panel {
    padding: 0 4px 20px 39px;
  }

  .accordion-trigger {
    min-height: 66px;
    padding: 13px 13px 13px 16px;
    font-size: 14px;
  }

  .accordion-trigger > span {
    gap: 9px;
  }

  .accordion-trigger > b {
    width: 38px;
    height: 38px;
  }

  .accordion-panel,
  .steps .accordion-panel,
  .faq-item .accordion-panel {
    padding: 0 16px 20px;
    font-size: 13px;
  }

  .accordion-panel ul {
    padding-left: 0;
  }

  .extras-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-right: 0;
    overflow: visible;
  }

  .extras-head {
    margin-top: 54px;
    padding-top: 40px;
  }

  .extras-head h3 {
    font-size: 34px;
  }

  .extra-card,
  .extra-card.extra-wide {
    min-height: 220px;
    padding: 23px;
  }

  .metric-grid {
    gap: 9px;
  }

  .metric {
    min-height: 190px;
    padding: 18px 12px;
  }

  .metric > strong {
    font-size: 54px;
  }

  .metric > p {
    font-size: 12px;
  }

  .metric > span {
    font-size: 8px;
  }

  .dashboard-visual {
    min-height: 410px;
  }

  .dashboard-reference {
    min-height: 0;
  }

  .dash-window {
    top: 45px;
    right: 24px;
    left: 24px;
  }

  .task-card {
    min-width: 215px;
  }

  .certainty {
    padding: 32px 0 58px;
  }

  .certainty-card {
    gap: 34px;
    border-radius: 18px;
    padding: 30px 22px 22px;
  }

  .certainty-card h2 {
    font-size: 36px;
  }

  .scope-card {
    padding: 6px;
  }

  .scope-head {
    min-height: 76px;
    padding: 14px 12px;
  }

  .scope-list {
    padding-inline: 12px;
  }

  .scope-list li {
    min-height: 74px;
    grid-template-columns: 25px 1fr 24px;
    gap: 8px;
  }

  .scope-list small {
    font-size: 9px;
  }

  .scope-total {
    align-items: flex-start;
    padding: 14px 12px;
  }

  .scope-total strong {
    max-width: 180px;
  }

  .certainty-steps article {
    min-height: 112px;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 14px;
    border-radius: 15px;
    padding: 16px;
  }

  .certainty-steps i {
    font-size: 48px;
  }

  .certainty-steps strong {
    font-size: 19px;
  }

  .certainty-steps span {
    font-size: 12px;
  }

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

  .standards-grid article {
    min-height: 218px;
    padding: 24px;
  }

  .standard-top {
    padding-bottom: 32px;
  }

  .doc-requirements {
    grid-template-columns: 1fr;
  }

  .requirement-card {
    min-height: 400px;
  }

  .reference-pricing {
    margin-top: 58px;
    border-radius: 20px;
    padding: 38px 12px 12px;
  }

  .reference-pricing-head {
    margin-bottom: 48px;
  }

  .reference-pricing-head h3 {
    margin-bottom: 26px;
    font-size: 39px;
    line-height: 0.9;
  }

  .pricing-country {
    display: grid;
    gap: 8px;
    justify-items: center;
  }

  .reference-price-cap {
    min-height: 320px;
    border-radius: 22px;
    padding: 24px;
  }

  .reference-price-column {
    border-radius: 22px;
  }

  .reference-price-value {
    font-size: 40px;
  }

  .reference-price-actions {
    grid-template-columns: 1fr 0.82fr;
  }

  .reference-price-benefits {
    padding: 26px 24px 10px 39px;
  }

  .reference-price-sticker {
    right: -3px;
    width: 78px;
    height: 78px;
    font-size: 27px;
  }

  .owner-proof {
    padding: 66px 0;
  }

  .owner-proof-head {
    margin-bottom: 40px;
    text-align: left;
  }

  .owner-proof-head h2 {
    font-size: 42px;
  }

  .owner-proof-grid {
    grid-template-columns: 1fr;
  }

  .owner-proof-card,
  .owner-proof-card.owner-proof-tall {
    min-height: 0;
    padding: 25px;
  }

  .owner-proof-card > p {
    font-size: 18px;
  }

  .benefit-row {
    grid-template-columns: 50px 1fr;
    align-items: start;
    gap: 14px;
  }

  .benefit-num {
    font-size: 42px;
  }

  .benefit-symbol {
    display: none;
  }

  .benefit-row h3 {
    font-size: 20px;
  }

  .benefit-row p {
    font-size: 13px;
  }

  .mid-cta {
    padding-bottom: 58px;
  }

  .mid-cta-card {
    display: block;
    border-radius: 18px;
    padding: 30px 22px;
  }

  .mid-cta-card h2 {
    margin-bottom: 26px;
    font-size: 35px;
  }

  .faq {
    padding-top: 18px;
  }

  .faq-tabs {
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 0;
    overflow: visible;
    padding-right: 0;
  }

  .faq-tabs button {
    flex: 0 0 auto;
  }

  .lead-form {
    border-radius: 14px;
    padding: 24px 18px;
  }

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

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

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom div {
    display: grid;
    gap: 8px;
  }

  .legal-shell {
    padding: 50px 0 70px;
  }

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

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 7px;
    border-top: 1px solid var(--line);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(249, 245, 234, 0.95);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-cta a:last-child {
    background: var(--ink);
    color: var(--white);
  }
}

@media (max-width: 360px) {
  .reference-price-actions {
    grid-template-columns: 1fr;
  }

  .founder-trust-copy h3 {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  .source-pricing-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .source-offer {
    position: relative;
    top: auto;
    width: min(100%, 460px);
    max-width: none;
    margin-inline: auto;
  }

  .source-included {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .founder-trust-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .founder-trust-copy {
    order: 2;
    max-width: 680px;
  }

  .founder-metrics {
    order: 1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .source-hero-copy {
    gap: 25px;
  }

  .source-hero-trust {
    flex-wrap: wrap;
  }

  .source-hero-trust small {
    width: 100%;
    margin: -5px 0 0 28px;
  }

  .source-hero-copy h1 {
    font-size: 44px;
    line-height: 0.92;
  }

  .source-hero-copy h1 .accent-script {
    display: block;
    margin-top: 5px;
  }

  .source-hero-copy .hero-lead {
    font-size: 17px;
    line-height: 1.38;
  }

  .source-pricing-intro {
    margin-bottom: 54px;
  }

  .source-pricing-intro h2 {
    font-size: 40px;
    line-height: 0.9;
  }

  .source-pricing-intro p {
    font-size: 16px;
  }

  .source-offer-card {
    min-height: 385px;
    border-radius: 24px;
    padding: 26px;
  }

  .source-offer {
    border-radius: 24px;
  }

  .source-offer-sticker {
    top: -39px;
    right: -3px;
    width: 94px;
    height: 94px;
  }

  .source-offer-sticker span {
    font-size: 10px;
  }

  .source-offer-sticker strong {
    font-size: 14px;
  }

  .source-offer-card h3 {
    max-width: 220px;
    font-size: 21px;
  }

  .source-offer-price strong {
    font-size: 48px;
  }

  .source-included-head h3 {
    font-size: 38px;
  }

  .source-included-head p {
    font-size: 16px;
  }

  .source-price-item .accordion-trigger {
    min-height: 66px;
    padding: 10px 15px 10px 18px;
    font-size: 17px;
  }

  .source-price-item .accordion-trigger > b {
    width: 38px;
    height: 38px;
  }

  .source-price-item .accordion-panel {
    padding: 0 20px 22px;
  }

  .founder-trust {
    padding: 68px 0;
  }

  .founder-trust-title {
    margin-bottom: 44px;
    font-size: 42px;
  }

  .founder-trust-copy h3 {
    font-size: clamp(36px, 10.3vw, 40px);
  }

  .founder-trust-copy h3 .accent-script {
    display: block;
    margin-top: 7px;
    white-space: normal;
  }

  .founder-trust-copy > p {
    font-size: 18px;
  }

  .founder-trust-copy li {
    font-size: 16px;
  }

  .founder-trust-copy .button {
    width: 100%;
  }

  .founder-metrics {
    gap: 12px;
  }

  .founder-metrics > li {
    min-height: 205px;
    padding: 18px 14px;
  }

  .founder-metrics strong {
    font-size: 64px;
  }

  .founder-metrics > li > span {
    margin: 18px 0 15px;
  }

  .founder-metrics p {
    font-size: 14px;
  }

  .founder-metrics small {
    font-size: 8px;
  }

  .standards-grid article {
    min-height: 260px;
  }

  .standard-top > span {
    font-size: 35px;
  }

  .standards-grid h3 {
    font-size: 26px;
  }

  .standards-grid p {
    font-size: 16px;
  }

  .mid-cta {
    padding-top: 52px;
  }
}

@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,
  html.motion-ready [data-motion] {
    opacity: 1;
    transform: none !important;
  }

  html.motion-ready [data-visual-reveal] > img {
    transform: none !important;
  }
}

body h1,
body h2,
body h3 {
  letter-spacing: -0.022em;
}
