:root {
  --navy-950: #061426;
  --navy-900: #071a2f;
  --navy-800: #0b2545;
  --navy-700: #12385c;
  --blue-600: #176b87;
  --cyan-500: #39bfc4;
  --cyan-300: #78d9d6;
  --cyan-100: #dff7f6;
  --white: #ffffff;
  --slate-50: #f7f9fb;
  --slate-100: #edf2f5;
  --slate-200: #dbe4ea;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #132238;
  --shadow-sm: 0 12px 35px rgba(7, 26, 47, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 26, 47, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 78px;
}

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

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

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.35rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.4vw, 4.3rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 720;
}

p {
  color: var(--slate-700);
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-light {
  background: var(--slate-50);
}

.section-dark {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 87% 12%, rgba(57, 191, 196, 0.18), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 26, 47, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--navy-900);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(140deg, var(--navy-800), var(--cyan-500));
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(23, 107, 135, 0.18);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.primary-nav a {
  color: var(--slate-700);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--blue-600);
}

.primary-nav .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--blue-600);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 0;
  border-radius: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 249, 251, 0.8), rgba(255, 255, 255, 1));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
}

.hero-copy {
  padding: 38px 0;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--slate-700);
  font-size: clamp(1.16rem, 2vw, 1.42rem);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--cyan-300);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
  box-shadow: 0 16px 34px rgba(7, 26, 47, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 40px rgba(7, 26, 47, 0.25);
}

.button-secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--slate-200);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 21px;
  color: var(--slate-700);
  font-size: 0.94rem;
  font-weight: 650;
}

.hero-points li::before {
  position: absolute;
  top: 0.57em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--cyan-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(57, 191, 196, 0.12);
}

.hero-card {
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card-top {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--cyan-500);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(57, 191, 196, 0.14);
}

.quote {
  margin-bottom: 28px;
  color: var(--white);
  font-size: 1.27rem;
  font-weight: 650;
  line-height: 1.55;
}

.mini-metrics {
  display: grid;
  gap: 12px;
}

.mini-metrics div {
  display: grid;
  gap: 3px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 15px;
}

.mini-metrics strong {
  color: var(--cyan-300);
  font-size: 0.92rem;
}

.mini-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.hero-shape {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-shape-one {
  top: 11%;
  right: -8%;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(57, 191, 196, 0.16), rgba(57, 191, 196, 0));
}

.hero-shape-two {
  bottom: 3%;
  left: -12%;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(23, 107, 135, 0.12), rgba(23, 107, 135, 0));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 56px;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

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

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

.info-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-card::after {
  position: absolute;
  right: -38px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  content: "";
  background: var(--cyan-100);
  border-radius: 50%;
}

.card-number {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 830;
  letter-spacing: 0.12em;
}

.info-card h3,
.info-card p {
  position: relative;
  z-index: 2;
}

.origin-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  margin-top: 28px;
  padding: 40px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
}

.origin-block h3,
.origin-block p {
  margin-bottom: 0;
  color: var(--white);
}

.origin-block p {
  color: rgba(255, 255, 255, 0.74);
}

.comparison-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(57, 191, 196, 0.08), transparent 24%),
    var(--white);
}

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

.comparison-card {
  min-height: 290px;
  padding: 30px;
  border-radius: var(--radius-md);
}

.muted-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

.featured-card {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-800), var(--blue-600));
  box-shadow: var(--shadow-lg);
  transform: translateY(-14px);
}

.featured-card h3,
.featured-card p {
  color: var(--white);
}

.featured-card p {
  color: rgba(255, 255, 255, 0.78);
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 58px;
  padding: 7px 11px;
  color: var(--blue-600);
  background: var(--cyan-100);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 790;
}

.featured-card .comparison-label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 26px;
  max-width: 900px;
  padding: 31px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.process-index {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--navy-900);
  background: var(--cyan-300);
  border-radius: 17px;
  font-weight: 820;
}

.process-list h3 {
  margin-bottom: 9px;
}

.process-list p {
  max-width: 720px;
  margin-bottom: 0;
}

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

.benefit-panel {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.benefit-panel-accent {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  border-color: transparent;
}

.benefit-panel-accent h3,
.benefit-panel-accent li {
  color: var(--white);
}

.benefit-panel-accent li::before {
  color: var(--cyan-300);
}

.panel-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 36px;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 16px;
  font-weight: 820;
}

.benefit-panel-accent .panel-icon {
  color: var(--navy-900);
  background: var(--cyan-300);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--slate-700);
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--blue-600);
  font-weight: 900;
}

.metrics-section {
  background: var(--white);
}

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

.metric-card {
  min-height: 220px;
  padding: 26px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.metric-card:hover {
  border-color: rgba(23, 107, 135, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.metric-tag {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.metric-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.principles-section {
  background:
    linear-gradient(180deg, rgba(223, 247, 246, 0.65), rgba(255, 255, 255, 1));
}

.principles-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.principle-list {
  border-top: 1px solid var(--slate-200);
}

.principle-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--slate-200);
}

.principle-list article > span {
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 840;
  letter-spacing: 0.1em;
}

.principle-list h3 {
  margin-bottom: 7px;
}

.principle-list p {
  margin-bottom: 0;
}

.about-section {
  background: var(--navy-900);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 75px;
  align-items: center;
}

.about-monogram {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 25%, rgba(120, 217, 214, 0.7), transparent 28%),
    linear-gradient(145deg, var(--blue-600), var(--navy-950));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.about-monogram::before {
  width: 80%;
  height: 80%;
}

.about-monogram::after {
  width: 58%;
  height: 58%;
}

.about-monogram span {
  position: relative;
  z-index: 2;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 850;
  letter-spacing: -0.05em;
}

.about-copy h2,
.about-copy p {
  color: var(--white);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.about-copy .about-lead {
  color: var(--white);
  font-size: 1.25rem;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.topic-tags span {
  padding: 8px 12px;
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 680;
}

.faq-section {
  background: var(--slate-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.accordion {
  border-top: 1px solid var(--slate-200);
}

.accordion-item {
  border-bottom: 1px solid var(--slate-200);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 720;
  text-align: left;
}

.accordion-trigger span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"] span {
  transform: rotate(45deg);
}

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

.accordion-panel p {
  margin-bottom: 0;
}

.cta-section {
  padding: 50px 0;
  background: var(--slate-50);
}

.cta-box {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 44px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(120, 217, 214, 0.34), transparent 25%),
    linear-gradient(145deg, var(--navy-950), var(--blue-600));
  border-radius: var(--radius-lg);
}

.cta-box h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.site-footer {
  padding: 58px 0 35px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 35px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 780;
  text-decoration: none;
}

.site-footer p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: var(--white);
  font-weight: 660;
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

/* Legal pages */
.legal-main {
  min-height: calc(100vh - var(--header-height));
  padding: 84px 0 112px;
  background: var(--slate-50);
}

.legal-card {
  max-width: 860px;
  padding: clamp(28px, 6vw, 64px);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.legal-card h2 {
  margin-top: 42px;
  font-size: 1.55rem;
}

.legal-card p,
.legal-card li {
  color: var(--slate-700);
}

.notice {
  padding: 18px 20px;
  color: #6b4100;
  background: #fff7df;
  border: 1px solid #f0d698;
  border-radius: 14px;
}

.placeholder {
  display: inline-block;
  padding: 2px 7px;
  color: #7f1d1d;
  background: #fee2e2;
  border-radius: 6px;
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue-600);
  font-weight: 720;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(57, 191, 196, 0.55);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 20px 40px rgba(7, 26, 47, 0.12);
    transform: translateY(-135%);
    transition: transform 0.25s ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--slate-100);
  }

  .primary-nav .nav-cta {
    margin-top: 12px;
    padding: 13px 16px;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .hero-grid,
  .about-grid,
  .faq-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

  .featured-card {
    transform: none;
  }

  .origin-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-monogram {
    max-width: 480px;
  }

  .faq-grid,
  .principles-grid {
    gap: 55px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 16px;
  }

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

  .section {
    padding: 78px 0;
  }

  .brand-text small {
    display: none;
  }

  .hero-copy {
    padding: 8px 0 0;
  }

  .hero-grid {
    gap: 36px;
  }

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

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-card {
    padding: 23px;
    border-radius: 24px;
  }

  .feature-grid,
  .metric-grid,
  .benefit-columns {
    grid-template-columns: 1fr;
  }

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

  .card-number {
    margin-bottom: 45px;
  }

  .origin-block,
  .benefit-panel,
  .cta-box {
    padding: 28px;
  }

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

  .process-list li {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .process-index {
    width: 48px;
    height: 48px;
  }

  .faq-grid {
    gap: 22px;
  }

  .accordion-panel {
    padding-right: 0;
  }

  .cta-box {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .copyright {
    grid-column: auto;
  }
}

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