/* TastyMeal — Restaurant partner landing (B2B first)
   Brand: orange / black / white */

:root {
  --tm-orange: #e85800;
  --tm-orange-h: #ff6a00;
  --tm-orange-soft: #fff4ec;
  --tm-black: #111111;
  --tm-ink: #1a1a1a;
  --tm-muted: #5c5c5c;
  --tm-line: #e8e8e8;
  --tm-bg: #fafafa;
  --tm-white: #ffffff;
  --tm-shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
  --tm-shadow-lg: 0 24px 60px rgba(17, 17, 17, 0.12);
  --tm-radius: 16px;
  --tm-radius-sm: 10px;
  --tm-max: 1120px;
  --tm-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--tm-font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--tm-ink);
  background: var(--tm-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--tm-orange);
  text-decoration: none;
}

a:hover {
  color: var(--tm-orange-h);
}

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

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--tm-line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tm-black);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px 20px;
}

.nav a {
  color: var(--tm-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--tm-black);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--tm-bg);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s, color 0.15s;
  text-decoration: none;
  font-family: inherit;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(145deg, var(--tm-orange-h), var(--tm-orange));
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(232, 88, 0, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
  color: #fff !important;
}

.btn-ghost {
  background: transparent;
  border-color: var(--tm-line);
  color: var(--tm-black) !important;
}

.btn-ghost:hover {
  border-color: var(--tm-orange);
  color: var(--tm-orange) !important;
  background: var(--tm-orange-soft);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
  background: var(--tm-white);
}

/* Food / partnership atmosphere (low opacity under text) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("../images/hero-partnership.jpg") center 42% / cover no-repeat;
  /* ~15% more visible than 0.32 (0.32 + 0.15 ≈ 0.47) */
  opacity: 0.47;
  transform: scale(1.02);
  pointer-events: none;
}

/* Soft white + warm orange so headline stays readable (lighter scrim so photo shows) */
.hero-bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.58) 42%,
      rgba(255, 244, 236, 0.72) 100%
    ),
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 255, 255, 0.42), transparent 65%);
}

.hero-tight {
  min-height: calc(88vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 56px 0 64px;
}

.hero-tight > .container {
  position: relative;
  z-index: 2;
}

.hero-copy-center h1 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-copy-center .hero-lead {
  color: #3a3a3a;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-grid-single {
  grid-template-columns: 1fr;
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy-center {
  margin-inline: auto;
}

.hero-copy-center .hero-lead {
  margin-inline: auto;
}

.hero-actions-one {
  justify-content: center;
}

.hero-lead-short {
  font-size: 1.2rem;
  max-width: 34em;
  margin-bottom: 0;
}

/* Hero 1–4 points (same one-line bullets as partner) */
.hero-points-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin: 0 auto 0;
  max-width: 56em;
  font-size: clamp(0.92rem, 1.7vw, 1.05rem);
  font-weight: 600;
  line-height: 1.45;
  color: #3a3a3a;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.hero-point-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.45em;
  height: 1.45em;
  border-radius: 50%;
  background: var(--tm-orange);
  color: #fff;
  font-size: 0.78em;
  font-weight: 800;
  line-height: 1;
}

.hero-point-sep {
  color: rgba(0, 0, 0, 0.22);
  font-weight: 700;
  user-select: none;
}

/* Modern TastyMeal orange separator (gradient bars + center glow) */
.hero-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px auto 18px;
  max-width: 320px;
  padding: 0 8px;
}

.hero-sep-bar {
  flex: 1 1 auto;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ffb272 18%,
    #e85800 50%,
    #ffb272 82%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(232, 88, 0, 0.28);
}

.hero-sep-bar:first-child {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 178, 114, 0.35) 25%,
    #ff8a3d 70%,
    #e85800 100%
  );
}

.hero-sep-bar:last-child {
  background: linear-gradient(
    90deg,
    #e85800 0%,
    #ff8a3d 30%,
    rgba(255, 178, 114, 0.35) 75%,
    transparent 100%
  );
}

.hero-sep-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff8a3d 0%, #e85800 100%);
  box-shadow:
    0 0 0 4px rgba(232, 88, 0, 0.14),
    0 0 14px rgba(232, 88, 0, 0.45);
}

.hero-claim-text {
  margin: 0 auto 26px;
  max-width: 28em;
  text-align: center;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--tm-ink);
}

@media (max-width: 720px) {
  .hero-points-line {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    max-width: 24em;
    margin-inline: auto;
  }

  .hero-point-sep {
    display: none;
  }

  .hero-point {
    white-space: normal;
  }
}

.problem-band {
  padding: 36px 0;
  background: var(--tm-black);
  color: #fff;
}

.problem-text {
  margin: 0;
  text-align: center;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36em;
  margin-inline: auto;
}

.orders-tight {
  max-width: 720px;
  margin-inline: auto;
}

.orders-tight h2 {
  margin-bottom: 20px;
}

.tight-points {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.tight-points li {
  padding: 14px 0;
  border-top: 1px solid var(--tm-line);
  color: var(--tm-muted);
  font-weight: 600;
  font-size: 1.02rem;
}

.tight-points li:last-child {
  border-bottom: 1px solid var(--tm-line);
}

.tight-points strong {
  color: var(--tm-ink);
}

.orders-visual {
  margin: 0;
  border-radius: var(--tm-radius);
  overflow: hidden;
  border: 1px solid var(--tm-line);
  box-shadow: var(--tm-shadow);
}

.orders-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.proof-block {
  margin: 0 auto;
  max-width: 640px;
  padding: 40px 32px;
  border-left: 4px solid var(--tm-orange);
  background: var(--tm-bg);
  border-radius: 0 var(--tm-radius) var(--tm-radius) 0;
}

.proof-block .proof-lead {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--tm-black);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.3;
}

.proof-block p {
  margin: 0 0 12px;
  color: var(--tm-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.proof-block p:last-child {
  margin-bottom: 0;
}

.kitchen-short {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.kitchen-short-copy h2 {
  margin-bottom: 12px;
}

.kitchen-short-copy p {
  margin: 0;
  color: var(--tm-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.kitchen-hero-compact {
  margin: 0;
}

.compare-tight {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.compare-lines {
  text-align: left;
  margin-top: 24px;
}

.compare-lines p {
  margin: 0 0 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--tm-bg);
  border: 1px solid var(--tm-line);
  color: var(--tm-muted);
  font-weight: 600;
}

.compare-lines p:last-child {
  background: var(--tm-orange-soft);
  border-color: rgba(232, 88, 0, 0.25);
  color: var(--tm-ink);
}

.final-cta {
  text-align: center;
  background: var(--tm-black);
  color: #fff;
  border-radius: 24px;
  padding: 56px 32px;
  margin-bottom: 32px;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}

.final-cta > p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 28px;
  font-size: 1.1rem;
}

.soft-under {
  margin: 20px 0 0;
}

.soft-under a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  font-size: 0.95rem;
}

.soft-under a:hover {
  color: #fdba74;
}

.consult-soft {
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--tm-shadow);
}

@media (max-width: 960px) {
  .kitchen-short {
    grid-template-columns: 1fr;
  }

  .hero-tight {
    min-height: auto;
    padding: 48px 0 40px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--tm-orange-soft);
  color: var(--tm-orange);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--tm-black);
}

.hero h1 em {
  font-style: normal;
  color: var(--tm-orange);
}

.hero-lead {
  margin: 0 0 28px;
  font-size: 1.125rem;
  color: var(--tm-muted);
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-bottom: 28px;
}

/* Secondary CTA — text only, never competes with primary Register */
.btn-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--tm-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.btn-text:hover {
  color: var(--tm-orange);
  border-bottom-color: var(--tm-orange);
}

.section-cta-line {
  text-align: center;
  margin: 40px 0 0;
}

.soft-link a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.95rem;
}

.soft-link a:hover {
  color: #fdba74;
}

.why-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--tm-white);
  border: 1px solid var(--tm-line);
  border-radius: var(--tm-radius);
  padding: 28px 24px;
  box-shadow: var(--tm-shadow);
  position: relative;
}

.why-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-weight: 800;
}

.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--tm-orange-h), var(--tm-orange));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0;
}

.why-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.why-card p {
  margin: 0;
  color: var(--tm-muted);
  font-size: 0.98rem;
}

.orders-body {
  margin: 0 0 24px;
  color: var(--tm-muted);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.55;
}

.premium-list li {
  font-weight: 700;
  color: var(--tm-ink);
}

.kitchen-hero {
  margin: 0 0 32px;
  border-radius: var(--tm-radius);
  overflow: hidden;
  border: 1px solid var(--tm-line);
  box-shadow: var(--tm-shadow-lg);
  background: var(--tm-bg);
}

.kitchen-hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.kitchen-hero figcaption {
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--tm-muted);
  background: var(--tm-white);
  border-top: 1px solid var(--tm-line);
}

.kitchen-hero figcaption strong {
  color: var(--tm-ink);
}

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

.kitchen-card {
  background: var(--tm-bg);
  border: 1px solid var(--tm-line);
  border-radius: var(--tm-radius);
  padding: 24px 22px;
}

.kitchen-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.kitchen-card p {
  margin: 0 0 14px;
  color: var(--tm-muted);
  font-size: 0.95rem;
}

.flow-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--tm-muted);
  font-weight: 600;
}

.flow-list li {
  margin-bottom: 10px;
}

.eligibility-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  background: var(--tm-white);
  border: 1px solid var(--tm-line);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--tm-shadow);
}

@media (max-width: 960px) {
  .why-three,
  .kitchen-grid {
    grid-template-columns: 1fr;
  }
}

.eligibility-badge {
  text-align: center;
}

.eligibility-badge p {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--tm-muted);
  font-weight: 600;
}

.fhrs-badge-lg {
  max-height: 120px;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .eligibility-panel {
    grid-template-columns: 1fr;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.88rem;
  color: var(--tm-muted);
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tm-orange);
}

.hero-media {
  position: relative;
}

.hero-media figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--tm-shadow-lg);
  border: 1px solid var(--tm-line);
  background: var(--tm-bg);
  aspect-ratio: 16 / 10;
}

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

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background:
    linear-gradient(135deg, var(--tm-orange-soft), #f0f0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tm-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-float {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--tm-black);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--tm-shadow);
  max-width: 220px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.hero-float strong {
  display: block;
  color: var(--tm-orange-h);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* —— Sections —— */
section {
  padding: 80px 0;
}

.section-muted {
  background: var(--tm-bg);
}

.section-dark {
  background: var(--tm-black);
  color: #fff;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  color: var(--tm-orange);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.section-dark .section-kicker {
  color: #fdba74;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: inherit;
}

.section-lead {
  margin: 0;
  color: var(--tm-muted);
  font-size: 1.05rem;
}

/* —— Stats —— */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: var(--tm-white);
  border: 1px solid var(--tm-line);
  border-radius: var(--tm-radius);
  padding: 22px 20px;
  box-shadow: var(--tm-shadow);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.65rem;
  color: var(--tm-orange);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat-card span {
  font-size: 0.88rem;
  color: var(--tm-muted);
  font-weight: 600;
}

.stat-card-fhrs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fhrs-badge-stat {
  max-height: 52px;
  max-width: 120px;
  margin: 0 auto;
}

/* —— Why / model —— */
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.model-copy h2 {
  color: var(--tm-black);
}

.model-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.model-list li {
  position: relative;
  padding: 14px 0 14px 40px;
  border-top: 1px solid var(--tm-line);
  font-weight: 600;
  color: var(--tm-ink);
}

.model-list li:last-child {
  border-bottom: 1px solid var(--tm-line);
}

.model-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tm-orange-soft);
  color: var(--tm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.model-media figure {
  margin: 0;
  border-radius: var(--tm-radius);
  overflow: hidden;
  border: 1px solid var(--tm-line);
  box-shadow: var(--tm-shadow);
  aspect-ratio: 16 / 10;
  background: var(--tm-bg);
}

.model-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.benefit {
  background: var(--tm-white);
  border: 1px solid var(--tm-line);
  border-radius: var(--tm-radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow);
  border-color: rgba(232, 88, 0, 0.35);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--tm-orange-soft);
  color: var(--tm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.benefit h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.benefit p {
  margin: 0;
  color: var(--tm-muted);
  font-size: 0.95rem;
}

/* —— Feature rows —— */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse .feature-text {
  order: 2;
}

.feature-row.reverse .feature-visual {
  order: 1;
}

.feature-visual figure {
  margin: 0;
  border-radius: var(--tm-radius);
  overflow: hidden;
  border: 1px solid var(--tm-line);
  box-shadow: var(--tm-shadow);
  aspect-ratio: 16 / 10;
  background: var(--tm-bg);
}

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

.feature-text h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.feature-text p {
  margin: 0 0 12px;
  color: var(--tm-muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--tm-bg);
  border: 1px solid var(--tm-line);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tm-ink);
}

/* —— Compare —— */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-card {
  border-radius: var(--tm-radius);
  padding: 28px 24px;
  border: 1px solid var(--tm-line);
}

.compare-card.them {
  background: var(--tm-bg);
}

.compare-card.us {
  background: var(--tm-orange-soft);
  border-color: rgba(232, 88, 0, 0.25);
}

.compare-card h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  color: var(--tm-muted);
  font-weight: 600;
}

.compare-card.us li {
  color: var(--tm-ink);
}

/* —— How it works —— */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--tm-radius);
  padding: 24px 20px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tm-orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* —— FAQ —— */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--tm-line);
  border-radius: var(--tm-radius-sm);
  background: var(--tm-white);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--tm-orange);
  font-weight: 400;
}

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

.faq-item .faq-body {
  padding: 0 20px 18px;
  color: var(--tm-muted);
  font-size: 0.98rem;
}

/* —— Apply / CTA —— */
.apply {
  padding: 80px 0 100px;
}

.apply-panel {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(232, 88, 0, 0.2), transparent 50%),
    var(--tm-black);
  color: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  box-shadow: var(--tm-shadow-lg);
}

.apply-copy h2 {
  color: #fff;
}

.apply-copy p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px;
}

.apply-form {
  background: var(--tm-white);
  color: var(--tm-ink);
  border-radius: var(--tm-radius);
  padding: 28px 24px;
}

.apply-form h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.apply-form .form-sub {
  margin: 0 0 20px;
  color: var(--tm-muted);
  font-size: 0.9rem;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--tm-ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--tm-line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  background: var(--tm-white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--tm-orange);
  box-shadow: 0 0 0 3px rgba(232, 88, 0, 0.15);
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

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

.form-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--tm-muted);
}

.check-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  line-height: 1.4;
  cursor: pointer;
  color: var(--tm-ink);
}

.check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--tm-orange);
}

.req-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 0;
}

.req-banner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--tm-white);
  border: 1.5px solid rgba(232, 88, 0, 0.35);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tm-ink);
  box-shadow: 0 4px 14px rgba(232, 88, 0, 0.08);
}

.req-banner span:not(.req-hygiene)::before {
  content: "✓";
  color: var(--tm-orange);
  font-weight: 800;
}

.req-banner .req-hygiene {
  gap: 10px;
  padding: 8px 14px 8px 10px;
}

/* Official FHRS sticker (from TM catalog assets / FSA scheme) */
.fhrs-badge {
  height: auto;
  width: auto;
  max-height: 56px;
  max-width: 160px;
  object-fit: contain;
  flex-shrink: 0;
}

.fhrs-badge-sm {
  max-height: 36px;
  max-width: 90px;
}

.benefit-icon-fhrs {
  background: #fff !important;
  border: 1px solid var(--tm-line);
  width: auto !important;
  min-width: 48px;
  height: auto !important;
  min-height: 48px;
  padding: 6px 8px;
}

.fhrs-credit {
  margin: 14px 0 0;
}

.fhrs-credit .fhrs-badge {
  max-height: 64px;
  max-width: 180px;
}

.fhrs-credit-dark .fhrs-badge {
  background: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.fhrs-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  background: var(--tm-bg);
  border-radius: 12px;
  border: 1px solid var(--tm-line);
}

.fhrs-field .fhrs-badge {
  max-height: 52px;
}

.form-success {
  display: none;
  padding: 20px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  color: #065f46;
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

.apply-form.is-sent .form-fields {
  display: none;
}

/* —— Footer —— */
.site-footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--tm-line);
  background: var(--tm-bg);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--tm-muted);
}

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

.footer-links a {
  color: var(--tm-muted);
  font-weight: 600;
  font-size: 0.88rem;
}

/* —— Reveal animation —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* —— Responsive —— */
@media (max-width: 960px) {
  .hero-grid,
  .model-grid,
  .feature-row,
  .feature-row.reverse .feature-text,
  .feature-row.reverse .feature-visual,
  .apply-panel {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-text,
  .feature-row.reverse .feature-visual {
    order: unset;
  }

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

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

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

  .hero-float {
    left: 12px;
    bottom: 12px;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--tm-line);
    box-shadow: var(--tm-shadow);
  }

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

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--tm-line);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .benefits,
  .compare,
  .steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 24px;
  }

  .apply-panel {
    padding: 28px 20px;
  }

  section {
    padding: 56px 0;
  }
}

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

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