/* ============================================================
   HACCP Theme – Main Stylesheet
   ============================================================ */

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

:root {
  --navy:   #0B2545;
  --navy2:  #13395e;
  --teal:   #1B7A8A;
  --teal2:  #22a0b5;
  --gold:   #C8A84B;
  --gold2:  #e6c96d;
  --cream:  #F5F0E8;
  --white:  #FFFFFF;
  --text:   #1c2b3a;
  --muted:  #5a6e82;
  --light:  #eaf2f5;
  --radius: 6px;
  --shadow: 0 4px 32px rgba(11,37,69,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TOP BAR ─── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  padding: 8px 0;
}
.topbar .inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
}
.topbar a { color: var(--gold2); text-decoration: none; }
.topbar a:hover { color: #fff; }

/* ─── NAV ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(11,37,69,0.10);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.site-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-badge {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  line-height: 1.1;
  text-align: center;
}
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
}
.logo-text span {
  font-size: 0.72rem; color: var(--muted); font-weight: 300; letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--navy);
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover { color: var(--teal); border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 9px 22px !important; border-radius: var(--radius);
  border-bottom: none !important; font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none; border: 2px solid var(--navy);
  border-radius: 4px; padding: 6px 10px; cursor: pointer;
  font-size: 1.2rem; color: var(--navy);
}

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(27,122,138,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(200,168,75,0.15) 0%, transparent 50%);
  min-height: 580px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 24px;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 420px; height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(255,255,255,0.015) 20px, rgba(255,255,255,0.015) 40px
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center;
}
.hero-label {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 3px; margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.2; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold2); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.78);
  font-weight: 300; max-width: 520px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none;
  padding: 14px 30px; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 20px rgba(200,168,75,0.4);
}
.btn-gold:hover { background: var(--gold2); box-shadow: 0 6px 28px rgba(200,168,75,0.5); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px; padding: 32px;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold2); font-size: 1.1rem; margin-bottom: 16px;
}
.hero-card-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-card-item:last-of-type { border-bottom: none; }
.hero-card-icon {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(200,168,75,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; margin-top: 2px;
}
.hero-card-item p { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.5; }
.hero-card-item strong { color: #fff; display: block; margin-bottom: 1px; font-size: 0.9rem; }

.hero-trust { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--gold2); display: block;
}
.trust-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }

/* ─── PROMO BANNER ─── */
.promo-banner {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold2) 100%);
  padding: 16px 24px;
}
.promo-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  text-align: center;
}
.promo-banner p { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.btn-navy {
  background: var(--navy); color: #fff;
  padding: 9px 22px; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}
.btn-navy:hover { background: var(--navy2); color: #fff; }

/* ─── SECTION WRAPPER ─── */
.site-section { padding: 90px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.25; margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem; color: var(--muted); max-width: 580px; font-weight: 300;
  margin-bottom: 52px;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e0e8ed;
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,37,69,0.16); }
.service-card:nth-child(2n) { border-top-color: var(--gold); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--navy); margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ─── HOW IT WORKS ─── */
.bg-cream { background: var(--cream); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px;
}
.step {
  text-align: center; padding: 36px 24px;
  background: #fff; border-radius: 10px;
  box-shadow: 0 2px 20px rgba(11,37,69,0.07);
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ─── FOOD TYPES ─── */
.foods-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
}
.food-item {
  background: var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  font-size: 0.88rem; font-weight: 600; color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
  display: flex; align-items: center; gap: 10px;
}
.food-item:hover { background: #d5e9ef; border-left-color: var(--gold); }
.food-item::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 0.9rem; }

/* ─── PRICING ─── */
.bg-navy { background: var(--navy); }
.bg-navy .section-title { color: #fff; }
.bg-navy .section-label { color: var(--gold2); }
.bg-navy .section-desc { color: rgba(255,255,255,0.65); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 36px 32px;
  transition: transform 0.25s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { background: var(--teal); border-color: var(--teal2); position: relative; }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px;
}
.price-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.price-card .tagline { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.price-feature {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem; color: rgba(255,255,255,0.88);
}
.price-feature:last-of-type { border-bottom: none; margin-bottom: 24px; }
.price-feature::before { content: '✔'; color: var(--gold2); flex-shrink: 0; font-weight: 700; }
.price-card .btn-gold { width: 100%; text-align: center; display: block; }

/* ─── GUARANTEE ─── */
.guarantee-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.guarantee-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: 12px; height: 380px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  text-align: center; padding: 40px;
}
.guarantee-visual .g-icon { font-size: 4rem; }
.guarantee-visual h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; font-weight: 700; }
.guarantee-visual p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.guarantee-list { margin: 24px 0; }
.guarantee-item { display: flex; gap: 14px; margin-bottom: 20px; }
.g-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--light); color: var(--teal);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.guarantee-item strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 2px; }
.guarantee-item span { font-size: 0.88rem; color: var(--muted); }

/* ─── CONTACT ─── */
.bg-cream-light { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--navy); margin-bottom: 14px;
}
.contact-intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; font-weight: 300; }
.contact-method {
  display: flex; gap: 14px; align-items: center;
  background: #fff; padding: 18px 20px;
  border-radius: var(--radius); margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(11,37,69,0.08);
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-method:hover { box-shadow: 0 6px 24px rgba(11,37,69,0.14); transform: translateY(-2px); }
.cm-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.cm-text strong { display: block; font-size: 0.95rem; color: var(--navy); }
.cm-text span { font-size: 0.82rem; color: var(--muted); }
.discount-box {
  background: var(--teal); color: #fff;
  border-radius: var(--radius); padding: 18px 20px; margin-top: 18px;
  font-size: 0.9rem; line-height: 1.5;
}
.discount-box strong { font-size: 1.05rem; }
.contact-hint { margin-top: 18px; font-size: 0.82rem; color: var(--muted); }

.contact-form-wrap {
  background: #fff; border-radius: 12px; padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap .form-intro { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: var(--navy); margin-bottom: 7px; letter-spacing: 0.04em; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #d8e3eb; border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif; font-size: 0.92rem; color: var(--text);
  background: #fafcfd;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,122,138,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--navy); color: #fff;
  padding: 14px 32px; border: none; border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; width: 100%; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--teal); transform: translateY(-1px); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 12px; text-align: center; }
.wpcf7-not-valid-tip { color: #c0392b; font-size: 0.8rem; margin-top: 4px; display: block; }
.wpcf7-response-output { margin-top: 12px; font-size: 0.88rem; border-radius: 4px; padding: 10px 14px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.75);
  padding: 60px 24px 30px;
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 16px; font-weight: 300; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; }
.footer-logo-badge {
  width: 40px; height: 40px; background: var(--teal); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 900; color: var(--gold);
  font-size: 0.9rem; line-height: 1.1; text-align: center;
}
.footer-logo-name { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.05rem; display: block; }
.footer-logo-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-note {
  margin-top: 20px; padding: 14px;
  background: rgba(200,168,75,0.12); border-radius: 6px; border-left: 3px solid var(--gold);
  font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.6;
}
.footer-bottom {
  max-width: 1160px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }

/* ─── VENUE BADGES ─── */
.venue-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.badge-navy { background: var(--navy); color: #fff; padding: 7px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.badge-teal { background: var(--teal); color: #fff; padding: 7px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.sub-label { display: block; color: var(--navy); font-size: 0.88rem; margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.foods-note { margin-top: 20px; font-size: 0.88rem; color: var(--muted); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .guarantee-wrap,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 20px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); gap: 16px; border-top: 2px solid var(--gold); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .site-header { position: sticky; }
}
@media (max-width: 600px) {
  .site-section { padding: 60px 16px; }
  .hero { padding: 60px 16px; }
}

/* ─── OFFER / PRICING TABLE ─────────────────────────────── */
.offer-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  margin-bottom: 28px;
}
.offer-table {
  width: 100%; border-collapse: collapse;
  background: #fff;
  font-size: 0.88rem;
  min-width: 700px;
}
.offer-table thead tr { background: var(--navy2); }
.offer-table th {
  padding: 0; text-align: center;
  vertical-align: bottom;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.offer-table th.col-feature { width: 22%; background: var(--navy); }
.offer-table th.col-basic   { width: 22%; background: var(--navy2); }
.offer-table th.col-plus    { width: 28%; }
.offer-table th.col-premium { width: 28%; background: var(--navy2); }
.offer-table th.featured-col { background: var(--teal); }

.plan-badge-wrap {
  padding: 8px 12px 0;
  text-align: center;
}
.plan-badge-top {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
}
.plan-head {
  padding: 14px 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: #fff; display: block;
}
.plan-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.65); }

.offer-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8eef3;
  border-right: 1px solid #e8eef3;
  vertical-align: middle;
  color: var(--text);
  line-height: 1.5;
}
.offer-table td.featured-col {
  background: rgba(27,122,138,0.06);
  border-right-color: rgba(27,122,138,0.15);
}
.offer-table tbody tr:hover td { background: rgba(27,122,138,0.04); }
.offer-table tbody tr:hover td.featured-col { background: rgba(27,122,138,0.1); }

.feat-label {
  font-weight: 700; color: var(--navy);
  font-size: 0.85rem; white-space: nowrap;
  background: var(--light) !important;
}
.yes { color: var(--teal); font-weight: 800; font-size: 1rem; margin-right: 4px; }
.no  { color: #bbb; font-weight: 700; font-size: 1rem; margin-right: 4px; }

.row-desc td { font-size: 0.85rem; color: var(--muted); }
.row-cta td  { padding: 20px 16px; text-align: center; background: #f8fbfd; }
.row-cta td.featured-col { background: rgba(27,122,138,0.08); }
.table-btn { font-size: 0.85rem; padding: 11px 22px; }

.pricing-note { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 16px; }

/* ─── CONSULTANT SPLIT LAYOUT ───────────────────────────── */
.consultant-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px;
  align-items: start; margin-bottom: 48px;
}
.consultant-img-col img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(11,37,69,0.14);
  object-fit: cover;
}
.consultant-text-col { }

/* ─── COLLAGE IMAGE ─────────────────────────────────────── */
.collage-wrap {
  margin-top: 8px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 6px 28px rgba(11,37,69,0.12);
}
.collage-wrap img { width: 100%; display: block; }

/* ─── CERTIFICATION LOGOS ───────────────────────────────── */
.cert-logos {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  margin-top: 24px; padding: 20px;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(11,37,69,0.08);
}
.cert-logos img {
  height: 70px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.2s;
}
.cert-logos img:hover { transform: scale(1.05); }

/* ─── RESPONSIVE ADDITIONS ──────────────────────────────── */
@media (max-width: 900px) {
  .consultant-wrap { grid-template-columns: 1fr; }
  .consultant-img-col img { max-height: 280px; }
}
