/* ============================================================
   Fremont Robotic Dental Implants landing page styles
   All rules scoped under .frdi-page so they cannot collide with
   the rest of the site (.container, .section, .btn, Tailwind, etc.)
   Generic utility names that collide with globals/Tailwind are
   renamed:  .container -> .frdi-container,  .section -> .frdi-section,
             .section-header.center -> .section-header.centered
   Keyframes are prefixed frdi- to avoid global collisions.
   Brand tokens map onto the frontend theme variables where possible.
   ============================================================ */

.frdi-page {
  /* Brand palette (mapped to frontend theme tokens where sensible) */
  --teal: var(--color-primary, #177466);
  --teal-dark: var(--color-heading, #0c4a41);
  --teal-deep: #083530;
  --teal-mid: #125f53;
  --teal-light: #1d8c7c;
  --teal-pale: #e8f4f2;
  --gold: var(--color-secondary, #c9a84c);
  --gold-dark: #a8893a;
  --gold-light: #e0c06e;
  --gold-pale: #fdf6e3;
  --white: #ffffff;
  --off-white: #fafbf9;
  --cream: #f6f3ea;
  --gray-light: #eaf0ee;
  --text-dark: #0f2b26;
  --text-body: #3d5450;
  --text-muted: #74908a;
  --border: rgba(23, 116, 102, 0.14);
  --shadow-card: 0 10px 40px rgba(15, 43, 38, 0.08);
  --shadow-card-hover: 0 20px 56px rgba(15, 43, 38, 0.14);
  --shadow-teal: 0 14px 44px rgba(12, 74, 65, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  font-family: "Work Sans", sans-serif;
  color: var(--text-body);
  background: var(--off-white);
  font-size: 1.2219rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Scoped reset ──────────────────────────────────────────── */
.frdi-page *,
.frdi-page *::before,
.frdi-page *::after {
  box-sizing: border-box;
}
.frdi-page img {
  max-width: 100%;
  display: block;
}
.frdi-page a {
  text-decoration: none;
  color: inherit;
}
.frdi-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.frdi-page p {
  margin: 0;
}
.frdi-page h1,
.frdi-page h2,
.frdi-page h3,
.frdi-page h4 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.frdi-page h2 {
  font-size: clamp(2.185rem, 3.91vw, 3.105rem);
}
.frdi-page h3 {
  font-size: 1.495rem;
}

.frdi-page .inline-link {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(23, 116, 102, 0.35);
  text-underline-offset: 2px;
  font-weight: 600;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}
.frdi-page .inline-link:hover {
  color: var(--teal-dark);
  text-decoration-color: currentColor;
}

.frdi-page .frdi-container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.frdi-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.058rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-out-quart),
    box-shadow 0.25s var(--ease-out-quart),
    background 0.25s var(--ease-out-quart);
  white-space: nowrap;
}
.frdi-page .btn:active {
  transform: scale(0.96);
  transition-duration: 0.1s;
}
.frdi-page .btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(23, 116, 102, 0.28);
}
.frdi-page .btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(23, 116, 102, 0.36);
}
.frdi-page .btn-gold {
  background: var(--gold);
  color: var(--teal-deep);
  box-shadow: 0 10px 26px rgba(201, 168, 76, 0.34);
}
.frdi-page .btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.frdi-page .btn-outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.frdi-page .btn-outline:hover {
  background: var(--teal-pale);
  transform: translateY(-2px);
}
.frdi-page .btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.frdi-page .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.frdi-page .btn-sm {
  padding: 11px 22px;
  font-size: 0.943rem;
}
.frdi-page .btn svg {
  flex-shrink: 0;
  transition: translate 0.25s var(--ease-out-quart);
}
.frdi-page .btn:hover svg {
  translate: 3px 0;
}

.frdi-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.874rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.frdi-page .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: frdi-pulse-dot 2.4s var(--ease-out-quart) infinite;
}
.frdi-page .eyebrow.on-dark {
  color: var(--gold-light);
}

.frdi-page .frdi-section {
  padding: 96px 0;
}
.frdi-page .section-header {
  max-width: 640px;
  margin-bottom: 52px;
}
.frdi-page .section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.frdi-page .section-header p {
  color: var(--text-muted);
  font-size: 1.2219rem;
  margin-top: 16px;
}
.frdi-page .bg-cream {
  background: var(--cream);
}
.frdi-page .bg-white {
  background: var(--white);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.frdi-page #hero {
  padding: 128px 0 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
  position: relative;
}
.frdi-page .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.frdi-page .hero-text h1 {
  font-size: clamp(2.645rem, 5.06vw, 4.025rem);
  margin-bottom: 20px;
}
.frdi-page .hero-text h1 span {
  color: var(--teal);
}
.frdi-page .hero-text p {
  font-size: 1.242rem;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 30px;
}
.frdi-page .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.frdi-page .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.frdi-page .hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.943rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
}
.frdi-page .hero-trust svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 3;
}
.frdi-page .hero-visual {
  position: relative;
}
.frdi-page .hero-visual .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-teal);
  aspect-ratio: 4/4.4;
}
.frdi-page .hero-visual .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frdi-page .hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
  animation: frdi-float-badge 3.6s ease-in-out 1.4s infinite;
}
.frdi-page .hero-badge-float .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.frdi-page .hero-badge-float .ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.2;
}
.frdi-page .hero-badge-float strong {
  display: block;
  font-size: 0.989rem;
  color: var(--text-dark);
}
.frdi-page .hero-badge-float span {
  font-size: 0.874rem;
  color: var(--text-muted);
}

/* Floating stat strip bridging hero to next section */
.frdi-page .stat-strip-wrap {
  position: relative;
  margin-top: 56px;
}
.frdi-page .stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--teal-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-teal);
  transform: translateY(50%);
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.frdi-page .stat-strip .stat {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.frdi-page .stat-strip .stat:last-child {
  border-right: none;
}
.frdi-page .stat-strip .stat .num {
  font-size: 2.185rem;
  font-weight: 800;
  color: var(--gold-light);
}
.frdi-page .stat-strip .stat .lbl {
  font-size: 0.897rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}
.frdi-page #hero-spacer {
  height: 90px;
  background: var(--off-white);
}

/* ─── Two-col utility ───────────────────────────────────────── */
.frdi-page .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.frdi-page .split.reverse .split-media {
  order: 2;
}
.frdi-page .split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}
.frdi-page .name-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  padding: 10px 20px 10px 10px;
  margin-top: -46px;
  margin-left: 24px;
  position: relative;
  z-index: 5;
}
.frdi-page .name-tag .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.frdi-page .name-tag strong {
  display: block;
  font-size: 0.9775rem;
  color: var(--text-dark);
}
.frdi-page .name-tag span {
  font-size: 0.828rem;
  color: var(--text-muted);
}
.frdi-page .stat-mini-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
  max-width: 360px;
}
.frdi-page .stat-mini {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}
.frdi-page .stat-mini .num {
  font-size: 1.725rem;
  font-weight: 800;
  color: var(--teal);
}
.frdi-page .stat-mini .lbl {
  font-size: 0.828rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── Reasons accordion ─────────────────────────────────────── */
.frdi-page .reason-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.frdi-page .reason-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    box-shadow 0.3s var(--ease-out-quart),
    border-color 0.3s var(--ease-out-quart);
}
.frdi-page .reason-item.active {
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.frdi-page .reason-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.frdi-page .reason-ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease-out-quart);
}
.frdi-page .reason-ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s var(--ease-out-quart);
}
.frdi-page .reason-item.active .reason-ic {
  background: var(--teal);
}
.frdi-page .reason-item.active .reason-ic svg {
  stroke: var(--white);
}
.frdi-page .reason-q-text {
  flex: 1;
  font-weight: 600;
  font-size: 1.127rem;
  color: var(--text-dark);
}
.frdi-page .reason-q .icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.frdi-page .reason-q .icon::before,
.frdi-page .reason-q .icon::after {
  content: "";
  position: absolute;
  background: var(--teal);
  border-radius: 2px;
}
.frdi-page .reason-q .icon::before {
  width: 10px;
  height: 2px;
}
.frdi-page .reason-q .icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.3s var(--ease-out-quart);
}
.frdi-page .reason-item.active .icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.frdi-page .reason-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-quart);
}
.frdi-page .reason-a-inner {
  padding: 0 22px 20px 82px;
}
.frdi-page .reason-a-inner p {
  color: var(--text-muted);
  font-size: 1.15rem;
}
.frdi-page .reason-cta {
  max-width: 960px;
  margin: 24px auto 0;
  background: var(--teal);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.frdi-page .reason-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.081rem;
  margin: 0;
}

/* ─── Implant option cards ──────────────────────────────────── */
.frdi-page .implant-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 20px 20px;
  transition:
    border-color 0.3s var(--ease-out-quart),
    box-shadow 0.3s var(--ease-out-quart),
    transform 0.3s var(--ease-out-quart);
}
.frdi-page .implant-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.frdi-page .implant-card:hover .ic {
  transform: scale(1.1) rotate(-4deg);
}
.frdi-page .implant-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-quart);
}
.frdi-page .implant-card .ic svg {
  width: 30px;
  height: 30px;
  fill: var(--gold-dark);
  stroke: none;
}
.frdi-page .implant-card h4 {
  font-size: 1.25rem;
}
.frdi-page .implant-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.frdi-page .implant-card-detailed {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 24px;
}
.frdi-page .implant-card-detailed p {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

/* ─── Yomi panel ────────────────────────────────────────────── */
.frdi-page .yomi-panel {
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
}
.frdi-page .yomi-panel .split {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
}
.frdi-page .yomi-feat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}
.frdi-page .yomi-feat-row span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.943rem;
  font-weight: 600;
  color: var(--teal-dark);
}
.frdi-page .yomi-feat-row svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}
.frdi-page .yomi-media {
  position: relative;
}
.frdi-page .yomi-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
}
.frdi-page .yomi-media video {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
  display: block;
}
.frdi-page .yomi-note {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 18px 20px;
  margin-top: -30px;
  position: relative;
  z-index: 5;
  font-size: 0.943rem;
  box-shadow: var(--shadow-teal);
  box-sizing: border-box;
}

/* ─── Location ──────────────────────────────────────────────── */
.frdi-page .location-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.frdi-page .location-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.15) saturate(1.05);
}
.frdi-page .location-info-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  padding: 26px 28px;
  max-width: 320px;
}
.frdi-page .location-info-card h3 {
  margin-bottom: 12px;
}
.frdi-page .loc-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9775rem;
  margin-bottom: 8px;
}
.frdi-page .loc-line svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.2;
  flex-shrink: 0;
  margin-top: 2px;
}
.frdi-page .area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}
.frdi-page .area-tags span {
  background: var(--cream);
  color: var(--teal-dark);
  font-size: 0.897rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
}

/* ─── Closing CTA ───────────────────────────────────────────── */
.frdi-page #closing-cta {
  padding: 20px 0 96px;
}
.frdi-page .cta-panel {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    var(--teal-deep) 0%,
    var(--teal-dark) 100%
  );
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.frdi-page .cta-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
}
.frdi-page .cta-panel::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.frdi-page .cta-panel h2 {
  color: var(--white);
}
.frdi-page .cta-panel p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 18px auto 32px;
  position: relative;
}
.frdi-page .cta-panel .hero-ctas {
  justify-content: center;
  position: relative;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.frdi-page .faq-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.frdi-page .faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    box-shadow 0.3s var(--ease-out-quart),
    transform 0.3s var(--ease-out-quart);
}
.frdi-page .faq-item.active {
  transform: scale(1.01);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.frdi-page .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.127rem;
  color: var(--text-dark);
}
.frdi-page .faq-q .icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.frdi-page .faq-q .icon::before,
.frdi-page .faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--teal);
  border-radius: 2px;
}
.frdi-page .faq-q .icon::before {
  width: 10px;
  height: 2px;
}
.frdi-page .faq-q .icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.3s var(--ease-out-quart);
}
.frdi-page .faq-item.active .icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.frdi-page .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-quart);
}
.frdi-page .faq-a-inner {
  padding: 0 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.frdi-page .faq-a-inner p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* ─── Keyframes ─────────────────────────────────────────────── */
@keyframes frdi-pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.65;
  }
}
@keyframes frdi-float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
/* ─── Reveal ────────────────────────────────────────────────── */
.frdi-page .reveal {
  opacity: 0;
  translate: 0 26px;
  transition:
    opacity 0.7s var(--ease-out-quart),
    translate 0.7s var(--ease-out-quart);
}
.frdi-page .reveal.visible {
  opacity: 1;
  translate: 0 0;
}
.frdi-page .reveal.d1 {
  transition-delay: 0.05s;
}
.frdi-page .reveal.d2 {
  transition-delay: 0.15s;
}
.frdi-page .reveal.d3 {
  transition-delay: 0.25s;
}
.frdi-page .reveal.d4 {
  transition-delay: 0.35s;
}
.frdi-page .reveal.d5 {
  transition-delay: 0.45s;
}
.frdi-page .reveal.d6 {
  transition-delay: 0.55s;
}
.frdi-page .implant-grid-4 .implant-card:nth-child(1) {
  transition-delay: 0.05s;
}
.frdi-page .implant-grid-4 .implant-card:nth-child(2) {
  transition-delay: 0.14s;
}
.frdi-page .implant-grid-4 .implant-card:nth-child(3) {
  transition-delay: 0.23s;
}
.frdi-page .implant-grid-4 .implant-card:nth-child(4) {
  transition-delay: 0.32s;
}
.frdi-page .reason-item:nth-child(1) {
  transition-delay: 0.05s;
}
.frdi-page .reason-item:nth-child(2) {
  transition-delay: 0.13s;
}
.frdi-page .reason-item:nth-child(3) {
  transition-delay: 0.21s;
}
.frdi-page .reason-item:nth-child(4) {
  transition-delay: 0.29s;
}

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

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 980px) {
  .frdi-page .hero-grid,
  .frdi-page .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .frdi-page .hero-badge-float {
    left: 12px;
  }
  .frdi-page .yomi-panel .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .frdi-page .split.reverse .split-media {
    order: -1;
  }
  .frdi-page .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .frdi-page .stat-strip .stat:nth-child(2) {
    border-right: none;
  }
  .frdi-page .yomi-panel {
    padding: 40px 26px;
  }
  .frdi-page .cta-panel {
    padding: 52px 28px;
  }
}
@media (max-width: 680px) {
  .frdi-page .frdi-section {
    padding: 64px 0;
  }
  .frdi-page .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  .frdi-page .hero-ctas {
    width: 100%;
  }
  .frdi-page .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .frdi-page .hero-badge-float {
    left: 12px;
    bottom: -16px;
    padding: 14px 16px;
  }
  .frdi-page .implant-grid-4 {
    grid-template-columns: 1fr;
  }
  .frdi-page .name-tag {
    margin-left: 0;
  }
  .frdi-page .location-info-card {
    position: static;
    margin-top: 16px;
    max-width: none;
  }
  .frdi-page .location-wrap {
    display: flex;
    flex-direction: column;
  }
  .frdi-page #hero {
    padding-top: 96px;
  }
}
