/*
Theme Name: Night and Day Emergency Dentist
Theme URI: https://nightanddaydentist.co.uk
Author: Seamless Ideas
Author URI: https://seamlessideas.co.uk
Description: Landing page theme for Night and Day Emergency Dentist Southampton. Powered by ACF.
Version: 4.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nd-theme
*/

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

/* ═══════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════ */
:root {
  --bg:           #ffffff;
  --bg-2:         #f4f4f2;
  --ink:          #0a0a0a;
  --ink-2:        #1f1f1f;
  --ink-3:        #5a5a5a;
  --ink-4:        #8a8a8a;
  --line:         #e3e3e3;
  --line-2:       #d0d0d0;
  --alert:        #e63329;
  --alert-2:      #c4221a;
  --alert-soft:   #fde8e6;
  --radius:       14px;
  --radius-lg:    20px;
  --shadow:       0 2px 8px rgba(0,0,0,.06), 0 12px 32px rgba(0,0,0,.07);
  --shadow-lg:    0 4px 16px rgba(0,0,0,.08), 0 28px 64px rgba(0,0,0,.11);
  --font:         'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
p { margin: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
svg { flex-shrink: 0; display: block; }

/* ═══════════════════════════════════════════
   LAYOUT WRAPPER
═══════════════════════════════════════════ */
.nd-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,51,41,.5); }
  60%     { box-shadow: 0 0 0 7px rgba(230,51,41,0); }
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(43,191,106,.45); }
  60%     { box-shadow: 0 0 0 6px rgba(43,191,106,0); }
}
@keyframes pin-pulse {
  0%   { transform: translate(-50%,-50%) scale(.5); opacity:1; }
  100% { transform: translate(-50%,-50%) scale(2.2); opacity:0; }
}

/* ═══════════════════════════════════════════
   LOGO
═══════════════════════════════════════════ */
.nd-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nd-logo-mark {
  background: #fff;
  color: #0a0a0a;
  padding: 7px 13px 6px;
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nd-logo-mark .strap {
  font-size: 6.5px;
  color: var(--alert);
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-top: 4px;
  text-transform: uppercase;
}
/* on-dark variant */
.nd-logo.on-dark .nd-logo-mark { background: transparent; color: #fff; }
.nd-logo.on-dark .nd-logo-mark .strap { color: var(--alert); }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.nd-header {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nd-header .nd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 66px;
}
.nd-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nd-nav a {
  color: rgba(255,255,255,.55);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all .15s;
}
.nd-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nd-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nd-header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.nd-header-phone .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2bbf6a;
  box-shadow: 0 0 0 3px rgba(43,191,106,.2);
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.nd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .16s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.nd-btn-alert {
  background: var(--alert);
  color: #fff;
  border-color: var(--alert);
  box-shadow: 0 2px 0 var(--alert-2), 0 8px 20px rgba(230,51,41,.28);
}
.nd-btn-alert:hover {
  background: var(--alert-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 #981810, 0 14px 28px rgba(230,51,41,.35);
}
.nd-btn-alert:active { transform: translateY(0); }
.nd-btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 2px 0 #1aab52, 0 8px 18px rgba(37,211,102,.28);
}
.nd-btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 4px 0 #1aab52, 0 12px 24px rgba(37,211,102,.35);
}
.nd-btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 2px 0 #000, 0 6px 16px rgba(0,0,0,.18);
}
.nd-btn-dark:hover { background: #222; transform: translateY(-2px); }
.nd-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.nd-btn-ghost:hover { background: var(--bg-2); border-color: var(--ink); }
.nd-btn-lg  { padding: 16px 26px; font-size: 15.5px; }
.nd-btn-xl  { padding: 20px 32px; font-size: 17px; }

/* full-width util */
.nd-cta-row { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.nd-hero {
  background: var(--bg);
  padding: 60px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.nd-hero .nd-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  column-gap: 64px;
  row-gap: 40px;
  align-items: start;
}
.nd-hero-copy    { grid-column: 1; grid-row: 1; }
.nd-hero-card-col { grid-column: 2; grid-row: 1 / span 2; align-self: start; }
.nd-hero .nd-trust-strip { grid-column: 1; grid-row: 2; }

/* Eyebrow badge */
.nd-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px 6px 8px;
  background: var(--alert-soft);
  color: var(--alert-2);
  border: 1px solid rgba(230,51,41,.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.nd-hero-eyebrow .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--alert);
  animation: pulse-red 1.8s infinite;
  flex-shrink: 0;
}

/* Headline */
.nd-hero h1 {
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 18px;
}
.nd-hero h1 em { font-style: normal; color: inherit; }
.nd-hero-sub {
  font-size: 17px;
  color: var(--ink-3);
  max-width: 500px;
  line-height: 1.55;
}
.nd-mobile-only  { display: none; }
.nd-desktop-only { display: inline; }

/* Trust strip */
.nd-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.nd-trust-strip .item .num {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.nd-trust-strip .item .lbl {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 5px;
}

/* Hero CTA card */
.nd-call-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.nd-call-section,
.nd-book-section { padding: 24px 26px; }
.nd-call-section .label,
.nd-book-section .label {
  font-size: 10.5px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  margin-bottom: 14px;
}
.nd-call-section .nd-btn + .nd-btn { margin-top: 9px; }
.nd-book-section { border-top: 1px solid var(--line); }

/* Trust sub-block */
.nd-hero-trust { margin-top: 12px; display: flex; flex-direction: column; gap: 9px; }
.nd-finance-banner {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.45;
}
.nd-finance-banner .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  flex-shrink: 0;
}
.nd-finance-banner strong { display: block; font-weight: 700; color: var(--ink); font-size: 13.5px; margin-bottom: 1px; }
.nd-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 0;
  font-size: 12px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.nd-trust-rev { display: inline-flex; align-items: center; gap: 7px; }
.nd-trust-rev strong { color: var(--ink-2); font-weight: 700; }
.nd-trust-cred { font-weight: 500; }
.nd-stars-row { display: inline-flex; gap: 2px; color: #f5b400; }

/* ═══════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════ */
.nd-section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}
.nd-section.alt { background: var(--bg-2); }
.nd-section.dark { background: var(--ink); border-color: #1a1a1a; }
.nd-section.dark h2, .nd-section.dark h3 { color: #fff; }

.nd-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 32px;
}
.nd-section-head h2 { font-size: clamp(32px, 3.6vw, 50px); }
.nd-section-head .lead {
  max-width: 480px;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.6;
  flex-shrink: 0;
}

.nd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--alert);
  margin-bottom: 13px;
}
.nd-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: currentColor;
}

/* ═══════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════ */
.nd-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.nd-service-card {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .18s;
}
.nd-service-card:hover { background: var(--alert-soft); }
.nd-service-card:hover .nd-service-icon { border-color: var(--alert); color: var(--alert); }
.nd-service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1.5px solid var(--line-2);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: all .18s;
  flex-shrink: 0;
}
.nd-service-name {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.35;
  color: var(--ink);
}

/* ═══════════════════════════════════════════
   EMERGENCY STEPS
═══════════════════════════════════════════ */
.nd-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.nd-step {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nd-step .num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--alert);
  text-transform: uppercase;
}
.nd-step h3 { font-size: 20px; }
.nd-step p { font-size: 14px; color: var(--ink-3); line-height: 1.55; }

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.nd-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nd-price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.nd-price-card:hover:not(.featured) {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.nd-price-card.featured {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  border-color: var(--ink);
}
.nd-price-card.featured h3 { color: #fff; }
.nd-price-card .tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  background: #ebebeb;
  color: #4a4a4a;
  align-self: flex-start;
  margin-bottom: 18px;
}
.nd-price-card.featured .tag { background: var(--alert); color: #fff; }
.nd-price-card h3 { font-size: 22px; margin-bottom: 6px; }
.nd-price-card .desc { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; line-height: 1.5; }
.nd-price-card.featured .desc { color: rgba(255,255,255,.55); }
.nd-price-card .price {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.nd-price-card.featured .price { color: #fff; }
.nd-price-card .price small {
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0;
}
.nd-price-card.featured .price small { color: rgba(255,255,255,.45); }
.nd-price-card ul {
  list-style: none;
  padding: 0; margin: 22px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; flex: 1;
}
.nd-price-card li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-2); line-height: 1.45;
}
.nd-price-card.featured li { color: rgba(255,255,255,.8); }
.nd-price-card li::before {
  content: '';
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%;
  background: var(--alert-soft)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 5l2 2 4-4' fill='none' stroke='%23e63329' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center;
}
.nd-price-card.featured li::before {
  background-color: rgba(255,255,255,.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 5l2 2 4-4' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.nd-price-card .cta { margin-top: 26px; }
.nd-btn-ghost.cta { border-color: var(--line-2); }
.nd-btn-ghost.cta:hover { background: var(--bg-2); border-color: var(--ink); }
.nd-price-foot {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 10px;
}

/* ═══════════════════════════════════════════
   PAYMENT PLANS
═══════════════════════════════════════════ */
.nd-payment-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.nd-payment-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #dfe8d8, #c8d8c0);
  overflow: hidden;
  position: relative;
}
.nd-payment-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 16px, rgba(0,0,0,.03) 16px 17px);
}
.nd-payment-photo { width: 100%; height: 100%; object-fit: cover; }
.nd-payment-bullets {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 13px;
}
.nd-payment-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--ink-2);
}
.nd-bullet-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--alert); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   MAP / LOCATION
═══════════════════════════════════════════ */
.nd-map-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.nd-map-fake {
  background: #e8ece4;
  background-image:
    linear-gradient(rgba(26,61,46,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,61,46,.06) 1px, transparent 1px),
    radial-gradient(circle at 30% 60%, rgba(26,61,46,.1) 0%, transparent 40%);
  background-size: 28px 28px, 28px 28px, 100% 100%;
  min-height: 460px;
  position: relative;
}
.nd-map-fake::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(15deg, transparent 49%, #d6dac9 49%, #d6dac9 50.5%, transparent 50.5%),
    linear-gradient(80deg, transparent 49%, #d6dac9 49%, #d6dac9 50.5%, transparent 50.5%),
    linear-gradient(105deg, transparent 49.5%, #c8ccbb 49.5%, #c8ccbb 50.5%, transparent 50.5%);
  opacity: .65;
}
.nd-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
  z-index: 2;
}
.nd-pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(230,51,41,.18);
  transform: translate(-50%, -50%);
  animation: pin-pulse 2.2s infinite;
  z-index: 1;
}
.nd-map-road-lbl {
  position: absolute;
  font-size: 9px;
  font-family: monospace;
  color: #5a6655;
  text-transform: uppercase;
  letter-spacing: .06em;
  z-index: 2;
  pointer-events: none;
}
.nd-map-info {
  padding: 40px 38px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nd-map-info h3 { font-size: 26px; font-weight: 800; }
.nd-map-row {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.nd-map-row strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.nd-map-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--alert-soft); color: var(--alert);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nd-map-ico.green { background: #dcfce7; color: #15803d; }

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.nd-reviews-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}
.nd-reviews-summary { position: sticky; top: 86px; }
.nd-rating-big {
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink);
}
.nd-rating-big small { font-size: 22px; color: var(--ink-3); font-weight: 500;letter-spacing: 0px;}
.nd-stars { color: #f5b400; font-size: 22px; letter-spacing: 2px; margin-top: 8px; }
.nd-review-list { display: grid; gap: 14px; }
.nd-review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: box-shadow .18s;
}
.nd-review-card:hover { box-shadow: var(--shadow); }
.nd-review-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.nd-reviewer { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; }
.nd-reviewer-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--alert-soft); color: var(--alert-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.nd-review-card p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.nd-review-when { font-size: 12px; color: var(--ink-4); margin-top: 10px; }
.nd-badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 7px;
  border: 1px solid var(--line); background: #fff; color: var(--ink-3);
  display: inline-block;
}

/* ═══════════════════════════════════════════
   TEAM
═══════════════════════════════════════════ */
.nd-team-cols {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}
.nd-team-photo-wrap {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #1e2e1c, #0a0a0a);
  overflow: hidden;
  position: relative;
}
.nd-team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.nd-team-photo-placeholder {
  width: 100%; height: 100%; min-height: 400px;
  background: repeating-linear-gradient(45deg, transparent 0 16px, rgba(255,255,255,.04) 16px 17px);
}
.nd-team-photo-label {
  position: absolute; bottom: 16px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,.35);
  font-size: 10px; letter-spacing: .1em; font-family: monospace;
}
.nd-team-divider { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.nd-team-name { font-size: 22px; font-style: italic; }
.nd-team-line { flex: 1; height: 1px; background: var(--line); max-width: 80px; }
.nd-team-role { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-4); font-weight: 700; }

/* ═══════════════════════════════════════════
   SERVICE AREAS
═══════════════════════════════════════════ */
.nd-areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.nd-area-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 13px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff;
  font-size: 13px; font-weight: 500;
  transition: border-color .15s, background .15s;
}
.nd-area-chip:hover { border-color: var(--alert); background: var(--alert-soft); }
.nd-area-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--alert-soft); color: var(--alert);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.nd-faq-list {
  border-top: 1px solid var(--line);
  max-width: 880px;
  margin: 0 auto;
}
.nd-faq-item { border-bottom: 1px solid var(--line); cursor: pointer; }
.nd-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: 18.5px; font-weight: 700; letter-spacing: -.015em;
  color: var(--ink); gap: 16px; user-select: none;
}
.nd-faq-plus {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px; color: var(--ink-3);
  transition: all .2s; line-height: 1;
}
.nd-faq-item.open .nd-faq-plus {
  background: var(--alert); border-color: var(--alert);
  color: #fff; transform: rotate(45deg);
}
.nd-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  font-size: 15px; color: var(--ink-3); line-height: 1.65;
}
.nd-faq-item.open .nd-faq-a { max-height: 400px; padding-bottom: 24px; }

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.nd-final-cta {
  background: var(--ink);
  padding: 100px 0;
  text-align: center;
}
.nd-final-cta .nd-inner { /* already has max-width */ }
.nd-final-cta h2 {
  color: #fff;
  font-size: clamp(42px, 5.5vw, 74px);
  letter-spacing: -.03em;
  max-width: 880px;
  margin: 0 auto;
}
.nd-final-cta h2 em { color: var(--alert); font-style: normal; }
.nd-final-cta .sub {
  margin: 22px auto 38px;
  max-width: 520px;
  color: rgba(255,255,255,.55);
  font-size: 17px; line-height: 1.6;
}
.nd-final-cta .actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.nd-final-cta .nd-btn-ghost {
  border-color: rgba(255,255,255,.25); color: #fff;
}
.nd-final-cta .nd-btn-ghost:hover { background: rgba(255,255,255,.08); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.nd-footer {
  background: var(--ink);
  color: rgba(255,255,255,.55);
  padding: 60px 0 0;
  font-size: 13px;
}
.nd-footer .nd-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.nd-footer h4 {
  color: #fff;
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 16px;
}
.nd-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.nd-footer a { color: rgba(255,255,255,.55); }
.nd-footer a:hover { color: #fff; }
.nd-footer-legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 10px;
}
.nd-footer-legal a { color: rgba(255,255,255,.35); margin-left: 18px; }
.nd-footer-legal a:hover { color: #fff; }

/* ═══════════════════════════════════════════
   STICKY BAR
═══════════════════════════════════════════ */
.nd-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform .3s ease, opacity .3s ease;
}
.nd-sticky-cta.hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }
.nd-sticky-left {
  display: flex; flex-direction: column; gap: 2px;
}
.nd-sticky-left strong {
  font-size: 13.5px; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.nd-sticky-left span { font-size: 11.5px; color: rgba(255,255,255,.45); }
.nd-sticky-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2bbf6a;
  box-shadow: 0 0 0 3px rgba(43,191,106,.22);
  animation: pulse-green 2s infinite;
  display: inline-block; flex-shrink: 0;
}
.nd-sticky-actions { display: flex; gap: 8px; align-items: center; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nd-inner { padding: 0 28px; }
  .nd-team-cols { grid-template-columns: 360px 1fr; gap: 52px; }
  .nd-areas-grid { grid-template-columns: repeat(4, 1fr); }
  .nd-footer .nd-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nd-reviews-grid { grid-template-columns: 1fr 1.3fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nd-inner { padding: 0 24px; }
  .nd-header .nd-inner { height: 58px; }
  .nd-nav { display: none; }
  .nd-header-phone { display: none; }

  .nd-hero { padding: 40px 0 56px; }
  .nd-hero .nd-inner { display: flex; flex-direction: column; gap: 28px; }
  .nd-hero-copy { order: 1; }
  .nd-hero-card-col { order: 2; }
  .nd-hero .nd-trust-strip { order: 3; }

  .nd-section { padding: 64px 0; }
  .nd-section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 36px; }
  .nd-section-head .lead { max-width: 100%; }

  .nd-services-grid { grid-template-columns: repeat(2, 1fr); }
  .nd-steps { grid-template-columns: repeat(2, 1fr); }
  .nd-price-grid { grid-template-columns: 1fr; }
  .nd-payment-cols { grid-template-columns: 1fr; gap: 36px; }
  .nd-map-wrap { grid-template-columns: 1fr; }
  .nd-map-fake { min-height: 300px; }
  .nd-reviews-grid { grid-template-columns: 1fr; gap: 32px; }
  .nd-reviews-summary { position: static; }
  .nd-team-cols { grid-template-columns: 1fr; gap: 36px; }
  .nd-team-photo-wrap { max-width: 360px; margin: 0 auto; }
  .nd-areas-grid { grid-template-columns: repeat(3, 1fr); }
  .nd-footer .nd-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nd-inner { padding: 0 18px; }
  .nd-header-cta .nd-btn-alert { font-size: 13px; padding: 10px 14px; }

  .nd-mobile-only  { display: inline !important; }
  .nd-desktop-only { display: none !important; }

  .nd-hero { padding: 28px 0 36px; }
  .nd-hero h1 { font-size: clamp(30px, 7.5vw, 40px); }
  .nd-hero-sub { font-size: 15px; }
  .nd-trust-strip { gap: 14px; }
  .nd-trust-strip .item .num { font-size: 26px; }

  .nd-section { padding: 52px 0; }
  .nd-section-head h2 { font-size: clamp(28px, 6vw, 38px); }

  .nd-steps { grid-template-columns: 1fr; }
  .nd-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .nd-rating-big { font-size: 72px; }
  .nd-map-info { padding: 26px 22px; }

  .nd-final-cta { padding: 72px 0; }
  .nd-final-cta h2 { font-size: clamp(36px, 7vw, 52px); }

  .nd-footer .nd-inner { grid-template-columns: 1fr; gap: 28px; }
  .nd-footer { padding: 44px 0 0; }

  .nd-sticky-left { display: none; }
  .nd-sticky-actions { width: 100%; }
  .nd-sticky-actions .nd-btn { flex: 1; padding: 12px 8px; font-size: 13px; }
}

@media (max-width: 400px) {
  .nd-services-grid { grid-template-columns: 1fr; }
  .nd-areas-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
}

/* ═══════════════════════════════════════════
   BUTTON CONSISTENCY OVERRIDES
   All buttons same height (48px base), same padding rhythm
═══════════════════════════════════════════ */

/* Base — 48px tall */
.nd-btn {
  height: 48px;
  padding: 0 22px;
  font-size: 14.5px;
  font-weight: 700;
  gap: 9px;
}
/* lg — 52px tall */
.nd-btn-lg {
  height: 52px;
  padding: 0 26px;
  font-size: 15px;
}
/* xl — 58px tall */
.nd-btn-xl {
  height: 58px;
  padding: 0 30px;
  font-size: 16px;
}
/* Full-width util resets height to auto */
.nd-cta-row { width: 100%; height: 52px; }

/* WhatsApp green on dark bg (final CTA, sticky) */
.nd-final-cta .nd-btn-whatsapp,
.nd-sticky-actions .nd-btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
}

/* Light button for sticky "Book" */
.nd-btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.18);
}
.nd-btn-light:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════
   ICON SIZING — consistent inside icon wrappers
═══════════════════════════════════════════ */
.nd-service-icon svg,
.nd-map-ico svg,
.nd-finance-banner .ico svg,
.nd-bullet-check svg,
.nd-area-check svg { display: block; }

/* WhatsApp icon in map section */
.nd-map-ico.green svg { width: 22px; height: 22px; }

/* Stars */
.nd-stars-row { display: inline-flex; gap: 2px; color: #f5b400; vertical-align: middle; }
.nd-stars-row svg { display: block; }

/* ═══════════════════════════════════════════
   FINAL CTA ↔ FOOTER SEPARATION
   Give final CTA a clear bottom boundary
═══════════════════════════════════════════ */
.nd-final-cta {
  position: relative;
}
/* Distinct bottom edge so it reads as its own section */
.nd-final-cta::after {
  content: '';
  display: block;
  height: 0;
  border-bottom: 0px solid rgba(255,255,255,.06);
}

/* Footer gets a top border to visually separate it */
.nd-footer {
  border-top: 4px solid var(--alert);
}

/* Footer grid in nd-inner (the first inner = columns grid) */
.nd-footer > .nd-inner:first-child {
  padding-top: 52px;
  padding-bottom: 48px;
}
/* Footer legal row (second nd-inner) */
.nd-footer > .nd-inner:last-child {
  padding-top: 0;
  padding-bottom: 0;
}
.nd-footer-legal {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 20px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 10px;
}
.nd-footer-legal a {
  color: rgba(255,255,255,.35);
  margin-left: 16px;
}
.nd-footer-legal a:hover { color: #fff; }

/* ═══════════════════════════════════════════
   OVERALL LAYOUT POLISH
═══════════════════════════════════════════ */

/* Better hero h1 line breaks */
.nd-hero h1 { line-height: 1.02; }

/* Tighter eyebrow */
.nd-eyebrow { margin-bottom: 14px; }

/* Section head h2 breathing room */
.nd-section-head > div { max-width: 640px; }

/* Services section — alt bg needs distinct card bg on hover */
.nd-section.alt .nd-service-card { background: #fff; }
.nd-section.alt .nd-service-card:hover { background: var(--alert-soft); }

/* Steps — number label above title */
.nd-step .num { display: block; margin-bottom: 6px; }

/* Pricing CTA button fills card width */
.nd-price-card .cta.nd-btn { width: 100%; height: 48px; margin-top: 24px; }

/* Map info — address link */
.nd-map-row a { color: var(--alert); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; margin-top: 5px; }
.nd-map-row a.green { color: #15803d; }

/* Review link */
a.nd-reviews-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--alert); font-weight: 700; font-size: 14px;
  margin-top: 14px;
}

/* Badge flex gap */
.nd-reviews-summary > div:last-child { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 22px; }

/* Team text spacing */
.nd-team-cols > div > p + p { margin-top: 14px; }

/* FAQ answer indent */
.nd-faq-a p { padding-right: 50px; }

/* Final CTA actions gap on mobile */
@media (max-width: 640px) {
  .nd-final-cta { padding: 68px 0; }
  .nd-final-cta .actions { gap: 10px; }
  .nd-final-cta .nd-btn-xl { height: 52px; padding: 0 22px; font-size: 15px; }
  .nd-footer { border-top-width: 3px; }
  .nd-map-info { padding: 26px 22px; }
  .nd-faq-a p { padding-right: 0; }
}
