/* ============================================================
   Online Meer Succes – Global Stylesheet
   Child theme van GeneratePress
   ============================================================ */

/* ── Google Font Import ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Design Tokens ── */
:root {
  --blue:        #0e7490;
  --blue-dark:   #0c5f78;
  --blue-light:  #e0f2fe;
  --blue-mid:    #0891b2;
  --orange:      #ea580c;
  --orange-light:#fff7ed;
  --teal:        #0d9488;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --dark:        #0f172a;
  --muted:       #94a3b8;
  --yellow:      #fbbf24;
  --amber:       #d97706;
  --green:       #16a34a;
  --green-light: #dcfce7;
  --green-bright:#4ade80;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(14,116,144,.10);
  --shadow-lg:   0 8px 40px rgba(14,116,144,.15);
  --transition:  .25s ease;
}

/* ── GeneratePress Overrides ── */
.site-content,
.content-area,
.site-main,
article.page,
.entry-content,
.inside-article,
#page {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Verberg GP header, footer en paginatitel */
#masthead,
.site-header,
.main-navigation,
#site-footer,
.site-footer,
.footer-widgets,
.page-hero,
.entry-header,
h1.entry-title,
.entry-title,
.skip-link {
  display: none !important;
}

/* Body reset */
body {
  margin: 0 !important;
  padding: 0 !important;
}

/* ── Container ── */
.oms-container,
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ── Knoppen (geünificeerd systeem) ──
   .oms-btn = compact (header, inline)
   .btn     = large (hero, CTA, content)
   Color-varianten werken met beide sizes.
   ── */

/* Shared base */
.oms-btn,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Size: compact */
.oms-btn {
  padding: 11px 22px;
  font-size: 14px;
  line-height: 1.4;
}

/* Size: large */
.btn {
  padding: 14px 28px;
  font-size: 16px;
  line-height: 1;
}

/* Color: primary (orange CTA) */
.oms-btn-primary,
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.oms-btn-primary:hover,
.btn-primary:hover {
  background: #c2410c;
  border-color: #c2410c;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(234,88,12,.35);
  text-decoration: none;
}

/* Color: outline blue (op witte achtergrond) */
.oms-btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--gray-200);
}
.oms-btn-outline-blue:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue-dark);
  text-decoration: none;
}

/* Color: white ghost (op gekleurde achtergrond) */
.oms-btn-outline,
.btn-white {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.oms-btn-outline:hover,
.btn-white:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  text-decoration: none;
}

/* Color: solid white (op gekleurde achtergrond) */
.oms-btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.oms-btn-white:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
  text-decoration: none;
}

/* ============================================================
   HEADER – 3 LAGEN
   ============================================================ */

/* ── LAAG 1: Topbar ── */
.oms-topbar {
  background: var(--gray-800);
  color: var(--muted);
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.oms-topbar .oms-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.oms-topbar-left,
.oms-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.oms-topbar a {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.oms-topbar a:hover { color: var(--white); }
.oms-topbar-cta {
  color: var(--yellow) !important;
  font-weight: 600;
}
.oms-topbar-divider {
  color: rgba(255,255,255,.15);
  font-size: 14px;
}

/* ── LAAG 2: Logo + CTA balk ── */
.oms-header-logo-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}
.oms-header-logo-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.oms-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -.3px;
  flex-shrink: 0;
}
.oms-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oms-logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}
.oms-logo:hover { color: var(--blue-dark); text-decoration: none; }

/* Logo-Lottie-animatie i.p.v. statisch icoon (header + footer, gescoped via .oms-lottie-logo) */
.oms-lottie-logo {
  width: 46px;
  height: 46px;
  background: none;
  border-radius: 0;
  overflow: visible;
}
.oms-lottie-logo .oms-logo-fallback { width: 34px; height: 34px; stroke: var(--orange); }
.oms-lottie-logo.is-loaded .oms-logo-fallback { display: none; }
/* Lottie injecteert een eigen <svg>; laat die de container vullen (override .oms-logo-icon svg) */
.oms-lottie-logo > svg:not(.oms-logo-fallback) { width: 100%; height: 100%; stroke: none; }
/* Footer-logo: identiek aan het header-logo (kaal, geen box). */
.oms-footer-logo .oms-lottie-logo {
  width: 46px;
  height: 46px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-sizing: border-box;
}
.oms-footer-logo .oms-lottie-logo .oms-logo-fallback { width: 34px; height: 34px; stroke: var(--orange); }

/* Tagline */
.oms-header-tagline {
  flex: 1;
  font-size: 13px;
  color: var(--gray-600);
  font-style: italic;
  padding-left: 16px;
  border-left: 1px solid var(--gray-200);
}

/* CTA knoppen in logo-balk */
.oms-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Hamburger */
.oms-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.oms-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.oms-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.oms-hamburger.open span:nth-child(2) { opacity: 0; }
.oms-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── LAAG 3: Navigatie (sticky) ── */
.oms-header-nav {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(14,116,144,.25);
}
.oms-nav-inner {
  display: flex;
  align-items: center;
}
.oms-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.oms-nav-list > li { position: relative; }
.oms-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.oms-nav-list > li > a:hover,
.oms-nav-list > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
  text-decoration: none;
}
.oms-nav-arrow {
  font-size: 10px;
  opacity: .7;
}

/* Dropdown */
.oms-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  list-style: none;
  z-index: 200;
}
.oms-has-dropdown:hover .oms-dropdown { display: block; }
.oms-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-800);
  text-decoration: none;
  transition: var(--transition);
}
.oms-dropdown li a:hover {
  background: var(--blue-light);
  color: var(--blue);
  text-decoration: none;
}
.oms-dd-icon { font-size: 16px; }

/* ── Mobiel menu ── */
.oms-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
}
.oms-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(87vw, 360px);
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 0;
  overflow: hidden;
  box-shadow: -4px 0 32px rgba(0,0,0,.18);
  flex-direction: column;
}
.oms-mobile-menu.open { display: flex; }
.oms-mobile-overlay.open { display: block; }

.oms-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 57px;
  padding: 8px 16px 8px 20px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  flex-shrink: 0;
}
.oms-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-800);
  border-radius: 50%;
  transition: var(--transition);
}
.oms-mobile-close:hover { background: var(--gray-200); color: var(--blue); }

.oms-mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}
.oms-mobile-nav a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  text-decoration: none;
  transition: var(--transition);
}
.oms-mobile-nav a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.oms-mobile-nav-group {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin: 8px 0;
  padding: 8px 0;
}
.oms-mobile-nav-label {
  display: block;
  padding: 8px 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
}
.oms-mobile-nav-sub {
  padding-left: 36px !important;
  font-size: 14px !important;
  color: var(--gray-600) !important;
}
.oms-mobile-nav-sub:hover { color: var(--blue) !important; }

.oms-mobile-contact {
  padding: 14px 20px;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.oms-mobile-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition);
}
.oms-mobile-contact a:hover { color: var(--blue); }

.oms-mobile-cta {
  padding: 14px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  border-top: 1px solid var(--gray-100);
}
.oms-mobile-cta .oms-btn {
  justify-content: center;
  width: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* Sticky footer (canoniek): footer sluit ALTIJD direct aan op de content en vult op korte pagina's
   de resterende schermruimte met de footerkleur (keuze Thomas). body = flex-kolom, min-height 100vh;
   .oms-main groeit niet (flex 0 0 auto); .oms-footer groeit (flex 1 0 auto) en vult tot de schermrand. */
html, body { background: var(--white); }
body { display: flex; flex-direction: column; min-height: 100vh; }
.oms-main { flex: 0 0 auto; background: var(--white); }
.oms-footer { flex: 1 0 auto; }

/* ECHTE OORZAAK van de terugkerende "witte strook ONDER de footer" (12x gemeld, nu gevonden):
   third-party widgets (Elfsight chat e.d.) injecteren hun container-divs via JS ONDERAAN in de <body>,
   dus NA de <footer>. Die containers zijn flex-items (position:static, flex 0 1 auto); zodra ze tijdens
   het laden hoogte krijgen, verschijnt die hoogte ONDER de donkere footer = witte strook (intermitterend,
   afhankelijk van laadtiming -> daarom steeds 'opnieuw'). Fix: hou ze uit de flex-hoogte. Hun eigen
   knop/panelen zijn position:fixed en blijven gewoon zichtbaar (geverifieerd). position:absolute haalt
   de container UIT de flex-flow -> kogelvrij, ook als de widget zelf een min-height/content-hoogte zet
   (height:0 alleen is niet genoeg: een min-height van de widget wint daarvan). Nieuwe body-widgets die
   na de footer injecteren? Voeg hun class hieronder toe. */
body > [class*="elfsight-app"],
body > [class*="ElfsightPortalNest"],
body > [class*="portal-nest"] { position: absolute !important; height: 0 !important; width: 0 !important; overflow: visible; }

.oms-footer {
  background: var(--gray-800);
  color: var(--muted);
  padding: 64px 0 0;
}
.oms-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.oms-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 16px;
}
.oms-footer-logo .oms-logo-icon {
  background: none;
}
.oms-footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--muted);
}
.oms-footer-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.oms-footer-stars { font-size: 18px; color: var(--yellow); }
.oms-footer-rating strong { color: var(--white); font-size: 15px; }
.oms-footer-rating span { font-size: 12px; color: var(--gray-600); }

.oms-footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 20px;
}
.oms-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.oms-footer-col ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.oms-footer-col ul a:hover { color: var(--white); }

.oms-footer-contact { gap: 14px !important; }
.oms-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.oms-footer-contact svg { flex-shrink: 0; color: var(--blue-mid); }

.oms-footer-links-extra {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.oms-footer-links-extra a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.oms-footer-links-extra a:hover { color: var(--white); }

.oms-footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oms-footer-bottom p {
  font-size: 13px;
  color: var(--gray-600);
}
.oms-footer-bottom a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition);
}
.oms-footer-bottom a:hover { color: var(--muted); }

/* ============================================================
   RESPONSIVE – MOBIEL
   ============================================================ */
@media (max-width: 1024px) {
  .oms-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .oms-header-tagline { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding-bottom: 64px; }
}

@media (max-width: 768px) {
  /* Topbar verbergen op mobiel */
  .oms-topbar { display: none; }

  /* Logo-balk: verberg CTA knoppen, toon hamburger */
  .oms-header-cta { display: none; }
  .oms-hamburger { display: flex; }
  .oms-header-logo-inner { gap: 0; }

  /* Navigatie-balk verbergen op mobiel */
  .oms-header-nav { display: none; }

  /* Footer mobiel */
  .oms-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .oms-footer { padding: 40px 0 0; }
}

@media (max-width: 480px) {
  .oms-container { padding: 0 16px; }
}

/* ══════════════════════════════════════════════════════════════
   GEDEELDE HERO COMPONENT
   Gebruik op alle pagina's: .hero, .hero-badge, .hero-proof
   ══════════════════════════════════════════════════════════════ */

.hero {
  background: linear-gradient(135deg, #0c5f78 0%, #0e7490 50%, #0891b2 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container,
.hero .oms-container,
.hero > div > .container,
.hero > div > .oms-container,
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.hero-visual {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero-content {
  max-width: 760px;
  margin: 0;
  text-align: left;
}
/* Gecentreerde hero variant voor detail/artikel pagina's */
.hero-centered .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-centered .hero-inner h1,
.hero-centered .hero-inner .hero-sub {
  text-align: center;
}
.hero-centered .hero-inner .hero-sub {
  max-width: 680px;
}
.hero-centered .hero-inner .hero-actions {
  justify-content: center;
}
.hero-centered .hero-inner .hero-proof {
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge span,
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero h1,
.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1px;
}
.hero h1 em,
.hero-title em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 12px 20px;
}
.hero-proof-stars { font-size: 20px; color: var(--yellow); line-height: 1; }
.hero-proof-text { font-size: 14px; color: rgba(255,255,255,.9); }
.hero-proof-text strong { color: var(--white); }

/* Hero includes (checkmarks list) */
.hero-includes {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
}
.hero-includes li::before {
  content: '\2713';
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   GEDEELDE STATS BAR COMPONENT
   ══════════════════════════════════════════════════════════════ */

.stats {
  background: var(--gray-800);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { }
.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span,
.stat-suffix { color: var(--orange); }
.stat-label { font-size: 14px; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════
   UTILITIES (door Manus-markup gebruikt maar nergens gedefinieerd)
   ══════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.mb-lg { margin-bottom: 48px; }

/* ══════════════════════════════════════════════════════════════
   GEDEELDE SECTION LABELS
   ══════════════════════════════════════════════════════════════ */

.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
}

/* Centered section headers: label, title & sub aligned center */
.section-header-centered { text-align: center; }
.section-header-centered .section-sub,
[class*="-header"] .section-sub { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════════════════
   GEDEELDE SERVICE CARD BASE
   Aliassen: .service-card, .ga-service-card, .oo-service-card
   ══════════════════════════════════════════════════════════════ */

.service-card,
.ga-service-card,
.oo-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover,
.ga-service-card:hover,
.oo-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Top accent bar */
.service-card::before,
.oo-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.service-card.web::before,
.oo-service-card.web::before { background: linear-gradient(90deg, var(--orange), #f97316); }
.service-card.sea::before,
.oo-service-card.sea::before { background: linear-gradient(90deg, var(--amber), #f59e0b); }
.service-card.seo::before,
.oo-service-card.seo::before { background: linear-gradient(90deg, var(--teal), #14b8a6); }

/* Card content */
.service-card h3,
.ga-service-card h3,
.oo-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 12px;
}
.service-card > p,
.ga-service-card > p,
.oo-service-card > p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 20px;
}

/* Service icon */
.service-icon,
.ga-service-icon,
.oo-service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.service-icon svg,
.ga-service-icon svg,
.oo-service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Feature checklist */
.service-features,
.oo-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-features li,
.oo-service-features li {
  font-size: 14px;
  color: var(--gray-600);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.service-features li::before,
.oo-service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
}

/* Service link (arrow) */
.service-link,
.ga-service-link,
.oo-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap .2s ease;
  margin-top: auto;
}
.service-link:hover,
.ga-service-link:hover,
.oo-service-link:hover {
  gap: 10px;
  color: var(--blue-dark);
  text-decoration: none;
}
.service-link svg,
.ga-service-link svg,
.oo-service-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ══════════════════════════════════════════════════════════════
   GEDEELDE CTA BAND
   ══════════════════════════════════════════════════════════════ */

.cta-band,
.oo-results-band {
  background: linear-gradient(135deg, #0c5f78 0%, #0e7490 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before,
.oo-results-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-band-inner,
.oo-results-band-inner { position: relative; z-index: 1; }
.cta-band h2,
.oo-results-band h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
}
.cta-band p,
.oo-results-band p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin: 0 auto 32px;
  max-width: 560px;
}
.cta-band-actions,
.oo-results-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   SEO-INTRO COMPONENT
   2-koloms intro layout — gebruikt door SEO, Webdevelopment,
   Coaching hub pages
   ══════════════════════════════════════════════════════════════ */

.seo-intro {
  padding: 80px 0;
  background: var(--white);
}
.seo-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.seo-intro-content {
  max-width: 600px;
}
.seo-intro-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 16px;
}

/* ══════════════════════════════════════════════════════════════
   STAD-INTRO COMPONENT
   Gebruikt door 1300+ city pages + branche detail pages
   2-koloms layout: content links, voordelen-box rechts
   ══════════════════════════════════════════════════════════════ */

.stad-intro {
  padding: 80px 0;
  background: var(--white);
}
.stad-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.stad-intro-content {
  max-width: 600px;
}
.stad-intro-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 16px;
}
.stad-intro-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Voordelen-box (rechterkolom) */
.stad-intro-voordelen {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
}
.stad-intro-voordelen h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 20px;
}
.stad-voordelen-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stad-voordeel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.stad-voordeel-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}
.stad-voordeel p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}
.stad-voordeel p strong {
  color: var(--dark);
}

/* ══════════════════════════════════════════════════════════════
   STAD-NABIJ COMPONENT
   Grid van naburige stad-links (geo-crosslinks)
   ══════════════════════════════════════════════════════════════ */

.stad-nabij {
  padding: 80px 0;
  background: var(--gray-50);
}
.stad-nabij > .oms-container {
  text-align: center;
}
.stad-nabij .section-sub {
  margin: 0 auto 40px;
}
.stad-nabij-grid {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.stad-nabij-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: all .2s ease;
}
.stad-nabij-grid a:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.stad-nabij-grid a::after {
  content: '→';
  color: var(--blue);
  opacity: 0;
  transition: opacity .2s;
}
.stad-nabij-grid a:hover::after {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   LOKALE STADPAGINA-SECTIES (city-pages)
   .local-intro   = positionering onder de stats (gecentreerd blok + feiten-strip)
   .local-context = regio-verhaal onder de FAQ (gecentreerd + plaats-tags)
   Gecentreerd en rustig; geen losse zijkaartjes.
   ══════════════════════════════════════════════════════════════ */

/* Uitlijning: op city-pages laadt de hub-CSS (.container=1160px) naast globale
   .oms-container (1200px) -> randen springen 20px. Normaliseer naar 1200px. */
.oms-city .oms-main > section > .container,
.oms-city .oms-main > section > .oms-container { max-width: 1200px; }

.local-intro { padding: 80px 0; }
.local-context { padding: 80px 0; background: var(--white); }

/* Afwisselend wit/grijs verloop op city-pages (geen twee gelijke achtergronden op rij).
   Eerste helft (local-intro..branche) alterneert al; dit corrigeert de staart. */
.oms-city .testimonials { background: var(--gray-50); }
.oms-city .dienst-crosslinks { background: var(--white); }
.oms-city .contact-cta { background: var(--gray-50); }

.local-intro--center,
.local-context--center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.local-intro--center .section-label,
.local-context--center .section-label { margin: 0 auto 14px; }
.local-intro--center .section-title,
.local-context--center .section-title { margin-bottom: 18px; }
.local-intro--center p,
.local-context--center p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0 auto 18px;
  max-width: 760px;
}
.local-intro--center .section-sub,
.local-context--center .section-sub { color: var(--gray-800); font-weight: 500; }

/* Feiten-strip (lokaal profiel, horizontaal gecentreerd) */
.local-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 0;
  margin: 28px 0 18px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.local-fact { padding: 0 28px; text-align: center; }
.local-fact + .local-fact { border-left: 1px solid var(--gray-200); }
.local-fact span {
  display: block;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.local-fact strong { color: var(--gray-800); font-size: 17px; font-weight: 800; }

/* Sector-chips (gecentreerd) */
.lp-sublabel {
  display: block;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 700;
  margin: 24px 0 12px;
}
.lp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-chips--center { justify-content: center; margin-top: 0; }
.lp-chip {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  line-height: 1.3;
}

/* Plaats-tags (tag-wolk met interne lokale links) */
.place-tags-head {
  margin-top: 8px;
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 700;
}
.place-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.place-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}
.place-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow);
}

/* Klikbare dienst-crosslink titel (naar de lokale dienstpagina) */
.dienst-crosslinks .seo-service-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
.dienst-crosslinks .seo-service-card h3 a:hover { color: var(--blue); }

@media (max-width: 768px) {
  .local-intro { padding: 56px 0; }
  .local-context { padding: 56px 0; }
  .local-fact { padding: 8px 18px; }
  .local-fact + .local-fact { border-left: 0; }
}

/* ══════════════════════════════════════════════════════════════
   GA-STEPS COMPONENT
   Genummerde stappen (werkwijze) — gebruikt door SEO, Social
   Media, Online Marketing, Webdevelopment hub pages
   ══════════════════════════════════════════════════════════════ */

.ga-steps,
.seo-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.ga-step,
.seo-process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 20px;
}
.ga-step-number,
.seo-process-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.ga-step-content h3,
.seo-process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}
.ga-step-content p,
.seo-process-step p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   GA-REGIOS COMPONENT
   Grid van stad-links — gebruikt door SEO, Online Marketing,
   Google Ads hub pages
   ══════════════════════════════════════════════════════════════ */

.ga-regios {
  padding: 80px 0;
  background: var(--gray-50);
}
.ga-regios > .oms-container {
  text-align: center;
}
.ga-regios .section-sub {
  margin: 0 auto 40px;
}
.ga-regios-grid {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.ga-regios-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: all .2s ease;
}
.ga-regios-grid a:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.ga-regios-grid a::after {
  content: '→';
  color: var(--blue);
  opacity: 0;
  transition: opacity .2s;
}
.ga-regios-grid a:hover::after {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   SEO-SERVICE CARD COMPONENT
   Diensten card grid — gebruikt door Webdevelopment, Coaching,
   Weggevers hub pages (herbruikbaar patroon)
   ══════════════════════════════════════════════════════════════ */

.seo-services {
  padding: 80px 0;
  background: var(--gray-50);
}
.seo-services > .oms-container {
  text-align: center;
}
.seo-services .section-sub {
  margin: 0 auto 48px;
}
.seo-services-grid {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
/* Dienst-crosslinks: twee gecentreerde groepen (specialisaties + overkoepelend) */
.dc-grouplabel {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin: 8px 0 22px;
}
.dc-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}
.dc-group .seo-service-card { flex: 1 1 280px; max-width: 360px; }
.dc-group--over { margin-bottom: 0; }
.seo-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.seo-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.seo-service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.seo-service-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 2; }
.seo-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}
.seo-service-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
}
.seo-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap .2s ease;
  margin-top: auto;
}
.seo-service-link:hover {
  gap: 10px;
  color: var(--blue-dark);
}

/* ══════════════════════════════════════════════════════════════
   SEO-PROCESS SECTION
   Werkwijze-sectie met genummerde stappen
   ══════════════════════════════════════════════════════════════ */

.seo-process {
  padding: 80px 0;
  background: var(--gray-50);
}
.seo-process > .oms-container {
  text-align: center;
}
.seo-process .section-sub {
  margin: 0 auto 48px;
}

/* ══════════════════════════════════════════════════════════════
   SEO-WHY COMPONENT
   USP grid — gebruikt door Webdevelopment hub
   ══════════════════════════════════════════════════════════════ */

.seo-why {
  padding: 80px 0;
  background: var(--white);
}
.seo-why > .oms-container {
  text-align: center;
}
.seo-why .section-sub {
  margin: 0 auto 48px;
}
.seo-why-grid {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.seo-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.seo-why-item strong {
  display: block;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}
.seo-why-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 60px 0 80px; }
  .hero h1, .hero-title { font-size: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-actions { justify-content: center; }
  .stad-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .stad-intro { padding: 48px 0; }
  .stad-nabij { padding: 48px 0; }
  .stad-nabij-grid { grid-template-columns: repeat(2, 1fr); }
  .ga-steps, .seo-process-grid { grid-template-columns: 1fr; }
  .ga-regios-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-services-grid { grid-template-columns: 1fr; }
  .seo-why-grid { grid-template-columns: 1fr; }
  .seo-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .seo-intro { padding: 48px 0; }
  .ga-regios, .seo-services, .seo-process, .seo-why { padding: 48px 0; }
  .oms-neighbours { padding: 56px 16px; }
  .oms-neighbours__list { grid-template-columns: 1fr; }
}

/* ── Naastgelegen gebieden (crosslinks city pages) ── */
.oms-neighbours {
  padding: 80px 24px;
  background: var(--gray-50);
  max-width: 1200px;
  margin: 0 auto;
}
.oms-neighbours__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 32px;
  text-align: center;
}
.oms-neighbours__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  max-width: 900px;
}
.oms-neighbours__list li {
  font-size: 14px;
  line-height: 1;
}
.oms-neighbours__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s ease;
}
.oms-neighbours__list li a:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.oms-neighbours__list li a::after {
  content: '→';
  color: var(--blue);
  opacity: 0;
  transition: opacity .2s;
}
.oms-neighbours__list li a:hover::after {
  opacity: 1;
}
.oms-neighbours__distance {
  color: var(--gray-400);
  font-size: 12px;
  margin-left: auto;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .oms-neighbours__list { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SERP-MOCKUP (hero-visual) — gedeeld over stadpagina's
   Stond alleen in google-ads.css/seo.css, maar webdevelopment- en
   andere stadpagina's laden die niet. Hier globaal zodat de
   hero-visual overal correct rendert. (.hero-visual zelf NIET
   overschrijven: hubs definieren die in hun eigen pagina-CSS.)
   ============================================================ */
.serp-mockup {
  background: #fff; border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 48px rgba(0,0,0,.25);
  overflow: hidden; width: 100%;
}
.serp-top { background: #f1f3f4; padding: 12px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #dadce0; }
.serp-search { flex: 1; background: #fff; border-radius: 24px; padding: 8px 16px; display: flex; align-items: center; gap: 8px; border: 1px solid #dadce0; font-size: 13px; color: #3c4043; }
.serp-search svg { width: 16px; height: 16px; flex-shrink: 0; }
.serp-body { padding: 16px; }
.serp-ad { padding: 12px 14px; border-radius: 8px; margin-bottom: 8px; border: 1px solid var(--gray-200); transition: background .15s; }
.serp-ad:hover { background: var(--gray-50); }
.serp-ad-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.serp-ad-badge { background: #fff3cd; color: #856404; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; border: 1px solid #ffc107; }
.serp-ad-url { font-size: 12px; color: #202124; }
.serp-ad-title { font-size: 15px; color: #1a0dab; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.serp-ad-desc { font-size: 12px; color: #4d5156; line-height: 1.5; }
.serp-ad.top { background: linear-gradient(135deg, #fff8f0, #fff); border-color: var(--yellow); }
.serp-ad.top .serp-ad-title { color: var(--orange); }
.serp-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.serp-metric { background: var(--gray-50); border-radius: 8px; padding: 10px 12px; text-align: center; }
.serp-metric-val { font-size: 18px; font-weight: 800; color: var(--gray-800); }
.serp-metric-val .up { color: var(--green); font-size: 12px; }
.serp-metric-label { font-size: 11px; color: var(--gray-600); margin-top: 2px; }
