.ant-redesign {
  --ant-navy: #061c3d;
  --ant-gold: #ffc759;
  --ant-gold-deep: #d3950b;
  --ant-cream: #fff9ee;
  --ant-cream-strong: #fff4dd;
  margin: 0;
  background: var(--ant-cream);
  color: var(--ant-navy);
}

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

.ant-r-shell {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.ant-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid #e6e8ec;
  background: #fff;
  padding: 18px 60px;
}

.ant-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ant-navy);
  text-decoration: none;
  font: 600 20px/1 "Lexend", sans-serif;
}

.ant-brand img {
  width: 64px;
  height: 48px;
}

.ant-nav-cluster,
.ant-nav-links {
  display: flex;
  align-items: center;
}

.ant-nav-cluster { gap: 26px; }
.ant-nav-links { gap: 28px; }
.ant-nav-links a {
  color: rgba(6, 28, 61, 0.75);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.ant-nav-links a:hover { color: var(--ant-navy); }

.ant-nav-cta,
.ant-r-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.ant-nav-cta:hover,
.ant-nav-cta:focus-visible,
.ant-r-button:hover,
.ant-r-button:focus-visible { transform: translateY(-2px); }
.ant-nav-cta:active,
.ant-r-button:active { transform: translateY(1px) scale(0.985); }
.ant-nav-cta:focus-visible,
.ant-r-button:focus-visible { outline: 2px solid rgba(255, 199, 89, 0.55); outline-offset: 3px; }

/* Circled-arrow icon nudges forward on hover, like the homepage cards */
.ant-nav-cta:hover img,
.ant-r-button:hover img { transform: translateX(3px); }

.ant-nav-cta { background: var(--ant-navy); color: #fff; box-shadow: 0 6px 18px rgba(6, 28, 61, 0.15); }
.ant-nav-cta:hover,
.ant-nav-cta:focus-visible { background: #0d2a57; box-shadow: 0 12px 28px rgba(6, 28, 61, 0.22); }
.ant-nav-cta:active { background: #04152f; box-shadow: 0 6px 14px rgba(6, 28, 61, 0.16); }
.ant-menu-button { display: none; }

.ant-r-hero {
  position: relative;
  min-height: 532px;
  overflow: hidden;
}

.ant-r-hero-image,
.ant-r-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ant-r-hero-image { object-fit: cover; object-position: center 48%; }
.ant-r-hero-overlay { background: linear-gradient(180deg, rgba(6, 28, 61, 0.2), rgba(6, 28, 61, 0.55) 60%, rgba(6, 28, 61, 0.92)); }
.ant-r-hero-content { position: relative; z-index: 1; padding-block: 18px 80px; color: var(--ant-cream); }
.ant-r-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.ant-r-badges span { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(60,60,60,.6); padding: 5px 12px; font-size: 11px; font-weight: 600; letter-spacing: 1.1px; }
.ant-r-badges span:first-child { border-color: var(--ant-gold); background: var(--ant-gold); color: var(--ant-navy); }
.ant-r-hero h1 { max-width: 920px; margin: 0 0 16px; font: 700 clamp(40px, 4vw, 56px)/1.14 "Lexend", sans-serif; letter-spacing: -1.12px; }
.ant-r-hero p { max-width: 780px; margin: 0 0 34px; font-size: 17px; line-height: 1.65; }
.ant-r-button--gold { background: var(--ant-gold); color: var(--ant-navy); box-shadow: 0 10px 30px rgba(240, 185, 62, 0.4); }
.ant-r-button--gold:hover,
.ant-r-button--gold:focus-visible { background: #ffcd67; box-shadow: 0 14px 34px rgba(240, 185, 62, 0.5); }
.ant-r-button--gold:active { background: #f0b93e; box-shadow: 0 8px 18px rgba(240, 185, 62, 0.34); }
.ant-r-button--outline { border: 1px solid rgba(255,249,238,.4); color: var(--ant-cream); }
.ant-r-button--outline:hover,
.ant-r-button--outline:focus-visible { background: rgba(255, 249, 238, 0.12); border-color: rgba(255, 249, 238, 0.7); }
.ant-r-button--outline:active { background: rgba(255, 249, 238, 0.2); }
.ant-r-button[disabled] { cursor: not-allowed; }
.ant-r-button[disabled]:hover { transform: none; }

.ant-r-trust { background: var(--ant-cream-strong); padding: 28px 0; }
.ant-r-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ant-r-trust-grid div { display: grid; gap: 4px; text-align: center; }
.ant-r-trust-grid strong { font: 600 18px/24px "Lexend", sans-serif; }
.ant-r-trust-grid span { color: rgba(6,28,61,.6); font-size: 13px; }

.ant-r-section { padding: 96px 0; background: var(--ant-cream); }
.ant-r-section--cream { background: var(--ant-cream-strong); }
.ant-r-section-head { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.ant-r-section-head > span,
.ant-r-kicker { color: var(--ant-gold-deep); font-size: 12px; font-weight: 600; letter-spacing: 1.68px; }
.ant-r-section-head h2 { margin: 14px 0; font: 700 clamp(32px, 3vw, 40px)/1.2 "Lexend", sans-serif; letter-spacing: -.8px; }
.ant-r-section-head p { max-width: 700px; margin: 0 auto; color: rgba(6,28,61,.7); font-size: 17px; line-height: 1.65; }

.ant-species-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.ant-species-card { overflow: hidden; border: 1px solid rgba(6,28,61,.08); border-radius: 18px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.ant-species-card:hover { transform: translateY(-4px); box-shadow: 0 22px 45px -28px rgba(6,28,61,.35); }
.ant-species-card > img { width: 100%; height: 150px; object-fit: cover; }
.ant-species-body { padding: 22px; }
.ant-tag { display: inline-flex; border-radius: 999px; background: #ffdb94; padding: 5px 11px; font-size: 10px; font-weight: 600; letter-spacing: .8px; }
.ant-species-body h3 { margin: 10px 0 2px; font: 600 18px/24px "Lexend", sans-serif; }
.ant-species-body em { color: rgba(6,28,61,.55); font-size: 12px; font-style: normal; }
.ant-species-body dl { display: grid; gap: 10px; margin: 14px 0 10px; }
.ant-species-body dl div { display: grid; gap: 2px; }
.ant-species-body dt { color: rgba(6,28,61,.55); font-size: 9px; font-weight: 600; letter-spacing: 1.08px; }
.ant-species-body dd { margin: 0; font-size: 12px; font-weight: 600; }
.ant-species-body p { margin: 0; color: rgba(6,28,61,.78); font-size: 13px; line-height: 1.55; }

.ant-sign-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; max-width: 1000px; margin: auto; }
.ant-sign { display: flex; align-items: center; gap: 14px; min-height: 68px; border: 1px solid rgba(6,28,61,.08); border-radius: 12px; background: #fff; padding: 16px 20px; font-size: 15px; font-weight: 500; }
.ant-sign b { display: grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--ant-gold); }

.ant-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ant-process-grid article { min-height: 312px; border: 1px solid rgba(6,28,61,.08); border-radius: 18px; background: #fff; padding: 30px; }
.ant-process-grid b { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 12px; background: var(--ant-navy); color: var(--ant-gold); font: 600 20px "Lexend", sans-serif; }
.ant-process-grid h3 { margin: 18px 0 12px; font: 600 22px "Lexend", sans-serif; }
.ant-process-grid p { margin: 0; color: rgba(6,28,61,.72); font-size: 14px; line-height: 1.65; }

.ant-treatment-section { background: var(--ant-navy); padding: 96px 0; }
.ant-r-section-head--light h2 { color: var(--ant-cream); }
.ant-r-section-head--light p { color: rgba(255,249,238,.7); }
.ant-checklist-card { max-width: 1180px; margin: auto; overflow: hidden; border-radius: 18px; background: #fff; }
.ant-checklist-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(6,28,61,.1); padding: 24px 30px; }
.ant-checklist-top > div { display: grid; grid-template-columns: 48px auto; column-gap: 14px; }
.ant-checklist-icon { grid-row: 1 / 3; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--ant-gold); font-size: 12px; font-weight: 700; }
.ant-checklist-top strong { font: 600 18px "Lexend", sans-serif; }
.ant-checklist-top small { color: rgba(6,28,61,.55); }
.ant-checklist-top button { border: 0; border-radius: 999px; background: #e8edf3; padding: 12px 18px; color: rgba(6,28,61,.62); font-weight: 600; cursor: not-allowed; }
.ant-checklist-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 34px 42px; }
.ant-checklist-columns h3 { margin: 0 0 18px; font-size: 13px; letter-spacing: 1.4px; }
.ant-checklist-columns ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.ant-checklist-columns li { position: relative; padding-left: 22px; line-height: 1.5; }
.ant-checklist-columns li::before { position: absolute; left: 0; color: var(--ant-gold-deep); content: "\2713"; font-weight: 700; }
.ant-checklist-help { margin: 0; border-top: 1px solid rgba(6,28,61,.1); padding: 18px 30px; text-align: center; color: rgba(6,28,61,.7); }
.ant-checklist-help a { color: var(--ant-navy); font-weight: 600; }

.ant-local-redesign { background: var(--ant-navy); padding: 104px 0; color: #fff; }
.ant-local-redesign-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.ant-local-redesign h2 { margin: 14px 0 16px; font: 700 40px/1.1 "Lexend", sans-serif; }
.ant-local-redesign p { color: rgba(255,255,255,.72); line-height: 1.65; }
.ant-local-redesign aside { border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.06); padding: 36px; }
.ant-local-redesign aside h3 { margin: 0 0 18px; font: 600 18px "Lexend", sans-serif; }
.ant-area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ant-area-tags span { border: 1px solid rgba(255,199,89,.45); border-radius: 999px; padding: 7px 13px; color: var(--ant-gold); font-size: 13px; }
.ant-local-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.ant-local-stats div { display: grid; gap: 4px; }
.ant-local-stats strong { color: var(--ant-gold); font: 600 24px "Lexend", sans-serif; }
.ant-local-stats small { color: rgba(255,255,255,.58); }

.ant-aftercare-list { display: grid; gap: 14px; max-width: 760px; margin: auto; padding: 0; list-style: none; }
.ant-aftercare-list li { display: flex; align-items: center; gap: 18px; font-size: 16px; line-height: 1.6; }
.ant-aftercare-list b { display: grid; place-items: center; flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%; background: var(--ant-gold); }

.ant-faq-list { display: grid; gap: 14px; max-width: 900px; margin: auto; }
.ant-faq-list details { border: 1px solid rgba(6,28,61,.08); border-radius: 16px; background: #fff; padding: 0 30px; }
.ant-faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; cursor: pointer; list-style: none; font: 600 18px/1.4 "Lexend", sans-serif; }
.ant-faq-list summary::-webkit-details-marker { display: none; }
.ant-faq-list summary i { font: normal 24px/1 Inter, sans-serif; transition: transform .2s ease; }
.ant-faq-list details[open] summary i { transform: rotate(45deg); }
.ant-faq-list details p { margin: -6px 0 26px; color: rgba(6,28,61,.72); font-size: 15px; line-height: 1.65; }

.ant-final-cta { background: var(--ant-cream); padding: 64px 0 96px; }
.ant-final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; border-radius: 24px; background: var(--ant-navy); padding: 56px; color: var(--ant-cream); }
.ant-final-cta h2 { margin: 0 0 10px; font: 700 24px/1.4 "Lexend", sans-serif; }
.ant-final-cta p { max-width: 680px; margin: 0; color: rgba(255,249,238,.78); line-height: 1.6; }
.ant-final-cta-inner > div:last-child { display: flex; gap: 12px; flex: 0 0 auto; }

/* Interaction states — mirror the homepage card/link hovers */
.ant-process-grid article,
.ant-sign { transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.ant-process-grid article:hover { transform: translateY(-4px); box-shadow: 0 22px 45px -28px rgba(6, 28, 61, 0.35); }
.ant-sign:hover { transform: translateY(-2px); border-color: rgba(6, 28, 61, 0.16); box-shadow: 0 14px 30px -22px rgba(6, 28, 61, 0.4); }
.ant-faq-list summary { transition: color 200ms ease; }
.ant-faq-list summary:hover { color: var(--ant-gold-deep); }
.ant-area-tags span { transition: background-color 200ms ease, color 200ms ease, transform 200ms ease; }
.ant-area-tags span:hover { background: var(--ant-gold); color: var(--ant-navy); transform: translateY(-1px); }
.ant-nav-links a { transition: color 180ms ease; }

.ant-r-footer .footer-grid { grid-template-columns: minmax(260px, 380px) auto auto auto auto; }

@media (max-width: 1100px) {
  .ant-nav { padding-inline: 32px; }
  .ant-nav-links { gap: 18px; }
  .ant-species-grid { grid-template-columns: repeat(2, 1fr); }
  .ant-process-grid { grid-template-columns: repeat(2, 1fr); }
  .ant-r-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .ant-r-shell { width: min(100% - 40px, 680px); }
  .ant-menu-button { display: grid; gap: 4px; width: 44px; height: 44px; place-content: center; border: 0; border-radius: 50%; background: var(--ant-navy); }
  .ant-menu-button span:not(.sr-only) { width: 18px; height: 2px; background: #fff; }
  .ant-nav-cluster { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; background: #fff; padding: 24px; box-shadow: 0 16px 30px rgba(6,28,61,.12); }
  .ant-nav-cluster.is-open { display: flex; }
  .ant-nav-links { align-items: stretch; flex-direction: column; }
  .ant-nav-cta { align-self: stretch; }
  .ant-r-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .ant-local-redesign-grid,
  .ant-checklist-columns { grid-template-columns: 1fr; }
  .ant-final-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .ant-nav { min-height: 72px; padding: 12px 20px; }
  .ant-brand img { width: 52px; height: 40px; }
  .ant-r-shell { width: calc(100% - 32px); }
  .ant-r-hero { min-height: 640px; }
  .ant-r-hero-content { padding-block: 28px 52px; }
  .ant-r-hero h1 { font-size: 36px; line-height: 1.12; letter-spacing: -.7px; }
  .ant-r-hero p { font-size: 16px; }
  .ant-r-badges span:last-child { display: none; }
  .ant-r-trust-grid { gap: 24px 12px; }
  .ant-r-section,
  .ant-treatment-section,
  .ant-local-redesign { padding: 72px 0; }
  .ant-r-section-head { margin-bottom: 36px; }
  .ant-r-section-head h2,
  .ant-local-redesign h2 { font-size: 30px; }
  .ant-r-section-head p { font-size: 15px; }
  .ant-species-grid,
  .ant-process-grid,
  .ant-sign-grid { grid-template-columns: 1fr; }
  .ant-species-card > img { height: 180px; }
  .ant-process-grid article { min-height: auto; }
  .ant-checklist-top { align-items: flex-start; flex-direction: column; }
  .ant-checklist-columns { gap: 30px; padding: 28px 24px; }
  .ant-local-redesign aside { padding: 24px; }
  .ant-local-stats { grid-template-columns: 1fr; }
  .ant-faq-list details { padding-inline: 20px; }
  .ant-faq-list summary { font-size: 16px; }
  .ant-final-cta { padding: 48px 0 72px; }
  .ant-final-cta-inner { padding: 30px 24px; }
  .ant-final-cta-inner > div:last-child { width: 100%; flex-direction: column; }
  .ant-r-footer .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .ant-redesign * { scroll-behavior: auto !important; transition: none !important; }
}

/* Figma asset and interaction parity */
.ant-nav-cta img { width: 28px; height: 28px; }
.ant-r-button img { width: 24px; height: 24px; transition: transform 220ms ease; }
.ant-r-button:hover img { transform: translateX(3px); }
.ant-r-button--down:hover img { transform: translateY(3px) rotate(90deg); }

.ant-species-card {
  transition: transform 280ms cubic-bezier(.22,1,.36,1), box-shadow 280ms ease, border-color 280ms ease;
}
.ant-species-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,199,89,.8);
  box-shadow: 0 24px 48px -24px rgba(6,28,61,.38);
}
.ant-species-card > img {
  display: block;
  height: 150px;
  background: #fff7e4;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms cubic-bezier(.22,1,.36,1);
}
.ant-species-card:hover > img { transform: scale(1.06); }

.ant-sign {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.ant-sign:hover {
  transform: translateY(-4px);
  border-color: rgba(255,199,89,.8);
  box-shadow: 0 16px 28px -20px rgba(6,28,61,.35);
}
.ant-sign img { flex: 0 0 32px; width: 32px; height: 32px; }

.ant-process-grid article {
  transition: transform 260ms cubic-bezier(.22,1,.36,1), border-color 220ms ease, box-shadow 260ms ease;
}
.ant-process-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(255,199,89,.75);
  box-shadow: 0 24px 45px -28px rgba(6,28,61,.42);
}

.ant-treatment-section { background: var(--ant-cream); padding: 96px 0; }
.ant-prep-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  max-width: 1180px;
  margin: auto;
  border-radius: 20px;
  background: var(--ant-navy);
  padding: 48px;
  color: var(--ant-cream);
  box-shadow: 0 24px 60px -34px rgba(6,28,61,.45);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.ant-prep-card:hover { transform: translateY(-5px); box-shadow: 0 34px 70px -34px rgba(6,28,61,.58); }
.ant-prep-summary > p { margin: 20px 0; color: rgba(255,249,238,.78); font-size: 14px; line-height: 1.65; }
.ant-prep-title { display: flex; align-items: center; gap: 14px; }
.ant-prep-title small { color: var(--ant-gold); font-size: 10px; font-weight: 700; letter-spacing: 1.4px; }
.ant-prep-title h3 { margin: 2px 0 0; color: var(--ant-cream); font: 600 22px/1.2 "Lexend", sans-serif; }
.ant-pdf-icon { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border-radius: 11px; background: var(--ant-gold); color: var(--ant-navy); }
.ant-pdf-icon img { width: 24px; height: 24px; }
.ant-pdf-icon b { position: relative; padding-top: 12px; font-size: 9px; }
.ant-pdf-icon b::before { position: absolute; top: 0; left: 50%; width: 10px; height: 9px; border: 1.5px solid currentColor; border-radius: 1px; content: ""; transform: translateX(-50%); }
.ant-reentry { display: flex; align-items: center; gap: 14px; border-radius: 10px; background: rgba(255,255,255,.07); padding: 14px 16px; }
.ant-reentry > img { flex: 0 0 24px; width: 24px; height: 24px; }
.ant-reentry b { color: var(--ant-gold); font-size: 10px; letter-spacing: 1.3px; }
.ant-reentry p { margin: 2px 0 0; color: rgba(255,249,238,.82); font-size: 12px; }
.ant-download-button { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; border: 0; border-radius: 999px; background: var(--ant-gold); padding: 13px 20px; color: var(--ant-navy); font-weight: 600; opacity: 1; cursor: pointer; text-decoration: none; transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease; }
.ant-download-button:hover,
.ant-download-button:focus-visible { background: #ffcd67; box-shadow: 0 12px 28px rgba(240, 185, 62, .32); transform: translateY(-2px); }
.ant-download-button img { width: 24px; height: 24px; }
.ant-download-mark { display: grid; place-items: center; width: 19px; height: 19px; border: 1px solid currentColor; border-radius: 50%; }
.ant-file-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; color: rgba(255,249,238,.48); font-size: 10px; }
.ant-file-meta b { color: var(--ant-gold); letter-spacing: 1.2px; }
.ant-prep-groups { display: grid; gap: 28px; }
.ant-prep-group h3 { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; color: var(--ant-gold); font-size: 13px; letter-spacing: 1.82px; }
.ant-prep-group h3 img { width: 24px; height: 24px; }
.ant-prep-group ul { display: grid; gap: 12px; margin: 0; padding: 0 0 0 36px; list-style: none; }
.ant-prep-group li { position: relative; padding-left: 20px; color: rgba(255,249,238,.88); font-size: 14px; line-height: 1.55; }
.ant-prep-group li::before { position: absolute; top: .65em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--ant-gold); content: ""; }
.ant-treatment-section .ant-checklist-help { margin: 22px 0 0; border: 0; padding: 0; text-align: center; color: rgba(6,28,61,.64); font-size: 13px; }
.ant-treatment-section .ant-checklist-help strong { color: var(--ant-navy); }
.ant-treatment-section .ant-checklist-help a { color: inherit; font-weight: 500; }

.ant-aftercare-list img { flex: 0 0 32px; width: 32px; height: 32px; transition: transform 220ms ease; }
.ant-aftercare-list li:hover img { transform: rotate(8deg) scale(1.08); }

.ant-faq-item { overflow: hidden; border: 1px solid rgba(6,28,61,.08); border-radius: 16px; background: #fff; transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.ant-faq-item:hover { transform: translateY(-3px); border-color: rgba(255,199,89,.75); box-shadow: 0 18px 30px -24px rgba(6,28,61,.36); }
.ant-faq-item.is-open { border-color: rgba(6,28,61,.14); box-shadow: 0 12px 30px rgba(6,28,61,.08); }
.ant-faq-item button { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; border: 0; background: transparent; padding: 26px 30px; color: var(--ant-navy); cursor: pointer; text-align: left; font: 600 18px/1.4 "Lexend", sans-serif; transition: padding 220ms ease; }
.ant-faq-item.is-open button { padding-bottom: 14px; }
.ant-faq-item button i { position: relative; display: grid; place-items: center; flex: 0 0 24px; width: 24px; height: 24px; }
.ant-faq-item button i img { position: absolute; inset: 0; width: 24px; height: 24px; transition: transform 240ms ease; }
.ant-faq-item:not(.is-open) button i::after { position: absolute; inset: 0; background: url("./pest-images/ant-page/icons/faq-minus-closed.svg") center / 24px 24px no-repeat; content: ""; transform: rotate(90deg); transition: transform 240ms ease; }
.ant-faq-item.is-open button i img { transform: rotate(180deg); }
.ant-faq-answer { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 300ms cubic-bezier(.22,1,.36,1), opacity 180ms ease; }
.ant-faq-answer > div { min-height: 0; overflow: hidden; }
.ant-faq-item.is-open .ant-faq-answer { grid-template-rows: 1fr; opacity: 1; }
.ant-faq-answer p { margin: 0; padding: 0 70px 26px 30px; color: rgba(6,28,61,.72); font-size: 15px; line-height: 1.65; }

.ant-reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .ant-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 620ms cubic-bezier(.22,1,.36,1), transform 620ms cubic-bezier(.22,1,.36,1);
  transition-delay: calc(var(--reveal-order, 0) * 75ms);
}
.reveal-ready .ant-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  .ant-prep-card { grid-template-columns: 1fr; gap: 44px; padding: 36px; }
}

@media (max-width: 560px) {
  .ant-species-card > img { height: 180px; }
  .ant-prep-card { gap: 38px; border-radius: 16px; padding: 28px 22px; }
  .ant-prep-title h3 { font-size: 19px; }
  .ant-prep-group ul { padding-left: 6px; }
  .ant-prep-group li { padding-left: 18px; }
  .ant-faq-item button { padding: 22px 20px; font-size: 16px; }
  .ant-faq-answer p { padding: 0 20px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .ant-reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 820px) {
  .ant-redesign .ant-r-hero {
    min-height: 0 !important;
  }

  .ant-redesign .ant-r-hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 28, 61, 0.2), rgba(6, 28, 61, 0.08) 58%),
      linear-gradient(180deg, rgba(6, 28, 61, 0.44), rgba(6, 28, 61, 0.6) 56%, rgba(6, 28, 61, 0.76));
  }

  .ant-redesign .ant-r-hero-content {
    padding-block: 24px 34px !important;
  }

  .ant-redesign .ant-r-badges {
    margin-bottom: 12px;
  }

  .ant-redesign .ant-r-hero h1 {
    margin-bottom: 10px;
    font-size: 34px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.55px !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
  }

  .ant-redesign .ant-r-hero p {
    margin-bottom: 18px;
    font-size: 15px !important;
    line-height: 1.45 !important;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.36);
  }

  .ant-redesign .ant-r-button {
    min-height: 44px;
    padding: 11px 18px;
  }
}

@media (max-width: 640px) {
  .ant-redesign .ant-r-hero-content {
    padding-block: 16px 22px !important;
  }

  .ant-redesign .ant-r-hero h1 {
    font-size: 28px !important;
    line-height: 1.06 !important;
    letter-spacing: -0.45px !important;
  }

  .ant-redesign .ant-r-hero p {
    font-size: 13px !important;
    line-height: 1.38 !important;
  }
}

@media (max-width: 420px) {
  .ant-redesign .ant-r-hero-content { padding-block: 14px 18px !important; }
  .ant-redesign .ant-r-hero h1 {
    font-size: 27px !important;
    line-height: 1.04 !important;
  }

  .ant-redesign .ant-r-hero p {
    margin-bottom: 16px;
    line-height: 1.34 !important;
  }
}
