:root {
  --navy: #0b1f36;
  --navy-2: #132d4c;
  --navy-3: #1b3d61;
  --gold: #c9a55b;
  --gold-deep: #a47c2c;
  --gold-soft: #f3ead7;
  --teal: #287d7a;
  --ink: #142236;
  --muted: #667387;
  --line: #dce2e8;
  --soft: #f5f7f8;
  --ivory: #fbfaf7;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(11, 31, 54, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

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

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

button,
summary,
select {
  cursor: pointer;
}

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

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

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

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

.notice-bar {
  color: #dbe5ef;
  background: var(--navy);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.notice-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.notice-bar p {
  margin: 0;
}

.notice-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #79c9aa;
  box-shadow: 0 0 0 4px rgba(121, 201, 170, 0.12);
}

.notice-bar__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 31, 54, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(11, 31, 54, 0.08);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
}

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

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(145deg, #fffdf8, var(--gold-soft));
  border: 1px solid rgba(201, 165, 91, 0.85);
  border-radius: 12px;
}

.brand__mark svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__name {
  color: var(--navy);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__name span {
  color: var(--gold-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

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

.menu-button {
  display: none;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 10px;
  font-weight: 750;
  line-height: 1.3;
  box-shadow: 0 10px 24px rgba(11, 31, 54, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--navy-2);
  box-shadow: 0 14px 32px rgba(11, 31, 54, 0.22);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(40, 125, 122, 0.38);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 8px;
}

.button--small svg {
  width: 15px;
}

.button--outline {
  color: var(--navy);
  background: transparent;
  box-shadow: none;
}

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

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(11, 31, 54, 0.28);
  text-underline-offset: 6px;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 12%, rgba(201, 165, 91, 0.13), transparent 27%),
    linear-gradient(112deg, var(--ivory) 0%, #fff 55%, #f5f6f6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -170px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(11, 31, 54, 0.06);
  border-radius: 50%;
}

.hero__grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
  align-items: center;
  gap: 62px;
  padding-top: 64px;
  padding-bottom: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.23;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 6px;
  left: -4px;
  height: 11px;
  background: rgba(201, 165, 91, 0.35);
  transform: skewX(-9deg);
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 30px;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  color: #49576b;
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.hero__assurances li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__assurances span {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  color: var(--teal);
  background: rgba(40, 125, 122, 0.1);
  border-radius: 50%;
  font-size: 10px;
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -22px;
  right: -18px;
  width: 110px;
  height: 110px;
  border-top: 1px solid rgba(201, 165, 91, 0.8);
  border-right: 1px solid rgba(201, 165, 91, 0.8);
  border-radius: 0 26px 0 0;
}

.hero__image-wrap {
  position: relative;
  z-index: 1;
  overflow: visible;
  border: 7px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px 28px 80px 28px;
  box-shadow: var(--shadow);
}

.hero__image-wrap > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 67% center;
  border-radius: 21px 21px 73px 21px;
}

.arrival-card {
  position: absolute;
  bottom: 26px;
  left: -62px;
  min-width: 350px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 31, 54, 0.08);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(11, 31, 54, 0.2);
  backdrop-filter: blur(12px);
}

.arrival-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 10px;
}

.arrival-card__icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrival-card strong,
.arrival-card small {
  display: block;
}

.arrival-card strong {
  margin-bottom: 1px;
  font-size: 13px;
}

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

.arrival-card__check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 12px;
}

.hero__visual-note {
  position: absolute;
  right: 18px;
  bottom: -36px;
  z-index: 2;
  color: #728096;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.hero__visual-note span {
  margin-right: 8px;
  color: var(--gold-deep);
}

.trust-strip {
  color: var(--white);
  background: var(--navy);
}

.trust-strip__grid {
  min-height: 146px;
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  align-items: center;
  gap: 54px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.trust-strip__intro {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-strip__intro p {
  margin: 0;
  color: #bdc9d6;
  font-size: 12px;
  line-height: 1.6;
}

.trust-strip__intro strong {
  color: var(--white);
  font-size: 14px;
}

.trust-strip__seal {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold);
  border: 1px solid rgba(201, 165, 91, 0.6);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.trust-strip dl {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 1.1fr;
  gap: 0;
  margin: 0;
}

.trust-strip dl > div {
  min-height: 58px;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-strip dt {
  margin-bottom: 4px;
  color: #8697aa;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip dd {
  color: #e9eef4;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.65;
}

.section {
  padding: 116px 0;
}

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

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

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

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

.section-heading h2,
.security h2,
.faq h2,
.contact h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.36;
}

.section-heading > p,
.section-heading__split > p,
.faq__heading > p {
  color: var(--muted);
  line-height: 1.9;
}

.section-heading--center > p {
  max-width: 610px;
  margin-inline: auto;
}

.section-heading__split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
}

.section-heading__split h2,
.section-heading__split p {
  margin-bottom: 0;
}

.problem {
  position: relative;
  background: var(--ivory);
}

.problem::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 31, 54, 0.12), transparent);
}

.comparison {
  max-width: 970px;
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: stretch;
  margin: 0 auto;
}

.comparison__card {
  padding: 40px 44px 38px;
  border-radius: var(--radius);
}

.comparison__card--muted {
  background: #f0f1f2;
  border: 1px solid #e3e5e7;
}

.comparison__card--accent {
  position: relative;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.comparison__card--accent::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 95px;
  border-top: 1px solid rgba(201, 165, 91, 0.65);
  border-right: 1px solid rgba(201, 165, 91, 0.65);
  border-radius: 0 var(--radius) 0 0;
}

.comparison__label {
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 750;
}

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

.comparison__card--accent .comparison__label {
  color: var(--gold);
}

.comparison__price {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
}

.comparison__price small {
  margin-left: 7px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}

.comparison__card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.comparison__card li {
  display: flex;
  gap: 9px;
  align-items: center;
}

.comparison__card li span {
  font-weight: 900;
}

.comparison__card--muted li {
  color: #657080;
}

.comparison__card--muted li span {
  color: #a1a8b0;
}

.comparison__card--accent li span {
  color: #76c4a6;
}

.comparison__vs {
  width: 56px;
  height: 56px;
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  z-index: 2;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(11, 31, 54, 0.1);
}

.comparison__note {
  max-width: 760px;
  margin: 18px auto 0;
  color: #8791a0;
  font-size: 10px;
  text-align: center;
}

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

.service-card {
  position: relative;
  min-height: 290px;
  padding: 38px 38px 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 31, 54, 0.08);
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.service-card:hover {
  border-color: rgba(201, 165, 91, 0.46);
  box-shadow: 0 18px 45px rgba(11, 31, 54, 0.09);
  transform: translateY(-4px);
}

.service-card__number {
  position: absolute;
  top: 23px;
  right: 27px;
  color: #dce1e5;
  font-family: Georgia, serif;
  font-size: 38px;
  font-style: italic;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border-radius: 14px;
}

.service-card__icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.service-card p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.incorporation {
  position: relative;
  background: var(--ivory);
}

.incorporation__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  padding: 72px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 0%, rgba(201, 165, 91, 0.18), transparent 31%),
    var(--navy);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(11, 31, 54, 0.17);
}

.incorporation__panel::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.incorporation__content,
.incorporation__services {
  position: relative;
  z-index: 1;
}

.incorporation__badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 12px;
  color: #f3d998;
  background: rgba(201, 165, 91, 0.1);
  border: 1px solid rgba(201, 165, 91, 0.42);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.incorporation__badge span {
  width: 6px;
  height: 6px;
  background: #82d3b3;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(130, 211, 179, 0.1);
}

.incorporation h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(35px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.36;
}

.incorporation__content > p:not(.incorporation__disclosure) {
  margin-bottom: 26px;
  color: #b7c3cf;
  font-size: 14px;
  line-height: 1.95;
}

.incorporation__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.incorporation__actions .button {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.incorporation__actions .button:hover {
  background: #d7b76f;
}

.incorporation__actions p {
  max-width: 155px;
  margin: 0;
  color: #8fa0b2;
  font-size: 9px;
  line-height: 1.65;
}

.incorporation__disclosure {
  margin: 0;
  padding-top: 19px;
  color: #8293a5;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 9px;
  line-height: 1.75;
}

.incorporation__services {
  display: grid;
  align-content: center;
  gap: 10px;
}

.incorporation__services article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 19px 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.incorporation__services article > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(201, 165, 91, 0.1);
  border-radius: 9px;
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.incorporation__services h3 {
  margin: 0 0 3px;
  color: var(--white);
  font-size: 14px;
}

.incorporation__services p {
  margin: 0;
  color: #99a9b9;
  font-size: 10px;
  line-height: 1.7;
}

.security__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 80px;
}

.security__visual {
  position: relative;
  padding: 0 0 30px 30px;
}

.security__visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 67%;
  height: 73%;
  background: var(--gold-soft);
  border-radius: 22px 0 22px 22px;
}

.security__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 0.96;
  object-fit: cover;
  object-position: 50% center;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.security__caption {
  position: absolute;
  right: -20px;
  bottom: 2px;
  z-index: 2;
  padding: 16px 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 650;
  box-shadow: 0 12px 30px rgba(11, 31, 54, 0.22);
}

.security__caption span {
  display: block;
  margin-bottom: 1px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.security__lead {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.95;
}

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

.security__list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.security__list > div > span {
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.security__list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.security__list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 15px;
}

.section--navy {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.section--navy::before,
.section--navy::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.section--navy::before {
  top: -360px;
  right: -130px;
  width: 650px;
  height: 650px;
}

.section--navy::after {
  top: -250px;
  right: -20px;
  width: 420px;
  height: 420px;
}

.section-heading--light {
  position: relative;
  z-index: 1;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light p {
  color: #aab8c8;
}

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

.flow__steps li {
  position: relative;
}

.flow__number {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: var(--navy);
  background: var(--gold);
  border: 8px solid rgba(201, 165, 91, 0.16);
  border-radius: 50%;
  background-clip: padding-box;
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
}

.flow__line {
  position: absolute;
  top: 34px;
  left: 84px;
  width: calc(100% - 28px);
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 165, 91, 0.6), rgba(255, 255, 255, 0.13));
}

.flow__steps h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 20px;
}

.flow__steps p {
  max-width: 310px;
  margin-bottom: 0;
  color: #aab8c8;
  font-size: 13px;
  line-height: 1.9;
}

.plans {
  background: var(--white);
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(11, 31, 54, 0.04);
}

.plan-card--featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 24px 60px rgba(11, 31, 54, 0.2);
  transform: translateY(-14px);
}

.plan-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 5px 18px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.plan-card__head {
  min-height: 76px;
  margin-bottom: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.plan-card--featured .plan-card__head {
  border-color: rgba(255, 255, 255, 0.15);
}

.plan-card__name {
  margin-bottom: 2px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

.plan-card--featured .plan-card__name {
  color: var(--gold);
}

.plan-card__description {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

.plan-card--featured .plan-card__description {
  color: #aab8c8;
}

.plan-card__price {
  margin-bottom: 25px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
}

.plan-card__price > span {
  margin-right: 4px;
  font-size: 19px;
}

.plan-card__price small {
  margin-left: 7px;
  font-size: 13px;
  font-weight: 500;
}

.plan-card--featured .plan-card__price {
  color: var(--white);
}

.plan-card ul {
  display: grid;
  gap: 11px;
  flex: 1;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.plan-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.plan-card li::before {
  content: "✓";
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal);
  background: rgba(40, 125, 122, 0.1);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.plan-card--featured li {
  color: #e1e7ed;
}

.plan-card--featured li::before {
  color: #9fe0c6;
  background: rgba(118, 196, 166, 0.13);
}

.plan-card--featured .button {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.plan-card--featured .button:hover {
  background: #d6b66e;
}

.plans__note {
  max-width: 920px;
  margin: 28px auto 0;
  color: #7c8795;
  font-size: 10px;
  line-height: 1.8;
  text-align: center;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 95px;
}

.faq__heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq__heading .text-link {
  margin-top: 18px;
  font-size: 14px;
}

.faq__list {
  border-top: 1px solid #cdd4db;
}

.faq details {
  border-bottom: 1px solid #cdd4db;
}

.faq summary {
  position: relative;
  padding: 26px 52px 26px 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

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

.faq summary span,
.faq summary span::after {
  position: absolute;
  background: var(--navy);
  transition: transform 0.2s ease;
}

.faq summary span {
  top: 34px;
  right: 8px;
  width: 18px;
  height: 1px;
}

.faq summary span::after {
  content: "";
  top: -8px;
  left: 8px;
  width: 1px;
  height: 18px;
}

.faq details[open] summary span::after {
  transform: rotate(90deg);
}

.faq details p {
  margin: -7px 52px 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.contact {
  padding: 110px 0;
  background: var(--ivory);
}

.contact__panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  padding: 70px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 165, 91, 0.14), transparent 30%),
    var(--navy);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(11, 31, 54, 0.18);
}

.contact__copy {
  align-self: center;
}

.eyebrow--gold {
  color: var(--gold);
}

.contact h2 {
  color: var(--white);
  font-size: clamp(33px, 3.5vw, 47px);
}

.contact__copy > p {
  color: #b7c3cf;
  line-height: 1.9;
}

.contact__copy > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 40px;
  padding: 0;
  list-style: none;
  color: #e8edf2;
  font-size: 12px;
}

.contact__copy > ul li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.contact__copy > ul span {
  color: #8bd0b5;
}

.contact__company {
  display: grid;
  padding-top: 24px;
  color: #8fa0b2;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 9px;
  line-height: 1.8;
}

.contact__company strong {
  margin-bottom: 4px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.17);
}

.contact-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-form__header span,
.contact-form__header small {
  display: block;
}

.contact-form__header > div > span {
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
}

.contact-form__header small {
  color: var(--muted);
  font-size: 9px;
}

.contact-form__lock {
  width: 39px;
  height: 39px;
  display: grid !important;
  place-items: center;
  color: var(--teal);
  background: rgba(40, 125, 122, 0.1);
  border-radius: 10px;
}

.contact-form__lock svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.form-grid__full {
  grid-column: 1 / -1;
}

.form-grid label > span {
  display: block;
  margin-bottom: 6px;
  color: #4f5c6c;
  font-size: 10px;
  font-weight: 700;
}

.form-grid label em {
  margin-left: 5px;
  color: #9e7332;
  font-size: 8px;
  font-style: normal;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  color: var(--ink);
  background: #fafbfb;
  border: 1px solid #d9dfe5;
  border-radius: 8px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid input,
.form-grid select {
  height: 46px;
  padding: 0 12px;
  font-size: 12px;
}

.form-grid textarea {
  min-height: 100px;
  padding: 11px 12px;
  resize: vertical;
  font-size: 12px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(40, 125, 122, 0.08);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #aab1bb;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: flex-start;
  margin: 18px 0;
  color: #667387;
  font-size: 9px;
  line-height: 1.6;
}

.form-consent input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--navy);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.contact-form__note,
.form-status {
  margin: 10px 0 0;
  color: #8b95a2;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  min-height: 14px;
  margin-top: 5px;
  color: var(--teal);
  font-weight: 700;
}

.form-status.is-error {
  color: #ad3f3f;
}

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

.site-footer {
  padding: 68px 0 24px;
  color: #93a0ad;
  background: #071729;
  font-size: 11px;
}

.site-footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 35px;
}

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

.site-footer__main > div > p {
  margin: 13px 0 0;
}

.site-footer__main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px 27px;
  max-width: 540px;
  color: #d5dce4;
  font-size: 12px;
  font-weight: 650;
}

.site-footer__main nav a:hover {
  color: var(--gold);
}

.site-footer__company {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer__company p {
  margin: 0;
  line-height: 1.8;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  color: #657589;
  font-size: 9px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom div {
  display: flex;
  gap: 20px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.21, 0.75, 0.3, 1);
}

.reveal--delay-sm {
  transition-delay: 0.08s;
}

.reveal--delay {
  transition-delay: 0.16s;
}

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

@media (max-width: 1100px) {
  .site-header__inner {
    gap: 22px;
  }

  .site-nav {
    gap: 19px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.85fr);
    gap: 35px;
  }

  .hero__image-wrap > img {
    height: 465px;
  }

  .arrival-card {
    left: -30px;
    min-width: 318px;
  }

  .security__grid {
    gap: 55px;
  }

  .contact__panel {
    gap: 50px;
    padding: 55px;
  }
}

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

  .site-header__inner {
    min-height: 72px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 9px;
  }

  .menu-button span {
    width: 19px;
    height: 2px;
    background: var(--navy);
    transition: transform 0.2s ease, opacity 0.2s 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);
  }

  .site-nav {
    position: fixed;
    top: 106px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 28px;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(11, 31, 54, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

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

  .header-cta {
    display: none;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 70px;
    padding-bottom: 82px;
  }

  .hero__content {
    max-width: 740px;
  }

  .hero__visual {
    width: min(91%, 660px);
    margin-left: auto;
  }

  .hero__image-wrap > img {
    height: 480px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-strip dl > div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading__split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .incorporation__panel {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 54px;
  }

  .security__grid,
  .faq__grid,
  .contact__panel {
    grid-template-columns: 1fr;
  }

  .security__visual {
    width: min(88%, 650px);
  }

  .faq__grid {
    gap: 45px;
  }

  .faq__heading {
    position: static;
  }

  .flow__steps {
    gap: 28px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
  }

  .plan-card__head,
  .plan-card__price {
    grid-column: 1;
  }

  .plan-card ul,
  .plan-card .button {
    grid-column: 2;
  }

  .plan-card ul {
    grid-row: 1 / span 2;
  }

  .plan-card .button {
    align-self: end;
  }

  .plan-card--featured {
    transform: none;
  }

  .contact__panel {
    gap: 45px;
  }
}

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

  body {
    padding-bottom: 66px;
  }

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

  .notice-bar__inner {
    min-height: 30px;
    gap: 8px;
    font-size: 9px;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .site-nav {
    top: 96px;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
    border-radius: 10px;
  }

  .brand__mark svg {
    width: 29px;
  }

  .brand__name {
    font-size: 22px;
  }

  .menu-button {
    width: 39px;
    height: 39px;
  }

  .hero__grid {
    gap: 45px;
    padding-top: 49px;
    padding-bottom: 68px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 8px;
  }

  .eyebrow span {
    width: 22px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(36px, 10.9vw, 49px);
    line-height: 1.26;
  }

  .hero__lead {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.9;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
    font-size: 13px;
  }

  .hero__assurances {
    display: grid;
    gap: 8px;
  }

  .hero__visual {
    width: 94%;
  }

  .hero__image-wrap {
    border-width: 5px;
    border-radius: 20px 20px 50px 20px;
  }

  .hero__image-wrap > img {
    height: 390px;
    border-radius: 15px 15px 45px 15px;
    object-position: 67% center;
  }

  .arrival-card {
    bottom: 18px;
    left: -20px;
    min-width: 0;
    width: calc(100% - 14px);
    padding: 11px;
  }

  .arrival-card__icon {
    width: 36px;
    height: 36px;
  }

  .arrival-card strong {
    font-size: 11px;
  }

  .arrival-card small {
    font-size: 8px;
  }

  .hero__visual-note {
    display: none;
  }

  .trust-strip__grid {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .trust-strip dl {
    grid-template-columns: 1fr;
  }

  .trust-strip dl > div,
  .trust-strip dl > div:first-child {
    min-height: 0;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }

  .section {
    padding: 75px 0;
  }

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

  .section-heading h2,
  .security h2,
  .faq h2,
  .contact h2 {
    font-size: 32px;
    line-height: 1.42;
  }

  .section-heading > p,
  .section-heading__split > p,
  .faq__heading > p,
  .security__lead {
    font-size: 13px;
  }

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

  .comparison__card {
    padding: 31px 28px;
  }

  .comparison__vs {
    margin: -12px 0;
  }

  .comparison__price {
    font-size: 39px;
  }

  .comparison__card ul {
    font-size: 12px;
  }

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

  .service-card {
    min-height: 0;
    padding: 29px 27px;
  }

  .incorporation__panel {
    width: calc(100% - 20px);
    gap: 36px;
    padding: 38px 20px 22px;
    border-radius: 22px;
  }

  .incorporation h2 {
    font-size: 32px;
  }

  .incorporation__content > p:not(.incorporation__disclosure) {
    font-size: 13px;
  }

  .incorporation__actions {
    display: grid;
    gap: 12px;
  }

  .incorporation__actions .button {
    width: 100%;
  }

  .incorporation__actions p {
    max-width: none;
    text-align: center;
  }

  .incorporation__services article {
    grid-template-columns: 38px 1fr;
    padding: 16px 14px;
  }

  .incorporation__services article > span {
    width: 35px;
    height: 35px;
  }

  .security__grid {
    gap: 55px;
  }

  .security__visual {
    width: calc(100% - 12px);
    padding: 0 0 23px 18px;
  }

  .security__visual img {
    aspect-ratio: 1 / 1.1;
  }

  .security__caption {
    right: -12px;
    padding: 12px 14px;
    font-size: 9px;
  }

  .flow__steps {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 48px;
  }

  .flow__steps li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
  }

  .flow__number {
    width: 56px;
    height: 56px;
    margin: 0;
    border-width: 6px;
    font-size: 13px;
  }

  .flow__line {
    top: 62px;
    left: 27px;
    width: 1px;
    height: calc(100% + 29px);
    background: linear-gradient(180deg, rgba(201, 165, 91, 0.6), rgba(255, 255, 255, 0.13));
  }

  .flow__steps h3 {
    margin-bottom: 7px;
    font-size: 17px;
  }

  .plan-card {
    display: flex;
    padding: 32px 26px 26px;
  }

  .plan-card__head {
    min-height: 0;
  }

  .plan-card__price {
    font-size: 46px;
  }

  .faq summary {
    padding: 23px 44px 23px 0;
    font-size: 13px;
    line-height: 1.65;
  }

  .faq summary span {
    top: 32px;
    right: 2px;
  }

  .faq details p {
    margin-right: 35px;
    font-size: 12px;
  }

  .contact {
    padding: 65px 0;
  }

  .contact__panel {
    width: calc(100% - 20px);
    gap: 35px;
    padding: 42px 20px 20px;
    border-radius: 22px;
  }

  .contact__copy {
    padding: 0 4px;
  }

  .contact__copy > p {
    font-size: 13px;
  }

  .contact-form {
    padding: 25px 18px;
  }

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

  .form-grid__full {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 54px;
  }

  .site-footer__main {
    display: grid;
  }

  .site-footer__main nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: start;
  }

  .site-footer__bottom {
    display: grid;
    gap: 13px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 90;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--navy);
    background: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 11px 30px rgba(11, 31, 54, 0.28);
  }
}

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

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

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