:root {
  --ink: #122039;
  --ink-soft: #516078;
  --navy: #10213f;
  --navy-deep: #09162c;
  --navy-light: #18315d;
  --gold: #f7b731;
  --gold-bright: #ffc94f;
  --gold-pale: #fff5d7;
  --teal: #39c8b4;
  --white: #ffffff;
  --cloud: #f4f7fb;
  --line: #dfe5ef;
  --line-dark: rgba(255, 255, 255, 0.15);
  --danger: #a04d3d;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 55px rgba(16, 33, 63, 0.12);
  --shadow-soft: 0 10px 32px rgba(16, 33, 63, 0.08);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

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

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

body.nav-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.35;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.3vw, 3.35rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  color: var(--ink-soft);
}

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

.section {
  padding: 112px 0;
}

.section-tint {
  background: var(--cloud);
}

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

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

.section-heading.centered {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p:last-child {
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.split-heading h2,
.split-heading p {
  margin-bottom: 0;
}

.narrow-title {
  max-width: 850px;
  margin-bottom: 52px;
  text-align: center;
}

.narrow-title p:last-child {
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: inherit;
  margin-bottom: 16px;
  color: #775714;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--gold);
}

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

.centered .eyebrow {
  justify-content: center;
}

.hero-copy > .eyebrow {
  text-transform: none;
}

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

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

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

.sp-only {
  display: none;
}

.mobile-only {
  display: none;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 22, 44, 0.97);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

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

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 12px;
  font-size: 1.18rem;
  box-shadow: 0 5px 18px rgba(247, 183, 49, 0.22);
}

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

.brand strong {
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

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

.global-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.global-nav > a:not(.button):hover,
.global-nav > a:not(.button):focus-visible {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  cursor: pointer;
}

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

/* Buttons */
.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(57, 200, 180, 0.85);
  outline-offset: 3px;
}

.button-primary {
  color: var(--navy-deep);
  background: var(--gold);
  box-shadow: 0 10px 26px rgba(247, 183, 49, 0.22);
}

.button-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 14px 32px rgba(247, 183, 49, 0.3);
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.8rem;
}

.button-large {
  min-height: 58px;
  padding: 15px 29px;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: #b9c3d3;
}

.button-outline:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-soft);
}

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

.button-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(57, 200, 180, 0.16), transparent 25%),
    radial-gradient(circle at 12% 78%, rgba(247, 183, 49, 0.08), transparent 24%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 58%, #142a4f 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  min-height: 630px;
  padding-top: 86px;
  padding-bottom: 100px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.hero h1 em {
  position: relative;
  color: var(--gold-bright);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 1%;
  bottom: -8px;
  left: 1%;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
  transform: rotate(-1deg);
  opacity: 0.75;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

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

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

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-points li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 450px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 80px rgba(2, 12, 29, 0.36);
  backdrop-filter: blur(8px);
}

.score-card {
  top: 28px;
  right: 10px;
  width: min(100%, 430px);
  padding: 30px;
  border-radius: 24px;
  transform: rotate(1.5deg);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 25px;
  color: #66758a;
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 800;
}

.status-dot {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #246e61;
}

.status-dot::before {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.metric-row small,
.metric-row strong {
  display: block;
}

.metric-row small {
  margin-bottom: 4px;
  color: #738097;
  font-size: 0.72rem;
}

.metric-row strong {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.metric-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--navy);
  background: var(--gold-pale);
  border-radius: 17px;
  font-size: 1.35rem;
}

.progress-group {
  margin-bottom: 27px;
}

.progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #68768a;
  font-size: 0.73rem;
}

.progress-label strong {
  color: var(--navy);
}

.progress {
  height: 9px;
  overflow: hidden;
  background: #e9edf4;
  border-radius: 999px;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #60dfc9);
  border-radius: inherit;
}

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

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-grid div {
  padding: 15px;
  background: var(--cloud);
  border-radius: 12px;
}

.mini-grid small,
.mini-grid strong {
  display: block;
}

.mini-grid small {
  color: #748195;
  font-size: 0.66rem;
}

.mini-grid strong {
  margin-top: 2px;
  font-size: 1.02rem;
}

.note-card {
  z-index: 3;
  right: 70px;
  bottom: 22px;
  display: flex;
  width: 345px;
  padding: 19px 21px;
  gap: 15px;
  align-items: center;
  border-radius: 17px;
  transform: rotate(-2deg);
}

.note-icon {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 12px;
  font-weight: 900;
}

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

.note-card small {
  color: #748195;
  font-size: 0.66rem;
}

.note-card strong {
  margin-top: 2px;
  font-size: 0.85rem;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orbit-one {
  top: -25px;
  right: -70px;
  width: 480px;
  height: 480px;
}

.orbit-two {
  top: 55px;
  right: 10px;
  width: 330px;
  height: 330px;
}

.hero-bottom-shape {
  position: absolute;
  right: -5%;
  bottom: -85px;
  left: -5%;
  height: 120px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
}

/* Trust */
.trust-strip {
  position: relative;
  z-index: 4;
  padding: 32px 0 25px;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  position: relative;
  display: grid;
  min-height: 78px;
  padding: 0 24px 0 58px;
  align-content: center;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  padding-left: 44px;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-number {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #d0d7e2;
  font-size: 0.7rem;
  font-weight: 900;
}

.trust-grid > div:first-child .trust-number {
  left: 7px;
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid strong {
  margin-bottom: 3px;
  font-size: 0.94rem;
}

.trust-grid small {
  color: #758196;
  font-size: 0.7rem;
}

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

.problem-card {
  position: relative;
  min-height: 240px;
  padding: 36px 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.problem-card::after {
  position: absolute;
  right: -32px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  background: var(--gold-pale);
  border-radius: 50%;
  content: "";
}

.problem-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 900;
}

.problem-card h3 {
  margin-bottom: 10px;
}

.problem-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 0.91rem;
}

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

.service-card {
  position: relative;
  min-height: 285px;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 7px 24px rgba(16, 33, 63, 0.06);
}

.service-card-featured {
  grid-row: span 2;
  min-height: 590px;
  color: var(--white);
  background: var(--navy);
}

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

.service-tag {
  display: inline-block;
  padding: 5px 10px;
  color: #5f4b19;
  background: var(--gold-pale);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
}

.service-card-featured .service-tag {
  color: var(--gold-bright);
  background: rgba(247, 183, 49, 0.14);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #d9e0ea;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.16);
  font-size: 4rem;
}

.service-card h3 {
  max-width: 250px;
  margin: 42px 0 14px;
  font-size: 1.3rem;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.service-card-featured h3 {
  max-width: 310px;
  margin-top: 120px;
  color: var(--white);
  font-size: 2rem;
}

.check-list {
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: #3b4960;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

.check-list.compact {
  margin-top: 32px;
}

.check-list.compact li {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.13);
}

/* Features */
.feature-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.feature-copy > p:not(.eyebrow) {
  margin-bottom: 26px;
}

.feature-list {
  display: grid;
  gap: 15px;
}

.feature-list article {
  display: flex;
  padding: 25px 28px;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.feature-check {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 11px;
  font-weight: 900;
}

.feature-list h3 {
  margin: 0 0 5px;
  font-size: 1.05rem;
}

.feature-list p {
  margin: 0;
  font-size: 0.84rem;
}

/* Pricing */
.section-pricing {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 12%, rgba(57, 200, 180, 0.12), transparent 22%),
    var(--navy-deep);
}

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

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 960px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.2);
}

.price-card-recommended {
  border: 2px solid var(--gold);
}

.recommended-ribbon {
  padding: 7px;
  color: var(--navy-deep);
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.price-head {
  padding: 35px 38px 28px;
  background: #f7f9fc;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.price-card-recommended .price-head {
  padding-top: 28px;
}

.plan-label {
  min-height: 3.2em;
  margin-bottom: 7px;
  color: #7b611f;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.6;
}

.price-head h3 {
  margin: 0 0 24px;
  font-size: 1.5rem;
}

.price {
  display: flex;
  margin-bottom: 2px;
  align-items: baseline;
  justify-content: center;
  color: var(--ink);
  line-height: 1;
}

.price span {
  margin-right: 8px;
  font-size: 0.75rem;
  font-weight: 800;
}

.price strong {
  font-size: clamp(2.6rem, 5vw, 3.65rem);
  letter-spacing: -0.07em;
}

.price b {
  margin-left: 4px;
  font-size: 0.92rem;
}

.tax-note {
  margin: 10px 0 0;
  color: #788598;
  font-size: 0.7rem;
}

.review-target {
  display: flex;
  width: fit-content;
  padding: 9px 15px;
  margin: 18px auto 0;
  gap: 7px;
  align-items: baseline;
  color: var(--ink);
  background: var(--gold-pale);
  border: 1px solid rgba(247, 183, 49, 0.55);
  border-radius: 999px;
  line-height: 1;
}

.review-target span {
  color: #765b18;
  font-size: 0.68rem;
  font-weight: 800;
}

.review-target strong {
  font-size: 1.15rem;
}

.review-target b {
  font-size: 0.7rem;
}

.price-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 38px 38px;
}

.price-body > .button {
  margin-top: auto;
}

.initial-fee {
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #445169;
  background: var(--cloud);
  border-radius: 9px;
  font-size: 0.78rem;
  text-align: center;
}

.initial-fee strong {
  color: var(--ink);
  font-size: 0.93rem;
}

.initial-fee small {
  font-size: 0.67rem;
}

.annual-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  max-width: 960px;
  padding: 34px 42px;
  margin-top: 24px;
  align-items: center;
  color: var(--ink);
  background: var(--gold-pale);
  border: 1px solid rgba(247, 183, 49, 0.65);
  border-radius: 18px;
}

.annual-badge {
  display: inline-block;
  padding: 4px 9px;
  margin-bottom: 8px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 900;
}

.annual-box h3 {
  margin: 0 0 5px;
  font-size: 1.25rem;
}

.annual-box p {
  margin: 0;
  font-size: 0.8rem;
}

.annual-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.annual-prices p {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 10px;
}

.annual-prices span,
.annual-prices strong,
.annual-prices small {
  display: block;
}

.annual-prices span {
  color: #6d7687;
  font-size: 0.68rem;
}

.annual-prices strong {
  margin: 1px 0;
  color: var(--ink);
  font-size: 1.12rem;
}

.annual-prices small {
  color: #788397;
  font-size: 0.63rem;
}

.sprint-plan {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 55px;
  max-width: 1060px;
  padding: 52px;
  margin-top: 70px;
  align-items: center;
  background: linear-gradient(135deg, #173765, #10213f);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.sprint-label {
  display: inline-block;
  padding: 6px 11px;
  margin-bottom: 12px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.sprint-copy h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 2.25rem;
}

.sprint-copy > p:not(.sprint-price) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.sprint-price {
  margin-bottom: 15px;
  color: var(--white);
}

.sprint-price strong {
  color: var(--gold-bright);
  font-size: 2.7rem;
  letter-spacing: -0.05em;
}

.sprint-price small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

.check-list-light li {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.13);
}

.trial-options {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.trial-option {
  display: flex;
  padding: 13px 16px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
}

.trial-option-best {
  background: rgba(247, 183, 49, 0.12);
  border-color: rgba(247, 183, 49, 0.58);
}

.trial-option p {
  margin: 0;
  color: var(--white);
}

.trial-option p:first-child {
  display: flex;
  gap: 5px;
  align-items: baseline;
}

.trial-option p:first-child strong {
  color: var(--gold-bright);
  font-size: 1.3rem;
}

.trial-option p:first-child span {
  font-size: 0.68rem;
  font-weight: 800;
}

.trial-option p:last-child {
  text-align: right;
}

.trial-option p:last-child strong,
.trial-option p:last-child small {
  display: block;
}

.trial-option p:last-child strong {
  font-size: 1.05rem;
}

.trial-option p:last-child small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
}

.trial-discount {
  padding: 10px 13px;
  margin-bottom: 14px;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 9px;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.trial-conditions {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.pricing-notes {
  max-width: 960px;
  margin-top: 28px;
}

.pricing-notes p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.pricing-notes strong {
  color: rgba(255, 255, 255, 0.8);
}

/* Report promo */
.report-promo {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.report-preview {
  position: relative;
  min-height: 470px;
}

.report-paper {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 12%;
  width: 78%;
  height: 440px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.report-paper-back {
  z-index: 1;
  top: 18px;
  left: 17%;
  background: var(--gold-pale);
  transform: rotate(5deg);
}

.report-logo {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 38px;
  color: #6e7a8e;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.report-logo span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 7px;
}

.report-line {
  width: 100%;
  height: 8px;
  margin-bottom: 11px;
  background: #e8ecf2;
  border-radius: 999px;
}

.report-line-title {
  width: 65%;
  height: 14px;
  margin-bottom: 24px;
  background: var(--navy);
}

.report-line.short {
  width: 62%;
}

.report-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.report-kpis i {
  height: 58px;
  background: var(--cloud);
  border: 1px solid #e7ebf1;
  border-radius: 8px;
}

.report-chart {
  display: flex;
  height: 130px;
  padding: 14px 15px 0;
  gap: 12px;
  align-items: end;
  margin-bottom: 25px;
  background: var(--cloud);
  border-radius: 8px;
}

.report-chart span {
  width: 20%;
  height: 45%;
  background: #aab8ce;
  border-radius: 4px 4px 0 0;
}

.report-chart span:nth-child(2) { height: 60%; }
.report-chart span:nth-child(3) { height: 52%; }
.report-chart span:nth-child(4) { height: 78%; background: var(--gold); }
.report-chart span:nth-child(5) { height: 90%; background: var(--teal); }

.report-copy > p:not(.eyebrow) {
  max-width: 540px;
}

.inline-checks {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 25px 0 30px;
  flex-wrap: wrap;
  list-style: none;
}

.inline-checks li {
  padding: 7px 13px;
  color: #486052;
  background: #e6f8f4;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
}

/* Flow */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  list-style: none;
}

.flow-grid li {
  position: relative;
  padding: 29px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-grid li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: -15px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  content: "→";
  font-size: 0.75rem;
  font-weight: 900;
}

.flow-grid li > span {
  display: block;
  margin-bottom: 35px;
  color: #b5bfce;
  font-size: 1.8rem;
  font-weight: 900;
}

.flow-grid h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.flow-grid p {
  margin-bottom: 0;
  font-size: 0.79rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading > p:not(.eyebrow) {
  font-size: 0.88rem;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 58px 27px 38px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::before {
  position: absolute;
  top: 25px;
  left: 0;
  color: #ae7e16;
  content: "Q";
  font-size: 1.1rem;
  font-weight: 900;
}

.faq-list summary::after {
  position: absolute;
  top: 28px;
  right: 4px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--navy);
  background: var(--gold-pale);
  border-radius: 50%;
  content: "+";
  font-size: 1rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  padding: 0 45px 24px 38px;
}

.faq-list details p {
  margin: 0;
  font-size: 0.88rem;
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  background:
    radial-gradient(circle at 85% 45%, rgba(247, 183, 49, 0.13), transparent 22%),
    var(--navy);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.final-cta-action small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  text-align: center;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  padding-top: 70px;
  padding-bottom: 55px;
}

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

.footer-main > div:first-child > p {
  max-width: 400px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav strong {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 0.8rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.72rem;
}

.footer-nav a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  padding-top: 23px;
  padding-bottom: 28px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.6rem;
}

/* Subpages */
.subpage-body {
  background: var(--cloud);
}

.subpage-hero {
  padding: 80px 0 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(57, 200, 180, 0.15), transparent 25%),
    var(--navy);
}

.subpage-hero .breadcrumb {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.subpage-hero .breadcrumb a:hover {
  color: var(--gold-bright);
}

.subpage-hero h1 {
  max-width: 1050px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.subpage-hero p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.subpage-main {
  padding: 70px 0 110px;
}

.content-card {
  max-width: 900px;
  padding: 55px 60px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.content-card h2 {
  padding-top: 22px;
  margin-top: 32px;
  font-size: 1.45rem;
  border-top: 1px solid var(--line);
}

.content-card h2:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.content-card h3 {
  margin-top: 24px;
  font-size: 1.05rem;
}

.content-card p,
.content-card li,
.content-card dd,
.content-card dt {
  font-size: 0.88rem;
}

.content-card ul,
.content-card ol {
  padding-left: 1.4em;
  color: var(--ink-soft);
}

.content-card a:not(.button) {
  color: #315d98;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.document-date {
  margin-top: 45px;
  color: #7b8798;
  font-size: 0.75rem !important;
  text-align: right;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 28%;
  color: var(--ink);
  background: #f8fafc;
}

.legal-table td {
  color: var(--ink-soft);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-panel {
  min-width: 0;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-panel-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.contact-panel-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-panel h2 {
  margin-bottom: 17px;
  font-size: 1.65rem;
}

.contact-panel-dark h2 {
  color: var(--white);
}

.contact-email {
  display: block;
  margin: 25px 0 20px;
  color: var(--gold-bright);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 900;
  word-break: break-all;
}

.contact-note {
  padding-top: 20px;
  margin-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.contact-panel-dark .contact-note {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.contact-panel-wide {
  grid-column: 1 / -1;
}

.contact-form-iframe {
  display: block;
  width: 100%;
  height: 1520px;
  margin-top: 24px;
  border: 0;
}

.contact-form-fallback {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-steps {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.contact-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  padding: 13px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.contact-steps span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 9px;
  font-size: 0.68rem;
  font-weight: 900;
}

[data-google-form][hidden] {
  display: none !important;
}

/* Sample report page */
.sample-banner {
  padding: 16px 20px;
  margin-bottom: 24px;
  color: #634d17;
  background: var(--gold-pale);
  border: 1px solid #f0d279;
  border-radius: 11px;
  font-size: 0.8rem;
  font-weight: 700;
}

.sample-report {
  max-width: 1050px;
  padding: 50px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sample-report-header {
  display: flex;
  padding-bottom: 26px;
  margin-bottom: 28px;
  align-items: end;
  justify-content: space-between;
  border-bottom: 2px solid var(--navy);
}

.sample-report-header h2 {
  margin: 0;
  font-size: 1.65rem;
}

.sample-report-header p {
  margin: 0;
  font-size: 0.75rem;
}

.sample-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 38px;
}

.sample-kpi {
  padding: 20px;
  background: var(--cloud);
  border-radius: 12px;
}

.sample-kpi small,
.sample-kpi strong,
.sample-kpi span {
  display: block;
}

.sample-kpi small {
  color: #718096;
  font-size: 0.68rem;
}

.sample-kpi strong {
  margin: 5px 0 2px;
  font-size: 1.55rem;
}

.sample-kpi span {
  color: #34806f;
  font-size: 0.65rem;
  font-weight: 800;
}

.sample-section {
  margin-top: 36px;
}

.sample-section h3 {
  padding-left: 13px;
  margin-bottom: 18px;
  border-left: 4px solid var(--gold);
}

.sample-bar-chart {
  display: grid;
  gap: 14px;
}

.sample-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr 42px;
  gap: 14px;
  align-items: center;
  color: #5f6d81;
  font-size: 0.72rem;
}

.sample-bar {
  height: 12px;
  overflow: hidden;
  background: #e8edf3;
  border-radius: 999px;
}

.sample-bar span {
  display: block;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
}

.sample-bar .bar-47 { width: 47%; }
.sample-bar .bar-55 { width: 55%; }
.sample-bar .bar-77 { width: 77%; }
.sample-bar .bar-100 { width: 100%; }

.sample-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  list-style: none;
}

.sample-actions li {
  padding: 20px;
  color: var(--ink-soft);
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.78rem;
}

.sample-actions strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.sample-cta {
  max-width: 1050px;
  padding: 34px;
  margin: 26px auto 0;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  text-align: center;
}

.sample-cta h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.55rem;
}

.sample-cta p {
  color: rgba(255, 255, 255, 0.66);
}

/* 404 */
.not-found {
  display: grid;
  min-height: 100vh;
  padding: 40px;
  place-items: center;
  color: var(--white);
  background: var(--navy-deep);
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--gold);
  font-size: clamp(5rem, 20vw, 10rem);
  line-height: 1;
}

.not-found h1 {
  margin: 25px 0 12px;
  color: var(--white);
}

.not-found p {
  color: rgba(255, 255, 255, 0.62);
}

/* Responsive */
@media (max-width: 980px) {
  .global-nav {
    gap: 18px;
  }

  .global-nav > a:not(.button) {
    font-size: 0.76rem;
  }

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

  .score-card {
    padding: 24px;
  }

  .note-card {
    right: 0;
    width: 310px;
  }

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

  .service-card-featured {
    grid-row: span 2;
  }

  .feature-layout,
  .report-promo,
  .faq-layout {
    gap: 50px;
  }

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

  .flow-grid li:nth-child(2)::after {
    display: none;
  }

  .footer-main {
    gap: 50px;
  }
}

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

  body {
    font-size: 15px;
  }

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

  .section {
    padding: 78px 0;
  }

  .sp-only {
    display: block;
  }

  .mobile-only {
    display: block;
  }

  .header-inner {
    min-height: 69px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .global-nav {
    position: fixed;
    z-index: 99;
    top: 69px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 30px 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--navy-deep);
  }

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

  .global-nav > a:not(.button) {
    padding: 16px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
  }

  .global-nav .button {
    margin-top: 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: block;
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 110px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero h1 em::after {
    display: none;
  }

  .hero-lead {
    font-size: 0.96rem;
  }

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

  .hero-points {
    gap: 10px 18px;
  }

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

  .score-card {
    top: 0;
    right: auto;
    left: 1%;
    width: 94%;
    transform: rotate(1deg);
  }

  .note-card {
    right: 0;
    bottom: 0;
    width: 90%;
  }

  .orbit-one {
    right: -45%;
  }

  .hero-bottom-shape {
    bottom: -98px;
  }

  .trust-strip {
    padding-top: 16px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 90px;
    padding: 10px 12px 10px 42px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .trust-number,
  .trust-grid > div:first-child .trust-number {
    top: 25px;
    left: 10px;
  }

  .trust-grid small {
    font-size: 0.62rem;
  }

  .split-heading,
  .feature-layout,
  .report-promo,
  .faq-layout,
  .final-cta-inner,
  .footer-main,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .problem-card {
    min-height: auto;
    padding: 29px 26px;
  }

  .service-card,
  .service-card-featured {
    grid-row: auto;
    min-height: auto;
    padding: 29px 26px;
  }

  .service-card h3,
  .service-card-featured h3 {
    max-width: 80%;
    margin: 38px 0 12px;
    font-size: 1.28rem;
  }

  .service-card-featured .service-number {
    font-size: 2.5rem;
  }

  .feature-list article {
    padding: 22px;
  }

  .price-head,
  .price-body {
    padding-right: 26px;
    padding-left: 26px;
  }

  .annual-box,
  .sprint-plan {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .annual-box {
    padding: 28px 24px;
  }

  .annual-prices {
    grid-template-columns: 1fr;
  }

  .sprint-plan {
    padding: 34px 26px;
    margin-top: 50px;
  }

  .sprint-copy h3 {
    font-size: 1.85rem;
  }

  .trial-option {
    padding: 12px 13px;
  }

  .trial-option p:first-child strong {
    font-size: 1.16rem;
  }

  .trial-option p:last-child strong {
    font-size: 0.96rem;
  }

  .report-preview {
    min-height: 390px;
    order: 2;
  }

  .report-paper {
    left: 6%;
    width: 86%;
    height: 370px;
    padding: 27px;
  }

  .report-paper-back {
    left: 10%;
  }

  .report-chart {
    height: 100px;
  }

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

  .flow-grid li:not(:last-child)::after {
    top: auto;
    right: 24px;
    bottom: -15px;
    content: "↓";
  }

  .flow-grid li:nth-child(2)::after {
    display: grid;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    padding-right: 42px;
    padding-left: 30px;
  }

  .faq-list details > div {
    padding-left: 30px;
  }

  .final-cta {
    padding: 68px 0;
  }

  .footer-main {
    padding-top: 55px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .subpage-hero {
    padding: 58px 0 55px;
  }

  .subpage-main {
    padding: 38px 0 80px;
  }

  .content-card,
  .contact-panel,
  .sample-report {
    padding: 30px 24px;
  }

  .contact-form-iframe {
    height: 1600px;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table tr {
    border-bottom: 1px solid var(--line);
  }

  .legal-table th,
  .legal-table td {
    border-bottom: 0;
  }

  .legal-table th {
    padding: 14px 16px 5px;
  }

  .legal-table td {
    padding: 5px 16px 15px;
  }

  .sample-report-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .sample-bar-row {
    grid-template-columns: 86px 1fr 35px;
    gap: 9px;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

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

  .mini-grid {
    gap: 8px;
  }

  .note-card {
    padding: 16px;
  }

  .sample-kpi-grid,
  .sample-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
