/* =========================================================
   Pragmatico Hosting 2026 — professional hosting stylesheet
   Brand colour: #39B8BD (teal) from pragmatico-hosting.nl logo
   Style reference: yourhosting.nl — clean, warm, generous whitespace
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Brand */
  --teal:         #39B8BD;
  --teal-dark:    #2d9499;
  --teal-darker:  #237578;
  --teal-light:   #e6f7f8;
  --teal-glow:    rgba(57,184,189,0.2);

  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #f7f8fa;
  --warm-bg:      #f5f3ee;
  --grey-50:      #f0f1f4;
  --grey-100:     #e4e6eb;
  --grey-200:     #d0d3da;
  --grey-300:     #b0b5c0;
  --grey-400:     #8a90a0;
  --grey-500:     #6b7185;
  --grey-600:     #4d5366;
  --grey-700:     #363b4d;
  --grey-800:     #232737;
  --grey-900:     #181b25;

  /* Semantic */
  --bg:           var(--white);
  --bg-2:         var(--off-white);
  --surface:      var(--warm-bg);
  --text:         var(--grey-900);
  --text-dim:     var(--grey-600);
  --text-mute:    var(--grey-400);
  --border:       var(--grey-100);
  --border-strong:var(--grey-200);

  --accent:       var(--teal);
  --accent-dark:  var(--teal-dark);
  --accent-light: var(--teal-light);

  /* Layout */
  --maxw:         1200px;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --radius-pill:  30px;

  --shadow-xs:    0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.10);
  --shadow-card:  0 0 0 1px var(--border), var(--shadow-sm);

  --ease:         cubic-bezier(.22,.8,.25,1);
}

/* Dark mode — muted version */
[data-theme="dark"] {
  --bg:         #111318;
  --bg-2:       #181b22;
  --surface:    #1f232d;
  --text:       #e8eaf0;
  --text-dim:   #a0a6b6;
  --text-mute:  #6b7085;
  --border:     rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --warm-bg:    #1a1d26;
  --teal-light: rgba(57,184,189,0.12);
  --shadow-card: 0 0 0 1px rgba(255,255,255,0.08), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.4);
}

/* =========================================================
   RESET & BASE
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =========================================================
   BACKGROUND — subtle, clean
   ========================================================= */

.grain { display: none; } /* no grain for professional look */

/* Replace aurora with subtle gradient wash */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(57,184,189,0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(57,184,189,0.05), transparent 50%);
}
[data-theme="dark"] .aurora {
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(57,184,189,0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(57,184,189,0.03), transparent 50%);
}
.blob { display: none; }

.nav, main, .footer { position: relative; z-index: 2; }

/* =========================================================
   NAV — clean white bar (like yourhosting)
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
[data-theme="dark"] .nav {
  background: rgba(17,19,24,0.9);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(57,184,189,0.35);
}
.brand-name em {
  font-style: normal;
  font-weight: 500;
  color: var(--teal);
  margin-left: 2px;
}

.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 500;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--grey-50); }
[data-theme="dark"] .nav-links a:hover { background: rgba(255,255,255,0.06); }

.nav-actions { display: flex; gap: 10px; align-items: center; }
.theme-toggle {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--grey-50); border: 1px solid var(--border);
  color: var(--text-dim); cursor: pointer;
  display: inline-grid; place-items: center;
  transition: color .2s, background .2s;
  font-size: 16px;
}
[data-theme="dark"] .theme-toggle { background: var(--surface); border-color: var(--border-strong); }
.theme-toggle:hover { color: var(--text); }
.theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: inline; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

/* =========================================================
   BUTTONS — pill shape like yourhosting
   ========================================================= */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .15s var(--ease), background .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grey-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { box-shadow: var(--shadow-md); }

.btn-ghost {
  background: var(--white);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
[data-theme="dark"] .btn-ghost { background: var(--surface); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  background: var(--white);
  font-size: 13px; font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
[data-theme="dark"] .eyebrow { background: var(--surface); }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(57,184,189,0.2);
  animation: pulse 2.5s infinite;
}

.headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--grey-900);
}
[data-theme="dark"] .headline { color: var(--text); }
.grad {
  color: var(--teal);
}

.lede {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; margin-bottom: 52px; flex-wrap: wrap; }

/* Stats bar */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
[data-theme="dark"] .stats { background: var(--surface); }
.stats > div {
  display: flex; flex-direction: column; gap: 2px;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stats > div:last-child { border-right: none; }
.stats strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--teal-dark);
}
.stats span {
  font-size: 12px; font-weight: 500;
  color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Domain check card */
.domain-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .domain-card { background: var(--surface); }
.domain-card::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark), var(--teal));
}

.dc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.dc-badge {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--teal-dark);
}
.dc-status {
  font-size: 12px; color: var(--text-mute); font-weight: 500;
  padding: 3px 10px;
  background: var(--grey-50);
  border-radius: 99px;
}
[data-theme="dark"] .dc-status { background: rgba(255,255,255,0.06); }

.dc-form { display: flex; gap: 8px; margin-bottom: 14px; }
.dc-form input {
  flex: 1;
  padding: 12px 14px;
  background: var(--off-white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
[data-theme="dark"] .dc-form input { background: rgba(255,255,255,0.05); }
.dc-form input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow); }
.dc-form .btn { padding: 12px 20px; }

.dc-results {
  list-style: none; display: grid; gap: 6px;
  font-size: 14px; font-weight: 500;
}
.dc-results li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: border-color .15s;
}
[data-theme="dark"] .dc-results li { background: rgba(255,255,255,0.03); }
.dc-results li.ph { color: var(--text-dim); }
.dc-results li.avail { border-color: rgba(57,184,189,0.5); color: var(--teal-dark); }
.dc-results li.avail em { color: var(--teal-dark); font-weight: 600; }
.dc-results li.taken { border-color: rgba(220,60,60,0.2); color: var(--grey-300); text-decoration: line-through; }
.dc-foot {
  display: block; margin-top: 12px;
  font-size: 12px; color: var(--text-mute);
}

/* =========================================================
   TRUST BAR
   ========================================================= */

.trust {
  border-block: 1px solid var(--border);
  background: var(--off-white);
}
[data-theme="dark"] .trust { background: var(--bg-2); }
.trust-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 20px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .ti-ico {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 16px;
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.trust-item em { font-style: normal; font-size: 13px; color: var(--text-mute); }

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 32px;
}
.section.alt {
  max-width: none;
  padding: 100px 0;
  background: var(--off-white);
}
[data-theme="dark"] .section.alt { background: var(--bg-2); }
.section.alt > * {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 32px;
}
.section-head { text-align: center; margin-bottom: 52px; }
.kicker {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 700;
  max-width: 780px;
  margin: 0 auto;
}
.section-sub {
  margin-top: 16px;
  color: var(--text-dim);
  max-width: 600px;
  margin-inline: auto;
  font-size: 17px;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-cards.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative;
  padding: 28px 24px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform .2s var(--ease), box-shadow .2s;
}
[data-theme="dark"] .card { background: var(--surface); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card.featured { border-color: var(--teal); box-shadow: var(--shadow-card), 0 0 0 1px var(--teal); }

.card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 20px;
  margin-bottom: 18px;
}
.card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px; font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 14px; line-height: 1.6; }

.ticks { list-style: none; font-size: 14px; color: var(--text-dim); margin-bottom: 18px; }
.ticks li {
  padding: 4px 0 4px 22px;
  position: relative;
}
.ticks li::before {
  content: "✓";
  position: absolute; left: 0; top: 4px;
  color: var(--teal);
  font-weight: 700; font-size: 14px;
}
.card-link {
  display: inline-block;
  color: var(--teal-dark);
  font-size: 14px; font-weight: 600;
  transition: color .15s;
}
.card-link:hover { color: var(--grey-900); }
[data-theme="dark"] .card-link:hover { color: var(--text); }

/* =========================================================
   PRICING — inspired by yourhosting cards
   ========================================================= */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pricing.pricing-4 { grid-template-columns: repeat(4, 1fr); }
.plan {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform .2s var(--ease), box-shadow .2s;
}
[data-theme="dark"] .plan { background: var(--surface); }
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.plan-popular {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--teal-glow);
}
.plan .badge {
  position: absolute; top: -13px; right: 22px;
  padding: 5px 14px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 99px;
}
.plan h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.price {
  font-family: 'Space Grotesk', sans-serif;
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 10px;
}
.price .cur { font-size: 22px; color: var(--text-dim); font-weight: 600; }
.price .amt { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.price .cent { font-size: 22px; font-weight: 600; color: var(--text-dim); }
.price .per { font-size: 15px; color: var(--text-mute); margin-left: 4px; }
.plan-sub { color: var(--text-dim); font-size: 14.5px; margin-bottom: 22px; line-height: 1.5; }

.plan ul { list-style: none; margin-bottom: 26px; }
.plan ul li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 10px 0 10px 24px;
  border-top: 1px solid var(--border);
  position: relative;
}
.plan ul li:first-child { border-top: none; }
.plan ul li::before {
  content: "✓";
  position: absolute; left: 2px; top: 10px;
  color: var(--teal);
  font-weight: 700;
}
.plan .btn { width: 100%; justify-content: center; }

/* =========================================================
   STEPS / WERKWIJZE
   ========================================================= */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform .2s var(--ease), box-shadow .2s;
}
[data-theme="dark"] .step { background: var(--surface); }
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.step-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--teal);
  padding: 4px 10px;
  background: var(--teal-light);
  border-radius: 6px;
  margin-bottom: 14px;
}
.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* =========================================================
   CONTACT / CTA
   ========================================================= */

.cta-section { padding-block: 80px; }
.cta-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .cta-card { background: var(--surface); }
.cta-card::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--teal);
}
.cta-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-card > p { color: var(--text-dim); margin-bottom: 32px; font-size: 16px; }

.contact-form { text-align: left; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label span {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--off-white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea { background: rgba(255,255,255,0.04); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow); }

.form-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.form-foot small { color: var(--text-mute); font-size: 13px; }
.form-foot small a { color: var(--teal-dark); font-weight: 500; }
.form-foot small a:hover { text-decoration: underline; }
.form-note { margin-top: 12px; font-weight: 600; font-size: 14px; }
.form-note.success { color: var(--teal-dark); }
.form-note.error { color: #d63031; }

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  margin-top: 60px;
  padding: 64px 32px 32px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
  font-size: 14px;
}
[data-theme="dark"] .footer { background: var(--bg-2); }
.foot-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-brand p { color: var(--text-dim); margin-top: 14px; max-width: 340px; line-height: 1.6; }
.footer h4 {
  font-size: 14px; font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer ul { list-style: none; }
.footer ul li { padding: 4px 0; }
.footer ul li a,
.footer ul li {
  color: var(--text-dim);
  font-size: 14px;
  transition: color .15s;
}
.footer ul li a:hover { color: var(--teal-dark); }
.foot-bottom {
  max-width: var(--maxw); margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 14px;
  color: var(--text-mute); font-size: 13px;
  flex-wrap: wrap;
}

/* =========================================================
   DATACENTER LOCATIONS
   ========================================================= */

.dc-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.dc-region {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}
[data-theme="dark"] .dc-region { background: var(--surface); }
.dc-region h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.dc-region ul { list-style: none; }
.dc-region ul li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dc-region ul li strong {
  color: var(--text);
  font-weight: 600;
  min-width: 110px;
}
.dc-primary {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 4px;
}
.dc-certs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.dc-certs span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--white);
}
[data-theme="dark"] .dc-certs span { background: var(--surface); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   KEYFRAMES
   ========================================================= */

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(57,184,189,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(57,184,189,0.1); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .eyebrow .dot { animation: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing.pricing-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 50px; gap: 40px; }
  .pricing { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing.pricing-4 { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .dc-locations { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav { padding: 12px 18px; gap: 12px; }
  .nav-links { display: none; }
  .hero { padding: 36px 20px 40px; }
  .section { padding: 64px 20px; }
  .section.alt > * { padding-inline: 20px; }
  .grid-cards { grid-template-columns: 1fr; }
  .pricing.pricing-4 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(2) { border-right: none; }
  .trust-inner { grid-template-columns: 1fr; padding: 16px 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .cta-card { padding: 32px 24px; }
  .price .amt { font-size: 44px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
