/* ====================================================================
   Pro Expert Grup SRL - Servicii cadastrale Cimișlia
   Production stylesheet, mobile-first, no em dashes used.
==================================================================== */

:root {
  --brand-blue: #0E4C8A;
  --brand-blue-soft: #1A66B0;
  --brand-navy: #0A2A4E;
  --brand-orange: #F28C1A;
  --brand-orange-hover: #D87509;
  --bg-off: #F7F8FA;
  --bg-sky: #E8F1FB;
  --bg-white: #FFFFFF;
  --text-body: #1F2937;
  --text-muted: #5B6573;
  --border: #E2E6EC;
  --success: #2E9E64;

  --font-heading: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(10,42,78,0.06), 0 1px 3px rgba(10,42,78,0.04);
  --shadow-md: 0 6px 18px -6px rgba(10,42,78,0.12), 0 2px 6px rgba(10,42,78,0.05);
  --shadow-lg: 0 22px 50px -16px rgba(10,42,78,0.22), 0 4px 12px rgba(10,42,78,0.08);
  --shadow-cta: 0 10px 24px -8px rgba(242,140,26,0.55), 0 2px 6px rgba(242,140,26,0.25);

  --container: 1200px;
  --header-h: 76px;

  --topo-color: rgba(14,76,138,0.07);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-blue); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; color: var(--brand-navy); letter-spacing: -0.015em; line-height: 1.15; text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--brand-navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 200;
}
.skip-link:focus { left: 8px; }

/* ====================================================================
   HEADER
==================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
  .site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
  }
}
body { padding-top: var(--header-h); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--header-h);
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-link img {
  height: 42px;
  width: auto;
}
.primary-nav {
  display: none;
  margin-left: auto;
}
.primary-nav ul {
  display: flex;
  gap: 28px;
}
.primary-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--brand-navy);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.primary-nav a:hover { color: var(--brand-orange); }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .primary-nav { display: block; }
  .header-end { margin-left: 0; }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--bg-sky);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.lang-switch a {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--brand-navy);
  transition: background .2s, color .2s;
  min-width: 36px;
  text-align: center;
}
.lang-switch a[aria-current="page"] {
  background: var(--brand-blue);
  color: #fff;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--brand-orange);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-cta);
  transition: background .2s, transform .15s;
}
.header-cta:hover { background: var(--brand-orange-hover); transform: translateY(-1px); }
.header-cta svg { width: 18px; height: 18px; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--brand-navy);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 90;
  transform: translateY(-120%);
  transition: transform .3s ease;
  border-top: 1px solid var(--border);
  padding: 24px 20px 32px;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 16px 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-navy);
  border-radius: 10px;
  border: 1px solid transparent;
  min-height: 48px;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: var(--bg-sky); border-color: var(--border); }
.mobile-nav .mobile-cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand-orange);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 17px;
}
@media (min-width: 1024px) { .mobile-nav { display: none; } }

/* ====================================================================
   BUTTONS
==================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  min-height: 48px;
  cursor: pointer;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: var(--brand-orange-hover); transform: translateY(-2px); }
.btn-secondary {
  background: #fff;
  color: var(--brand-navy);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--brand-navy); }
.btn-ghost {
  background: transparent;
  color: var(--brand-navy);
  border: 1.5px solid var(--brand-navy);
}
.btn-ghost:hover { background: var(--brand-navy); color: #fff; }

/* ====================================================================
   SECTION SCAFFOLD
==================================================================== */
.section { padding: 64px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 88px 0; } }
.section-off  { background: var(--bg-off); }
.section-sky  { background: var(--bg-sky); }
.section-navy { background: var(--brand-navy); color: #E6EDF6; }
.section-navy h2 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-blue);
  background: var(--bg-sky);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow.on-navy { color: var(--brand-orange); background: rgba(242,140,26,0.12); }

/* Hero eyebrow — extra-prominent variant */
.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  padding: 8px 16px 8px 14px;
  color: #fff;
  background: var(--brand-blue);
  border: 1px solid rgba(14,76,138,0.9);
  box-shadow: 0 8px 22px -10px rgba(14,76,138,0.55), inset 0 0 0 1px rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}
.hero .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-orange);
  box-shadow: 0 0 0 0 rgba(242,140,26,0.7);
  animation: heroEyebrowPulse 2.2s ease-in-out infinite;
  flex: none;
}
@keyframes heroEyebrowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,140,26,0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(242,140,26,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow::before { animation: none; }
}

.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.section-head p {
  font-size: 17px;
  color: var(--text-muted);
}
.section-navy .section-head p { color: rgba(255,255,255,0.78); }

/* Topographic SVG decoration */
.topo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.topo-bg svg { width: 100%; height: 100%; }
.hero .topo-bg svg g { stroke: rgba(14,76,138,0.045) !important; }

/* ====================================================================
   HERO
==================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg-sky) 0%, #fff 100%);
  padding: 56px 0 72px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 88px 0 96px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; }
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.05;
  margin: 14px 0 18px;
}
.hero h1 .accent { color: var(--brand-orange); }
.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust span::before {
  content: "";
  width: 18px; height: 18px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1 4.9-4.9 1.1 1.1z'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
  background: var(--brand-navy);
}
.hero-photo, .about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual .placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--brand-blue) 0%, var(--brand-navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.hero-visual .placeholder strong {
  display: block;
  font-family: var(--font-heading);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 6px;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,42,78,0.45));
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.hero-badge .icon {
  width: 44px; height: 44px;
  background: var(--brand-orange);
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.hero-badge .icon svg { width: 24px; height: 24px; }
.hero-badge strong { font-family: var(--font-heading); color: var(--brand-navy); display: block; font-size: 15px; }
.hero-badge span { font-size: 13px; color: var(--text-muted); }

/* ====================================================================
   STATS
==================================================================== */
.stats {
  background: var(--brand-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats .topo-bg svg path { stroke: rgba(255,255,255,0.025) !important; }
.stats .topo-bg svg g { stroke: rgba(255,255,255,0.025) !important; }
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); padding: 56px 0; }
}
.stat {
  text-align: center;
  padding: 16px 14px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  top: 16px; bottom: 16px;
  left: 0;
  width: 1px;
  background: rgba(255,255,255,0.14);
}
@media (max-width: 767px) {
  .stat:nth-child(odd)::before { display: none; }
  .stat:nth-child(2)::before { display: block; }
  .stat:nth-child(3), .stat:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.14);
    margin-top: 16px;
    padding-top: 28px;
  }
}
.stat .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  color: var(--brand-orange);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat .label {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ====================================================================
   ABOUT
==================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 960px) {
  .about-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  background: var(--bg-sky);
}
.about-visual .placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(14,76,138,0.05) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, var(--bg-sky), var(--bg-off));
  display: grid; place-items: center; text-align: center;
  color: var(--text-muted);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px;
}
.about-visual .placeholder strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--brand-navy);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 6px;
}
.about-card {
  position: absolute;
  bottom: 18px; left: 18px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-card .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-blue); color: #fff; display:grid; place-items:center; }
.about-card .icon svg { width: 22px; height: 22px; }
.about-card strong { display: block; font-family: var(--font-heading); color: var(--brand-navy); font-size: 14px; }
.about-card span { font-size: 12px; color: var(--text-muted); }

.about-body h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 18px;
}
.about-body p { color: var(--text-muted); font-size: 17px; margin-bottom: 16px; }
.about-body .text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--brand-blue);
  margin-top: 4px;
}
.about-body .text-link:hover { color: var(--brand-orange); }

/* ====================================================================
   SERVICES (3 main)
==================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  opacity: 0;
  transition: opacity .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card .icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--bg-sky);
  color: var(--brand-blue);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: background .2s, color .2s;
}
.service-card:hover .icon-wrap { background: var(--brand-orange); color: #fff; }
.service-card .icon-wrap svg { width: 30px; height: 30px; }
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service-card .desc {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 15px;
}
.service-card ul {
  margin-bottom: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.service-card ul li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--brand-orange);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1 4.9-4.9 1.1 1.1z'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.service-card .card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-blue);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 15px;
  min-height: 48px;
}
.service-card .card-cta:hover { color: var(--brand-orange); }
.service-card .card-cta svg { width: 18px; height: 18px; transition: transform .2s; }
.service-card .card-cta:hover svg { transform: translateX(4px); }

.services-bottom-cta {
  margin-top: 36px;
  background: linear-gradient(120deg, var(--brand-blue) 0%, var(--brand-navy) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.services-bottom-cta .topo-bg svg path { stroke: rgba(255,255,255,0.04) !important; }
.services-bottom-cta .topo-bg svg g { stroke: rgba(255,255,255,0.04) !important; }
.services-bottom-cta > *:not(.topo-bg) { position: relative; z-index: 1; }
.services-bottom-cta p { font-size: 17px; max-width: 520px; }
.services-bottom-cta strong { color: #fff; }
@media (min-width: 720px) {
  .services-bottom-cta { flex-direction: row; align-items: center; justify-content: space-between; padding: 36px 40px; text-align: left; }
  .services-bottom-cta p { margin: 0; }
}

/* ====================================================================
   ADDITIONAL SERVICES (6 mini)
==================================================================== */
.additional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .additional-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .additional-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 16px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}
.mini-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-sky);
  color: var(--brand-blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mini-card .icon-wrap svg { width: 24px; height: 24px; }
.mini-card h3 { font-size: 17px; margin-bottom: 4px; }
.mini-card p { font-size: 14px; color: var(--text-muted); }

/* ====================================================================
   WHY CHOOSE US
==================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.benefit {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.benefit .check {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-orange);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-weight: 800;
  box-shadow: 0 6px 14px -4px rgba(242,140,26,0.45);
}
.benefit .check svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 18px; margin-bottom: 8px; }
.benefit p { color: var(--text-muted); font-size: 15px; }

/* ====================================================================
   PROCESS
==================================================================== */
.process-wrap { position: relative; }
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
@media (min-width: 1024px) {
  .process { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .process::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 10%; right: 10%;
    height: 2px;
    background-image: linear-gradient(to right, var(--brand-blue) 50%, transparent 50%);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    z-index: 0;
  }
}
.step {
  position: relative;
  padding: 18px 12px 24px;
  z-index: 1;
}
@media (min-width: 1024px) {
  .step { text-align: center; padding: 0 12px; }
}
@media (max-width: 1023px) {
  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 18px;
    row-gap: 6px;
    align-items: start;
    padding: 0 0 28px 0;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 60px;
    bottom: 4px;
    left: 27px;
    width: 2px;
    background-image: linear-gradient(to bottom, var(--brand-blue) 50%, transparent 50%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
    z-index: 0;
  }
  .step h3, .step p { grid-column: 2; min-width: 0; align-self: start; }
  .step h3 { padding-top: 14px; }
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-orange);
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px -4px rgba(242,140,26,0.35);
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .step-num { width: 64px; height: 64px; font-size: 24px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 1023px) {
  .step-num { margin: 0; }
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text-muted); }

/* ====================================================================
   TESTIMONIALS
==================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 14px; right: 24px;
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
  color: var(--bg-sky);
  font-weight: 800;
  pointer-events: none;
}
.testimonial > * { position: relative; }
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--brand-orange);
  margin-bottom: 16px;
}
.stars svg { width: 20px; height: 20px; fill: currentColor; }
.testimonial blockquote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial .author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
}
.testimonial .author .name { font-family: var(--font-heading); font-weight: 700; color: var(--brand-navy); font-size: 15px; }
.testimonial .author .role { font-size: 13px; color: var(--text-muted); }

/* ====================================================================
   SERVICE AREA
==================================================================== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 960px) {
  .area-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; }
}
.localities-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.localities-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
  margin-bottom: 14px;
  font-weight: 700;
}
.locality-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.locality-pills span {
  display: inline-block;
  padding: 7px 14px;
  background: var(--bg-sky);
  color: var(--brand-navy);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.locality-pills span:hover { background: #fff; border-color: var(--brand-blue); }
.localities-card p { color: var(--text-muted); font-size: 15px; }

.map-svg {
  background: var(--bg-sky);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
}
.map-svg svg { width: 100%; height: 100%; display: block; }
.map-svg .map-label {
  position: absolute;
  top: 18px; left: 18px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-navy);
  border: 1px solid var(--border);
}

/* ====================================================================
   CONTACT
==================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1.05fr; gap: 40px; }
}
.contact-info {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-row { padding: 16px 0; border-bottom: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start; }
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-sky);
  color: var(--brand-blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-row .icon svg { width: 22px; height: 22px; }
.contact-row .label {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-row > div:not(.icon) { min-width: 0; flex: 1; }
.contact-row .value { font-size: 16px; color: var(--brand-navy); font-weight: 600; line-height: 1.5; word-break: break-word; overflow-wrap: anywhere; min-width: 0; }
.contact-row .value.phone { color: var(--brand-orange); font-size: 22px; font-family: var(--font-heading); font-weight: 800; word-break: keep-all; overflow-wrap: normal; letter-spacing: -0.005em; }
.contact-row a.value { transition: color .2s; }
.contact-row a.value:hover { color: var(--brand-orange); }

.hours-list { width: 100%; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
  border-bottom: 1px dashed var(--border);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .closed { color: var(--text-muted); }
.hours-list .open { color: var(--success); font-weight: 700; }

.quick-connect {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-navy) 100%);
  border-radius: var(--radius-lg);
  align-self: start;
  padding: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quick-connect .topo-bg svg path { stroke: rgba(255,255,255,0.08); }
.quick-connect > *:not(.topo-bg) { position: relative; z-index: 1; }
.quick-connect h3:first-of-type { margin-top: 0; }
.quick-connect h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.quick-connect .qc-sub { color: rgba(255,255,255,0.78); margin-bottom: 22px; font-size: 15px; }

.big-call-cta {
  display: flex; align-items: center; gap: 16px;
  background: var(--brand-orange);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: var(--shadow-cta);
  transition: background .2s, transform .15s;
  min-height: 64px;
}
.big-call-cta:hover { background: var(--brand-orange-hover); transform: translateY(-2px); }
.big-call-cta .icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.18); display: grid; place-items: center; flex-shrink: 0; }
.big-call-cta .icon svg { width: 26px; height: 26px; }
.big-call-cta .txt { font-family: var(--font-heading); }
.big-call-cta .txt small { display: block; font-size: 13px; font-weight: 600; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.08em; }
.big-call-cta .txt strong { display: block; font-size: 22px; font-weight: 800; line-height: 1.1; margin-top: 2px; }

.social-buttons { display: grid; gap: 10px; }
.social-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: #fff;
  text-decoration: none;
  transition: background .2s, transform .15s, border-color .2s;
  min-height: 48px;
}
.social-btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); transform: translateX(2px); }
.social-btn .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.social-btn .ic.fb { background: #1877F2; }
.social-btn .ic.wa { background: #25D366; }
.social-btn .ic.vb { background: #7360F2; }
.social-btn .ic svg { width: 20px; height: 20px; fill: #fff; }
.social-btn .lbl { flex: 1; font-family: var(--font-heading); }
.social-btn .lbl strong { display: block; font-size: 15px; font-weight: 700; }
.social-btn .lbl span { font-size: 13px; color: rgba(255,255,255,0.7); }
.social-btn .arrow { color: var(--brand-orange); font-size: 22px; font-weight: 800; }

.qc-divider {
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 22px 0;
  border: none;
}

.map-embed {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--bg-sky);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ====================================================================
   FINAL CTA
==================================================================== */
.final-cta {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #E07208 100%);
  color: #fff;
  text-align: left;
  overflow: hidden;
}
.final-cta .topo-bg svg path { stroke: rgba(255,255,255,0.07); }
.final-cta h2 {
  color: #fff;
  font-size: clamp(28px, 4.4vw, 44px);
  margin-bottom: 14px;
  max-width: 720px;
}
.final-cta p {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  max-width: 640px;
  margin: 0 0 28px;
}
.final-cta .btn-primary {
  background: #fff;
  color: var(--brand-orange);
  font-size: 18px;
  padding: 18px 32px;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.3);
}
.final-cta .btn-primary:hover { background: var(--brand-navy); color: #fff; }

/* ====================================================================
   FOOTER
==================================================================== */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; } }

.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
}
.logo-stack {
  position: relative;
  display: inline-block;
  height: 56px;
}
.logo-stack img {
  display: block;
  height: 56px;
  width: auto;
  margin: 0;
}
.logo-stack .logo-color {
  position: relative;
  z-index: 1;
}
/* White-filtered overlay clipped to the wordmark side (icon spans ~17% on the left) */
.logo-stack .logo-white {
  position: absolute;
  inset: 0;
  z-index: 2;
  filter: brightness(0) invert(1);
  -webkit-clip-path: inset(0 0 0 18%);
          clip-path: inset(0 0 0 18%);
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 18px; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #fff;
  transition: background .2s, transform .15s;
}
.footer-socials a:hover { background: var(--brand-orange); transform: translateY(-2px); }
.footer-socials a svg { width: 18px; height: 18px; fill: currentColor; }

.site-footer h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  margin-bottom: 16px;
  font-weight: 700;
}
.site-footer ul li { padding: 4px 0; font-size: 14px; }
.site-footer ul li a { color: rgba(255,255,255,0.78); transition: color .2s; }
.site-footer ul li a:hover { color: var(--brand-orange); }
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; }
.footer-contact-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; color: var(--brand-orange); }

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--brand-orange); }

/* ====================================================================
   STICKY MOBILE BAR
==================================================================== */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  z-index: 70;
  display: flex;
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  min-height: 48px;
}
.mobile-bar .bar-call { background: var(--brand-orange); color: #fff; }
.mobile-bar .bar-call:hover { background: var(--brand-orange-hover); }
.mobile-bar .bar-wa { background: #25D366; color: #fff; }
.mobile-bar svg { width: 18px; height: 18px; fill: currentColor; }
@media (min-width: 768px) { .mobile-bar { display: none; } }

body { padding-bottom: 80px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* ====================================================================
   TWEAKS PANEL
==================================================================== */
.tweaks-toggle-trigger { display: none; }

.tweaks-panel {
  position: fixed;
  top: 88px; right: 16px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  z-index: 95;
  font-family: var(--font-body);
  font-size: 13px;
  display: none;
}
.tweaks-panel.is-open { display: block; }
.tweaks-panel h4 { font-size: 14px; color: var(--brand-navy); margin-bottom: 4px; }
.tweaks-panel .tweaks-sub { color: var(--text-muted); font-size: 12px; margin-bottom: 14px; }
.tweaks-panel .tweak-row { margin-bottom: 14px; }
.tweaks-panel .tweak-row label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--brand-navy); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.tweaks-panel .swatches { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks-panel .swatch {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: transform .15s, border-color .15s;
}
.tweaks-panel .swatch:hover { transform: scale(1.1); }
.tweaks-panel .swatch.active { border-color: var(--brand-navy); box-shadow: 0 0 0 2px rgba(10,42,78,0.15); }
.tweaks-panel .seg {
  display: flex;
  background: var(--bg-off);
  border-radius: 8px;
  padding: 3px;
  border: 1px solid var(--border);
}
.tweaks-panel .seg button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.tweaks-panel .seg button.active { background: #fff; color: var(--brand-navy); box-shadow: var(--shadow-sm); }
.tweaks-panel .panel-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--text-muted);
}
.tweaks-panel .panel-close:hover { background: var(--bg-off); color: var(--brand-navy); }

/* Tweak: hero variant compact */
body[data-hero="compact"] .hero { padding: 40px 0 56px; }
body[data-hero="compact"] .hero h1 { font-size: clamp(28px, 4vw, 42px); }

/* Tweak: process style filled */
body[data-process="filled"] .step-num { background: var(--brand-orange); color: #fff; }
body[data-process="filled"] .step-num { box-shadow: 0 8px 18px -4px rgba(242,140,26,0.5); }

/* Tweak: card style flat */
body[data-cards="flat"] .service-card { border: 1px solid var(--border); box-shadow: none; }
body[data-cards="flat"] .service-card:hover { transform: none; box-shadow: var(--shadow-sm); }

/* ====================================================================
   ANIMATION
==================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ====================================================================
   MOBILE RESPONSIVE REFINEMENTS
==================================================================== */
/* Force-display all header items at every viewport — bulletproof against
   cascade overrides in preview environments. */
.site-header .header-inner { display: flex !important; align-items: center; }
.site-header .logo-link { display: inline-flex !important; align-items: center; flex-shrink: 0; }
.site-header .logo-link img { display: block; max-height: 100%; }
.site-header .header-end { display: flex !important; align-items: center; flex-shrink: 0; }
.site-header .lang-switch { display: inline-flex !important; flex-shrink: 0; }
.site-header .menu-toggle { flex-shrink: 0; }

@media (max-width: 1023px) {
  .site-header .menu-toggle { display: inline-flex !important; }
}
@media (min-width: 1024px) {
  .site-header .menu-toggle { display: none !important; }
}

@media (max-width: 639px) {
  :root { --header-h: 64px; }
  .header-inner { gap: 8px; }
  .header-end { gap: 6px; }
  .logo-link img { height: 32px; }
  .lang-switch { font-size: 11px; padding: 2px; }
  .lang-switch a { padding: 5px 8px; min-width: 28px; }
  .menu-toggle { width: 40px; height: 40px; border-radius: 8px; }
  .menu-toggle svg { width: 20px; height: 20px; }
  /* Force the phone CTA visible on mobile as a compact icon button */
  .site-header .header-cta {
    display: inline-flex !important;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    gap: 0;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: var(--brand-orange);
    color: #fff;
  }
  .site-header .header-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
  .skip-link { top: 4px; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero { padding: 36px 0 56px; }
  /* Match hero lead text size to about paragraph for visual consistency on mobile */
  .hero p.lead, .about-body p { font-size: 15px; line-height: 1.6; }
  .hero h1 { font-size: clamp(28px, 8vw, 34px); margin: 12px 0 16px; }
  /* Smaller, tighter hero eyebrow on mobile */
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 5px 12px 5px 10px;
    gap: 7px;
    margin-bottom: 14px;
  }
  .hero .eyebrow::before { width: 6px; height: 6px; }
  .stats-grid { padding: 28px 0; }
  .service-card { padding: 22px; }
  .testimonial { padding: 24px; }
  .contact-info { padding: 22px; }
  .quick-connect { padding: 24px; }
  .localities-card { padding: 22px; }
  .services-bottom-cta { padding: 24px; }
  .contact-row { gap: 12px; padding: 14px 0; }
  .contact-row .icon { width: 38px; height: 38px; border-radius: 10px; }
  .contact-row .icon svg { width: 18px; height: 18px; }
  .contact-row .value { font-size: 15px; font-weight: 500; }
  .contact-row .value.phone { font-size: 20px; }
  .footer-grid { gap: 28px; }
  .site-footer { padding: 48px 0 0; }
  .footer-bottom { margin-top: 32px; }
  .map-embed iframe { height: 280px; }
  .final-cta { padding: 56px 0; }
  .big-call-cta { padding: 16px 18px; gap: 12px; }
  .big-call-cta .icon { width: 42px; height: 42px; }
  .big-call-cta .txt strong { font-size: 19px; }
  .quick-connect h3 { font-size: 19px; }
  .testimonial blockquote { font-size: 16px; }
}

/* Prevent any single overflowing element from breaking horizontal layout */
.hero-grid, .about-grid, .area-grid, .contact-grid, .footer-grid,
.services-grid, .additional-grid, .why-grid, .testimonials-grid { min-width: 0; }
.hero-grid > *, .about-grid > *, .area-grid > *, .contact-grid > * { min-width: 0; }
.testimonial blockquote, .benefit p, .service-card p, .mini-card p, .stat .label { overflow-wrap: anywhere; }

/* Make tel/mailto/social link targets feel clickable */
a[href^="tel:"], a[href^="mailto:"], a[href^="viber:"], a[href^="https://wa.me"] { cursor: pointer; }

/* Hide Tweaks panel completely in production (only opens via design-host postMessage) */
.tweaks-panel { display: none !important; }
.tweaks-panel.is-open { display: block !important; }
