/* ═══════════════════════════════════════════════════
   COSMO ORAL & MAXILLOFACIAL — Self-contained styles
   Primary:  #342005  (dark brown)
   Accent:   #ffddb0  (warm cream)
   Alt-bg:   #faf7f3
   Fonts:    Montserrat · Poppins · Playfair Display
═══════════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

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

a { text-decoration: none; }

/* ─────────────────────────────
   UTILITY
───────────────────────────── */
.omf-tagline {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #342005;
  border-bottom: 3px solid #ffddb0;
  padding-bottom: 2px;
  margin-bottom: 1rem;
}

.omf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #ffddb0;
  color: #342005;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

.omf-section-head { margin-bottom: 2.5rem; }

.omf-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.45;
  color: #1a1a1a;
  margin-top: .4rem;
}

.omf-section-sub {
  font-size: .95rem;
  color: #555;
  line-height: 1.75;
  max-width: 680px;
  margin: 1rem auto 0;
}

/* ─────────────────────────────
   BUTTONS
───────────────────────────── */
.omf-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.omf-btn--primary {
  background: #342005;
  color: #ffddb0;
  border-color: #342005;
}
.omf-btn--primary:hover {
  background: transparent;
  color: #342005;
  border-color: #342005;
}

.omf-btn--outline {
  background: transparent;
  color: #342005;
  border-color: #342005;
}
.omf-btn--outline:hover {
  background: #342005;
  color: #ffddb0;
}

.omf-btn--lg { padding: 15px 36px; font-size: 1rem; }
.omf-btn--full { width: 100%; justify-content: center; }

/* ─────────────────────────────
   SECTIONS
───────────────────────────── */
.omf-section       { padding: 5rem 0; background: #fff; }
.omf-section--alt  { padding: 5rem 0; background: #faf7f3; }

/* ─────────────────────────────
   HEADER
───────────────────────────── */
.omf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #27252a;
  padding: .6rem 2rem;
  border-bottom: none;
}

.omf-header__text {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  color: #b8b4bc;
  margin: 0;
  flex: 1;
  text-align: center;
}

.omf-header__text i { color: #ffddb0; opacity: .8; margin-right: 3px; }

.omf-header__sep {
  display: inline-block;
  margin: 0 .75rem;
  opacity: .25;
}

.omf-header__highlight { color: #ffddb0; font-weight: 700; }

.omf-header__fomo {
  display: none;
  align-items: center;
  gap: .5rem;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  color: rgba(255,255,255,.9);
  font-size: .73rem;
  font-family: 'Poppins', sans-serif;
}
.omf-header__fomo b { color: #ffddb0; font-weight: 700; }

.omf-header__fomo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255,77,77,.6);
  animation: omfPulse 1.4s ease-in-out infinite;
}
.omf-header__fomo-track {
  display: flex;
  gap: 1.2rem;
  white-space: nowrap;
  animation: omfTicker 14s linear infinite;
}
.omf-header__fomo-track:hover { animation-play-state: paused; }
.omf-header__fomo-sep { color: #ffddb0; opacity: .5; }

@keyframes omfPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,77,.6); }
  50%       { box-shadow: 0 0 0 5px rgba(255,77,77,0); }
}
@keyframes omfTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.omf-header__btn {
  flex-shrink: 0;
  background: #ffddb0;
  color: #342005;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  padding: 6px 18px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .2s;
}
.omf-header__btn:hover { background: #fff; color: #342005; }

/* ─────────────────────────────
   HERO
───────────────────────────── */
.omf-hero {
  background: #fdf8f0;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

/* ─── HERO IMAGE WRAP ─── */
.omf-hero-imgwrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(52,32,5,.16);
}
.omf-hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 480px;
  object-position: top center;
}
.omf-hero-nameplate {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,15,2,.88) 0%, transparent 100%);
  padding: 2rem 1.4rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.omf-hero-nameplate__mono {
  width: 42px; height: 42px;
  background: #ffddb0;
  border-radius: .6rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: .88rem;
  color: #342005;
  flex-shrink: 0;
}
.omf-hero-nameplate__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  margin: 0;
}
.omf-hero-nameplate__deg {
  font-size: .7rem;
  color: rgba(255,221,176,.75);
  margin: .2rem 0 0;
}

/* ─── STATS BAR ─── */
.omf-hero-statsbar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #ede5d8;
  border-radius: 1.1rem;
  margin-top: 2.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(52,32,5,.06);
}
.omf-hero-statsbar__item {
  flex: 1;
  text-align: center;
  padding: 1.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  border-top: 3px solid transparent;
  transition: border-color .25s, background .25s;
}
.omf-hero-statsbar__item:hover {
  background: #fdf8f0;
  border-top-color: #ffddb0;
}
.omf-hero-statsbar__num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #342005;
  line-height: 1;
  letter-spacing: -1px;
}
.omf-hero-statsbar__label {
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  color: #89868d;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.omf-hero-statsbar__div {
  width: 1px;
  align-self: stretch;
  background: #ede5d8;
  flex-shrink: 0;
  margin: .5rem 0;
  opacity: .6;
}

/* Top row: monogram + name */
.omf-faculty-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.omf-faculty-monogram {
  width: 56px; height: 56px;
  background: #ffddb0;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #342005;
  flex-shrink: 0;
  letter-spacing: 1px;
}
.omf-faculty-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #342005;
  margin: 0;
}
.omf-faculty-deg {
  font-size: .74rem;
  color: #89868d;
  margin: .2rem 0 0;
}

/* Credential tags */
.omf-faculty-tags {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.omf-faculty-tags span {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  color: #5a4030;
  font-family: 'Poppins', sans-serif;
}
.omf-faculty-tags i {
  color: #342005;
  font-size: .75rem;
  width: 14px;
  text-align: center;
}

/* Quote */
.omf-faculty-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .95rem;
  color: #3a2510;
  line-height: 1.75;
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid #ffddb0;
}

/* Stats row */
.omf-faculty-stats {
  display: flex;
  align-items: center;
  background: #342005;
  border-radius: .85rem;
  padding: .9rem 0;
  margin-top: auto;
}
.omf-faculty-stat { flex: 1; text-align: center; padding: 0 .5rem; }
.omf-faculty-stat__num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: #ffddb0;
  line-height: 1;
}
.omf-faculty-stat__label {
  display: block;
  font-size: .6rem;
  color: rgba(232,213,184,.65);
  margin-top: 4px;
  line-height: 1.3;
}
.omf-faculty-stat__div {
  width: 1px; height: 30px;
  background: rgba(255,221,176,.2);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .omf-hero-img { height: 320px; }
  .omf-hero-statsbar { flex-wrap: wrap; gap: 1rem; padding: 1rem; border-radius: .75rem; }
  .omf-hero-statsbar__item { min-width: 45%; }
  .omf-hero-statsbar__div { display: none; }
}

.omf-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1.22;
  color: #1a0f02;
  margin-bottom: 1.3rem;
}

.omf-accent {
  color: #342005;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.omf-hero-sub {
  font-size: .82rem;
  line-height: 1.8;
  color: #4a4035;
  margin-bottom: 1.6rem;
  border-left: 3px solid #ffddb0;
  padding-left: .9rem;
}

/* Hero bullet list */
.omf-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.omf-hero-bullets li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: #2a1f10;
  line-height: 1.25;
  font-weight: 500;
}
.omf-hero-check {
  width: 17px; height: 17px;
  background: #ffddb0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.omf-hero-check i { color: #342005; font-size: .52rem; }

/* CTA block */
.omf-hero-cta { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.omf-hero-cta .omf-btn { display: inline-flex; padding: 10px 1.6rem; font-size: .85rem; }

/* Social proof row */
.omf-hero-proof {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.omf-hero-stars {
  color: #e8a020;
  font-size: 1rem;
  letter-spacing: 1px;
}
.omf-hero-proof span {
  font-size: .78rem;
  color: #6b5540;
  font-weight: 500;
}

/* hero-img kept for mobile about section reuse */
.omf-hero-img { width: 100%; border-radius: 1.5rem; display: block; }

/* ─────────────────────────────
   PAIN CARDS
───────────────────────────── */
.omf-brutal-img {
  width: 100%;
  border-radius: 1.2rem;
  object-fit: cover;
  max-height: 400px;
  display: block;
  box-shadow: 0 12px 40px rgba(52,32,5,.12);
}
.omf-brutal-img--contain {
  object-fit: contain;
  background: #faf7f3;
}

.omf-pain-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.8rem;
  height: 100%;
  border-top: 4px solid #342005;
  box-shadow: 0 8px 28px rgba(149,157,165,.15);
  transition: transform .2s;
}
.omf-pain-card:hover { transform: translateY(-4px); }

.omf-pain-icon {
  width: 48px; height: 48px;
  background: #ffddb0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.omf-pain-icon i { font-size: 1.2rem; color: #342005; }

.omf-pain-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #342005;
  margin-bottom: .6rem;
}
.omf-pain-card p {
  font-size: .87rem;
  font-weight: 300;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.omf-quote-bar {
  margin-top: 2.5rem;
  background: #342005;
  color: #ffddb0;
  border-radius: 1rem;
  padding: 1.8rem 2.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
}
.omf-quote-bar .fa-quote-left,
.omf-quote-bar .fa-quote-right { opacity: .6; font-size: .85rem; }

/* ─────────────────────────────
   PHASE CARDS (Solution section)
───────────────────────────── */
.omf-phase-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.8rem 2rem;
  text-align: center;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.omf-phase-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(149,157,165,.18); }
.omf-phase-card--featured { background: #ffddb0; }

.omf-phase-icon-wrap {
  width: 72px; height: 72px;
  background: #f0ebe3;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem;
}
.omf-phase-icon-wrap i { font-size: 1.6rem; color: #342005; }
.omf-phase-card--featured .omf-phase-icon-wrap { background: rgba(255,255,255,.45); }

.omf-phase-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: .9rem;
  line-height: 1.3;
}
.omf-phase-card--featured .omf-phase-title { color: #342005; }

.omf-phase-desc {
  font-size: .86rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
}
.omf-phase-card--featured .omf-phase-desc { color: #5a3a10; }

.omf-pathway-step ul { list-style: none; padding: 0; margin: 0; }
.omf-pathway-step li {
  font-size: .82rem;
  font-weight: 300;
  color: #444;
  line-height: 1.85;
}

.omf-pathway-arrow {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: #c8a87a;
  font-size: 1.3rem;
}

/* ─────────────────────────────
   CURRICULUM CARDS
───────────────────────────── */
/* ─────────────────────────────
   CURRICULUM PILLARS
───────────────────────────── */
.omf-pillar-block {
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.omf-pillar-block:last-of-type { margin-bottom: 0; }

.omf-pillar-block__label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 2rem;
}
.omf-pillar-block--1 .omf-pillar-block__label {
  background: #342005;
}
.omf-pillar-block--2 .omf-pillar-block__label {
  background: #ffddb0;
}

.omf-pillar-block__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.omf-pillar-block--1 .omf-pillar-block__num { color: rgba(255,221,176,.25); }
.omf-pillar-block--2 .omf-pillar-block__num { color: rgba(52,32,5,.18); }

.omf-pillar-block__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 .2rem;
}
.omf-pillar-block--1 .omf-pillar-block__title { color: #fff; }
.omf-pillar-block--2 .omf-pillar-block__title { color: #342005; }

.omf-pillar-block__sub {
  font-size: .78rem;
  margin: 0;
  font-style: italic;
}
.omf-pillar-block--1 .omf-pillar-block__sub { color: rgba(255,221,176,.7); }
.omf-pillar-block--2 .omf-pillar-block__sub { color: rgba(52,32,5,.55); }

.omf-pillar-block__topics {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #f0ebe3;
  border-top: none;
  border-radius: 0 0 1.2rem 1.2rem;
}
.omf-topic-card.flex-fill { display: flex; flex-direction: column; }

/* Topic cards inside pillar blocks */
.omf-topic-card {
  background: #faf7f3;
  border-radius: .8rem;
  padding: 1.4rem 1.2rem;
  height: 100%;
  border-top: 3px solid #ffddb0;
}
.omf-topic-card--dark {
  background: #faf7f3;
  border-top-color: #342005;
}
.omf-topic-card i {
  font-size: 1.2rem;
  color: #342005;
  margin-bottom: .7rem;
  display: block;
}
.omf-topic-card h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: #342005;
  margin: 0 0 .4rem;
}
.omf-topic-card p {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ─────────────────────────────
   BENEFIT CARDS
───────────────────────────── */
.omf-benefit-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.6rem 1.8rem;
  height: 100%;
  border: 1px solid #f0ebe3;
  box-shadow: 0 4px 20px rgba(149,157,165,.1);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.omf-benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(52,32,5,.1); }

.omf-benefit-num {
  position: absolute;
  top: .8rem;
  right: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: #342005;
  opacity: .05;
  pointer-events: none;
  user-select: none;
}

.omf-benefit-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: #342005;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.omf-benefit-icon i { font-size: 1.2rem; color: #ffddb0; }

.omf-benefit-body { flex: 1; }

.omf-benefit-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: #1a1a1a;
  margin-bottom: .4rem;
}
.omf-benefit-card p {
  font-size: .84rem;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.omf-tier-tag {
  display: inline-block;
  background: #342005;
  color: #ffddb0;
  font-size: .6rem;
  padding: 1px 7px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 5px;
  text-transform: uppercase;
}

/* ─────────────────────────────
   BEFORE / AFTER
───────────────────────────── */
.omf-ba-card {
  border-radius: 1.2rem;
  padding: 2rem 2rem 2.2rem;
  height: 100%;
}
.omf-ba-card--before { background: #fff5f5; border-left: 4px solid #dc2626; }
.omf-ba-card--after  { background: #f0fdf4; border-left: 4px solid #16a34a; }

.omf-ba-head {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.4rem;
}
.omf-ba-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.omf-ba-icon--before { background: #fecaca; }
.omf-ba-icon--before i { color: #dc2626; font-size: .95rem; }
.omf-ba-icon--after  { background: #bbf7d0; }
.omf-ba-icon--after i  { color: #16a34a; font-size: .95rem; }

.omf-ba-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a1a1a;
  margin: 0;
}
.omf-before-label { color: #dc2626; }
.omf-after-label  { color: #16a34a; }

.omf-ba-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.omf-ba-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .87rem;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
}
.omf-ba-card--before .omf-ba-list li i { color: #dc2626; font-size: .8rem; margin-top: .22rem; flex-shrink: 0; }
.omf-ba-card--after  .omf-ba-list li i { color: #16a34a; font-size: .8rem; margin-top: .22rem; flex-shrink: 0; }

/* ─────────────────────────────
   PRICING TIERS
───────────────────────────── */
/* ─── COMPARISON TABLE PRICING ─── */
.omf-cmp {
  border: 1.5px solid #ede5d8;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(52,32,5,.08);
}

.omf-cmp__head {
  display: grid;
  grid-template-columns: 1fr 260px 260px;
}

.omf-cmp__feature-col {
  background: #faf7f3;
  border-bottom: 1.5px solid #ede5d8;
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.omf-cmp__fc-label {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #342005;
  margin: 0;
  line-height: 1.3;
}
.omf-cmp__fc-sub {
  font-size: .72rem;
  color: #89868d;
  margin: .3rem 0 0;
  font-family: 'Poppins', sans-serif;
}
.omf-cmp__fc-stats {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.omf-cmp__fc-stats li {
  font-size: .75rem;
  color: #342005;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.omf-cmp__fc-stats i { color: #c8a87a; font-size: .75rem; }

.omf-cmp__plan {
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  border-left: 1.5px solid #ede5d8;
  border-bottom: 1.5px solid #ede5d8;
  background: #fff;
  position: relative;
}

.omf-cmp__plan .omf-btn { margin-top: auto; }

.omf-cmp__plan--featured {
  background: #342005;
  border-left-color: #342005;
  border-bottom-color: rgba(255,221,176,.15);
}

.omf-cmp__popular {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: #ffddb0;
  color: #342005;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 0 0 .5rem .5rem;
  white-space: nowrap;
}

.omf-cmp__plan-tag {
  display: inline-block;
  background: #faf0e0;
  color: #342005;
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 2px 10px;
  border-radius: 50px;
  width: fit-content;
  margin-top: .5rem;
}
.omf-cmp__plan-tag--light { background: rgba(255,221,176,.15); color: #ffddb0; }

.omf-cmp__plan-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #342005;
  margin: 0;
  line-height: 1.2;
}
.omf-cmp__plan--featured .omf-cmp__plan-name { color: #fff; }

.omf-cmp__plan-mode {
  font-size: .7rem;
  color: #89868d;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.omf-cmp__plan--featured .omf-cmp__plan-mode { color: #c8a87a; }

.omf-cmp__plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #342005;
  margin: .3rem 0 .1rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.omf-cmp__plan--featured .omf-cmp__plan-price { color: #ffddb0; }

.omf-cmp__plan-note {
  font-family: 'Poppins', sans-serif;
  font-size: .62rem;
  font-weight: 400;
  color: rgba(255,221,176,.55);
}

/* Feature rows */
.omf-cmp__row {
  display: grid;
  grid-template-columns: 1fr 260px 260px;
  border-top: 1px solid #f0ebe3;
}
.omf-cmp__row--last { border-radius: 0 0 1.4rem 1.4rem; overflow: hidden; }

.omf-cmp__label {
  padding: .8rem 1.4rem;
  font-size: .8rem;
  color: #3a3530;
  background: #faf7f3;
  display: flex;
  align-items: center;
}

.omf-cmp__cell {
  padding: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-left: 1px solid #f0ebe3;
}
.omf-cmp__cell--dark { background: #342005; border-left-color: rgba(255,221,176,.1); }

.omf-cmp__yes { color: #342005; font-size: .85rem; }
.omf-cmp__yes--light { color: #ffddb0; font-size: .85rem; }
.omf-cmp__no { color: #ccc; font-size: .75rem; }
.omf-cmp__note { font-size: .72rem; font-weight: 600; color: #342005; }
.omf-cmp__note--light { color: #ffddb0; }

/* legacy */
.omf-tier-label {
  display: inline-block;
  background: #faf0e0;
  color: #342005;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 3px 12px;
  border-radius: 50px;
}
.omf-tier-footer { padding: 0 1.8rem 1.8rem; }

/* Cream CTA button for dark card */
.omf-btn--cream {
  background: #ffddb0;
  color: #342005;
  border-color: #ffddb0;
}
.omf-btn--cream:hover { background: #fff; border-color: #fff; color: #342005; }

/* ─────────────────────────────
   GUARANTEE
───────────────────────────── */
.omf-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #342005;
  border-radius: 1.2rem;
  padding: 2.2rem 2.5rem;
  margin-top: 2.5rem;
  color: #fff;
}

.omf-guarantee__icon {
  width: 62px; height: 62px; min-width: 62px;
  background: #ffddb0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.omf-guarantee__icon i { font-size: 1.7rem; color: #342005; }

.omf-guarantee h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffddb0;
  margin-bottom: .6rem;
}
.omf-guarantee p {
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.75;
  color: #f5ede0;
  margin: 0;
}

/* ─────────────────────────────
   WHY CHOOSE US
───────────────────────────── */
.omf-why-award-card {
  background: #342005;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
}
.omf-why-carousel { width: 100%; }
.omf-why-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: .75rem;
}
.omf-why-carousel .owl-dots { margin-top: .5rem; }
.omf-why-carousel .owl-dot span { background: rgba(255,221,176,.3) !important; }
.omf-why-carousel .owl-dot.active span { background: #ffddb0 !important; }
.omf-why-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ffddb0;
  font-weight: 400;
  font-style: italic;
}
.omf-why-quote i { color: rgba(255,221,176,.4); }

.omf-why-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.4rem;
  height: 100%;
  border: 1px solid #f0ebe3;
  box-shadow: 0 4px 16px rgba(149,157,165,.1);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .2s, box-shadow .2s;
}
.omf-why-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(52,32,5,.1); }
.omf-why-icon {
  width: 44px;
  height: 44px;
  background: #342005;
  border-radius: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.omf-why-icon i { color: #ffddb0; font-size: 1.1rem; }
.omf-why-body { flex: 1; }
.omf-why-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: #1a1a1a;
  margin-bottom: .3rem;
}
.omf-why-card p {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* ─────────────────────────────
   TESTIMONIALS
───────────────────────────── */
.omf-testimonial-section {
  padding: 5rem 0;
  background: #faf7f3;
}

.omf-testimonial-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1a1a1a;
  margin-top: .5rem;
}

.omf-testimonial-sub {
  font-size: .9rem;
  color: #666;
  line-height: 1.7;
  margin-top: .4rem;
}

/* Card */
.omf-tcard {
  background: #fff;
  border: 1px solid #f0ebe3;
  border-radius: 1.2rem;
  padding: 2rem;
  margin: 6px 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(52,32,5,.07);
}

.omf-tcard__quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: .8;
  color: #ffddb0;
}

.omf-tcard__text {
  font-size: .9rem;
  line-height: 1.8;
  color: #444;
  flex: 1;
}

.omf-tcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid #f0ebe3;
  padding-top: 1rem;
  margin-top: auto;
}

.omf-tcard__stars i { color: #f59e0b; font-size: .8rem; }

.omf-tcard__author {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.omf-tcard__avatar {
  width: 38px; height: 38px;
  background: #ffddb0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.omf-tcard__avatar i { color: #342005; font-size: 1rem; }
.omf-tcard__author strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  color: #222;
}
.omf-tcard__author span {
  display: block;
  font-size: .72rem;
  color: #888;
  margin-top: 1px;
}

/* Owl overrides */
.omf-testimonial-carousel .owl-dots { margin-top: 1.5rem; text-align: center; }
.omf-testimonial-carousel .owl-dot span {
  background: #d4c4ae !important;
  width: 8px; height: 8px;
}
.omf-testimonial-carousel .owl-dot.active span { background: #342005 !important; }
.omf-testimonial-carousel .owl-nav button {
  background: #fff !important;
  color: #342005 !important;
  border: 1px solid #f0ebe3 !important;
  border-radius: 50% !important;
  width: 38px; height: 38px;
  font-size: 1.1rem !important;
  line-height: 1 !important;
}
.omf-testimonial-carousel .owl-nav button:hover { background: #342005 !important; color: #ffddb0 !important; }

/* ─────────────────────────────
   ABOUT
───────────────────────────── */
.omf-about-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4rem;
  margin-bottom: 1rem;
}
.omf-about-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #89868d;
}
.omf-about-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #342005;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.omf-about-img {
  width: 100%;
  max-width: 460px;
  border-radius: 1.2rem;
  box-shadow: 0 16px 48px rgba(52,32,5,.16);
}
.omf-about-img--mobile { margin: 1.2rem 0; }
.omf-about-text {
  font-size: .9rem;
  line-height: 1.8;
  color: #393939;
}

/* ─────────────────────────────
   RELATED COURSES
───────────────────────────── */
.omf-related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 8px 28px rgba(149,157,165,.14);
  border-top: 4px solid #342005;
  color: inherit;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.omf-related-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(52,32,5,.14); color: inherit; }

.omf-related-icon {
  width: 50px; height: 50px;
  background: #ffddb0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.omf-related-icon i { font-size: 1.2rem; color: #342005; }

.omf-related-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #342005;
  margin-bottom: .6rem;
}
.omf-related-card p {
  font-size: .84rem;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
  flex: 1;
  margin: 0;
}
.omf-related-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: #342005;
}

/* ─────────────────────────────
   LEAD POPUP
───────────────────────────── */
.omf-lead-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,10,2,.7);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.omf-lead-overlay.omf-lead--open { opacity: 1; pointer-events: auto; }

.omf-lead-modal {
  background: #fff;
  border-radius: 1.4rem;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 28px 72px rgba(52,32,5,.3);
  transform: translateY(24px) scale(.98);
  transition: transform .3s ease;
}
.omf-lead-overlay.omf-lead--open .omf-lead-modal { transform: translateY(0) scale(1); }

.omf-lead-close {
  position: absolute;
  top: .9rem; right: .9rem;
  background: rgba(255,255,255,.2);
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #ffddb0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .2s;
}
.omf-lead-close:hover { background: rgba(255,255,255,.3); }

/* Dark header */
.omf-lead-head {
  background: #342005;
  padding: 1.6rem 1.6rem 1.4rem;
  border-radius: 1.4rem 1.4rem 0 0;
}
.omf-lead-head__tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,221,176,.15);
  color: #ffddb0;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.omf-lead-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 .35rem;
  line-height: 1.3;
  padding-right: 2rem;
}
.omf-lead-sub {
  font-size: .75rem;
  color: rgba(255,221,176,.65);
  margin: 0;
  line-height: 1.55;
}

/* White form area */
.omf-lead-body { padding: 1.4rem 1.6rem 1.6rem; }
.omf-lead-form { display: flex; flex-direction: column; gap: .7rem; }
.omf-lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.omf-lead-field { display: flex; flex-direction: column; gap: .25rem; }
.omf-lead-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  color: #342005;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.omf-lead-field label span { color: #e55; }
.omf-lead-field input,
.omf-lead-field select {
  border: 1.5px solid #e8ddd0;
  border-radius: .6rem;
  padding: .55rem .85rem;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  color: #342005;
  background: #faf7f3;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  -webkit-appearance: auto;
}
.omf-lead-field input:focus,
.omf-lead-field select:focus { border-color: #342005; background: #fff; }
.omf-lead-submit { margin-top: .3rem; }

.omf-lead-success { text-align: center; padding: 2rem 0 1rem; }
.omf-lead-success__icon { font-size: 2.8rem; color: #342005; margin-bottom: .6rem; }
.omf-lead-success h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #342005; margin-bottom: .35rem; }
.omf-lead-success p { font-size: .82rem; color: #89868d; }

.omf-lead-trust {
  text-align: center;
  font-size: .66rem;
  color: #bbb;
  margin: .75rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}

@media (max-width: 520px) {
  .omf-lead-head { padding: 1.3rem 1.2rem 1.1rem; }
  .omf-lead-body { padding: 1.2rem; }
  .omf-lead-title { font-size: 1.1rem; }
  .omf-lead-row { grid-template-columns: 1fr; }
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.omf-footer {
  background: #27252a;
  padding: 2rem 0;
}
.omf-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.omf-footer__logo img { width: 80px; }
.omf-footer__copy p {
  font-size: .82rem;
  color: #89868d;
  margin: 0;
  text-align: left;
}
.omf-footer__social {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.omf-footer__social span {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: #89868d;
}
.omf-footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #89868d;
  font-size: 1rem;
  transition: all .2s;
}
.omf-footer__social a:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ─────────────────────────────
   IMAGE PLACEHOLDERS
───────────────────────────── */
.omf-img-ph {
  background: #f5f0e8;
  border: 2px dashed #d4c4ae;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #a08060;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  text-align: center;
  padding: 1rem;
}
.omf-img-ph i { font-size: 1.6rem; opacity: .5; }
.omf-img-ph span { font-weight: 600; display: block; }
.omf-img-ph small { opacity: .65; font-size: .72rem; }

.omf-img-ph--banner { width: 100%; height: 180px; }
.omf-img-ph--square { width: 100%; aspect-ratio: 1/1; }
.omf-img-ph--wide   { width: 100%; height: 200px; }
.omf-img-ph--tall   { width: 100%; height: 340px; }
.omf-img-ph--avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border-radius: 50%;
  font-size: .6rem;
  gap: .2rem;
  flex-shrink: 0;
}
.omf-img-ph--avatar i { font-size: .9rem; margin: 0; }

/* ─────────────────────────────
   VERTICAL SIDE BUTTON
───────────────────────────── */
.omf-side-btn {
  position: fixed;
  right: -54px;
  top: 46%;
  transform: rotate(90deg);
  background: #342005;
  color: #ffddb0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 22px;
  border-radius: 0 0 6px 6px;
  z-index: 50;
  transition: background .2s;
}
.omf-side-btn:hover { background: #342005; color: #ffddb0; }

.omf-side-btn-mobile {
  display: none;
  position: fixed;
  right: -54px;
  top: 46%;
  transform: rotate(90deg);
  background: #342005;
  color: #ffddb0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 22px;
  border-radius: 0 0 6px 6px;
  z-index: 50;
  text-decoration: none;
  white-space: nowrap;
}

/* ─────────────────────────────
   FLOATING BARS
───────────────────────────── */
.omf-float {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.omf-float--show { opacity: 1; pointer-events: auto; }

/* Shared inner */
.omf-float__inner {
  background: #fff;
  border: 1px solid #e8ddd0;
  border-top: 2px solid #ffddb0;
  border-radius: .9rem;
  box-shadow: 0 -4px 24px rgba(52,32,5,.10), 0 2px 8px rgba(52,32,5,.06);
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

/* Desktop bar */
.omf-float--desktop { width: 82%; max-width: 860px; }
.omf-float--desktop .omf-float__inner { padding: .9rem 1.4rem; justify-content: space-between; }

.omf-float__info { display: flex; flex-direction: column; gap: .2rem; }
.omf-float__badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #ffddb0;
  color: #342005;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 2px 9px;
  border-radius: 50px;
  width: fit-content;
}
.omf-float__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: #342005;
  margin: 0;
}

.omf-float__meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.omf-float__meta span {
  font-size: .78rem;
  color: #7a6050;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.omf-float__meta i { font-size: .75rem; color: #342005; }

.omf-float__price { text-align: right; }
.omf-float__price-old { font-size: .75rem; color: #aaa; margin: 0; line-height: 1.3; }
.omf-float__price-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #342005;
  margin: 0;
  line-height: 1.2;
}
.omf-float__price-tag { font-size: .68rem; color: #f87171; margin: 0; font-weight: 600; }

/* Mobile bar */
.omf-float--mobile { width: 94%; }
.omf-float--mobile .omf-float__inner {
  flex-direction: row;
  padding: .8rem 1.1rem;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.omf-float__mob-price { display: flex; flex-direction: column; gap: .05rem; }
.omf-float__mob-price .omf-float__price-old { font-size: .68rem; color: #bbb; line-height: 1; }
.omf-float__mob-price .omf-float__price-main { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; color: #342005; line-height: 1.2; }
.omf-float__mob-div { width: 1px; height: 32px; background: #e8ddd0; flex-shrink: 0; }
.omf-float__cta { white-space: nowrap; flex-shrink: 0; font-size: .85rem; padding: .6rem 1.2rem; }

/* ─────────────────────────────
   ANIMATIONS
───────────────────────────── */
.omf-blink { animation: omfBlink 1s linear infinite; }
.omf-red   { color: #dc2626 !important; font-weight: 700; font-size: .75rem; }

@keyframes omfBlink {
  0%   { opacity: 0; }
  50%  { opacity: .6; }
  100% { opacity: 1; }
}

/* ─────────────────────────────
   VISIBILITY HELPERS
───────────────────────────── */
.omf-hide-mobile  { display: flex; }
.omf-show-mobile  { display: none; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* Tablet ≤992px */
@media (max-width: 992px) {
  .omf-header { padding: .5rem 1.2rem; }
  .omf-hero-title { font-size: 1.85rem; }
  .omf-float--desktop { display: none; }
  .omf-float--mobile  { display: block; }
  .omf-hide-mobile { display: none !important; }
  .omf-show-mobile { display: block !important; }
  .omf-side-btn         { display: none; }
  .omf-side-btn-mobile  { display: block; }
  .omf-pathway-arrow { display: none; }
  .omf-pathway { gap: 1rem; }
  .omf-pathway-step { min-width: 150px; }
  .omf-footer__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .omf-footer__logo { align-items: flex-start; }
  .omf-footer__copy { font-size: .65rem; max-width: 260px; line-height: 1.5; }
  .omf-footer__brand { font-size: .75rem; }
  .omf-footer__tagline { font-size: .63rem; }
  .omf-footer__social { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: .5rem; }
}

/* Mobile ≤768px */
@media (max-width: 768px) {
  .omf-header { padding: .5rem 1rem; gap: .75rem; }
  .omf-header__text { font-size: .75rem; text-align: left; }
  .omf-header__extra { display: none; }
  .omf-header__desktop-text { display: none; }
  .omf-header__fomo { display: inline-flex; }
  .omf-header__btn { font-size: .72rem; padding: 5px 12px; }
  /* Hero: content top, image bottom on mobile */
  .omf-hero .row > :nth-child(1) { order: 2; }
  .omf-hero .row > :nth-child(2) { order: 1; }
  .omf-benefit-card { padding: .9rem; flex-direction: column; align-items: flex-start; gap: .6rem; }
  .omf-benefit-icon { width: 38px; height: 38px; min-width: 38px; border-radius: .5rem; }
  .omf-benefit-icon i { font-size: .9rem; }
  .omf-benefit-card h4 { font-size: .78rem; margin-bottom: .2rem; }
  .omf-benefit-card p { font-size: .73rem; line-height: 1.55; }
  .omf-benefit-num { font-size: 2rem; top: .4rem; right: .6rem; }
  .omf-hero { padding: 2.5rem 0 2rem; }
  .omf-hero-title { font-size: 1.5rem; }
  .omf-section, .omf-section--alt { padding: 3.5rem 0; }
  .omf-hero-stats { padding: .75rem 1.2rem; }
  .omf-hero-stat__num { font-size: 1.3rem; }
  .omf-guarantee { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .omf-guarantee__icon { margin: 0 auto; }
  .omf-quote-bar { padding: 1.4rem 1.2rem; font-size: .92rem; }
  .omf-phase-card { padding: 2rem 1.5rem; }
  .omf-phase-icon-wrap { width: 58px; height: 58px; }
  .omf-phase-icon-wrap i { font-size: 1.3rem; }
  .omf-float--mobile .omf-float__inner { flex-wrap: wrap; justify-content: center; }
  .omf-testimonial-heading { font-size: 1.5rem; }
  .omf-why-card { padding: .9rem; gap: .55rem; }
  .omf-why-icon { width: 34px; height: 34px; border-radius: .5rem; }
  .omf-why-icon i { font-size: .85rem; }
  .omf-why-card h4 { font-size: .75rem; margin-bottom: .1rem; }
  .omf-why-card p { font-size: .68rem; line-height: 1.5; }
  .omf-footer { padding: 2rem 0 1.5rem; }
  .omf-footer__inner { align-items: flex-start; text-align: left; gap: .75rem; }
  .omf-footer__logo { align-items: flex-start; }
  .omf-footer__copy { font-size: .63rem; text-align: left; max-width: 100%; line-height: 1.6; }
  .omf-footer__brand { font-size: .72rem; }
  .omf-footer__tagline { font-size: .62rem; }
  .omf-footer__social { flex-direction: row; align-items: center; justify-content: flex-start; flex-wrap: nowrap; gap: .6rem; }
}

/* ─── MOBILE PRICING CARDS ─── */
.omf-cmp-cards {
  display: none;
  gap: .85rem;
  flex-direction: column;
}

.omf-cmp-card {
  border: 1.5px solid #ede5d8;
  border-radius: 1.2rem;
  padding: 1.4rem 1.2rem 1.2rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.omf-cmp-card--featured {
  background: #342005;
  border-color: #342005;
}

.omf-cmp-card__popular {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #ffddb0;
  color: #342005;
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.omf-cmp-card__tag {
  display: inline-block;
  background: #f5ede0;
  color: #342005;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: .5rem;
}
.omf-cmp-card__tag--light {
  background: rgba(255,221,176,.18);
  color: #ffddb0;
}

.omf-cmp-card__name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #342005;
  margin: 0 0 .2rem;
}
.omf-cmp-card--featured .omf-cmp-card__name { color: #fff; }

.omf-cmp-card__mode {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  color: #89868d;
  margin: 0 0 .6rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.omf-cmp-card--featured .omf-cmp-card__mode { color: #c8a87a; }

.omf-cmp-card__price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #342005;
  margin: 0 0 .3rem;
  line-height: 1.1;
}
.omf-cmp-card--featured .omf-cmp-card__price { color: #ffddb0; }

.omf-cmp-card__note {
  font-family: 'Poppins', sans-serif;
  font-size: .6rem;
  font-weight: 400;
  color: #89868d;
  display: block;
  margin-top: .15rem;
}
.omf-cmp-card--featured .omf-cmp-card__note { color: rgba(255,221,176,.6); }

.omf-cmp-card__features {
  list-style: none;
  margin: .9rem 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  border-top: 1px solid #f0ebe3;
  padding-top: .9rem;
}
.omf-cmp-card--featured .omf-cmp-card__features { border-top-color: rgba(255,221,176,.12); }

.omf-cmp-card__features li {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #342005;
}
.omf-cmp-card--featured .omf-cmp-card__features li { color: #fff; }

.omf-cmp-card__feat--yes i { color: #2e9e60; font-size: .8rem; flex-shrink: 0; }
.omf-cmp-card__feat--no { opacity: .4; }
.omf-cmp-card__feat--no i { color: #e55; font-size: .75rem; flex-shrink: 0; }
.omf-cmp-card--featured .omf-cmp-card__feat--yes i { color: #7ddb9e; }

/* Small mobile ≤480px */
@media (max-width: 480px) {
  .omf-hero-title { font-size: 1.3rem; }
  .omf-section-title { font-size: 1.2rem; }
  /* Header: 2 plan cards full width, feature col hidden */
  .omf-cmp__head { grid-template-columns: 1fr 1fr; }
  .omf-cmp__feature-col { display: none; }
  .omf-cmp__plan { border-left: none; padding: 1rem .85rem; }
  .omf-cmp__plan:first-child { border-right: 1px solid #ede5d8; }
  .omf-cmp__plan-name { font-size: .9rem; margin-bottom: .2rem; }
  .omf-cmp__plan-mode { font-size: .65rem; margin-bottom: .3rem; }
  .omf-cmp__plan-price { font-size: 1.25rem; margin: .3rem 0 .5rem; }
  .omf-cmp__plan-note { font-size: .56rem; display: block; line-height: 1.3; }
  .omf-cmp__popular { font-size: .58rem; padding: 3px 8px; margin-bottom: .4rem; }
  .omf-cmp__plan-tag { font-size: .58rem; padding: 2px 9px; margin-bottom: .35rem; }
  .omf-cmp__plan .omf-btn { padding: 8px 10px; font-size: .72rem; text-align: center; }
  /* Rows: label + 2 checkmark cols */
  .omf-cmp__row { grid-template-columns: 1fr 1fr 1fr; }
  .omf-cmp__label { display: flex; font-size: .66rem; padding: .58rem .65rem; line-height: 1.35; }
  .omf-cmp__cell { padding: .58rem .3rem; font-size: .72rem; }
  .omf-guarantee { padding: 1.2rem; }
  .omf-price-main { font-size: 1.65rem; }
  /* Hide comparison table, show cards */
  .omf-cmp { display: none; }
  .omf-cmp-cards { display: flex; }
}

