 

.gud-page {
  --gud-ink:      var(--c-text, #1a2a36);
  --gud-ink-soft: var(--c-text-soft, #475569);
  --gud-muted:    var(--c-muted, #94a3b8);
  --gud-bg:       var(--c-bg, #ffffff);
  --gud-bg-2:     var(--c-bg-alt, #f6f7f8);
  --gud-slate:    var(--dark, #1a2a36);
  --gud-slate-2:  var(--c-dark-2, #0a1828);
  --gud-line:     var(--c-border, #e6e8ef);
  --gud-accent:   var(--primary, #ef4933);
  --gud-accent-l: var(--primary-l, #fde5e1);
  --gud-red:      var(--primary, #ef4933);
  --gud-red-deep: var(--primary-hover, #8f2315);
  --gud-radius:   16px;
  --gud-radius-lg:28px;
  font-family: var(--font-body);
  background: var(--gud-bg);
  color: var(--gud-ink);
}

.gud-page * { box-sizing: border-box; }
.gud-page img { max-width: 100%; display: block; }
.gud-page a { color: inherit; text-decoration: none; }
.gud-page ul, .gud-page ol { list-style: none; margin: 0; padding: 0; }
.gud-page h1, .gud-page h2, .gud-page h3, .gud-page h4 {
  font-family: 'Sora', var(--font-display);
  color: var(--gud-slate);
  letter-spacing: -.01em;
  line-height: 1.16;
  margin: 0 0 .5em;
}
.gud-page h1 { font-weight: 700 !important; font-size: clamp(2.1rem, 4.3vw, 3.2rem) !important; }
.gud-page h2 { font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.gud-page h3 { font-weight: 600; font-size: 1.1rem; }
.gud-page p {margin: 0 0 1em;color: #ffffff;}

.gud-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.gud-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.gud-btn-primary { background: var(--gud-red); color: #fff; box-shadow: 0 10px 26px rgba(239,73,51,.3); }
.gud-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(239,73,51,.4); }
.gud-btn-accent { background: var(--gud-accent); color: #ffffff; }
.gud-btn-accent:hover { transform: translateY(-2px); }
.gud-btn-outline { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.gud-btn-outline:hover { background: rgba(255,255,255,.12); }
.gud-btn-outline-dark { background: transparent; border-color: var(--gud-slate); color: var(--gud-slate); }
.gud-btn-outline-dark:hover { background: var(--gud-slate); color: #fff; }
.gud-btn-block { width: 100%; justify-content: center; }
.gud-btn-sm { padding: .6rem 1rem; font-size: .84rem; }

/* ---------- Section scaffolding ---------- */
.gud-section { padding: 5.5rem 0; }
.gud-section-tight { padding: 3.4rem 0; }
.gud-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gud-red-deep);
  margin-bottom: 1rem;
}
.gud-kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--gud-accent);
  display: inline-block;
}
.gud-head { max-width: 700px; margin-bottom: 2.6rem; }
.gud-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.gud-head.center .gud-kicker { justify-content: center; }
.gud-head.center .gud-kicker::before { display: none; }
.gud-head.on-dark h2, .gud-head.on-dark .gud-lead { color: #fff; }
.gud-lead { font-size: 1.05rem; }

/* =========================================================
   HERO — full-bleed dark, offset floating badge
   ========================================================= */
.gud-hero {
  position: relative;
  background: var(--gud-slate);
  color: #fff;
  overflow: hidden;
  padding: 5.5rem 0 8rem;
}
.gud-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(160deg, rgba(201,151,47,.16), transparent 45%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 42px);
  pointer-events: none;
}
.gud-hero-inner { position: relative; max-width: 760px; }
.gud-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gud-accent);
  border: 1px solid rgba(201,151,47,.45);
  padding: .5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.gud-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gud-red);
  box-shadow: 0 0 0 0 rgba(239,73,51,.6);
  animation: gudPulse 1.8s infinite;
}
@keyframes gudPulse {
  0% { box-shadow: 0 0 0 0 rgba(239,73,51,.55); }
  70% { box-shadow: 0 0 0 10px rgba(239,73,51,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,73,51,0); }
}
.gud-hero h1 { color: #fff; }
.gud-hero h1 em { font-style: normal; color: var(--gud-accent); }
.gud-hero-lead { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 54ch; }
.gud-hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 0; }

/* Floating badge, offset over the bottom edge of the hero */
.gud-badge-float {
  position: relative;
  z-index: 2;
  margin: -4.6rem auto 0;
  max-width: 1000px;
  background: #fff;
  border-radius: var(--gud-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.8rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.gud-badge-item { display: flex; align-items: center; gap: .85rem; }
.gud-badge-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gud-accent-l);
  color: var(--gud-red-deep);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.gud-badge-item strong { display: block; font-size: 1.05rem; color: var(--gud-slate); font-family: 'Sora', var(--font-display); }
.gud-badge-item span { font-size: .8rem; color: var(--gud-muted); }

/* =========================================================
   SERVICES — horizontal snap-scroll gallery
   ========================================================= */
.gud-gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gud-gallery-hint { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--gud-muted); }

.gud-gallery {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .3rem .2rem 1.6rem;
  margin: 0 -.2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gud-accent) transparent;
}
.gud-gallery::-webkit-scrollbar { height: 7px; }
.gud-gallery::-webkit-scrollbar-thumb { background: var(--gud-accent); border-radius: 999px; }

.gud-gcard {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--gud-line);
  border-radius: var(--gud-radius-lg);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gud-gcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gud-gcard-num {
  font-family: 'Sora', var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  color: var(--gud-accent);
  letter-spacing: .1em;
  margin-bottom: .9rem;
}
.gud-gcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--gud-accent);
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 12px 0px;
}
.gud-gcard p { font-size: .89rem; flex: 1; }
.gud-gcard-price {
  display: inline-flex;
  align-self: flex-start;
  align-items: baseline;
  gap: .3rem;
  background: var(--gud-bg-2);
  padding: .45rem .9rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--gud-slate);
  font-size: .92rem;
  margin-top: 1rem;
}
.gud-gcard-price small { font-weight: 500; color: var(--gud-muted); font-size: .74rem; }

/* =========================================================
   USP — circular watch-ring row
   ========================================================= */
.gud-ring-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.gud-ring-row::before {
  content: "";
  position: absolute;
  top: 34px; left: 8%; right: 8%;
  height: 1px;
  background: var(--gud-line);
  z-index: 0;
}
.gud-ring {
  position: relative;
  z-index: 1;
  text-align: center;
}
.gud-ring-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gud-accent);
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--gud-red);
  box-shadow: var(--shadow-sm);
}
.gud-ring strong { display: block; font-size: .98rem; color: var(--gud-slate); margin-bottom: .3rem; }
.gud-ring span { font-size: .82rem; color: var(--gud-muted); }

/* =========================================================
   PRICING — day/night toggle
   ========================================================= */
.gud-toggle-shell {
  max-width: 640px;
  margin: 0 auto 2.6rem;
  text-align: center;
}
.gud-toggle {
  display: inline-flex;
  background: var(--gud-bg-2);
  border-radius: 999px;
  padding: .35rem;
  gap: .3rem;
}
.gud-toggle button {
  border: none;
  background: transparent;
  padding: .75rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--gud-ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .2s ease;
}
.gud-toggle button.active {
  background: var(--gud-slate);
  color: #fff;
}

.gud-price-hero {
  max-width: 640px;
  margin: 0 auto 3rem;
  background: var(--gud-slate);
  border-radius: var(--gud-radius-lg);
  padding: 2.6rem 2.4rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gud-price-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,151,47,.12) 1.6px, transparent 1.6px);
  background-size: 20px 20px;
}
.gud-price-hero > * { position: relative; }
.gud-price-hero-label { font-size: .82rem; color: var(--gud-accent); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: .6rem; }
.gud-price-hero-amount { font-family: 'Sora', var(--font-display); font-size: 3.4rem; font-weight: 700; margin: 0; }
.gud-price-hero-amount small { font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,.55); }
.gud-price-hero-sub { color: rgba(255,255,255,.68); font-size: .92rem; margin: .5rem 0 1.6rem; }

.gud-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.gud-price-card {
  background: #fff;
  border: 1px solid var(--gud-line);
  border-radius: var(--gud-radius);
  padding: 1.5rem;
}
.gud-price-card h3 { font-size: .96rem; margin-bottom: .3rem; }
.gud-price-card .amt {font-family: 'Sora', var(--font-display);font-size: 1.7rem;font-weight: 700;color: #ef4933;}
.gud-price-card .amt small { font-size: .82rem; font-weight: 500; color: var(--gud-muted); }
.gud-price-card p { font-size: .82rem; margin: .4rem 0 0; }
.gud-price-note { text-align: center; font-size: .85rem; color: var(--gud-muted); margin-top: 2rem; }

/* =========================================================
   PROCESS — radial 4-step ring
   ========================================================= */
.gud-radial {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  align-items: start;
}
.gud-radial-step {
  text-align: center;
  position: relative;
}
.gud-radial-num {
  width: 64px; height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: conic-gradient(var(--gud-accent) 0turn, var(--gud-line) 0turn);
  display: grid; place-items: center;
  position: relative;
}
.gud-radial-num::after {
  content: attr(data-n);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gud-slate);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Sora', var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.gud-radial-step h3 { font-size: 1rem; }
.gud-radial-step p { font-size: .87rem; }
.gud-radial-connector {
  display: none;
}
@media (min-width: 900px) {
  .gud-radial-connector {
    display: block;
    position: absolute;
    top: 32px; left: 62%; width: 76%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gud-accent) 0 8px, transparent 8px 14px);
    z-index: 0;
  }
  .gud-radial-step:last-child .gud-radial-connector { display: none; }
}

/* =========================================================
   COVERAGE + MAP — full-width band, floating glass card
   ========================================================= */
.gud-map-band { position: relative; }
.gud-map-full { width: 100%; height: 460px; display: block; }
.gud-map-overlay {
  position: absolute;
  top: 2.4rem; left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px));
  pointer-events: none;
}
.gud-glass-card {
  pointer-events: auto;
  max-width: 380px;
  background: rgba(35,38,43,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border-radius: var(--gud-radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
}
.gud-glass-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: .3rem; }
.gud-glass-card p { color: rgba(255,255,255,.68); font-size: .88rem; }
.gud-district-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.1rem 0 1.4rem; }
.gud-district-chips span {
  font-size: .78rem;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
}
.gud-district-chips span.core { background: var(--gud-accent); color: #ffffff; font-weight: 700; }

/* =========================================================
   FAQ
   ========================================================= */
.gud-faq { display: flex; flex-direction: column; gap: .8rem; max-width: 820px; }
.gud-faq-item {
  background: #fff;
  border: 1px solid var(--gud-line);
  border-radius: var(--gud-radius);
  padding: 0 1.4rem;
}
.gud-faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--gud-slate);
  font-size: .98rem;
}
.gud-faq-item summary::-webkit-details-marker { display: none; }
.gud-faq-num { font-family: 'Sora', var(--font-display); color: var(--gud-accent); font-weight: 700; font-size: .82rem; }
.gud-faq-item summary i { margin-left: auto; color: var(--gud-red); transition: transform .2s ease; }
.gud-faq-item[open] summary i { transform: rotate(45deg); }
.gud-faq-item p { padding: 0 0 1.2rem 2.2rem; font-size: .92rem; margin: 0; }

/* =========================================================
   CTA BAND
   ========================================================= */
.gud-cta-band {
  background: var(--gud-slate);
  border-radius: var(--gud-radius-lg);
  padding: 2.6rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gud-cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,151,47,.18) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
}
.gud-cta-band h2, .gud-cta-band p { color: #fff; position: relative; }
.gud-cta-band p { color: rgba(255,255,255,.7); margin: 0; }
.gud-cta-actions { display: flex; gap: .9rem; flex-wrap: wrap; position: relative; }

/* =========================================================
   CONTACT
   ========================================================= */
.gud-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gud-contact-card {
  background: #fff;
  border: 1px solid var(--gud-line);
  border-radius: var(--gud-radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.gud-contact-card i { font-size: 1.25rem; color: var(--gud-red); margin-top: .1rem; }
.gud-contact-card strong { display: block; color: var(--gud-slate); font-size: .92rem; margin-bottom: .25rem; }
.gud-contact-card span, .gud-contact-card a { font-size: .88rem; color: var(--gud-ink-soft); }
.gud-contact-card a:hover { color: var(--gud-red); }

/* =========================================================
   STICKY MOBILE CALL BAR
   ========================================================= */
.gud-sticky-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  gap: .6rem;
  padding: .7rem .8rem calc(.7rem + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--gud-line);
  box-shadow: 0 -8px 24px rgba(15,23,42,.1);
  z-index: 60;
}
.gud-sticky-call .gud-btn { flex: 1; justify-content: center; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .gud-badge-float { grid-template-columns: repeat(2, 1fr); margin-top: -3.6rem; }
  .gud-ring-row { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .gud-ring-row::before { display: none; }
  .gud-price-grid { grid-template-columns: repeat(2, 1fr); }
  .gud-radial { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .gud-contact-grid { grid-template-columns: 1fr; }
  .gud-map-overlay { position: static; transform: none; width: auto; padding: 1.6rem 24px 0; margin-top: -3rem; }
  .gud-map-full { height: 340px; }
}
@media (max-width: 640px) {
  .gud-section { padding: 3.2rem 0; }
  .gud-hero { padding: 4rem 0 6.5rem; }
  .gud-badge-float { grid-template-columns: 1fr; }
  .gud-price-grid { grid-template-columns: 1fr; }
  .gud-price-hero-amount { font-size: 2.7rem; }
  .gud-cta-band { flex-direction: column; align-items: flex-start; }
  .gud-sticky-call { display: flex; }
  main { padding-bottom: 78px; }
}
