:root {
  --navy: #08254d;
  --navy-deep: #001b3f;
  --teal: #088796;
  --teal-deep: #006f7c;
  --gold: #f2aa2c;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --line: #d8e2ea;
  --text: #12233f;
  --muted: #5f7188;
  --shadow: 0 14px 34px rgba(8, 37, 77, 0.1);
  --radius: 8px;
  --max: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background: #fff;
  font-size: 15px;
  line-height: 1.68;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.nowrap {
  white-space: nowrap;
}

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--navy-deep);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(145deg, var(--navy), var(--teal) 64%, #43b5af);
  border-radius: 8px 20px 8px 20px;
  transform: skew(-8deg);
}

.brand-text {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.1;
}

.brand-text span {
  margin-left: 2px;
  font-size: 0.8em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 28px);
  color: var(--navy-deep);
  font-weight: 800;
}

.site-nav a:not(.nav-outline) {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-outline,
.nav-primary {
  min-height: 42px;
  padding: 9px 18px;
  border-radius: var(--radius);
}

.nav-outline {
  color: var(--teal-deep);
  border: 2px solid var(--teal);
}

.nav-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 0 10px 24px rgba(0, 27, 63, 0.18);
}

.nav-primary::after,
.mobile-sticky button::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -55%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) skewX(-18deg);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: var(--navy);
}

.section,
.section-band,
.final-cta,
.site-footer {
  padding-right: clamp(20px, 4vw, 56px);
  padding-left: clamp(20px, 4vw, 56px);
}

.section {
  max-width: calc(var(--max) + clamp(40px, 8vw, 112px));
  margin: 0 auto;
  padding-top: clamp(42px, 4.4vw, 56px);
  padding-bottom: clamp(42px, 4.4vw, 56px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 22px;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  font-weight: 900;
  text-wrap: balance;
}

.section-heading h2::after {
  display: block;
  width: 58px;
  height: 3px;
  margin: 11px auto 0;
  content: "";
  background: var(--teal);
  border-radius: 999px;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 700;
  text-wrap: balance;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition:
    opacity 0.68s var(--ease-out),
    transform 0.68s var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js .reveal.reveal-soft {
  transform: translate3d(0, 24px, 0) scale(0.975);
}

.js .reveal.reveal-left {
  transform: translate3d(-32px, 0, 0);
}

.js .reveal.reveal-right {
  transform: translate3d(32px, 0, 0);
}

.js .reveal.reveal-soft.is-visible,
.js .reveal.reveal-left.is-visible,
.js .reveal.reveal-right.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 560px) minmax(560px, 720px);
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 43%, rgba(244, 248, 251, 0.72) 100%),
    radial-gradient(circle at 78% 30%, rgba(8, 135, 150, 0.16), transparent 34%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  content: "";
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 560px;
  padding-top: clamp(48px, 7vh, 72px);
  padding-bottom: clamp(42px, 5vw, 62px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(40px, 5.4vw, 58px);
  line-height: 1.16;
  font-weight: 950;
  text-wrap: balance;
}

.hero-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(16px, 1.85vw, 20px);
  line-height: 1.65;
  font-weight: 800;
  text-wrap: balance;
}

.hero-mobile-visual {
  display: none;
}

.hero-mobile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), background 0.24s var(--ease-out);
}

.button::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -55%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) skewX(-18deg);
}

.button span {
  font-size: 1.4em;
  line-height: 0.8;
  transition: transform 0.24s var(--ease-out);
}

.button-primary span,
.button-accent span {
  animation: ctaArrowNudge 1.7s ease-in-out infinite;
}

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

.button:hover span,
.button:focus-visible span {
  transform: translateX(4px);
}

.button-primary::after,
.button-accent::after,
.nav-primary::after,
.mobile-sticky button::after {
  animation: ctaSheen 4.8s var(--ease-smooth) infinite;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #003477);
  box-shadow: 0 16px 30px rgba(0, 27, 63, 0.22);
}

.button-secondary {
  color: var(--teal-deep);
  background: #fff;
  border-color: var(--teal);
}

.button-accent {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #ffd869, var(--gold));
  box-shadow: 0 16px 28px rgba(242, 170, 44, 0.22);
}

.button-light {
  color: var(--navy-deep);
  background: #fff;
  border-color: #fff;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 9px 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(8, 37, 77, 0.08);
}

.hero-badges b {
  font: inherit;
  white-space: nowrap;
}

.hero-badges span {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.hero-badges li:hover span,
.reason-card:hover .reason-icon,
.problem-card:hover .icon-circle,
.trust-grid article:hover span {
  animation: metricPop 0.54s var(--ease-out);
}

.note,
.section-note {
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  height: clamp(520px, 58vw, 600px);
  min-height: 0;
  overflow: visible;
}

.hero-visual img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 56%;
  height: 78%;
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid rgba(8, 37, 77, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(8, 37, 77, 0.1);
  transform: translateY(-50%);
}

.floating-card {
  position: absolute;
  right: 0;
  width: min(300px, 38%);
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.invoice-card {
  display: block;
  top: 54px;
}

.chart-card {
  display: block;
  bottom: 54px;
}

.floating-card p {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 900;
}

.invoice-card dl {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.invoice-card div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

.invoice-card dt,
.invoice-card dd {
  padding: 8px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.invoice-card div:last-child dt,
.invoice-card div:last-child dd {
  border-bottom: 0;
}

.invoice-card dd {
  text-align: right;
  font-size: 14px;
}

.invoice-card strong {
  color: var(--teal);
  font-size: 1.35em;
}

.bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
  min-height: 135px;
}

.bar {
  display: grid;
  width: 66px;
  place-items: end center;
  color: var(--navy);
  border-bottom: 3px solid var(--navy);
}

.bar::before {
  display: block;
  width: 100%;
  content: "";
  background: linear-gradient(180deg, #d7dde4, #b7c1ca);
}

.bar.muted::before {
  height: 88px;
}

.bar.teal::before {
  height: 62px;
  background: linear-gradient(180deg, #34b8b8, var(--teal));
}

.bar i {
  font-style: normal;
  font-weight: 900;
}

.arrow {
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
  transform: translateY(-34px);
}

.problem-grid,
.reason-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.problem-card,
.reason-card,
.fee-table-card,
.documents-card,
.tips-panel,
.testimonial,
.check-card,
.faq-list details,
.support-card,
.trust-grid article,
.company-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(8, 37, 77, 0.07);
}

.problem-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.icon-circle {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--teal-deep);
  font-size: 19px;
  letter-spacing: 0.04em;
  background: #eef9fb;
  border: 1px solid #c9e8ec;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(8, 37, 77, 0.08);
  font-weight: 900;
}

.problem-card h3,
.reason-card h3,
.flow-steps h3,
.fees h3,
.trust h3,
.faq h3 {
  margin: 14px 0 7px;
  color: var(--navy-deep);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.35;
  font-weight: 900;
  text-wrap: balance;
}

.problem-card p,
.reason-card p,
.flow-steps p,
.trust-grid p,
.support-card p {
  margin: 0 0 14px;
  color: #26364f;
  font-size: 15px;
  font-weight: 700;
}

.problem-card img {
  width: 100%;
  aspect-ratio: 2.2 / 1;
  margin-top: auto;
  object-fit: cover;
  border-radius: var(--radius);
}

.solution-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(90deg, #fff8ec, #fff);
  border: 1px solid #f4d6a8;
  border-radius: var(--radius);
}

.bulb {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  background: var(--gold);
  border-radius: 50%;
}

.solution-strip p {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(20px, 2.7vw, 30px);
  line-height: 1.35;
  font-weight: 900;
  text-wrap: balance;
}

.solution-strip span {
  color: var(--teal-deep);
}

.mini-flow {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-flow li {
  min-width: 112px;
  padding: 12px 14px;
  color: var(--navy);
  text-align: center;
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section-note {
  text-align: center;
}

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

.reason-card {
  display: grid;
  grid-template-columns: auto 1fr minmax(160px, 0.6fr);
  gap: 18px;
  align-items: center;
  min-height: 190px;
  padding: 22px;
}

.reason-icon {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--teal-deep);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  background: #eef9fb;
  border: 1px solid #c9e8ec;
  border-radius: 50%;
  font-weight: 900;
}

.reason-card h3 {
  margin-top: 0;
}

.reason-card span {
  display: inline-block;
  padding: 3px 13px;
  color: var(--teal-deep);
  border: 1px solid var(--teal);
  border-radius: 999px;
  font-weight: 900;
}

.reason-card aside {
  padding: 14px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison div {
  padding: 22px 26px;
}

.comparison div:first-child {
  padding-right: 52px;
}

.comparison div:last-child {
  padding-left: 52px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #2bb5bd);
}

.comparison strong {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 27, 63, 0.18);
  transform: translate(-50%, -50%);
}

.comparison.is-visible strong {
  animation:
    vsPop 0.78s var(--ease-out) 0.18s both,
    vsIdle 2.4s ease-in-out 1.05s infinite;
}

.comparison.is-visible li::before {
  animation: tickIn 0.48s var(--ease-out) both;
}

.comparison.is-visible li:nth-child(2)::before {
  animation-delay: 0.08s;
}

.comparison.is-visible li:nth-child(3)::before {
  animation-delay: 0.16s;
}

.comparison h3 {
  margin: 0 0 12px;
  text-align: center;
}

.comparison ul,
.tips-panel ul,
.check-card ul,
.documents-card ul,
.trust-grid,
.cta-facts,
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison li,
.tips-panel li,
.check-card li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.comparison li::before,
.tips-panel li::before,
.check-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.flow {
  max-width: none;
  background: linear-gradient(180deg, #fff, var(--mist));
}

.flow > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.flow-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.flow-steps li {
  position: relative;
  display: flex;
  min-height: 136px;
  flex-direction: column;
  justify-content: center;
  padding: 34px 18px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(8, 37, 77, 0.06);
}

.flow-steps h3 {
  margin: 8px 0 6px;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.25;
  white-space: nowrap;
}

.flow-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: normal;
  word-break: keep-all;
}

.flow-steps span {
  position: absolute;
  top: -22px;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  transform: translateX(-50%);
}

.documents-card li.is-visible span,
.trust-grid article.is-visible span {
  animation: metricPop 0.62s var(--ease-out) both;
}

.flow-steps li.is-visible span {
  animation: stepPop 0.62s var(--ease-out) both;
}

.tips-panel {
  align-self: start;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(180deg, #eef9fb, #fff);
}

.tips-panel h3 {
  margin: 0;
  white-space: nowrap;
}

.tips-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tips-panel li {
  padding: 0 0 0 24px;
  border-bottom: 0;
  font-size: 14px;
  white-space: nowrap;
}

.tips-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.fees-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
}

.fee-table-card,
.documents-card {
  overflow: hidden;
}

.fee-table-card h3,
.documents-card h3 {
  margin: 0;
  padding: 16px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #003d82);
}

.documents-card h3 {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
}

.fee-table-card table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.fee-table-card th,
.fee-table-card td {
  padding: 17px 14px;
  border: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  line-break: strict;
  overflow-wrap: normal;
  word-break: normal;
}

.fee-table-card th:nth-child(1),
.fee-table-card td:nth-child(1) {
  width: 31%;
}

.fee-table-card th:nth-child(2),
.fee-table-card td:nth-child(2) {
  width: 26%;
}

.fee-table-card th:nth-child(3),
.fee-table-card td:nth-child(3) {
  width: 43%;
}

.fee-table-card th {
  color: var(--navy-deep);
  font-size: 16px;
  font-weight: 900;
}

.fee-table-card strong {
  color: var(--teal-deep);
  font-size: 1.55em;
}

.calculator {
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr) auto minmax(96px, 0.7fr) auto minmax(150px, 1fr);
  gap: 10px;
  align-items: center;
  margin: 18px;
  padding: 14px;
  background: #f2fbfd;
  border: 1px solid #b8dbe2;
  border-radius: var(--radius);
}

.calculator span {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.calculator strong,
.calculator b {
  display: block;
  padding: 12px 14px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  white-space: nowrap;
}

.calculator strong {
  color: var(--navy);
  font-size: 15px;
}

.calculator em {
  display: inline-block;
  color: var(--teal-deep);
  font-size: 1.25em;
  font-style: normal;
  line-height: 1.35;
  white-space: nowrap;
}

.calculator b {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #0f97a2);
  border-color: var(--teal);
  font-size: 15px;
}

.calculator b em {
  color: #fff;
}

.calculator.is-visible b em,
.invoice-card.is-visible strong {
  animation: numberGlow 1.2s ease-out 0.24s both;
}

.calculator i {
  color: var(--navy);
  font-style: normal;
  font-size: 22px;
  font-weight: 900;
}

.documents-card li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

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

.documents-card span {
  display: grid;
  grid-row: span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal-deep);
  background: #eef9fb;
  border: 1px solid #c9e8ec;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.documents-card strong {
  color: var(--navy-deep);
  font-size: 19px;
  font-weight: 900;
}

.documents-card small {
  color: #26364f;
  font-size: 14px;
  font-weight: 700;
}

.warning {
  max-width: var(--max);
  margin: 28px auto 0;
  padding: 14px 20px;
  color: var(--navy);
  text-align: center;
  background: #fff6e8;
  border: 1px solid #f3d1a0;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 900;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 124px;
  padding: 18px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8, 37, 77, 0.05);
}

.trust-grid article::after {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--teal), rgba(8, 135, 150, 0));
  border-radius: 999px;
}

.trust-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal-deep);
  background: #eef9fb;
  border: 1px solid #c9e8ec;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.trust-grid h3 {
  margin: 2px 0 4px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.35;
}

.trust-grid p {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: #40536d;
  font-size: 14px;
  line-height: 1.55;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  margin-top: 18px;
}

.testimonial {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 20px;
  background: linear-gradient(135deg, #fff, #f8fbfd);
}

.testimonial img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.testimonial cite {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 11px;
  color: var(--teal-deep);
  background: #eef9fb;
  border-radius: 999px;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.testimonial p {
  position: relative;
  margin: 12px 0 0;
  color: var(--navy-deep);
  font-size: clamp(18px, 1.95vw, 24px);
  line-height: 1.55;
  font-weight: 900;
  text-wrap: balance;
}

.testimonial p::before,
.testimonial p::after {
  color: var(--teal);
  font-size: 34px;
  line-height: 0;
}

.testimonial p::before {
  content: "“";
}

.testimonial p::after {
  content: "”";
}

.check-card {
  padding: 22px 24px;
  background: linear-gradient(180deg, #f4fbfc, #fff);
  border-color: #bcdde3;
}

.check-card h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.35;
}

.check-card li {
  padding-top: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid #d6e7ec;
  color: var(--navy);
  font-size: 15px;
}

.check-card li::before {
  top: 11px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  color: var(--navy-deep);
  font-size: clamp(17px, 1.65vw, 20px);
  font-weight: 900;
  text-wrap: balance;
  cursor: pointer;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--navy);
  content: "+";
  font-size: 26px;
}

.faq-list details[open] summary::after {
  color: var(--teal);
  content: "−";
}

.faq-list details p {
  margin: 0 22px 22px;
  padding: 18px;
  background: var(--mist);
  border-top: 1px solid var(--line);
  color: #26364f;
  font-weight: 700;
}

.support-card {
  align-self: start;
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, #f7fbfd, #fff);
}

.support-avatar {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: 0 auto;
  color: var(--navy);
  font-size: 36px;
  background: #d9f2f2;
  border-radius: 50%;
}

.support-card .button {
  width: 100%;
  margin-top: 12px;
  font-size: 18px;
}

.support-card small {
  display: block;
  margin-top: 18px;
  color: #26364f;
  font-size: 14px;
  font-weight: 800;
}

.final-cta {
  max-width: var(--max);
  margin: 22px auto 0;
  padding-right: clamp(28px, 5vw, 64px);
  padding-left: clamp(28px, 5vw, 64px);
  padding-top: 34px;
  padding-bottom: 24px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 27, 63, 0.98), rgba(8, 37, 77, 0.98) 55%, rgba(0, 112, 126, 0.96)),
    radial-gradient(circle at 88% 20%, rgba(52, 184, 184, 0.28), transparent 30%);
  border-radius: 18px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 820px;
  margin: 12px 0 0;
  font-size: clamp(16px, 1.9vw, 21px);
  font-weight: 800;
  text-wrap: balance;
}

.final-cta .final-actions {
  justify-content: center;
}

.cta-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: #fff;
  font-size: 36px;
  border: 2px solid rgba(52, 184, 184, 0.65);
  border-radius: 50%;
}

.cta-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  max-width: 980px;
  margin-top: 22px;
  margin-right: auto;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.cta-facts li {
  text-align: left;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-facts li:last-child {
  border-right: 0;
}

.cta-facts strong,
.cta-facts span {
  display: block;
}

.cta-facts strong {
  font-size: 18px;
  font-weight: 900;
}

.cta-facts span {
  font-weight: 700;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  padding-bottom: 56px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: start;
}

.footer-main > * {
  min-width: 0;
}

.site-footer p,
.site-footer address {
  color: #26364f;
  font-style: normal;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px 24px;
  margin-bottom: 24px;
}

.footer-links a,
.footer-links button {
  color: var(--navy);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.footer-links a::after,
.footer-links button::after {
  margin-left: 8px;
  content: "›";
}

.company-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 22px 24px;
}

.company-card strong {
  grid-column: 1 / -1;
  color: var(--navy);
  font-size: 18px;
}

.company-card p {
  margin: 0;
  line-height: 1.75;
  overflow-wrap: normal;
  word-break: keep-all;
  line-break: strict;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 26px;
  padding-top: 20px;
  color: #40536d;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 48, 0.64);
}

.modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.modal-panel h2 {
  margin: 0 0 20px;
  color: var(--navy-deep);
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.25;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 22px;
  line-height: 1;
}

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

.consult-form label {
  color: var(--navy);
  font-weight: 900;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid #c7d4df;
  border-radius: var(--radius);
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 135, 150, 0.16);
}

.consult-form .wide,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-deep);
  font-weight: 900;
}

.mobile-sticky {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.mobile-sticky button,
.mobile-sticky a {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 48px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.mobile-sticky a {
  color: var(--teal-deep);
  background: #fff;
  border: 1px solid var(--teal);
}

@media (max-width: 1080px) {
  .site-header {
    min-height: 76px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-outline,
  .nav-primary {
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    height: 360px;
    min-height: 360px;
    margin-right: -20px;
    margin-left: -20px;
  }

  .reason-card {
    grid-template-columns: auto 1fr;
  }

  .reason-card aside {
    grid-column: 1 / -1;
  }

  .flow-layout,
  .fees-layout,
  .testimonial-layout,
  .faq-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

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

  .calculator i {
    text-align: center;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-text span {
    display: block;
    margin-left: 0;
    font-size: 0.68em;
  }

  .hero h1 {
    font-size: clamp(32px, 8.8vw, 38px);
    line-height: 1.18;
  }

  .hero-copy {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .hero-mobile-visual {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    margin: 22px 0 0;
    overflow: hidden;
    background: #f4f8fb;
    border: 1px solid rgba(8, 37, 77, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 14px 28px rgba(8, 37, 77, 0.1);
  }

  .hero-mobile-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(8, 37, 77, 0.06));
    pointer-events: none;
  }

  .hero-mobile-visual img {
    position: static;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 54% center;
    transform: none;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 11px 16px;
    font-size: 16px;
  }

  .hero-badges,
  .problem-grid,
  .reason-grid,
  .flow-steps,
  .trust-grid,
  .cta-facts,
  .company-card,
  .consult-form {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-badges li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    gap: 6px;
    text-align: center;
    font-size: 11px;
    line-height: 1.35;
    word-break: keep-all;
  }

  .hero-badges span {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .hero-visual {
    display: none;
  }

  .floating-card {
    width: min(220px, 68%);
    padding: 12px;
  }

  .invoice-card {
    top: 12px;
  }

  .chart-card {
    display: none;
  }

  .solution-strip,
  .final-cta-inner,
  .testimonial {
    grid-template-columns: 1fr;
  }

  .mini-flow {
    flex-direction: column;
  }

  .reason-icon {
    width: 62px;
    height: 62px;
    font-size: 20px;
  }

  .reason-card {
    grid-template-columns: 62px 1fr;
    gap: 10px 14px;
    align-items: start;
    min-height: 244px;
    padding: 18px;
  }

  .reason-card h3 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .reason-card p {
    margin-bottom: 10px;
  }

  .reason-card aside {
    grid-column: 2;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.5;
  }

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

  .comparison div:first-child,
  .comparison div:last-child {
    padding-right: 26px;
    padding-left: 26px;
  }

  .comparison strong {
    position: relative;
    top: auto;
    left: auto;
    margin: -24px auto;
    transform: none;
  }

  .comparison.is-visible strong {
    animation:
      vsPop 0.78s var(--ease-out) 0.18s both,
      vsIdleMobile 2.4s ease-in-out 1.05s infinite;
  }

  .flow-steps {
    gap: 14px;
  }

  .flow-steps li {
    min-height: 126px;
    padding: 32px 18px 18px;
  }

  .flow-steps h3 {
    margin-top: 8px;
    white-space: normal;
  }

  .flow-steps p {
    max-width: 18em;
    margin-right: auto;
    margin-left: auto;
    white-space: normal;
  }

  .tips-panel {
    display: block;
    padding: 18px;
  }

  .tips-panel h3 {
    margin-bottom: 10px;
    white-space: normal;
  }

  .tips-panel ul {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tips-panel li {
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .tips-panel p {
    margin-top: 12px;
    white-space: normal;
  }

  .fee-table-card {
    overflow: visible;
  }

  .fee-table-card table {
    min-width: 0;
  }

  .fee-table-card table,
  .fee-table-card tbody,
  .fee-table-card tr,
  .fee-table-card th,
  .fee-table-card td {
    display: block;
    width: 100% !important;
  }

  .fee-table-card tbody {
    display: grid;
    gap: 10px;
    padding: 14px;
    background: #f7fbfd;
  }

  .fee-table-card tr {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .fee-table-card th,
  .fee-table-card td {
    padding: 9px 12px;
    border: 0;
    text-align: left;
  }

  .fee-table-card th {
    color: var(--navy-deep);
    background: #f4f8fb;
    font-size: 15px;
  }

  .fee-table-card td {
    font-size: 14px;
  }

  .fee-table-card td + td {
    padding-top: 0;
    color: #40536d;
  }

  .fee-table-card strong {
    font-size: 1.35em;
  }

  .documents-card li {
    grid-template-columns: 42px 1fr;
    padding: 16px;
  }

  .documents-card span {
    width: 34px;
    height: 34px;
  }

  .trust-grid {
    gap: 12px;
  }

  .trust-grid article {
    display: flex;
    min-height: 148px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 20px 20px;
    text-align: center;
  }

  .trust-grid article::after {
    right: auto;
    left: 50%;
    width: 58px;
    transform: translateX(-50%);
  }

  .trust-grid span {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .trust-grid h3 {
    margin: 0 0 8px;
    font-size: 20px;
  }

  .trust-grid p {
    max-width: 18em;
    margin: 0 auto;
  }

  .testimonial {
    justify-items: center;
    padding: 22px 20px;
    text-align: center;
  }

  .testimonial img {
    width: min(280px, 100%);
  }

  .testimonial p {
    max-width: 22em;
    margin-right: auto;
    margin-left: auto;
  }

  .check-card {
    text-align: center;
  }

  .check-card ul {
    max-width: 18em;
    margin-right: auto;
    margin-left: auto;
  }

  .check-card li {
    text-align: left;
  }

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

  .final-cta {
    border-radius: 0;
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .cta-icon {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }

  .cta-facts {
    margin-top: 22px;
  }

  .cta-facts li {
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
  }

  .cta-facts li:last-child {
    border-bottom: 0;
  }

  .site-footer p,
  .site-footer address,
  .company-card p {
    line-break: auto;
    overflow-wrap: normal;
    word-break: normal;
  }

  .mobile-sticky {
    display: grid;
  }
}

@keyframes ctaSheen {
  0%,
  18% {
    transform: translate3d(0, 0, 0) skewX(-18deg);
    opacity: 0;
  }

  28% {
    opacity: 0.85;
  }

  48%,
  100% {
    transform: translate3d(410%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes ctaBreath {
  0%,
  100% {
    box-shadow: 0 16px 30px rgba(0, 27, 63, 0.22);
  }

  50% {
    box-shadow: 0 18px 34px rgba(0, 58, 125, 0.32);
  }
}

@keyframes ctaBreathGold {
  0%,
  100% {
    box-shadow: 0 16px 28px rgba(242, 170, 44, 0.22);
  }

  50% {
    box-shadow: 0 18px 34px rgba(242, 170, 44, 0.34);
  }
}

@keyframes ctaArrowNudge {
  0%,
  100% {
    transform: translateX(0);
  }

  42% {
    transform: translateX(5px);
  }
}

@keyframes metricPop {
  0% {
    transform: scale(0.82);
  }

  62% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes stepPop {
  0% {
    transform: translateX(-50%) scale(0.82);
  }

  62% {
    transform: translateX(-50%) scale(1.08);
  }

  100% {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes vsIdle {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.055);
  }
}

@keyframes vsIdleMobile {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.055);
  }
}

@keyframes vsPop {
  0% {
    filter: brightness(1);
    box-shadow: 0 0 0 0 rgba(8, 135, 150, 0.28), 0 8px 18px rgba(0, 27, 63, 0.18);
  }

  48% {
    filter: brightness(1.12);
    box-shadow: 0 0 0 12px rgba(8, 135, 150, 0), 0 14px 28px rgba(0, 27, 63, 0.24);
  }

  100% {
    filter: brightness(1);
    box-shadow: 0 8px 18px rgba(0, 27, 63, 0.18);
  }
}

@keyframes tickIn {
  0% {
    opacity: 0;
    transform: translateY(4px) scale(0.7);
  }

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

@keyframes numberGlow {
  0% {
    text-shadow: 0 0 0 rgba(52, 184, 184, 0);
    transform: translateY(0);
  }

  42% {
    text-shadow: 0 0 18px rgba(52, 184, 184, 0.36);
    transform: translateY(-1px);
  }

  100% {
    text-shadow: 0 0 0 rgba(52, 184, 184, 0);
    transform: translateY(0);
  }
}

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

  html:not(.motion-enabled).js .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  html:not(.motion-enabled) *,
  html:not(.motion-enabled) *::before,
  html:not(.motion-enabled) *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
