/* ==========================================================================
   Online Reputation Manage - sitewide stylesheet
   Extracted from the approved V2 Direct Response homepage (design/Main.dc.html)
   One file for the whole site. Critical above-the-fold rules are duplicated
   in src/critical.css and inlined at build time.
   ========================================================================== */

/* ---------- Fonts (self-hosted, variable woff2, latin subset) ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/assets/fonts/bricolage-grotesque-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/instrument-sans-latin-var.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  /* color */
  --ink: #12211E;            /* main text */
  --dark: #0F2622;           /* dark teal bands, utility bar */
  --darker: #0A1B18;         /* footer ground */
  --teal: #0A5C50;           /* brand teal, links, eyebrows */
  --teal-hover: #0C7A6A;
  --amber: #F0A519;          /* primary CTA */
  --ground: #F3F7F5;         /* page ground */
  --surface: #FFFFFF;
  --line: #E2EAE6;           /* card + section hairlines */
  --line-soft: #EAF1EE;
  --muted: #4A6159;          /* secondary text */
  --muted-2: #6B7F77;        /* small print */
  --label: #3C544D;          /* form labels, nav text */
  --mint: #E5F1EC;           /* badge fill */
  --mint-border: #C6DED4;
  --input-border: #D5E2DC;
  --input-bg: #FBFDFC;
  --placeholder: #8DA39A;
  --on-dark: #BFD6CF;        /* muted text on dark teal */
  --on-dark-faint: #7FA096;  /* footer secondary */
  --dark-divider: #24473F;
  --footer-divider: #1B3530;
  --dark-outline: #2E6B4F;   /* outline buttons on dark */
  --wa-green: #25A85C;       /* WhatsApp on light */
  --wa-green-dark: #7FE398;  /* WhatsApp on dark */

  /* type */
  --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-body: 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;

  /* effects */
  --shadow-cta: 0 8px 20px rgba(240, 165, 25, 0.4);
  --shadow-cta-sm: 0 6px 18px rgba(240, 165, 25, 0.35);
  --shadow-card-float: 0 28px 70px rgba(15, 38, 34, 0.14);

  /* radii */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 12px;
  --r-xl: 14px;

  /* layout */
  --container: 1312px;
  --gutter: clamp(20px, 4.5vw, 64px);

  /* text measures.
     Headings and body copy need different measures. Display sizes are clamped
     against the viewport (h1 up to 58px, h2 up to 36-40px) so a heading box
     capped at a body-copy measure runs out of room as the viewport grows and
     the heading wraps while its row still has 300-500px of slack. Headings get
     --measure-head; the paragraphs beside them keep --measure-copy so body text
     never inherits an unreadably long line. */
  --measure-head: 1080px;
  --measure-copy: 820px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ground);
}
img, svg, video { max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-hover); }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
button { font: inherit; border: 0; background: none; cursor: pointer; padding: 0; color: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 200;
  background: var(--dark); color: #fff; font-weight: 700;
  padding: 10px 18px; border-radius: 0 0 8px 8px; transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Type scale ---------- */
.display, h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  text-wrap: balance;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  /* When a heading genuinely has to wrap, avoid a one-word last line.
     Ignored by browsers without `pretty`, which fall back to normal wrapping. */
  text-wrap: pretty;
}
.h2-sub { font-size: clamp(24px, 2.1vw, 30px); letter-spacing: -0.5px; }
h3, .h3 { font-size: 17.5px; font-weight: 700; color: var(--ink); line-height: 1.35; text-wrap: pretty; }
.eyebrow {
  font-size: 12.5px; font-weight: 800; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--teal);
}
.lead { font-size: clamp(16px, 1.25vw, 17.5px); line-height: 1.65; color: var(--muted); }
.section-intro { font-size: 16px; line-height: 1.6; color: var(--muted); }
.small { font-size: 13.5px; color: var(--muted-2); }
.on-dark h2, .on-dark h3, .on-dark .h2 { color: #fff; }
.on-dark p, .on-dark .section-intro, .on-dark .lead { color: var(--on-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; border-radius: var(--r-md); text-align: center;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-cta {
  background: var(--amber); color: var(--ink);
  font-size: 16px; padding: 16px 30px; box-shadow: var(--shadow-cta);
}
.btn-cta:hover { background: #F7B22E; color: var(--ink); transform: translateY(-1px); }
.btn-cta--sm { font-size: 14.5px; font-weight: 700; padding: 13px 24px; border-radius: var(--r-sm); box-shadow: var(--shadow-cta-sm); }
.btn-outline {
  background: var(--surface); color: var(--ink);
  font-size: 15px; font-weight: 700; padding: 15px 24px;
  border: 1.5px solid var(--mint-border); border-radius: var(--r-md);
}
.btn-outline:hover { border-color: var(--teal); color: var(--ink); }
.btn-outline--dark {
  background: transparent; color: #fff;
  font-size: 15px; font-weight: 700; padding: 15px 24px;
  border: 1.5px solid var(--dark-outline); border-radius: var(--r-md);
}
.btn-outline--dark:hover { border-color: var(--wa-green-dark); color: #fff; }
.btn-block { display: flex; width: 100%; }
.btn-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.text-link { font-size: 13.5px; font-weight: 700; color: var(--teal); }
.text-link:hover { color: var(--teal-hover); }
.text-link--amber { color: var(--amber); }
.text-link--amber:hover { color: #F7B22E; }
.wa-icon { flex-shrink: 0; }

/* ---------- Utility bar ---------- */
.utility-bar { background: var(--dark); color: var(--on-dark); font-size: 13px; font-weight: 500; }
.utility-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 44px; gap: 16px;
}
.utility-bar a { color: var(--on-dark); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.utility-bar a:hover { color: #fff; }
.utility-bar .u-confidential { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.utility-bar .u-conf-short { display: none; }
a[href^="tel:"] { white-space: nowrap; }
.icon-card[href^="tel:"], .card-link-wrap[href^="tel:"] { white-space: normal; }
.utility-bar .u-links { display: flex; align-items: center; gap: 28px; }
.utility-bar .u-whatsapp { color: var(--wa-green-dark); font-weight: 600; }
.utility-bar .u-whatsapp:hover { color: #fff; }

/* ---------- Header / nav ---------- */
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); position: relative; z-index: 100; }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }

.nav-toggle { display: none; padding: 10px; margin-right: -10px; color: var(--label); }
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 28px; font-size: 14.5px; font-weight: 600; color: var(--label); }
.nav-item { position: relative; }
.nav-item > a, .nav-item > .nav-drop-btn {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  color: var(--label); font-weight: 600; padding: 8px 0;
}
@media (min-width: 1140px) { .nav-mobile-cta { display: none; } }
.nav-item > a:hover, .nav-item > .nav-drop-btn:hover { color: var(--teal); }
.nav-drop-btn svg { transition: transform .15s ease; }

.nav-drop {
  position: absolute; top: 100%; left: -18px; min-width: 260px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: 0 18px 44px rgba(15, 38, 34, 0.14);
  padding: 10px; display: none; z-index: 110;
}
.nav-drop a {
  display: block; padding: 10px 14px; border-radius: var(--r-sm);
  color: var(--label); font-size: 14px; font-weight: 600;
}
.nav-drop a:hover { background: var(--ground); color: var(--teal); }
@media (min-width: 1140px) {
  .nav-item:hover > .nav-drop,
  .nav-item:focus-within > .nav-drop { display: block; }
  .nav-item:hover > .nav-drop-btn svg,
  .nav-item:focus-within > .nav-drop-btn svg { transform: rotate(180deg); }
}
.header-cta { flex-shrink: 0; }

/* Mobile nav */
@media (max-width: 1139px) {
  .utility-bar .u-email { display: none; }
  .utility-bar .u-links { gap: 18px; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(15, 38, 34, 0.18);
    max-height: calc(100vh - 122px); overflow-y: auto;
  }
  .site-nav.is-open { display: block; }
  .nav-list { display: block; padding: 12px var(--gutter) 20px; }
  .nav-item { border-bottom: 1px solid var(--line-soft); }
  .nav-item > a, .nav-item > .nav-drop-btn {
    display: flex; width: 100%; justify-content: space-between;
    padding: 14px 0; font-size: 15.5px;
  }
  .nav-drop {
    position: static; min-width: 0; border: 0; box-shadow: none;
    border-radius: 0; padding: 0 0 10px 14px;
  }
  .nav-item.is-open > .nav-drop { display: block; }
  .nav-item.is-open > .nav-drop-btn svg { transform: rotate(180deg); }
  .nav-mobile-cta { padding: 18px 0 6px; border-bottom: 0; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(52px, 6vw, 84px) clamp(48px, 5.6vw, 76px); }
.section--white { background: var(--surface); border-top: 1px solid var(--line); }
.section--dark { background: var(--dark); }
.section-head { display: flex; flex-direction: column; gap: 12px; max-width: var(--measure-head); margin-bottom: 40px; }
/* The head box is sized for the heading; its paragraphs keep the copy measure. */
.section-head > p { max-width: var(--measure-copy); }
.section-head--split {
  flex-direction: row; align-items: flex-end; justify-content: space-between;
  gap: 32px; max-width: none;
}
.section-head--split .section-aside { font-size: 14px; color: var(--muted); max-width: 300px; line-height: 1.6; }
@media (max-width: 720px) {
  .section-head--split { flex-direction: column; align-items: flex-start; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(44px, 5vw, 72px) clamp(36px, 3.4vw, 48px); }
.hero-grid { display: flex; gap: clamp(32px, 4.2vw, 60px); align-items: flex-start; }
.hero-copy { flex: 1; display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.hero-copy .accent { color: var(--teal); }
.hero-badge {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  background: var(--mint); border: 1px solid var(--mint-border); color: var(--teal);
  font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 20px;
}
.hero-lead { max-width: 540px; }
.hero-proof {
  display: flex; align-items: center; gap: 16px; margin-top: 6px;
  font-size: 13.5px; color: var(--muted-2); flex-wrap: wrap;
}
.hero-proof .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mint-border); }
.hero-form-slot { flex: 0.85; max-width: 460px; width: 100%; }
@media (max-width: 900px) {
  .hero-grid { flex-direction: column; }
  .hero-form-slot { max-width: 540px; }
}

/* Inner-page hero (derived from homepage hero, no form card) */
.page-hero { padding-block: clamp(40px, 4.6vw, 64px) clamp(32px, 3.4vw, 48px); }
/* Sized for the h1; the copy under it is .hero-lead, which keeps its own measure. */
.page-hero .hero-copy { max-width: var(--measure-head); }
.breadcrumbs { font-size: 13px; color: var(--muted-2); display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs a { color: var(--muted-2); font-weight: 600; }
.breadcrumbs a:hover { color: var(--teal); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
}
.card-img { width: 100%; height: 170px; object-fit: cover; object-position: top center; display: block; }
.card-img--divided { border-bottom: 1px solid var(--line); object-position: top; }
.card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body .text-link { margin-top: auto; padding-top: 2px; }
.card-kicker {
  font-size: 11px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--teal);
}
.card-title-sm { font-size: 14px; font-weight: 700; line-height: 1.45; color: var(--ink); flex: 1; }
.card-text { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
a.card-link-wrap { color: inherit; display: flex; flex-direction: column; height: 100%; }
a.card-link-wrap:hover .text-link { color: var(--teal-hover); }
a.card-link-wrap:hover .card-title-sm, a.card-link-wrap:hover h3 { color: var(--teal); }

/* Icon cards (Our Services) */
.icon-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; display: flex; align-items: flex-start; gap: 16px;
}
.icon-card img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.icon-card-body { display: flex; flex-direction: column; gap: 6px; }
.icon-card h3 { font-size: 16px; overflow-wrap: anywhere; }
.icon-card p { font-size: 13.5px; line-height: 1.55; color: var(--muted); overflow-wrap: anywhere; }

/* Tiles (What we remove / Industries) */
.tile {
  background: var(--ground); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 10px;
}
.tile svg { color: var(--teal); }
.tile h3 { font-size: 16px; }
.tile p { font-size: 13.5px; line-height: 1.58; color: var(--muted); }
.tile--dark { background: var(--dark); border-color: var(--dark); justify-content: center; }
.tile--dark h3 { color: #fff; }
.tile--dark p { color: var(--on-dark); }

/* Process steps (derived from tile pattern with numbered badges) */
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--dark); color: var(--amber);
  font-family: var(--font-display); font-size: 15px; font-weight: 800;
}

/* ---------- Stats band ---------- */
.stats-band { background: var(--dark); }
.stats-band .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding-block: 52px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--amber); line-height: 1.1; }
.stat-label { font-size: 14px; color: var(--on-dark); }
.stat-divider { width: 1px; height: 52px; background: var(--dark-divider); }
@media (max-width: 900px) {
  .stats-band .container { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; padding-block: 40px; }
  .stat-divider { display: none; }
}

/* ---------- Highlight band (AI Search Reputation) ---------- */
.highlight-band {
  background: var(--dark); border-radius: var(--r-lg); padding: 28px 30px;
  display: flex; align-items: center; gap: 24px;
}
.highlight-band svg { color: var(--amber); flex-shrink: 0; }
.highlight-band-body { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.highlight-band-title { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.highlight-band-title strong { font-size: 17px; font-weight: 800; color: #fff; }
.badge-new {
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--ink); background: var(--amber); padding: 4px 10px; border-radius: 4px;
}
.highlight-band p { font-size: 14px; line-height: 1.6; color: var(--on-dark); max-width: 820px; }
.highlight-band .text-link--amber { white-space: nowrap; }
@media (max-width: 820px) {
  .highlight-band { flex-direction: column; align-items: flex-start; }
  .highlight-band .text-link--amber { white-space: normal; }
}

/* ---------- CTA bands ---------- */
.cta-band { background: var(--dark); }
.cta-band .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding-block: 40px;
}
.cta-band-img { width: 190px; height: 108px; object-fit: cover; border-radius: var(--r-md); flex-shrink: 0; }
.cta-band-copy { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 220px; }
.cta-band-copy h2 { font-size: clamp(20px, 1.8vw, 24px); color: #fff; letter-spacing: -0.3px; }
.cta-band-copy p { font-size: 14.5px; color: var(--on-dark); }
.cta-band .btn-cta { font-size: 15px; padding: 15px 28px; white-space: nowrap; }
@media (max-width: 1024px) {
  .cta-band .container { flex-wrap: wrap; }
  .cta-band-img { display: none; }
  .cta-band .btn-cta { white-space: normal; }
}

.final-cta { background: var(--dark); }
.final-cta .container {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  text-align: center; padding-block: clamp(56px, 6vw, 80px);
}
/* Centered, so `balance` is right here: it evens the lines when the heading
   must wrap and never forces a wrap on text that already fits one line. */
.final-cta h2 { font-size: clamp(28px, 2.8vw, 40px); color: #fff; max-width: var(--measure-head); text-wrap: balance; }
.final-cta p { font-size: 16px; color: var(--on-dark); max-width: 560px; line-height: 1.6; }
.final-cta .btn-row { justify-content: center; margin-top: 10px; }
.final-cta .btn-cta { font-size: 16px; padding: 17px 34px; box-shadow: 0 8px 24px rgba(240, 165, 25, 0.4); }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 32px; display: flex; flex-direction: column; gap: 16px;
}
.quote-card blockquote { font-size: 15px; line-height: 1.7; color: var(--ink); }
.quote-card figcaption { font-size: 13.5px; font-weight: 700; color: var(--teal); }

/* ---------- FAQ accordion ---------- */
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
  background: var(--ground); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0 26px;
}
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  font-size: 15px; font-weight: 700; color: var(--ink); padding: 20px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--teal); flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-a { font-size: 13.5px; line-height: 1.6; color: var(--muted); padding-bottom: 22px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-card-float);
  padding: 34px 34px 30px; display: flex; flex-direction: column; gap: 18px;
}
@media (max-width: 480px) { .form-card { padding: 26px 22px 24px; } }
.form-card-head { display: flex; flex-direction: column; gap: 8px; }
.form-card-head .form-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--ink); }
.form-card-head p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.form-fields { display: flex; flex-direction: column; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: flex; gap: 10px; }
.field-row .field { flex: 1; min-width: 0; }
.phone-row { display: flex; gap: 8px; }
.phone-row input { flex: 1; min-width: 0; }
.field select.dial-code { flex: 0 0 auto; width: 108px; padding-right: 30px; background-position: right 10px center; }
@media (max-width: 480px) { .field-row { flex-direction: column; gap: 9px; } }
.field label { font-size: 12.5px; font-weight: 700; color: var(--label); letter-spacing: 0.3px; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 14.5px; color: var(--ink);
  border: 1.5px solid var(--input-border); border-radius: var(--r-sm);
  padding: 13px 15px; background: var(--input-bg); width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--placeholder); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238DA39A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field select:invalid { color: var(--placeholder); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); outline: none; }
.field textarea { min-height: 58px; resize: vertical; }
.form-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12.5px; color: var(--muted-2);
}
.form-alt {
  border-top: 1px solid var(--line-soft); padding-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 14px; font-weight: 700; color: var(--teal);
}
.form-error {
  display: none; background: #FBECEC; border: 1px solid #EBC8C8; color: #8A2E2E;
  font-size: 13.5px; border-radius: var(--r-sm); padding: 12px 15px;
}
.form-error.is-visible { display: block; }
.recaptcha-note { font-size: 11.5px; color: var(--muted-2); line-height: 1.55; text-align: center; }
.recaptcha-note a { color: var(--muted-2); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.grecaptcha-badge { visibility: hidden !important; }

/* Standalone form section (contact page) */
.form-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 60px); align-items: flex-start; }
@media (max-width: 900px) { .form-section-grid { grid-template-columns: 1fr; } }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-list a { display: inline-flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 700; color: var(--ink); }
.contact-list a:hover { color: var(--teal); }
.contact-list svg { color: var(--teal); flex-shrink: 0; }

/* ---------- Article / prose ---------- */
.article-meta { display: flex; align-items: center; gap: 14px; font-size: 13.5px; color: var(--muted-2); flex-wrap: wrap; }
.article-meta .cat { font-weight: 700; color: var(--teal); }
.prose { max-width: 760px; font-size: 16.5px; line-height: 1.75; color: #2B3E38; margin-inline: auto; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: clamp(22px, 2vw, 28px); margin-top: 1.7em; }
.prose h3 { font-size: 19px; margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.45em; }
.prose blockquote {
  border-left: 3px solid var(--amber); padding: 4px 0 4px 20px;
  color: var(--muted); font-style: italic;
}
.prose img { border-radius: var(--r-lg); }
.prose strong { color: var(--ink); }

/* Archive listings */
.post-card-meta { font-size: 12.5px; color: var(--muted-2); }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 44px; }
.pagination a, .pagination span {
  display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center;
  padding: 0 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); font-size: 14px; font-weight: 700; color: var(--label);
}
.pagination a:hover { border-color: var(--teal); color: var(--teal); }
.pagination .current { background: var(--dark); border-color: var(--dark); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--darker); color: var(--on-dark); }
.site-footer .container { padding-block: 56px 40px; display: flex; flex-direction: column; gap: 40px; }
.footer-grid { display: flex; justify-content: space-between; gap: 56px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 280px; }
.footer-brand img { height: 56px; width: auto; align-self: flex-start; }
.footer-brand p { font-size: 13.5px; line-height: 1.65; color: var(--on-dark-faint); }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 13.5px; }
.footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--on-dark-faint); margin-bottom: 4px;
}
.footer-col a { color: var(--on-dark); }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 16px; margin-top: 6px; flex-wrap: wrap; }
.footer-cta-col { display: flex; flex-direction: column; gap: 12px; min-width: 280px; max-width: 320px; }
.footer-cta-col p { font-size: 13.5px; line-height: 1.65; color: var(--on-dark-faint); }
.footer-cta-col .btn-cta { font-size: 14px; padding: 13px; border-radius: var(--r-sm); box-shadow: none; }
.footer-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--wa-green-dark);
}
.footer-wa:hover { color: #fff; }
.footer-legal {
  padding-right: 84px;
  border-top: 1px solid var(--footer-divider); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--on-dark-faint);
}
.footer-legal a { color: var(--on-dark-faint); }
.footer-legal a:hover { color: var(--on-dark); }
@media (max-width: 720px) {
  .footer-grid { flex-direction: column; gap: 36px; }
}

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 96px; z-index: 150; /* stacked above the tawk.to bubble */
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa-green); color: #fff;
  box-shadow: 0 10px 26px rgba(18, 33, 30, 0.3);
  transition: transform .12s ease, box-shadow .12s ease;
}
.wa-float:hover { transform: scale(1.06); color: #fff; box-shadow: 0 14px 32px rgba(18, 33, 30, 0.36); }
.wa-float svg { width: 30px; height: 30px; }

@media (max-width: 600px) {
  .site-footer { padding-bottom: 150px; }
  .utility-bar { font-size: 12px; }
  .utility-bar .container { min-height: 38px; gap: 10px; }
  .utility-bar .u-conf-full { display: none; }
  .utility-bar .u-conf-short { display: inline; }
  .utility-bar .u-links { gap: 14px; }
  .wa-float { width: 48px; height: 48px; right: 14px; bottom: 88px; }
  .wa-float svg { width: 24px; height: 24px; }
}


/* ---------- Mobile centering: stacked marketing sections read centered on phones;
   article headers, body prose, cards, and forms stay left-aligned ---------- */
@media (max-width: 720px) {
  .section-head { align-items: center; text-align: center; margin-inline: auto; }
  .section-head--split { align-items: center; }
  .section-head--split .section-aside { max-width: none; text-align: center; }
  .hero .hero-copy, .page-hero:not(.page-hero--article) .hero-copy { align-items: center; text-align: center; }
  .hero .hero-badge, .page-hero:not(.page-hero--article) .hero-badge { align-self: center; }
  .hero .hero-proof, .page-hero:not(.page-hero--article) .hero-proof { justify-content: center; }
  .hero .btn-row, .page-hero:not(.page-hero--article) .btn-row { justify-content: center; }
  .stats-band .stat { align-items: center; text-align: center; }
  .cta-band .container { justify-content: center; }
  .cta-band-copy { align-items: center; text-align: center; }
  .cta-band .btn-row { justify-content: center; width: 100%; }
  .footer-brand { align-items: center; text-align: center; margin-inline: auto; }
  .footer-brand img { align-self: center; }
  .footer-col { align-items: center; text-align: center; }
  .footer-legal {
  padding-right: 84px; justify-content: center; text-align: center; flex-wrap: wrap; }
}

/* ---------- Icon chips (white glyph icons from the old site sit on a teal chip) ---------- */
.icon-chip { display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: var(--teal); border-radius: 10px; flex-shrink: 0; }
.icon-chip img { width: 28px; height: 28px; object-fit: contain; }

/* ---------- Contain-fit card images (logos / wordmarks) ---------- */
.card-img--contain { object-fit: contain; object-position: center; background: #fff; padding: 12px; }

/* ---------- Hero media (L-1 pages: live hero image under the title, left of the form) ---------- */
.hero-media { margin: 4px 0 0; }
.hero-media img { width: 100%; height: auto; max-height: 400px; object-fit: cover; border-radius: var(--r-md); display: block; }
.hero-media--contain img { object-fit: contain; background: var(--surface); }
@media (max-width: 900px) { .hero-media img { max-height: 320px; object-fit: contain; object-position: left center; } }

.stats-band .stats-head { margin-bottom: 8px; }
.stats-band .stats-head h2 { color: #fff; }
.stats-band .stats-head .section-intro { color: var(--on-dark); }

/* Compact hero form: keep the submit button above the fold on 900px viewports */
.hero-form-slot .form-card { padding: 26px 30px 24px; gap: 14px; }
.hero-form-slot .form-fields { gap: 9px; }
.hero-form-slot .field input, .hero-form-slot .field select { padding-top: 11px; padding-bottom: 11px; }

/* ---------- Preferred source prompts ---------- */
.preferred-source p { margin: 0; line-height: 1.6; }
.preferred-source { max-width: 760px; margin: 44px auto 0; padding: 16px 20px; background: var(--ground);
  border: 1px solid var(--line); border-left: 3px solid var(--amber); border-radius: var(--r-md); }
.preferred-source-line { max-width: 720px; margin: 28px auto 0; text-align: center; line-height: 1.6; }

/* ---------- Client logo strip ---------- */
.logo-strip { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 4vw, 48px); flex-wrap: wrap; }
.logo-strip img { height: 52px; width: auto; opacity: .85; }
@media (max-width: 600px) { .logo-strip { gap: 20px; } .logo-strip img { height: 40px; } }

/* ---------- Article images ---------- */
.post-featured, .prose-img { margin: 0 0 28px; }
.post-featured img { max-width: 100%; width: auto; height: auto; border-radius: var(--r-md); display: block; margin-inline: auto; }
.prose-img img { max-width: 100%; width: auto; height: auto; border-radius: var(--r-md); display: block; margin-inline: auto; }
.prose-img { margin-block: 26px; }

/* ---------- Misc ---------- */
.thankyou-hero { text-align: center; padding-block: clamp(64px, 8vw, 110px); }
.thankyou-hero .hero-badge { align-self: center; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* ---------- Split features (mirrored text | image | text spread) ----------
   Replicates the live "Why Removing Fake Negative Reviews is Essential"
   layout: a centred display heading, then two text rails mirrored around a
   single hero image. The left rail is right-aligned so both rails read
   inward toward the picture. Column ratio matches the live 25/45/29 split. */
.split-head, .split-features { --split-accent: var(--teal); }
/* To use the live site's exact blue instead of the brand teal, change the
   value on the line above to #0079AB.                                      */

.split-head {
  max-width: var(--measure-head);
  margin: 0 auto clamp(28px, 3vw, 44px);
  text-align: center;
}
.split-head h2 { font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -0.8px; }
.split-head .accent { color: var(--split-accent); }
.split-head .section-intro {
  margin: 14px auto 0; max-width: var(--measure-copy);
  font-size: 16px; line-height: 1.65; color: var(--muted);
}

.split-features {
  display: grid;
  grid-template-columns: 25fr 45.4fr 28.9fr;
  gap: clamp(22px, 3.4vw, 46px);
  align-items: center;
}
.split-rail { display: flex; flex-direction: column; gap: clamp(22px, 2.6vw, 34px); }
.split-rail--start { text-align: right; }
.split-rail--end { text-align: left; }

.split-feature h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.85vw, 25px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--split-accent);
  margin-bottom: 10px;
  text-wrap: pretty;
}
.split-feature p { font-size: 15px; line-height: 1.66; color: var(--muted); }

.split-media { margin: 0; }
.split-media img {
  display: block; width: 100%; height: auto;
  border-radius: var(--r-lg);
}

@media (max-width: 1023px) {
  .split-features { grid-template-columns: 1fr; gap: clamp(26px, 4vw, 36px); }
  .split-rail--start, .split-rail--end { text-align: left; }
  .split-media { width: min(62%, 460px); margin-inline: auto; }
}
@media (max-width: 640px) {
  .split-media { width: min(88%, 400px); }
}


/* ---------- whychoose_grid ------------------------------------------------
   Two vertical rails of rhombus icon badges joined by a continuous hairline,
   copy fanning outward (right-aligned on the left rail, left-aligned on the
   right rail). Replicates the live onlinereputationmanage.com
   "Why Choose ... for Review Removal Services?" feature-list block.
   Every selector is namespaced .whychoose- so it cannot collide.
   -------------------------------------------------------------------------- */
.whychoose {
  --whychoose-badge: 53px;   /* pre-rotation square edge; renders 75px corner-to-corner */
  --whychoose-gap: 20px;     /* badge -> copy gap */
  --whychoose-step: 68px;    /* vertical breathing room between items */
}
.whychoose-head { text-align: center; margin-bottom: 34px; }
.whychoose-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.15; font-weight: 800; letter-spacing: -0.6px;
  color: var(--ink); margin: 0; text-wrap: balance;
}
.whychoose-brand { color: var(--teal); }
.whychoose-head p {
  margin: 12px auto 0; max-width: 720px;
  font-size: 16px; line-height: 1.6; color: var(--muted);
}

.whychoose-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, 3.4vw, 44px);
}
.whychoose-col { list-style: none; margin: 0; padding: 0; }
/* The right rail starts part of a step lower so the two rails interleave the
   way the live block does instead of sitting on one baseline. */
.whychoose-col--right { margin-top: calc(var(--whychoose-step) / 2 + 24px); }

.whychoose-item { display: flex; align-items: stretch; gap: var(--whychoose-gap); }
.whychoose-col--left .whychoose-item { text-align: right; }

/* Rail: a centred column holding the badge, with hairline segments above and
   below that grow to fill the item. The item itself carries no padding - the
   vertical rhythm lives on the copy's margin - so the segments run edge to edge
   and consecutive items join into one continuous line. The first and last stubs
   are hidden so the rail begins and ends at a badge, as on the live site. */
.whychoose-rail {
  flex: 0 0 var(--whychoose-badge);
  width: var(--whychoose-badge);
  display: flex; flex-direction: column; align-items: center;
}
.whychoose-rail::before,
.whychoose-rail::after {
  content: ""; flex: 1 1 0; width: 1px; background: var(--teal); opacity: 0.5;
}
.whychoose-item:first-child .whychoose-rail::before,
.whychoose-item:last-child .whychoose-rail::after { visibility: hidden; }

.whychoose-badge {
  flex: 0 0 var(--whychoose-badge);
  width: var(--whychoose-badge); height: var(--whychoose-badge);
  border-radius: 5px; background: var(--teal);
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
}
.whychoose-badge svg { width: 22px; height: 22px; color: #fff; transform: rotate(-45deg); }

.whychoose-copy {
  flex: 1 1 auto; min-width: 0; max-width: 460px;
  margin-block: calc(var(--whychoose-step) / 2);
}
.whychoose-col--left .whychoose-copy { margin-left: auto; }
.whychoose-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 21px); font-weight: 800;
  line-height: 1.25; letter-spacing: -0.3px;
  color: var(--teal); margin: 0 0 6px; text-wrap: pretty;
}
.whychoose-copy p { margin: 0; font-size: 15px; line-height: 1.62; color: var(--muted); }

/* One column on narrow screens: the two lists become a single continuous rail
   on the left, so the copy keeps a normal reading edge on a phone. */
@media (max-width: 860px) {
  .whychoose { --whychoose-step: 52px; }
  .whychoose-grid { grid-template-columns: 1fr; }
  .whychoose-col--right { margin-top: 0; }
  .whychoose-col--left .whychoose-item:last-child .whychoose-rail::after,
  .whychoose-col--right .whychoose-item:first-child .whychoose-rail::before {
    visibility: visible;
  }
  .whychoose-col--left .whychoose-item { text-align: left; flex-direction: row-reverse; }
  .whychoose-col--left .whychoose-copy { margin-left: 0; }
  .whychoose-copy { max-width: none; }
}
@media (max-width: 520px) {
  .whychoose { --whychoose-badge: 44px; --whychoose-gap: 16px; --whychoose-step: 44px; }
  .whychoose-badge svg { width: 19px; height: 19px; }
}
@media (prefers-reduced-motion: no-preference) {
  .whychoose-badge { transition: transform .18s ease, box-shadow .18s ease; }
  .whychoose-item:hover .whychoose-badge {
    transform: rotate(45deg) scale(1.07);
    box-shadow: 0 12px 24px rgba(10, 92, 80, 0.22);
  }
}
