/* ==========================================================================
   UK RP Service — Shared Stylesheet
   Palette matched to tayloredconsultancy.co.uk/cosmetics (burgundy + dusty rose + cream)
   ========================================================================== */

:root {
  --navy: #5C1533;
  --navy-soft: #74203F;
  --teal: #B3577C;
  --teal-deep: #701B3F;
  --mint: #F3D9DB;
  --mint-strong: #DD8DA1;
  --mint-card: #E3C5C5;
  --pale: #FBF4F1;
  --pale-2: #F9F4F0;
  --white: #FFFFFF;
  --ink: #333333;
  --ink-soft: #4D4D4A;
  --border: rgba(92, 21, 51, 0.10);
  --shadow: 0 20px 45px rgba(51, 10, 26, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
}

h1 { font-size: clamp(2.3rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 90px 0; }
@media (max-width: 768px) { .section-pad { padding: 60px 0; } }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-block;
  background: var(--pale);
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.on-dark { background: rgba(255,255,255,0.08); color: var(--mint); }

.section-head { max-width: 680px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--teal-deep); color: var(--mint); }
.btn-primary:hover { background: var(--navy); box-shadow: 0 12px 24px rgba(112,27,63,0.28); }

.btn-mint { background: var(--mint-strong); color: var(--navy); }
.btn-mint:hover { box-shadow: 0 12px 24px rgba(221,141,161,0.35); }

.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-dark { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--mint); }

.btn-sm { padding: 11px 22px; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo-link img { height: 50px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav-links a.active,
.nav-links a:hover { color: var(--teal-deep); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--mint-strong);
  border-radius: 3px;
}

.header-actions { display: flex; align-items: center; gap: 18px; }

.has-dropdown { position: relative; display: flex; align-items: center; }
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 7px;
  position: relative;
  top: -2px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 270px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--pale); color: var(--teal-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--pale);
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: flex-start; padding: 20px 24px 26px; gap: 16px; border-bottom: 1px solid var(--border); display: none; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .has-dropdown { flex-direction: column; align-items: flex-start; width: 100%; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 0 12px;
    display: none;
    min-width: 0;
    transition: none;
  }
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu { display: flex; }
}

/* ---------- Hero (dark, blobbed) ---------- */
.hero {
  background: radial-gradient(120% 140% at 15% -10%, #8A2B4C 0%, var(--navy) 55%), var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 110px;
}
.hero-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); }
.hero .blob-a { width: 340px; height: 340px; top: -90px; left: -100px; }
.hero .blob-b { width: 260px; height: 260px; bottom: -60px; right: 10%; background: rgba(221,141,161,0.08); }
.hero .blob-c { width: 180px; height: 180px; top: 30%; right: -60px; background: rgba(221,141,161,0.06); }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--mint-strong); }
.hero p.lead { color: rgba(251,244,241,0.82); font-size: 1.12rem; max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.hero-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pale);
}

.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 34px;
  backdrop-filter: blur(6px);
}
.hero-panel h3 { color: var(--white); margin-bottom: 18px; }
.hero-panel-list { display: flex; flex-direction: column; gap: 14px; }
.hero-panel-item { display: flex; gap: 12px; align-items: flex-start; color: rgba(251,244,241,0.88); font-size: 0.96rem; }
.hero-panel-item .dot { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--mint-strong); color: var(--navy); font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 2px; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: radial-gradient(120% 160% at 85% -20%, #8A2B4C 0%, var(--navy) 55%), var(--navy);
  color: var(--white);
  padding: 74px 0 84px;
  overflow: hidden;
  position: relative;
}
.page-header .eyebrow.on-dark { margin-bottom: 14px; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p { color: rgba(251,244,241,0.82); max-width: 620px; font-size: 1.05rem; }
.crumb { font-size: 0.9rem; color: rgba(251,244,241,0.6); margin-bottom: 18px; }
.crumb a { color: var(--mint); font-weight: 600; }

/* ---------- Stat strip ---------- */
.stat-strip { background: var(--pale-2); border-bottom: 1px solid var(--border); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; }
@media (max-width: 800px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2rem; color: var(--teal-deep); }
.stat-item .label { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; margin-top: 4px; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card.on-pale { background: var(--pale-2); }
.card.on-mint { background: var(--mint-card); border-color: transparent; }
.card.on-teal { background: var(--teal); color: var(--white); border-color: transparent; }
.card.on-navy { background: var(--navy); color: var(--white); border-color: transparent; }

.card.on-teal p, .card.on-navy p { color: rgba(255,255,255,0.82); }
.card.on-teal h3, .card.on-navy h3 { color: var(--white); }

.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px rgba(51,10,26,0.08);
}
.card.on-teal .card-icon, .card.on-navy .card-icon { background: rgba(255,255,255,0.12); box-shadow: none; }
.card-icon svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 700; font-size: 0.9rem; color: var(--teal-deep); }
.card.on-teal .card-link, .card.on-navy .card-link { color: var(--mint-strong); }

/* ---------- Split section (image/panel + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split.reverse .split-visual { order: 2; }
@media (max-width: 900px) { .split.reverse .split-visual { order: 0; } }

.visual-panel {
  border-radius: var(--radius-lg);
  padding: 44px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.visual-panel.navy { background: var(--navy); color: white; }
.visual-panel.mint { background: linear-gradient(150deg, var(--mint), var(--mint-card)); }
.visual-panel .blob { position: absolute; }

.check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-item .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--mint-strong); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; color: var(--navy); margin-top: 2px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--pale-2); border-radius: var(--radius-md); padding: 30px 24px; border: 1px solid var(--border); }
.step .step-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--mint-strong); -webkit-text-stroke: 1.5px var(--teal-deep); margin-bottom: 14px; }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow); }
.testi-quote { color: var(--ink); font-size: 0.98rem; margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--mint-card); display: flex; align-items: center; justify-content: center; font-family: 'Poppins',sans-serif; font-weight: 700; color: var(--teal-deep); }
.testi-name { font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.testi-role { font-size: 0.8rem; color: var(--ink-soft); }
.testi-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 34px; text-align: center; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(251,244,241,0.8); max-width: 480px; }
.cta-banner .blob { position: absolute; width: 260px; height: 260px; background: rgba(221,141,161,0.08); border-radius: 50%; top: -100px; right: -60px; }

/* ---------- Forms ---------- */
/* Honeypot: kept in the layout (not display:none) so basic bots that skip
   hidden fields still fill it in, but positioned off-screen so no human ever sees it. */
.hp-field { position: absolute; left: -5000px; top: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--pale-2);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); background: var(--white); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }

.contact-card { background: var(--pale-2); border-radius: var(--radius-lg); padding: 34px; border: 1px solid var(--border); }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .ci-icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(51,10,26,0.08); }
.contact-info-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.92rem; }

.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); margin-top: 26px; }
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Accreditation strip ---------- */
.accred-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.accred-pill { background: var(--pale); color: var(--teal-deep); font-weight: 700; font-size: 0.85rem; padding: 12px 22px; border-radius: 999px; border: 1px solid var(--border); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(251,244,241,0.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 12px; }
.footer-grid a:hover { color: var(--mint-strong); }
.site-footer p { color: rgba(251,244,241,0.82); }
.footer-about p { font-size: 0.92rem; max-width: 320px; margin: 18px 0 20px; }
.footer-about img { height: 46px; margin-bottom: 4px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--mint-strong); color: var(--navy); }
.footer-legal { padding: 20px 0 0; }
.footer-legal p { font-size: 0.78rem; color: rgba(251,244,241,0.58); max-width: 780px; margin: 0; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: var(--mint-strong); }

/* ---------- Legal content pages ---------- */
.legal-content { max-width: 780px; }
.legal-content .updated-note { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 36px; }
.legal-content h2 { font-size: 1.45rem; margin: 42px 0 14px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul, .legal-content ol { margin: 0 0 16px 22px; color: var(--ink-soft); }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: 8px; }
.legal-content li p { margin-bottom: 0; }
.legal-content a { color: var(--teal-deep); text-decoration: underline; }
.legal-content strong { color: var(--navy); }

/* ---------- Misc ---------- */
.two-col-text { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media (max-width: 800px) { .two-col-text { grid-template-columns: 1fr; } }

.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* .reveal is intentionally a no-op: content is always visible. A prior
   scroll-triggered fade-in was removed after testing showed it could leave
   whole sections stuck invisible (fast scrolling / slow JS / edge cases in
   IntersectionObserver timing) — not an acceptable risk for real content. */

/* ---------- Pricing table ---------- */
.price-segment-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 54px 0 16px;
}
.price-segment-label:first-child { margin-top: 0; }
.price-segment-sub { font-size: 0.85rem; color: var(--ink-soft); margin: -10px 0 16px; }

.price-subhead { display: flex; align-items: center; gap: 10px; margin: 28px 0 10px; }
.price-subhead .tag-pill { padding: 5px 12px; font-size: 0.72rem; letter-spacing: 0.4px; }
.price-subhead .tag-pill.setup { background: var(--pale); color: var(--teal-deep); }
.price-subhead .tag-pill.maintenance { background: var(--teal-deep); color: var(--white); }
.price-subhead .tag-pill.addon { background: var(--pale-2); color: var(--ink-soft); border: 1px solid var(--border); }
.price-table + .price-subhead { margin-top: 28px; }
.price-model-note { font-size: 0.88rem; color: var(--ink-soft); background: var(--pale-2); border-radius: var(--radius-md); padding: 16px 20px; margin-top: 4px; }

.price-table { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
}
.price-row:nth-child(even) { background: var(--pale-2); }
.price-row .price-label { font-weight: 600; color: var(--navy); font-size: 0.96rem; }
.price-row .price-label span { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.84rem; margin-top: 2px; }
.price-row .price-value { font-weight: 700; color: var(--teal-deep); font-size: 0.98rem; white-space: nowrap; text-align: right; }
.price-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 16px; }

.price-callout {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  background: var(--pale-2);
}
.price-callout h3 { margin-bottom: 10px; }
.price-callout p { max-width: 520px; margin: 0 auto 20px; }

/* ---------- Pricing tier cards (card-grid reuse) ---------- */
.card-price { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--navy); margin: 4px 0 2px; }
.card-price span { font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); }
.card.on-teal .card-price, .card.on-navy .card-price { color: var(--white); }
.card.on-teal .card-price span, .card.on-navy .card-price span { color: rgba(255,255,255,0.75); }
.card-segment { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; opacity: 0.75; }
.card .check-list { margin-top: 20px; gap: 10px; }
.card .check-item { font-size: 0.88rem; }

/* ---------- Service pillar strip (cross-links between the 4 core services) ---------- */
.pillar-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .pillar-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillar-strip { grid-template-columns: 1fr; } }
.pillar-item {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 20px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); background: var(--white);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pillar-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.pillar-item.active { background: var(--navy); border-color: transparent; }
.pillar-item.active h4, .pillar-item.active p { color: var(--white); }
.pillar-item .pillar-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal-deep); }
.pillar-item.active .pillar-tag { color: var(--mint-strong); }
.pillar-item h4 { font-size: 1.02rem; }
.pillar-item p { font-size: 0.86rem; margin: 0; }

/* ---------- Device / product class grid ---------- */
.class-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 980px) { .class-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .class-grid { grid-template-columns: repeat(2, 1fr); } }
.class-card { background: var(--pale-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 18px; text-align: center; }
.class-card .class-tag { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--teal-deep); margin-bottom: 8px; }
.class-card p { font-size: 0.82rem; margin: 0; }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--white); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.compare-table thead th { background: var(--navy); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 0.88rem; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: var(--pale-2); }
.compare-table td:first-child, .compare-table th:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; }
.compare-table td.yes { color: var(--teal-deep); font-weight: 700; }
.compare-table td.no { color: var(--ink-soft); }

/* ---------- Callout / notice box ---------- */
.callout { border-radius: var(--radius-md); padding: 26px 28px; display: flex; gap: 16px; align-items: flex-start; border: 1.5px solid var(--border); }
.callout .callout-icon { flex: none; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Poppins', sans-serif; }
.callout h4 { font-size: 1rem; margin-bottom: 6px; }
.callout p { font-size: 0.92rem; margin: 0; }
.callout p + p { margin-top: 10px; }
.callout.info { background: var(--pale-2); }
.callout.info .callout-icon { background: var(--mint-card); color: var(--navy); }
.callout.warn { background: #FFF7E8; border-color: rgba(180,130,20,0.18); }
.callout.warn .callout-icon { background: #F5D98B; color: #6B4E0A; }
.callout.warn h4 { color: #7A5A0C; }

/* ---------- FAQ (native details/summary, no JS needed) ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; font-size: 1.3rem; font-weight: 400; color: var(--teal-deep);
  width: 28px; height: 28px; border-radius: 50%; background: var(--pale); display: flex; align-items: center; justify-content: center;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-item .faq-body { padding: 4px 24px 22px; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Flag / country strip ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill { background: var(--pale); color: var(--teal-deep); font-weight: 600; font-size: 0.82rem; padding: 9px 16px; border-radius: 999px; }

/* ---------- Feature photo band ---------- */
.feature-photo-section { padding: 0 0 8px; }
.feature-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.feature-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}
.feature-photo-cap {
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 16px;
}
