:root {
  --yellow: #ffd400;
  --yellow-deep: #f2c700;
  --yellow-soft: #fff8cc;
  --ink: #171713;
  --ink-soft: #4e4e47;
  --white: #ffffff;
  --warm-white: #fffdf5;
  --line: #e7e4d8;
  --muted: #77766f;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 26px 70px rgba(35, 32, 16, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  color: var(--ink);
  background: var(--yellow);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(23, 23, 19, 0.08);
  box-shadow: 0 10px 34px rgba(36, 33, 18, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  width: 38px;
  height: 38px;
  padding: 7px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--yellow);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(23, 23, 19, 0.04);
}

.brand-mark span {
  display: block;
  background: var(--ink);
  border-radius: 1px;
}

.brand-mark span:last-child {
  background: var(--white);
}

.brand-name {
  display: grid;
  gap: 4px;
}

.brand-name strong {
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-size: 20px;
  letter-spacing: -0.7px;
}

.brand-name small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 20px;
  background: var(--yellow);
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 199, 0, 0.28);
}

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

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 750px;
  padding: 166px 0 96px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255, 212, 0, 0.04), transparent 35%),
    var(--warm-white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -240px;
  width: 590px;
  height: 590px;
  border: 100px solid rgba(255, 212, 0, 0.09);
  border-radius: 50%;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(23, 23, 19, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -230px;
  left: -250px;
  width: 580px;
  height: 580px;
}

.hero-orbit-two {
  top: -155px;
  left: -175px;
  width: 430px;
  height: 430px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #636259;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
}

.hero h1,
.section-heading h2,
.about h2,
.process h2,
.contact h2 {
  margin: 0;
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -2.6px;
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(52px, 5.35vw, 78px);
}

.hero-intro {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 54px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 23, 19, 0.14);
}

.button-dark:hover {
  background: #2a2a24;
  box-shadow: 0 16px 34px rgba(23, 23, 19, 0.2);
}

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

.button-yellow:hover {
  background: #ffe14d;
  box-shadow: 0 14px 28px rgba(255, 212, 0, 0.16);
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof {
  margin-top: 39px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.proof-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--yellow-soft);
  border-radius: 50%;
}

.proof-icon svg {
  width: 23px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof p {
  margin: 0;
  display: grid;
  line-height: 1.4;
}

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

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

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  height: 518px;
  overflow: hidden;
  border-radius: 4px 76px 4px 4px;
  box-shadow: var(--shadow);
}

.hero-image-wrap picture,
.hero-image-wrap img {
  width: 100%;
  height: 100%;
}

.hero-image-wrap img {
  object-fit: cover;
  object-position: 59% center;
}

.image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 42%;
  background: var(--yellow);
}

.floating-note {
  position: absolute;
  z-index: 4;
  right: -21px;
  bottom: 38px;
  min-width: 276px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 20px 50px rgba(31, 29, 20, 0.18);
}

.note-icon {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--yellow);
  border-radius: 9px;
}

.note-icon svg {
  width: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-note > span:last-child {
  display: grid;
  line-height: 1.35;
}

.floating-note strong {
  font-size: 14px;
}

.floating-note small {
  color: var(--muted);
  font-size: 12px;
}

.dot-grid {
  position: absolute;
  z-index: 0;
  right: -45px;
  top: -36px;
  width: 128px;
  height: 128px;
  opacity: 0.5;
  background-image: radial-gradient(var(--yellow-deep) 1.6px, transparent 1.6px);
  background-size: 13px 13px;
}

.trust-bar {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-item {
  min-height: 48px;
  padding-inline: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

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

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

.trust-item > span {
  color: var(--yellow-deep);
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.trust-item p {
  margin: 0;
  display: grid;
  line-height: 1.45;
}

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

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

.section {
  padding: 132px 0;
}

.services {
  overflow: hidden;
}

.section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.about h2,
.process h2,
.contact h2 {
  font-size: clamp(40px, 4.3vw, 59px);
}

.section-heading > p {
  margin: 0 0 3px;
  color: var(--ink-soft);
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 508px;
  padding: 34px 33px 29px;
  display: flex;
  flex-direction: column;
  background: #faf9f5;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 20px 50px rgba(27, 25, 16, 0.09);
}

.service-card-featured {
  background: var(--yellow);
}

.service-card-featured:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(242, 199, 0, 0.22);
}

.card-label {
  position: absolute;
  top: 0;
  right: 29px;
  padding: 7px 12px 8px;
  color: var(--white);
  background: var(--ink);
  border-radius: 0 0 8px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: #9a9991;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.service-card-featured .service-number {
  color: rgba(23, 23, 19, 0.6);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
}

.service-card:not(.service-card-featured) .service-icon {
  background: var(--yellow-soft);
}

.service-icon svg {
  width: 31px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 38px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.7px;
}

.service-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.service-card ul {
  margin: 25px 0 31px;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 19px;
  font-size: 13px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--yellow-deep);
  border-radius: 50%;
}

.service-card-featured li::before {
  background: var(--ink);
}

.service-card > a {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.service-card > a span {
  margin-left: 7px;
}

.about {
  padding: 122px 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 110px;
  align-items: center;
}

.about-panel {
  position: relative;
}

.about-panel::before {
  content: "";
  position: absolute;
  top: -48px;
  left: -54px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 212, 0, 0.35);
  border-radius: 50%;
}

.eyebrow-light {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
}

.about h2 {
  position: relative;
  max-width: 570px;
}

.about-panel > p:not(.eyebrow) {
  max-width: 580px;
  margin: 27px 0 36px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 17px;
  line-height: 1.8;
}

.about-values {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.value-card {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 26px;
  background: var(--ink);
}

.value-card > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.value-card h3 {
  margin: 0 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.7;
}

.process {
  background: var(--warm-white);
}

.process-heading {
  margin-bottom: 69px;
  text-align: center;
}

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

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  border-top: 1px dashed #cec9b3;
}

.process-step {
  position: relative;
  text-align: center;
}

.step-dot {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border: 9px solid var(--warm-white);
  outline: 1px solid var(--yellow);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
}

.process-step p {
  max-width: 320px;
  margin: auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact {
  padding: 128px 0;
  background: var(--yellow);
  overflow: hidden;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 95px;
  align-items: center;
}

.contact-grid::before {
  content: "";
  position: absolute;
  left: -220px;
  bottom: -315px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(23, 23, 19, 0.14);
  border-radius: 50%;
}

.contact .eyebrow {
  color: rgba(23, 23, 19, 0.67);
}

.contact .eyebrow span {
  background: var(--ink);
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-copy > p:not(.eyebrow) {
  margin: 25px 0 38px;
  color: rgba(23, 23, 19, 0.7);
  font-size: 17px;
  line-height: 1.75;
}

.contact-direct > a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-direct > a > span:first-child {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
}

.contact-direct svg {
  width: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-direct > a > span:last-child {
  min-width: 0;
  display: grid;
  line-height: 1.45;
}

.contact-direct small {
  color: rgba(23, 23, 19, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-direct strong {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.response-note {
  margin-top: 20px;
  padding-left: 4px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(23, 23, 19, 0.7);
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #378b42;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

.form-card {
  position: relative;
  z-index: 1;
  padding: 43px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(79, 65, 0, 0.17);
}

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

.field {
  position: relative;
  margin-bottom: 18px;
}

.field label {
  margin-bottom: 6px;
  display: block;
  color: #54534d;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #faf9f5;
  border: 1px solid #e7e4da;
  border-radius: 7px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: #bb9d00;
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.2);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #ba3d3d;
}

.field-error,
.privacy-error {
  display: none;
  margin-top: 5px;
  color: #a42a2a;
  font-size: 11px;
  line-height: 1.4;
}

.field.invalid .field-error,
.privacy-error.visible {
  display: block;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  cursor: pointer;
}

.check-field input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--yellow-deep);
}

.check-field a {
  color: var(--ink);
  border-bottom: 1px solid;
}

.submit-button {
  width: 100%;
  margin-top: 22px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-hint {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  color: #2d6835;
  background: #edf8ee;
  border-radius: 7px;
  font-size: 12px;
  text-align: center;
}

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

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  min-height: 185px;
  display: grid;
  grid-template-columns: 0.8fr 1.05fr 1fr;
  align-items: center;
  gap: 60px;
}

.brand-footer .brand-name small {
  color: rgba(255, 255, 255, 0.48);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
  line-height: 1.7;
}

.footer-mail {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--yellow);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.43);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 11px;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.reveal[data-delay="2"] {
  transition-delay: 180ms;
}

.reveal[data-delay="3"] {
  transition-delay: 270ms;
}

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

@media (max-width: 1060px) {
  .hero {
    min-height: 710px;
  }

  .hero-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 38px;
  }

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

  .hero-image-wrap {
    height: 470px;
  }

  .floating-note {
    right: -8px;
  }

  .about-grid {
    gap: 70px;
  }

  .contact-grid {
    gap: 55px;
  }

  .form-card {
    padding: 34px;
  }
}

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

  .header-inner {
    height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

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

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

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    padding: 110px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    background: var(--warm-white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 0;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-cta {
    width: auto;
    margin-top: 18px;
    padding: 13px 23px;
    font-size: 15px;
    border: 0;
  }

  .hero {
    padding: 125px 0 82px;
  }

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

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

  .hero h1 {
    max-width: 620px;
    font-size: clamp(49px, 8.5vw, 70px);
  }

  .hero-visual {
    width: 92%;
    margin-left: auto;
  }

  .hero-image-wrap {
    height: 440px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    min-height: 77px;
    padding: 13px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 100px 0;
  }

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

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

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

  .service-card {
    min-height: auto;
  }

  .service-card > a {
    margin-top: 5px;
  }

  .about {
    padding: 100px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .process-step {
    max-width: 600px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: start;
    gap: 24px;
    text-align: left;
  }

  .step-dot {
    margin: 0;
  }

  .process-step p {
    max-width: none;
  }

  .contact {
    padding: 100px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .contact-copy {
    max-width: 650px;
  }

  .form-card {
    max-width: 690px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 0;
  }

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 480px;
  }
}

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

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .brand-name strong {
    font-size: 18px;
  }

  .hero {
    padding: 116px 0 72px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.2vw, 58px);
    letter-spacing: -2px;
  }

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

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

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-image-wrap {
    height: 355px;
    border-radius: 3px 42px 3px 3px;
  }

  .hero-image-wrap img {
    object-position: 62% center;
  }

  .floating-note {
    right: 12px;
    bottom: -26px;
    left: 12px;
    min-width: 0;
  }

  .dot-grid {
    right: -18px;
    top: -27px;
  }

  .section,
  .about,
  .contact {
    padding: 82px 0;
  }

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

  .section-heading h2,
  .about h2,
  .process h2,
  .contact h2 {
    font-size: 39px;
    letter-spacing: -1.8px;
  }

  .service-card {
    padding: 29px 25px 27px;
  }

  .about-grid {
    gap: 56px;
  }

  .value-card {
    grid-template-columns: 46px 1fr;
    gap: 18px;
  }

  .value-card > span {
    width: 44px;
    height: 44px;
  }

  .process-heading {
    margin-bottom: 48px;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .step-dot {
    width: 48px;
    height: 48px;
    border-width: 7px;
  }

  .form-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

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

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

  .footer-top > p {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-mail {
    justify-self: start;
    max-width: 100%;
    font-size: 12px;
  }

  .footer-bottom {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
}

@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 {
    opacity: 1;
    transform: none;
  }
}

.legal-page {
  background: var(--warm-white);
}

.legal-back {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.legal-main {
  min-height: calc(100vh - 76px);
  padding: 158px 0 100px;
}

.legal-container {
  max-width: 790px;
}

.legal-container h1 {
  margin: 0 0 35px;
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -2.5px;
}

.legal-container section {
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.legal-container section:last-child {
  border-bottom: 0;
}

.legal-container h2 {
  margin: 0 0 12px;
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-size: 20px;
  letter-spacing: -0.4px;
}

.legal-container p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-container a {
  border-bottom: 1px solid var(--yellow-deep);
}

.legal-notice {
  margin-bottom: 22px;
  padding: 20px 22px;
  background: var(--yellow-soft);
  border-left: 4px solid var(--yellow-deep);
  border-radius: 0 10px 10px 0;
}

.legal-notice strong {
  display: block;
  margin-bottom: 3px;
}

.legal-notice p {
  margin: 0;
  font-size: 13px;
}

.legal-footer .footer-bottom {
  border-top: 0;
}

.error-main {
  min-height: 100vh;
  padding: 70px 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 212, 0, 0.24), transparent 28%),
    var(--warm-white);
}

.error-container {
  max-width: 720px;
  text-align: center;
}

.error-container .brand {
  margin-bottom: 70px;
}

.error-code {
  margin: 0;
  color: var(--yellow-deep);
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 4px;
}

.error-container h1 {
  margin: 10px 0 16px;
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-size: clamp(44px, 8vw, 76px);
  line-height: 1.05;
  letter-spacing: -2.5px;
}

.error-container > p:not(.error-code) {
  margin: 0 0 30px;
  color: var(--muted);
}

@media (max-width: 560px) {
  .legal-main {
    padding: 130px 0 72px;
  }

  .legal-container h1 {
    font-size: 45px;
  }

  .legal-back {
    font-size: 12px;
  }
}
