:root {
  --mma-blue: #0077c8;
  --mma-blue-dark: #005fa3;
  --mma-navy: #0c2340;
  --mma-teal: #0d9488;
  --mma-yellow: #f5c518;
  --mma-green: #22a06b;
  --mma-red: #e85d4c;
  --mma-bg: #f3f8fc;
  --mma-surface: #ffffff;
  --mma-border: #d7e3ef;
  --mma-text: #16324a;
  --mma-muted: #5a6f82;
  --header-h: 72px;
  --container: 1120px;
  --radius: 12px;
  --font: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--mma-text);
  background: var(--mma-surface);
  line-height: 1.7;
  padding-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  padding: 0.65rem 1rem;
  background: var(--mma-navy);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--mma-yellow);
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--mma-blue);
  outline-offset: 2px;
}

.mma-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

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

a {
  color: var(--mma-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 820px);
}

.sp-only {
  display: none;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none !important;
  cursor: pointer;
  line-height: 1.2;
}

.btn-cta-yellow {
  background: var(--mma-yellow);
  color: var(--mma-navy) !important;
}

.btn-cta-green {
  background: var(--mma-green);
  color: #fff !important;
}

.btn-cta-red {
  background: var(--mma-red);
  color: #fff !important;
  border-radius: 10px;
  width: 100%;
  padding: 0.95rem 1rem;
  font-size: 1.05rem;
}

.btn-outline {
  background: #fff;
  border-color: var(--mma-border);
  color: var(--mma-navy) !important;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--mma-border);
}

.header-top-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.site-branding .custom-logo-link img,
.site-branding .custom-logo {
  height: 56px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

.site-title {
  font-weight: 800;
  font-size: 2.15rem;
  line-height: 1.1;
  color: var(--mma-navy) !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-phone {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: var(--mma-navy);
  line-height: 1.2;
}

.header-phone__num {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--mma-blue);
}

.header-phone__meta {
  font-size: 0.72rem;
  color: var(--mma-muted);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 0.25rem;
  padding: 0.55rem;
  border: 1px solid var(--mma-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle-label {
  display: none;
}

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.nav-toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--mma-navy);
  border-radius: 2px;
}

.primary-nav {
  background: #fff;
  border-top: 1px solid #eef3f8;
}

.primary-nav .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .menu a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--mma-navy);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.primary-nav .menu a:hover {
  color: var(--mma-blue);
  border-bottom-color: var(--mma-blue);
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.85), transparent 45%),
    linear-gradient(160deg, #dff0fb 0%, #b9daf2 55%, #8ec4e8 100%);
  padding: 2rem 0 2.5rem;
}

.hero--banners {
  background: #fff;
  padding: 0;
}

.hero-banners {
  display: block;
  line-height: 0;
  font-size: 0;
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
}

.hero-banner-link {
  display: block;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.hero-form-band {
  background: var(--mma-blue);
  padding: 1.25rem 0 1.75rem;
}

.hero-form-band__inner {
  display: flex;
  justify-content: center;
}

.hero-form-band .mma-appraisal {
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.75rem;
  background: var(--mma-red);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.25;
  color: var(--mma-navy);
}

.hero-points {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--mma-blue);
}

.hero-sub {
  color: var(--mma-muted);
  margin: 0 0 1rem;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(12, 35, 64, 0.18);
}

.hero-visual {
  margin-top: 1rem;
}

.hero-visual__card {
  background: rgba(12, 35, 64, 0.88);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  max-width: 360px;
}

.hero-visual__card span {
  display: block;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.hero-visual__card strong {
  font-size: 1.2rem;
}

.hero-form-wrap {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

/* Appraisal form — Haishall-like theme (original CSS, MMA branding) */
.mma-appraisal {
  --af-cream: #fffede;
  --af-yellow: #f4dc00;
  --af-coral: #ff8585;
  --af-num-gray: #cccccc;
  --af-req: #ff1919;
  --af-opt: #1a68ae;
  --af-blue: #006ebb;
  width: 100%;
  max-width: 436px;
  margin-left: auto;
  box-shadow: 0 8px 24px rgba(0, 70, 120, 0.18);
}

.mma-appraisal__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.65rem 3.2rem 0.65rem 1rem;
  background: var(--af-yellow);
  color: var(--af-blue);
  text-align: center;
}

.mma-appraisal__title strong {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.mma-appraisal__badge {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff6b6b, #e10d0d 70%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.mma-appraisal .quote-form {
  background: var(--af-cream);
  padding: 0.85rem 0.85rem 1.15rem;
}

.quote-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
}

.quote-steps__item {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.4rem 0.25rem;
  background: #e6e6e6;
  color: #666;
}

.quote-steps__item.is-active {
  background: var(--af-blue);
  color: #fff;
}

.quote-lines {
  display: grid;
  gap: 0.55rem;
}

.quote-line {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 52px;
}

.quote-num {
  display: grid;
  place-content: center;
  background: var(--af-num-gray);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.quote-line.is-focus .quote-num {
  background: var(--af-coral);
}

.quote-line .quote-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.45rem;
  background: #fff;
  border: 2px solid #d0d0d0;
  min-width: 0;
}

.quote-line.is-focus .quote-field {
  border-color: var(--af-coral);
  background: #fff7f7;
}

.quote-field__label {
  position: static;
  width: auto;
  font-size: inherit;
}

.req,
.opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.req {
  background: var(--af-req);
}

.opt {
  background: var(--af-opt);
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.45rem 0.35rem;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-size: 0.92rem;
  background: transparent;
  color: #333;
  appearance: none;
}

.quote-field select {
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 1.5rem;
}

.quote-field textarea {
  resize: vertical;
  min-height: 2.4rem;
}

.quote-form__hint {
  margin: 0.7rem 0 0.35rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #555;
}

.quote-step__actions {
  margin-top: 0.85rem;
}

.quote-step__actions .btn {
  width: 100%;
}

.quote-step__actions--split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 0.5rem;
}

.quote-form__step-error {
  margin: 0 0 0.65rem;
  padding: 0.5rem 0.65rem;
  background: #fdecea;
  color: #a3281b;
  font-size: 0.84rem;
  font-weight: 700;
}

.quote-agree {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0.65rem 0 0.75rem;
  font-size: 0.86rem;
  color: #333;
}

.quote-agree input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  accent-color: var(--af-blue);
}

.quote-agree a {
  color: var(--af-blue);
  font-weight: 700;
  text-decoration: underline;
}

.mma-appraisal .btn-cta-red,
.quote-form .btn-cta-red {
  border-radius: 999px;
  border: 0;
  min-height: 52px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #ff6a6a 0%, #e22424 55%, #c91818 100%);
  box-shadow: 0 3px 0 #9e1010;
}

.mma-appraisal .btn-cta-red:hover,
.quote-form .btn-cta-red:hover {
  filter: brightness(1.03);
}

.mma-appraisal .btn-outline {
  border-radius: 999px;
  min-height: 52px;
  border: 2px solid var(--af-blue);
  color: var(--af-blue);
  background: #fff;
  font-weight: 800;
}

.quote-form__notice {
  padding: 0.65rem 0.75rem;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.quote-form__notice--ok {
  background: #e8f8ef;
  color: #116b43;
}

.quote-form__notice--err {
  background: #fdecea;
  color: #a3281b;
}

.mma-appraisal--full,
.mma-appraisal--area {
  max-width: 480px;
  margin: 0 auto;
}

/* Trust */
.trust-strip {
  background: var(--mma-navy);
  color: #fff;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0;
}

.trust-item {
  text-align: center;
  padding: 0.5rem;
}

.trust-item strong {
  display: block;
  font-size: 1.15rem;
}

.trust-item span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section:nth-child(even) {
  background: var(--mma-bg);
}

.section h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--mma-navy);
  text-align: center;
}

.section-lead {
  text-align: center;
  color: var(--mma-muted);
  margin: 0 auto 1.5rem;
  max-width: 40rem;
}

.section-more {
  text-align: center;
  margin: 1.25rem 0 0;
}

.text-link {
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--strengths {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.worry-card,
.strength-card,
.docs-card {
  background: #fff;
  border: 1px solid var(--mma-border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}

.info-card h3,
.worry-card h3,
.strength-card h3,
.docs-card h3 {
  margin: 0 0 0.5rem;
  color: var(--mma-navy);
  font-size: 1.05rem;
}

.info-card p,
.worry-card p,
.strength-card p {
  margin: 0;
  color: var(--mma-muted);
}

.worry-card {
  border-top: 4px solid var(--mma-yellow);
}

.strength-card {
  border-top: 4px solid var(--mma-blue);
}

/* Flow */
.flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.flow-step {
  background: #fff;
  border: 1px solid var(--mma-border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.flow-step__num {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--mma-blue);
  font-weight: 800;
  font-size: 0.85rem;
}

.flow-step h3,
.flow-step h2 {
  margin: 0 0 0.35rem;
  text-align: left;
  font-size: 1.05rem;
}

.flow-step p {
  margin: 0;
  color: var(--mma-muted);
}

.flow-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Docs */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.docs-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--mma-border);
  border-radius: 10px;
  padding: 0.2rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.85rem 0;
  color: var(--mma-navy);
}

.faq-item p {
  margin: 0 0 0.95rem;
  color: var(--mma-muted);
}

/* Cancel / bottom CTA */
.section-cancel {
  background: #fff8e8;
}

.section-cancel p {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.section.section-bottom-cta,
.footer-cta {
  background: var(--mma-blue) !important;
  color: #fff;
  text-align: center;
}

.section.section-bottom-cta {
  padding: 2.5rem 0;
}

.section.section-bottom-cta h2,
.section.section-bottom-cta p,
.bottom-cta-inner h2,
.footer-cta p,
.footer-cta-title,
.footer-cta-meta {
  margin: 0 0 0.5rem;
  color: #fff !important;
}

.footer-cta-title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
}

.footer-cta-meta {
  opacity: 0.92;
  font-size: 0.95rem;
}

.bottom-cta-phone,
.footer-cta-phone {
  display: inline-block;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  color: #fff !important;
  text-decoration: none !important;
  margin: 0.4rem 0 1rem;
}

.bottom-cta-actions,
.footer-cta-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--mma-navy);
  color: #d7e2ec;
}

.footer-cta {
  padding: 1.5rem 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-copy p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.footer-brand a,
.footer-menu a {
  color: #fff;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 0 1.2rem;
}

/* Page templates */
.page-hero {
  background: linear-gradient(160deg, #dff0fb, #b9daf2);
  padding: 2.2rem 0;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 0.4rem;
  color: var(--mma-navy);
}

.page-hero p {
  margin: 0;
  color: var(--mma-muted);
}

.outline-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 2rem;
  background: #fff;
}

.outline-table th,
.outline-table td {
  border: 1px solid var(--mma-border);
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.outline-table th {
  width: 30%;
  background: #f3f8fc;
  color: var(--mma-navy);
}

.page-content h2 {
  text-align: left;
  margin-top: 1.75rem;
}

.form-alt {
  text-align: center;
  margin-top: 1.25rem;
}

/* Sticky CTA */
.sticky-cta {
  display: none;
}

/* Responsive */
@media (max-width: 960px) {
  .sp-only {
    display: inline;
  }

  .header-actions .btn,
  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--mma-border);
    box-shadow: 0 12px 28px rgba(12, 35, 64, 0.12);
    z-index: 200;
  }

  .site-header {
    position: sticky;
  }

  .header-top {
    position: relative;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav .menu {
    flex-direction: column;
  }

  .primary-nav .menu a {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--mma-border);
  }

  .hero-inner,
  .card-grid--3,
  .docs-grid,
  .footer-main,
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .mma-appraisal {
    max-width: none;
    margin: 0;
  }

  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sticky-cta a {
    text-align: center;
    padding: 0.85rem 0.4rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
  }

  .sticky-cta__phone {
    background: var(--mma-navy);
  }

  .sticky-cta__web {
    background: var(--mma-blue);
  }

  .sticky-cta__line {
    background: var(--mma-green);
  }

  body {
    padding-bottom: 56px;
  }
}

@media (max-width: 640px) {
  .hero:not(.hero--banners) {
    padding-top: 1.25rem;
  }

  .hero--banners {
    padding: 0;
  }

  .site-branding .custom-logo-link img,
  .site-branding .custom-logo {
    height: 48px;
    max-width: 60px;
  }

  .site-title {
    font-size: 1.65rem;
  }

  .section {
    padding: 2.25rem 0;
  }
}

/* Phase 2 — results / refund / voices / news */
.results-grid,
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.result-card,
.voice-card {
  background: #fff;
  border: 1px solid var(--mma-border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.voice-card {
  padding: 1.1rem 1.15rem;
}

.result-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #e8eef5, #d5dde8);
  overflow: hidden;
}

.result-card__media--empty {
  display: grid;
  place-items: center;
}

.result-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card__placeholder {
  width: 3rem;
  height: 1.75rem;
  border-radius: 0.35rem 0.35rem 0.2rem 0.2rem;
  background: #9aafc4;
  position: relative;
  opacity: 0.55;
}

.result-card__placeholder::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  top: -0.45rem;
  height: 0.55rem;
  border-radius: 0.35rem 0.35rem 0 0;
  background: #9aafc4;
}

.result-card__body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.result-card h3,
.result-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--mma-navy);
  text-align: left;
}

.result-card ul {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}

.result-card li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.25rem 0;
  border-bottom: 1px dashed var(--mma-border);
  font-size: 0.9rem;
}

.result-card li span {
  color: var(--mma-muted);
}

.result-card__price {
  margin: auto 0 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
}

.result-card__price strong {
  color: var(--mma-red);
  font-size: 1.35rem;
}

.result-card__price small {
  font-size: 0.85rem;
  margin-left: 0.15rem;
}

/* Homepage buy-results slider */
.results-slider {
  position: relative;
}

.results-slider__viewport {
  overflow: hidden;
}

.results-slider__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.results-slider__slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
}

.results-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.results-slider__btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--mma-border);
  border-radius: 999px;
  background: #fff;
  color: var(--mma-navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.results-slider__btn:hover,
.results-slider__btn:focus-visible {
  background: var(--mma-navy);
  border-color: var(--mma-navy);
  color: #fff;
  outline: none;
}

.results-slider__btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.results-slider__dots {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 12rem;
}

.results-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #c5ced8;
  cursor: pointer;
}

.results-slider__dot.is-active {
  background: var(--mma-red);
  width: 1.15rem;
}

.refund-banner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.25rem;
  align-items: center;
  background: linear-gradient(135deg, #0c2340, #0077c8);
  color: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
}

.refund-banner h2,
.refund-banner p {
  color: #fff;
  text-align: left;
  margin: 0 0 0.55rem;
}

.refund-banner__eyebrow {
  font-weight: 700;
  opacity: 0.9;
}

.refund-banner__note {
  font-size: 0.82rem;
  opacity: 0.85;
}

.refund-banner__stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
}

.refund-banner__stat span {
  display: block;
  font-weight: 700;
}

.refund-banner__stat strong {
  display: block;
  font-size: 2rem;
  margin: 0.25rem 0 0.85rem;
}

.refund-banner__stat small {
  font-size: 1rem;
}

.voice-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 0.55rem;
  font-weight: 700;
  color: var(--mma-navy);
}

.voice-card__score {
  color: var(--mma-blue);
  font-size: 0.85rem;
}

.voice-card__body p {
  margin: 0;
  color: var(--mma-muted);
}

.news-columns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.news-block {
  background: #fff;
  border: 1px solid var(--mma-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
}

.news-block h2 {
  text-align: left;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

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

.teaser-list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--mma-border);
}

.teaser-list time {
  font-size: 0.8rem;
  color: var(--mma-muted);
}

.teaser-list--large li {
  padding: 1rem 0;
}

.teaser-list--large p {
  margin: 0.25rem 0 0;
  color: var(--mma-muted);
}

.single-article h1 {
  margin-top: 0.35rem;
}

.single-meta {
  color: var(--mma-muted);
  margin: 0;
}

/* Phase 3 — areas + refund calc */
.area-promise {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  margin: 0 0 2rem;
  padding: 1.1rem 1.25rem;
  list-style: none;
  background: linear-gradient(160deg, #e8f4fc, #f7fbfe);
  border: 1px solid var(--mma-border);
  border-radius: var(--radius);
}

.area-promise li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--mma-navy);
  font-weight: 500;
}

.area-promise li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mma-teal);
}

.area-region-block {
  margin-bottom: 1.75rem;
}

.area-region-block h2 {
  text-align: left;
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--mma-blue);
}

.area-pref-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.area-pref-list li a {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  background: #fff;
  border: 1px solid var(--mma-border);
  border-radius: 8px;
  color: var(--mma-navy);
  font-weight: 500;
  text-decoration: none;
}

.area-pref-list li a:hover {
  border-color: var(--mma-blue);
  background: #f0f7fc;
  text-decoration: none;
}

.area-pref-list--home {
  justify-content: center;
  margin-bottom: 1.25rem;
}

.area-single-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.area-highlights,
.area-nearby {
  margin-top: 1.75rem;
}

.area-highlights ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.refund-calc {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}

.refund-calc__result {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-radius: var(--radius);
}

.refund-calc__result strong {
  font-size: 1.5rem;
  color: var(--mma-navy);
}

.refund-calc__note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--mma-muted);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
}

.sitemap-grid h2,
.sitemap-grid h3 {
  text-align: left;
}

.sitemap-grid h3 {
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
  color: var(--mma-muted);
}

@media (max-width: 960px) {
  .results-grid,
  .voices-grid,
  .news-columns-grid,
  .refund-banner,
  .area-single-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .results-slider__slide {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .area-promise {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .results-slider__slide {
    flex-basis: 100%;
  }
}
