/* Design tokens and global defaults */
:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9dee7;
  --paper: #f7f9fc;
  --white: #ffffff;
  --red: #c90000;
  --red-deep: #9e0000;
  --blue: #314c9d;
  --blue-deep: #1d3272;
  --teal: #0f766e;
  --charcoal: #161b22;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header and navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(11, 16, 24, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 24, 39, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 52px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand-copy small {
  margin-top: 4px;
  color: #9db1ff;
  font-size: 0.75rem;
  font-weight: 800;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  color: #9db1ff;
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(201, 0, 0, 0.24);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.call-button:hover {
  background: #e00000;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.language-button {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 32px;
  padding: 0 7px;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
}

.language-button:hover,
.language-button.is-active {
  color: var(--charcoal);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-electric.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.94) 0%, rgba(7, 10, 16, 0.72) 42%, rgba(7, 10, 16, 0.26) 100%),
    linear-gradient(0deg, rgba(7, 10, 16, 0.48), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 78px);
  padding-top: 80px;
}

.hero-logo-mark {
  position: absolute;
  z-index: 1;
  left: clamp(-80px, -4vw, -26px);
  top: 108px;
  width: clamp(280px, 38vw, 620px);
  opacity: 0.14;
  filter: drop-shadow(0 24px 55px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.hero-logo-lockup {
  display: block;
  width: clamp(126px, 15vw, 190px);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.58));
}

.eyebrow {
  margin: 0 0 14px;
  color: #9db1ff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2.1vw, 1.36rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(201, 0, 0, 0.24);
}

.button-primary:hover {
  background: #e00000;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-dark {
  color: var(--white);
  background: var(--charcoal);
  white-space: nowrap;
}

/* Shared sections and service catalog */
.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-item {
  min-height: 120px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.intro-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.intro-item span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(70px, 10vw, 118px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.emergency h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: block;
  width: 100%;
  min-height: 260px;
  padding: 26px;
  color: inherit;
  text-align: left;
  font: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(201, 0, 0, 0.42);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.12);
  transform: translateY(-2px);
}

.service-card:focus-visible {
  outline: 3px solid rgba(49, 76, 157, 0.28);
  outline-offset: 3px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3,
.process-list h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.service-card p,
.process-list p,
.contact-copy p,
.emergency p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* About */
.about {
  background:
    linear-gradient(180deg, #f7f9fd 0%, #fff 58%),
    var(--paper);
}

.about-statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-statement {
  min-height: 360px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.about-statement-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 28, 46, 0.94), rgba(49, 76, 157, 0.9)),
    var(--charcoal);
}

.about-statement span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-statement-dark span {
  color: #ffb4b4;
}

.about-statement h3,
.values-heading h3,
.philosophy-panel h3,
.promise-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-statement p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-statement-dark p {
  color: rgba(255, 255, 255, 0.84);
}

.values-block {
  margin-top: 44px;
}

.values-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.values-grid article {
  min-height: 210px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.values-grid h4 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.values-grid p,
.philosophy-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.philosophy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
  margin-top: 46px;
  padding: clamp(26px, 5vw, 44px);
  background: var(--charcoal);
  border-radius: 8px;
  overflow: hidden;
}

.philosophy-panel .eyebrow {
  color: #9db1ff;
}

.philosophy-panel h3 {
  color: var(--white);
}

.philosophy-panel p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.promise-card {
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.promise-card h3 {
  color: var(--charcoal);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.promise-card ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.promise-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.promise-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 8px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.brand-promise {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  background: linear-gradient(90deg, var(--red), #8e0000);
  border-radius: 8px;
}

.brand-promise span {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.brand-promise strong {
  font-size: clamp(1.9rem, 4vw, 3.9rem);
  line-height: 0.98;
}

/* Service details modal */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.service-modal.is-open {
  display: flex;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 20, 0.72);
  backdrop-filter: blur(10px);
}

.service-modal-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(86vh, 840px);
  overflow: auto;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.service-modal-close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 2;
  min-height: 40px;
  margin: 14px 14px 0 0;
  padding: 0 14px;
  color: var(--white);
  background: var(--charcoal);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.service-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 5vw, 56px);
}

.service-modal-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.service-modal-text {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.service-modal-text p {
  margin: 0;
}

.service-photo-grid {
  display: grid;
  gap: 14px;
}

.service-photo {
  min-height: 220px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.16), rgba(201, 0, 0, 0.18)),
    url("assets/hero-electric.png");
  background-size: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.service-photo-a {
  background-position: center right;
}

.service-photo-b {
  background-position: 68% center;
}

.service-modal[data-photo-theme="panel"] .service-photo-a,
.service-modal[data-photo-theme="upgrade"] .service-photo-a,
.service-modal[data-photo-theme="generator"] .service-photo-a {
  background-position: 82% center;
}

.service-modal[data-photo-theme="wiring"] .service-photo-a,
.service-modal[data-photo-theme="devices"] .service-photo-a,
.service-modal[data-photo-theme="low-voltage"] .service-photo-a {
  background-position: 72% center;
}

.service-modal[data-photo-theme="ev"] .service-photo-a,
.service-modal[data-photo-theme="maintenance"] .service-photo-a {
  background-position: 62% center;
}

body.modal-open {
  overflow: hidden;
}

/* Emergency and process */
.emergency {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(46px, 7vw, 76px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 0, 0, 0.92), rgba(49, 76, 157, 0.88)),
    var(--blue);
}

.emergency > * {
  position: relative;
  z-index: 1;
}

.emergency-mark {
  position: absolute;
  right: clamp(-110px, -5vw, -38px);
  top: 50%;
  width: clamp(260px, 34vw, 520px);
  opacity: 0.11;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.emergency .eyebrow {
  color: var(--white);
}

.emergency p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.process {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-top: 4px solid var(--red);
  background: var(--paper);
  border-radius: 8px;
}

.process-list span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 999px;
  font-weight: 900;
}

/* Reviews */
.reviews {
  background: var(--paper);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 28px;
}

.reviews-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.google-summary {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.google-badge {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 900;
}

.google-badge-large {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  background: #fff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(49, 76, 157, 0.18);
}

.google-summary strong {
  display: block;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.google-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.google-widget {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.google-widget-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background:
    linear-gradient(180deg, #f7f9ff, #fff),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.google-widget-sidebar h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.google-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.google-rating-row strong {
  color: var(--charcoal);
  font-size: 2.1rem;
  line-height: 1;
}

.google-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 0;
}

.google-widget-sidebar p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 250px;
  padding: 22px;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.review-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-source {
  display: block;
  margin-top: 18px;
  color: #697386;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.review-link-placeholder[aria-disabled="true"] {
  cursor: default;
  opacity: 0.82;
}

.widget-embed-note {
  grid-column: 1 / -1;
  padding: 14px 16px;
  color: var(--muted);
  background: #f6f8fc;
  border: 1px dashed #cbd3df;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.contact-copy p {
  margin-top: 20px;
  max-width: 610px;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  max-width: 680px;
}

.quick-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quick-contact-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.1);
}

.quick-contact-call {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.quick-contact-call:hover {
  background: #e00000;
}

.quick-contact-text {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.quick-contact-whatsapp {
  color: var(--white);
  background: #128c7e;
  border-color: #128c7e;
}

.quick-contact-social[aria-disabled="true"] {
  cursor: default;
  opacity: 0.72;
}

.contact-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.contact-icon-phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.03-.24c1.14.38 2.36.59 3.56.59c.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1c0 1.2.2 2.42.59 3.56c.11.36.03.74-.25 1.02z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.03-.24c1.14.38 2.36.59 3.56.59c.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1c0 1.2.2 2.42.59 3.56c.11.36.03.74-.25 1.02z'/%3E%3C/svg%3E");
}

.contact-icon-message {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2M6 9h12v2H6zm8 5H6v-2h8zm4-6H6V6h12z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2M6 9h12v2H6zm8 5H6v-2h8zm4-6H6V6h12z'/%3E%3C/svg%3E");
}

.contact-icon-whatsapp {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.01 3C8.83 3 3 8.83 3 16c0 2.3.6 4.52 1.74 6.48L3.1 29l6.68-1.56A13 13 0 1 0 16.01 3m0 2.35A10.65 10.65 0 0 1 26.65 16A10.65 10.65 0 0 1 16 26.65c-1.85 0-3.67-.48-5.25-1.39l-.39-.22l-3.96.93l.97-3.83l-.25-.4A10.6 10.6 0 0 1 5.35 16A10.65 10.65 0 0 1 16.01 5.35m-4.54 4.67c-.22 0-.57.08-.86.4c-.3.33-1.13 1.1-1.13 2.68s1.16 3.12 1.32 3.33c.16.22 2.24 3.58 5.54 4.88c2.75 1.08 3.31.86 3.91.81c.6-.05 1.95-.8 2.22-1.57c.28-.77.28-1.43.2-1.57c-.08-.14-.3-.22-.63-.38c-.33-.17-1.95-.96-2.25-1.07c-.3-.11-.52-.16-.74.17c-.22.33-.85 1.07-1.04 1.29c-.19.22-.38.25-.71.08c-.33-.17-1.39-.51-2.65-1.63c-.98-.87-1.64-1.95-1.83-2.28c-.19-.33-.02-.51.14-.68c.15-.15.33-.38.49-.57c.16-.19.22-.33.33-.55c.11-.22.05-.41-.03-.57c-.08-.16-.73-1.76-1.01-2.41c-.26-.63-.53-.54-.73-.55z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.01 3C8.83 3 3 8.83 3 16c0 2.3.6 4.52 1.74 6.48L3.1 29l6.68-1.56A13 13 0 1 0 16.01 3m0 2.35A10.65 10.65 0 0 1 26.65 16A10.65 10.65 0 0 1 16 26.65c-1.85 0-3.67-.48-5.25-1.39l-.39-.22l-3.96.93l.97-3.83l-.25-.4A10.6 10.6 0 0 1 5.35 16A10.65 10.65 0 0 1 16.01 5.35m-4.54 4.67c-.22 0-.57.08-.86.4c-.3.33-1.13 1.1-1.13 2.68s1.16 3.12 1.32 3.33c.16.22 2.24 3.58 5.54 4.88c2.75 1.08 3.31.86 3.91.81c.6-.05 1.95-.8 2.22-1.57c.28-.77.28-1.43.2-1.57c-.08-.14-.3-.22-.63-.38c-.33-.17-1.95-.96-2.25-1.07c-.3-.11-.52-.16-.74.17c-.22.33-.85 1.07-1.04 1.29c-.19.22-.38.25-.71.08c-.33-.17-1.39-.51-2.65-1.63c-.98-.87-1.64-1.95-1.83-2.28c-.19-.33-.02-.51.14-.68c.15-.15.33-.38.49-.57c.16-.19.22-.33.33-.55c.11-.22.05-.41-.03-.57c-.08-.16-.73-1.76-1.01-2.41c-.26-.63-.53-.54-.73-.55z'/%3E%3C/svg%3E");
}

.contact-icon-youtube {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.6 12 3.6 12 3.6s-7.5 0-9.4.5A3 3 0 0 0 .5 6.2A31 31 0 0 0 0 12a31 31 0 0 0 .5 5.8a3 3 0 0 0 2.1 2.1c1.9.5 9.4.5 9.4.5s7.5 0 9.4-.5a3 3 0 0 0 2.1-2.1A31 31 0 0 0 24 12a31 31 0 0 0-.5-5.8M9.6 15.6V8.4l6.3 3.6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.6 12 3.6 12 3.6s-7.5 0-9.4.5A3 3 0 0 0 .5 6.2A31 31 0 0 0 0 12a31 31 0 0 0 .5 5.8a3 3 0 0 0 2.1 2.1c1.9.5 9.4.5 9.4.5s7.5 0 9.4-.5a3 3 0 0 0 2.1-2.1A31 31 0 0 0 24 12a31 31 0 0 0-.5-5.8M9.6 15.6V8.4l6.3 3.6z'/%3E%3C/svg%3E");
}

.contact-icon-instagram {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zm5 3.8A4.2 4.2 0 1 1 12 16.2A4.2 4.2 0 0 1 12 7.8m0 2A2.2 2.2 0 1 0 12 14.2A2.2 2.2 0 0 0 12 9.8M18.4 6.6a1 1 0 1 1-1 1a1 1 0 0 1 1-1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zm5 3.8A4.2 4.2 0 1 1 12 16.2A4.2 4.2 0 0 1 12 7.8m0 2A2.2 2.2 0 1 0 12 14.2A2.2 2.2 0 0 0 12 9.8M18.4 6.6a1 1 0 1 1-1 1a1 1 0 0 1 1-1'/%3E%3C/svg%3E");
}

.contact-icon-facebook {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 8h3V4h-3c-3.1 0-5 1.9-5 5v3H6v4h3v8h4v-8h3.4l.6-4h-4V9c0-.7.3-1 1-1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 8h3V4h-3c-3.1 0-5 1.9-5 5v3H6v4h3v8h4v-8h3.4l.6-4h-4V9c0-.7.3-1 1-1'/%3E%3C/svg%3E");
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #cbd3df;
  border-radius: 8px;
  background: #fbfcff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(49, 76, 157, 0.24);
  border-color: var(--blue);
}

/* Footer */
.site-footer {
  color: var(--ink);
  background: var(--white);
}

.footer-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 118px;
  padding: 28px clamp(18px, 7vw, 96px);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), #21316f);
}

.footer-cta::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -82px;
  width: 250px;
  height: 250px;
  border: 22px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(255, 255, 255, 0.08);
}

.footer-cta strong {
  position: relative;
  z-index: 1;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.1;
}

.footer-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-cta-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 900;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(30px, 7vw, 96px);
  padding: 58px clamp(18px, 7vw, 96px) 64px;
}

.footer-brand img {
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: #f1f4fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-socials a:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-1px);
}

.footer-socials a[aria-disabled="true"] {
  cursor: default;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 44px);
}

.footer-links h3 {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-links a {
  display: block;
  margin: 0 0 11px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 7vw, 96px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

/* Responsive layouts */
@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .header-panel {
    display: grid;
    justify-items: end;
    gap: 10px;
  }

  .site-nav {
    gap: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .service-grid,
  .process-list,
  .review-grid,
  .google-widget,
  .contact,
  .about-statement-grid,
  .values-heading,
  .reviews-heading,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .philosophy-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    grid-column: 1 / -1;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 54px;
    height: 44px;
  }

  .nav-toggle {
    display: block;
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 16px 18px;
    background: rgba(17, 24, 39, 0.98);
  }

  .header-panel.is-open {
    display: grid;
    justify-items: stretch;
  }

  .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 12px;
  }

  .call-button {
    width: 100%;
    min-height: 46px;
  }

  .language-switcher {
    justify-content: space-between;
  }

  .language-button {
    flex: 1;
    min-width: 0;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  .hero-logo-mark {
    left: -76px;
    top: 110px;
    width: 360px;
    opacity: 0.11;
  }

  .hero-logo-lockup {
    width: 128px;
    margin-bottom: 16px;
  }

  h1 {
    max-width: 9ch;
  }

  .intro-band,
  .service-grid,
  .process-list,
  .review-grid,
  .reviews-heading,
  .google-widget,
  .about-statement-grid,
  .values-heading,
  .values-grid,
  .philosophy-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .footer-cta,
  .footer-bottom {
    display: grid;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: min(220px, 76vw);
  }

  .quick-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-modal {
    align-items: stretch;
    padding: 12px;
  }

  .service-modal-panel {
    max-height: calc(100vh - 24px);
  }

  .service-modal-layout {
    grid-template-columns: 1fr;
    padding: 24px 18px 26px;
  }

  .service-photo {
    min-height: 180px;
  }

  .emergency {
    display: grid;
  }

  .emergency-mark {
    right: -150px;
    width: 360px;
  }

  .button,
  .button-dark {
    width: 100%;
  }
}
