:root {
  --header-height: 88px;
  --primary: #ed6600;
  --primary-dark: #c85300;
  --secondary: #1f2937;
  --accent: #f8f9fa;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #e2e8f0;
  --slate-200: #dbe4ee;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-700: #334155;
  --success: #25d366;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --shadow-soft: 0 24px 60px -24px rgba(15, 23, 42, 0.25);
  --shadow-card: 0 16px 40px -24px rgba(15, 23, 42, 0.18);
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--secondary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1320px, calc(100% - 3.5rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1300;
  backdrop-filter: blur(14px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.35);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  transition: color 0.35s ease;
}

.site-header.is-scrolled .brand {
  color: var(--secondary);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav--enhanced {
  flex: 1 1 auto;
  justify-content: space-between;
  min-width: 0;
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  min-width: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.main-nav a {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-header.is-scrolled .main-nav a:not(.button) {
  color: var(--secondary);
}

.main-nav a:not(.button) {
  position: relative;
  padding-bottom: 0.55rem;
}

.main-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.main-nav a:not(.button):hover {
  opacity: 1;
}

.main-nav a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle {
  color: var(--secondary);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.lang-switch__button {
  min-width: 2.2rem;
  min-height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--slate-400);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease;
}

.lang-switch__button.is-active {
  background: var(--primary);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--primary);
  color: var(--white);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: var(--secondary);
  color: var(--white);
}

.button-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button-whatsapp {
  background: var(--success);
  color: var(--white);
}

.button-ghost {
  background: var(--white);
  color: var(--secondary);
  border-color: rgba(203, 213, 225, 0.85);
}

.button-light {
  background: var(--white);
  color: var(--primary);
}

.button-full {
  width: 100%;
}

.nav-cta {
  margin-left: 0.8rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #1f2937;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 34, 48, 0.96) 0%, rgba(31, 41, 55, 0.82) 42%, rgba(31, 41, 55, 0.3) 100%),
    rgba(31, 41, 55, 0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-height) + 6.8rem) 2rem 7rem;
  color: var(--white);
  max-width: 1100px;
  margin-left: clamp(2.4rem, 8vw, 8.5rem);
}

.hero-content > :not(.hero-copy) {
  display: none;
}

.hero-copy {
  max-width: min(60vw, 1180px);
}

.hero-copy p + p {
  margin-top: -0.35rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}

.eyebrow-dot {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: rgb(237, 102, 0);
  opacity: 0.2;
  flex: 0 0 auto;
  animation: eyebrow-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes eyebrow-dot-pulse {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

.hero h1 {
  font-size: clamp(3.7rem, 6.35vw, 6.25rem);
  line-height: 0.95;
  margin: 0 0 1.2rem;
  letter-spacing: -0.05em;
  max-width: 12.5ch;
  font-weight: 800;
}

.hero p {
  font-size: clamp(1.14rem, 1.85vw, 1.5rem);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 2rem;
  max-width: none;
  font-weight: 500;
}

.hero-highlight {
  color: var(--primary);
}

.hero-lead {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
}

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  list-style: none;
  padding: 1.8rem 0 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-badges li {
  position: relative;
  padding-left: 1rem;
}

.hero-badges li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: var(--primary);
  font-size: 0.82em;
  font-weight: 800;
}

.stats-section,
.about-section,
.services-section,
.process-section,
.coverage-section,
.portfolio-section,
.testimonials-section,
.faq-section,
.contact-section {
  padding: 4.5rem 0;
}

.stats-shell {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  padding-top: 2.75rem;
}

.stats-grid,
.cards-grid,
.contact-grid,
.footer-grid,
.split-layout {
  display: grid;
  gap: 1.85rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 2.6rem;
  box-shadow: 0 28px 70px -36px rgba(15, 23, 42, 0.16);
  padding: 2rem 1.2rem;
  backdrop-filter: blur(4px);
}

.stat-card,
.service-card,
.process-card,
.testimonial-card,
.contact-card,
.form-panel,
.faq-item,
.coverage-card,
.service-proof-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.stat-card {
  padding: 2.15rem 1.6rem 1.95rem;
  text-align: center;
  border-radius: 1.9rem;
  box-shadow: none;
  border-color: transparent;
  transition: transform 0.2s ease;
  position: relative;
}

.stat-card + .stat-card {
  border-left: 0;
}

.stat-card + .stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background: rgba(226, 232, 240, 0.95);
}

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

.stat-card strong {
  display: block;
  font-size: clamp(1.95rem, 3vw, 2.35rem);
  line-height: 1.05;
  color: #16233b;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.stat-card > span:last-child {
  display: block;
  color: #8a96ad;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.stat-card strong::after,
.stat-card > span:last-child::after {
  content: none !important;
  display: none !important;
}


.stat-card:nth-child(1) strong::after {
  content: "+5000";
}

.stat-card:nth-child(1) > span:last-child::after {
  content: "Serviços Realizados";
}

.stat-card:nth-child(2) strong::after {
  content: "Desde\A2019";
}

.stat-card:nth-child(2) > span:last-child::after {
  content: "No Mercado";
}

.stat-card:nth-child(3) strong::after {
  content: "Atuação";
}

.stat-card:nth-child(3) > span:last-child::after {
  content: "Distrito de Aveiro";
}

.stat-card:nth-child(4) strong::after {
  content: "Orçamento";
}

.stat-card:nth-child(4) > span:last-child::after {
  content: "Gratuito";
}

.stat-icon {
  display: inline-flex;
  width: 3.8rem;
  height: 3.8rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.45rem;
  border-radius: 1.25rem;
  background: rgba(237, 102, 0, 0.08);
  color: transparent;
  font-size: 0;
  box-shadow: none;
  position: relative;
  transition: background-color 0.2s ease;
}

.stat-card:hover .stat-icon,
.stat-card.is-hover .stat-icon {
  background: rgba(237, 102, 0, 1);
}

.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.stat-card:hover .stat-icon::before,
.stat-card:hover .stat-icon::after,
.stat-card.is-hover .stat-icon::before,
.stat-card.is-hover .stat-icon::after {
  border-color: rgba(255, 255, 255, 1);
}

.stat-card:hover:nth-child(1) .stat-icon::before,
.stat-card.is-hover:nth-child(1) .stat-icon::before,
.stat-card:hover:nth-child(2) .stat-icon::after,
.stat-card.is-hover:nth-child(2) .stat-icon::after {
  border-left-color: rgba(255, 255, 255, 1);
  border-bottom-color: rgba(255, 255, 255, 1);
}

.stat-card:hover:nth-child(2) .stat-icon::before,
.stat-card.is-hover:nth-child(2) .stat-icon::before,
.stat-card:hover:nth-child(3) .stat-icon::before,
.stat-card.is-hover:nth-child(3) .stat-icon::before,
.stat-card:hover:nth-child(3) .stat-icon::after,
.stat-card.is-hover:nth-child(3) .stat-icon::after,
.stat-card:hover:nth-child(4) .stat-icon::before,
.stat-card.is-hover:nth-child(4) .stat-icon::before,
.stat-card:hover:nth-child(4) .stat-icon::after,
.stat-card.is-hover:nth-child(4) .stat-icon::after {
  border-color: rgba(255, 255, 255, 1);
}

.stat-card:nth-child(1) .stat-icon::before {
  width: 1rem;
  height: 0.55rem;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
  top: 1.35rem;
  left: 1.35rem;
}

.stat-card:nth-child(2) .stat-icon::before {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--primary);
  border-radius: 50%;
  top: 1.12rem;
  left: 1.12rem;
}

.stat-card:nth-child(2) .stat-icon::after {
  width: 0.42rem;
  height: 0.52rem;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  top: 1.45rem;
  left: 1.9rem;
}

.stat-card:nth-child(3) .stat-icon::before {
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  top: 1.02rem;
  left: 1.38rem;
}

.stat-card:nth-child(3) .stat-icon::after {
  width: 0.28rem;
  height: 0.28rem;
  border: 2px solid var(--primary);
  border-radius: 50%;
  top: 1.5rem;
  left: 1.66rem;
}

.stat-card:nth-child(4) .stat-icon::before {
  width: 1.15rem;
  height: 0.85rem;
  border: 2px solid var(--primary);
  border-radius: 0.15rem;
  top: 1.55rem;
  left: 1.3rem;
}

.stat-card:nth-child(4) .stat-icon::after {
  width: 0.55rem;
  height: 0.32rem;
  border: 2px solid var(--primary);
  border-bottom: 0;
  border-radius: 0.2rem 0.2rem 0 0;
  top: 1.14rem;
  left: 1.6rem;
}

.split-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 5rem;
}

.media-card {
  border-radius: 2.75rem;
  overflow: visible;
  position: relative;
}

.media-card--offset {
  padding: 1.7rem;
}

.media-card__backdrop {
  position: absolute;
  inset: 0;
  border-radius: 3.15rem;
  background: rgba(237, 102, 0, 0.06);
  transform: none;
  box-shadow: 0 26px 60px -42px rgba(15, 23, 42, 0.2);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2.65rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 26px 60px -42px rgba(15, 23, 42, 0.32);
}

.about-copy {
  max-width: 39rem;
}

.about-copy .eyebrow {
  margin-bottom: 0.95rem;
}

.about-copy h2 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
}

.about-highlight {
  color: var(--primary);
}

.about-copy p {
  font-size: 1.11rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.text-block h2,
.section-heading h2,
.contact-panel h2,
.cta-box h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.text-block p,
.section-heading p,
.contact-panel p,
.cta-box p {
  color: var(--slate-500);
  margin: 0 0 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
  display: grid;
  gap: 1.25rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: 2.9rem 1fr;
  gap: 1rem;
  align-items: start;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.feature-list li::before {
  content: "";
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 1rem;
  background: rgba(237, 102, 0, 0.08);
  box-shadow: inset 0 0 0 1px rgba(237, 102, 0, 0.08);
  position: relative;
  grid-column: 1;
  grid-row: 1;
}

.feature-list li::after {
  content: "";
  position: absolute;
  width: 0.88rem;
  height: 0.48rem;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
  margin-left: 0.95rem;
  margin-top: 0.9rem;
}

.feature-list li {
  position: relative;
}

.feature-copy {
  grid-column: 2;
  min-width: 0;
}

.feature-list strong,
.service-card h3,
.process-card h3,
.portfolio-card h3,
.testimonial-card strong,
.contact-card strong,
.service-proof-card h3 {
  display: block;
  margin-bottom: 0.45rem;
}

.feature-list strong {
  font-size: 1.24rem;
  color: #16233b;
  margin-bottom: 0.3rem;
}

.feature-list span {
  display: block;
  color: var(--slate-500);
  font-size: 1.04rem;
  line-height: 1.62;
  max-width: 34rem;
}

.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 2.2rem;
}

.services-section .section-heading {
  max-width: 980px;
}

.services-section .section-heading p {
  font-size: 1.1rem;
  line-height: 1.72;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.service-card {
  padding: 2rem 2.1rem 1.85rem;
  border-radius: 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 34px 70px -36px rgba(15, 23, 42, 0.34);
  border-color: rgba(226, 232, 240, 0.98);
}

.service-card p {
  color: var(--slate-500);
  font-size: 1.04rem;
  line-height: 1.72;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 2rem;
}

.service-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 1.45rem;
}

.service-card__meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 1.92rem;
  line-height: 1.12;
  max-width: 12ch;
  margin: 0 auto 1.4rem;
}

.service-card__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.55rem;
}

.service-card__icon {
  display: inline-flex;
  width: 4.9rem;
  height: 4.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 1.55rem;
  background: #fff7f0;
  box-shadow: none;
  position: relative;
  transition: background-color 0.24s ease, transform 0.24s ease;
}

.service-card:hover .service-card__icon {
  background: var(--primary);
  transform: rotate(3deg);
}

.service-card__icon svg {
  width: 2.05rem;
  height: 2.05rem;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.24s ease;
}

.service-card:hover .service-card__icon svg {
  stroke: #fff;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1rem;
}

.service-card li,
.service-proof-card li {
  color: var(--slate-700);
  font-weight: 700;
  font-size: 0.99rem;
  line-height: 1.58;
  position: relative;
  padding-left: 1.1rem;
}

.service-card li::before,
.service-proof-card li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  top: 0.62rem;
  left: 0;
}

.service-card .button {
  margin-top: auto;
  width: 100%;
  min-height: 4rem;
  border-radius: 1.2rem;
  background: #1f2c42;
  border: 0;
  box-shadow: 0 14px 28px -18px rgba(15, 23, 42, 0.5);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.service-card .button::after {
  content: "→";
  margin-left: 0.85rem;
  font-size: 1.15rem;
  line-height: 1;
}

.service-proof-shell {
  margin-top: 5rem;
}

.service-proof-heading {
  max-width: 820px;
}

.service-proof-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.85rem;
  max-width: 980px;
  margin: 0 auto;
}

.service-proof-card {
  overflow: hidden;
  border-radius: 2.75rem;
  border: 1px solid rgba(248, 250, 252, 0.98);
  box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.18);
}

.service-proof-card__media {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.service-proof-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-proof-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.03) 0%, rgba(15, 23, 42, 0.72) 100%);
}

.service-proof-card__caption {
  position: absolute;
  left: 1.7rem;
  right: 1.7rem;
  bottom: 1.4rem;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.35);
}

.service-proof-card__body {
  padding: 2rem 2rem 2.15rem;
}

.service-proof-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-proof-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.service-proof-card__icon {
  width: 3.9rem;
  height: 3.9rem;
  border-radius: 1.25rem;
  background: rgba(237, 102, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.service-proof-card__icon svg,
.service-proof-card__proof-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-proof-card__heading {
  min-width: 0;
}

.service-proof-card h3 {
  font-size: 2rem;
  line-height: 1.12;
  margin: 0;
}

.service-proof-card p {
  color: var(--slate-500);
  font-size: 1.05rem;
  line-height: 1.68;
}

.service-proof-card h3 {
  font-size: 1.9rem;
  line-height: 1.16;
}

.service-proof-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.service-proof-card__proof {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.95);
  margin-bottom: 1.5rem;
}

.service-proof-card__proof-icon {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.service-proof-card__proof p {
  font-size: 0.92rem;
  line-height: 1.58;
  margin: 0;
}

.service-proof-card__button {
  width: 100%;
  min-height: 3.7rem;
  border-radius: 1rem;
  background: #1f2c42;
  border: 0;
  box-shadow: 0 14px 28px -18px rgba(15, 23, 42, 0.5);
  font-size: 0.79rem;
  letter-spacing: 0.12em;
}

.service-proof-card__button::after {
  content: "→";
  margin-left: 0.85rem;
  font-size: 1.1rem;
  line-height: 1;
}

.consent-card {
  margin-top: 2rem;
  padding: 1.6rem 1.7rem;
  border-radius: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px -38px rgba(15, 23, 42, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.consent-card__copy strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.consent-card__copy p {
  margin-bottom: 0.55rem;
}

.consent-card__copy span {
  display: inline-block;
  color: #10b981;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.consent-card__actions {
  display: flex;
  gap: 0.85rem;
  flex-shrink: 0;
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.9rem;
}

.process-card {
  padding: 2rem 2rem 1.9rem;
  border-radius: 2.25rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 25rem;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px -40px rgba(15, 23, 42, 0.28);
}

.process-card:not(.is-selected):hover h3 {
  color: var(--primary);
}

.process-card.is-selected {
  background: rgba(237, 102, 0, 0.04);
  border-color: var(--primary);
  box-shadow: 0 18px 44px -34px rgba(237, 102, 0, 0.18);
}

.process-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.45rem;
}

.step-number {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(237, 102, 0, 0.1);
  color: var(--primary);
  font-weight: 900;
  font-size: 1.12rem;
  transition: background-color 0.24s ease, color 0.24s ease;
}

.process-card:not(.is-selected):hover .step-number {
  background: var(--primary);
  color: #fff;
}

.process-card.is-selected .step-number {
  background: var(--primary);
  color: #fff;
}

.process-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.7);
}

.process-dot.is-green { background: #10b981; }
.process-dot.is-indigo { background: #6366f1; }
.process-dot.is-blue { background: #0ea5e9; }
.process-dot.is-orange { background: #f59e0b; }
.process-dot.is-violet { background: #a855f7; }

.process-card h3 {
  font-size: 1.05rem;
  line-height: 1.32;
  margin-bottom: 0.95rem;
  max-width: none;
  width: 100%;
}

.process-card p {
  color: var(--slate-500);
  font-size: 0.98rem;
  line-height: 1.62;
  margin: 0;
  max-width: none;
  width: 100%;
}

.process-card__footer {
  margin-top: 1.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.process-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-card__meta span:first-child {
  color: #94a3b8;
}

.process-card__meta span:last-child {
  color: var(--primary);
  text-align: right;
}

.process-card__time {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  color: #16233b;
  font-size: 0.82rem;
  font-weight: 900;
}

.process-card__time-icon {
  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1;
}

.process-card__tag {
  min-height: 1.75rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  border: 1px solid transparent;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-card__tag.is-green {
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.16);
}

.process-card__tag.is-indigo {
  color: #4338ca;
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.16);
}

.process-card__tag.is-blue {
  color: #0369a1;
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.16);
}

.process-card__tag.is-orange {
  color: #d97706;
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.16);
}

.process-card__tag.is-violet {
  color: #7c3aed;
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.16);
}

.process-simulator {
  margin-top: 2.8rem;
  padding: 2.8rem 2.6rem;
  border-radius: 2.75rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(180deg, #fbfdff 0%, #f8fafc 100%);
  box-shadow: 0 20px 50px -38px rgba(15, 23, 42, 0.2);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 19.5rem;
  gap: 2.2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.process-simulator::after {
  content: "◷";
  position: absolute;
  top: 0.2rem;
  right: 2.4rem;
  font-size: 10rem;
  line-height: 1;
  color: rgba(226, 232, 240, 0.45);
  pointer-events: none;
}

.process-simulator__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(237, 102, 0, 0.25);
  background: rgba(237, 102, 0, 0.04);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.process-simulator__pill-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(237, 102, 0, 0.35);
  animation: simulator-pulse 1.8s ease-in-out infinite;
}

.process-simulator__intro h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.process-simulator__intro > p {
  max-width: 48rem;
  color: var(--slate-500);
  font-size: 1.07rem;
  line-height: 1.62;
  margin: 0 0 1.5rem;
}

.process-simulator__map {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1.6rem;
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: 0 16px 36px -32px rgba(15, 23, 42, 0.18);
  max-width: 42rem;
}

.process-simulator__map-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.process-simulator__stage {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-simulator__eta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.6rem;
  padding: 0.28rem 0.75rem;
  border-radius: 0.65rem;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 800;
}

.process-simulator__map h4 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 0 0.55rem;
}

.process-simulator__map p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.48;
  font-weight: 700;
}

.process-simulator__panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1.9rem;
  padding: 1.9rem 1.6rem 1.55rem;
  box-shadow: 0 18px 42px -34px rgba(15, 23, 42, 0.22);
  align-self: center;
}

.process-simulator__panel-head,
.process-simulator__panel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.process-simulator__panel-head {
  margin-bottom: 1rem;
}

.process-simulator__panel-head span,
.process-simulator__panel-meta span:first-child {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-simulator__panel-head strong {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-simulator__progress {
  height: 0.6rem;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-bottom: 1.45rem;
}

.process-simulator__progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary) 0%, #ff9c47 100%);
  transition: width 0.35s ease;
}

.process-simulator__panel-meta {
  margin-bottom: 1.45rem;
}

.process-simulator__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: 0.8rem;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #16233b;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-simulator__button {
  width: 100%;
  min-height: 3.35rem;
  border-radius: 1.1rem;
  background: #1f2c42;
  border: 0;
  box-shadow: 0 14px 28px -18px rgba(15, 23, 42, 0.5);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
}

.process-simulator__button::before {
  content: "✣";
  margin-right: 0.65rem;
}

@keyframes simulator-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237, 102, 0, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(237, 102, 0, 0); }
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-simulator {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    align-items: stretch;
  }

  .process-simulator__panel {
    max-width: 26rem;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
  }

  .process-simulator {
    padding: 1.7rem 1.15rem;
    border-radius: 2rem;
  }

  .process-simulator::after {
    display: none;
  }

  .process-simulator__intro h3 {
    font-size: 1.65rem;
  }

  .process-simulator__intro > p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .process-simulator__map {
    padding: 1rem;
    border-radius: 1.2rem;
  }

  .process-simulator__map-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .process-simulator__map h4 {
    font-size: 0.98rem;
  }

  .process-simulator__map p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .process-simulator__panel {
    padding: 1.2rem 1rem 1rem;
    border-radius: 1.35rem;
  }

  .process-simulator__panel-head span,
  .process-simulator__panel-meta span:first-child {
    font-size: 0.64rem;
  }

  .process-simulator__button {
    min-height: 3rem;
    font-size: 0.76rem;
  }
}

.coverage-panel {
  display: grid;
  gap: 2rem;
}

.coverage-list {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 2rem;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
  padding: 1.6rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.coverage-card {
  appearance: none;
  width: 100%;
  min-height: 3.6rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.coverage-card:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 102, 0, 0.28);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.coverage-card.is-active {
  border-color: rgba(237, 102, 0, 0.4);
  background: rgba(255, 247, 240, 0.96);
  box-shadow: 0 14px 30px rgba(237, 102, 0, 0.1);
}

.coverage-card__pin {
  color: var(--primary);
  font-size: 1rem;
  line-height: 1;
}

.coverage-card__city {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--secondary);
}

.coverage-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 19rem) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.coverage-map-frame,
.coverage-map-frame {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 2rem;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.coverage-map-copy {
  padding: 1.1rem 1.1rem 0;
}

.coverage-map-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.coverage-map-desc {
  margin: 0;
  color: var(--slate-500);
  line-height: 1.7;
}

.coverage-map-frame {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.coverage-map {
  flex: 1 1 auto;
  min-height: 520px;
  border-radius: 0 0 2rem 2rem;
  overflow: hidden;
}

.coverage-map .leaflet-popup-content-wrapper {
  border-radius: 1rem;
}

.coverage-map .leaflet-popup-content {
  margin: 0.85rem 1rem;
  color: var(--secondary);
  font-family: inherit;
}

.coverage-map .leaflet-control-attribution {
  font-size: 0.65rem;
}

.portfolio-section {
  padding-top: 5.5rem;
}

.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 4rem;
}

.portfolio-heading {
  max-width: 48rem;
}

.portfolio-heading h2 {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.portfolio-heading h2 span {
  color: var(--primary);
}

.portfolio-quote {
  max-width: 22rem;
  margin: 0 0 0.45rem auto;
  color: #64748b;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.55;
  text-align: right;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.portfolio-card {
  position: relative;
  min-height: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 2.25rem;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.portfolio-card--offset {
  margin-top: 3rem;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.16);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card__content {
  display: none;
}

.cta-section {
  padding: 0.5rem 0 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), #ff862d);
  color: var(--white);
  border-radius: 2.5rem;
  padding: 2.6rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 36px 80px -42px rgba(237, 102, 0, 0.55);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-badges {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cta-badges li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonials-heading {
  max-width: 52rem;
}

.testimonials-heading .eyebrow {
  margin-bottom: 0.9rem;
}

.testimonials-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0;
}

.testimonials-mark {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.2rem;
  background: rgba(237, 102, 0, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex: 0 0 auto;
}

.testimonials-carousel {
  max-width: 50rem;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 2.8rem;
  padding: 3rem 3.2rem 2.5rem;
  position: relative;
  min-height: 24rem;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-slide.is-active {
  display: flex;
}

.testimonial-slide:hover {
  background: #fff;
  box-shadow: 0 26px 56px -40px rgba(15, 23, 42, 0.22);
}

.testimonial-slide__quote {
  position: absolute;
  top: 1.3rem;
  right: 2.1rem;
  font-size: 6.4rem;
  line-height: 1;
  color: rgba(237, 102, 0, 0.07);
  font-weight: 900;
  pointer-events: none;
}

.testimonial-slide__rating {
  color: var(--primary);
  font-size: 0.92rem;
  letter-spacing: 0.42rem;
  margin-bottom: 1.65rem;
}

.testimonial-slide > p {
  color: #475569;
  font-size: 1.42rem;
  line-height: 1.55;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 2.35rem;
  position: relative;
  z-index: 1;
}

.testimonial-slide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(203, 213, 225, 0.7);
}

.testimonial-slide__avatar {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.testimonial-slide__person {
  margin-right: auto;
}

.testimonial-slide__person strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.2;
}

.testimonial-slide__person span {
  display: block;
  margin-top: 0.2rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-slide__controls,
.testimonial-mobile-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-nav {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  color: #1f2c42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.testimonial-nav:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.testimonial-mobile-controls {
  justify-content: center;
  margin-top: 1.2rem;
  display: none;
}

.testimonial-counter {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 800;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.7rem;
}

.testimonial-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #e2e8f0;
  transition: width 0.24s ease, background-color 0.24s ease;
}

.testimonial-dot.is-active {
  width: 2rem;
  background: var(--primary);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.faq-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.8rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.faq-item:hover .faq-question__text {
  color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.45rem 1.7rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  font-size: 1.03rem;
}

.faq-question__text {
  color: var(--secondary);
  transition: color 220ms ease;
}

.faq-answer {
  display: none;
  padding: 0 1.7rem 1.35rem;
  color: var(--slate-500);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open {
  border-color: rgba(237, 102, 0, 0.42);
  box-shadow: 0 18px 36px rgba(237, 102, 0, 0.1);
}

.faq-item.is-open .faq-question__text {
  color: var(--primary);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: #fff;
  background: var(--primary);
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.95);
  color: var(--secondary);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s ease, background-color 220ms ease, color 220ms ease;
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel {
  background: var(--secondary);
  color: var(--white);
  border-radius: 2.5rem;
  padding: 3rem 2.6rem;
  box-shadow: 0 40px 90px -46px rgba(15, 23, 42, 0.45);
  position: relative;
  overflow: hidden;
}

.contact-panel::before,
.contact-panel::after {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgba(237, 102, 0, 0.08);
  filter: blur(24px);
  pointer-events: none;
}

.contact-panel::before {
  top: -5rem;
  right: -5rem;
}

.contact-panel::after {
  left: -5rem;
  bottom: -5rem;
}

.contact-panel h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-panel h2 span {
  color: var(--primary);
  font-style: italic;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-stack {
  margin-top: 3rem;
  display: grid;
  gap: 1.35rem;
}

.contact-card {
  margin-top: 0;
  padding: 1.3rem 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  border-radius: 1.5rem;
}

.contact-card strong {
  color: var(--white);
}

.contact-card p,
.contact-card a {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.form-panel {
  background: #fff;
  padding: 2.8rem;
  border-radius: 2.5rem;
  box-shadow: 0 40px 90px -50px rgba(15, 23, 42, 0.18);
}

.flash {
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.flash-success {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #abefc6;
}

.flash-warning {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.flash-error {
  background: #fef2f2;
  color: #b42318;
  border: 1px solid #fecaca;
}

.quote-form {
  display: grid;
  gap: 1.4rem;
}

.form-intro {
  margin-bottom: 0.2rem;
}

.form-title {
  display: inline-block;
  color: var(--secondary);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.method-block {
  display: grid;
  gap: 0.9rem;
}

.method-label {
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-400);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.method-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.method-option__ui {
  min-height: 4rem;
  border: 2px solid transparent;
  border-radius: 1.25rem;
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 1.15rem;
  color: var(--slate-500);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.method-option__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.method-option-whatsapp .method-option__dot {
  background: #10b981;
}

.method-option-email .method-option__dot {
  background: var(--primary);
}

.method-option input:checked + .method-option__ui {
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.method-option-whatsapp input:checked + .method-option__ui {
  background: rgba(16, 185, 129, 0.08);
  border-color: #10b981;
  color: #047857;
}

.method-option-email input:checked + .method-option__ui {
  background: rgba(237, 102, 0, 0.06);
  border-color: var(--primary);
  color: var(--primary);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-400);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 1.25rem;
  background: var(--slate-50);
  padding: 1.15rem 1.25rem;
  color: var(--secondary);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(241, 245, 249, 0.95);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(237, 102, 0, 0.3);
  box-shadow: 0 0 0 4px rgba(237, 102, 0, 0.12);
}

.form-note {
  text-align: center;
  color: var(--slate-400);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0.3rem 0 0;
}

.quote-form .form-note:first-of-type {
  font-size: 0.62rem;
}

.form-note-strong {
  font-size: 0.7rem;
  margin-top: 0;
}

.site-footer {
  padding: 4.5rem 0 6rem;
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  margin-top: 0;
}

.footer-shell {
  display: grid;
  gap: 2.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--slate-50);
}

.footer-brand-block {
  display: grid;
  gap: 1.4rem;
  justify-items: start;
}

.brand-footer {
  margin-bottom: 0;
}

.site-footer .brand {
  color: var(--secondary);
}

.site-footer .brand-logo {
  width: 44px;
  height: 44px;
}

.footer-brand-block p {
  max-width: 34rem;
  margin: 0;
  color: var(--slate-400);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--slate-50);
  color: var(--slate-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.footer-social a svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-column h5 {
  margin: 0 0 1.2rem;
  color: var(--secondary);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.footer-column li,
.footer-column a {
  color: var(--slate-400);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 220ms ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy {
  color: #cbd5e1;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--slate-100);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.footer-badge__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.8rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.footer-badge__copy div:first-child {
  color: var(--secondary);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer-badge__copy div:last-child {
  margin-top: 0.2rem;
  color: var(--slate-400);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-legal button {
  border: 0;
  background: transparent;
  color: var(--slate-400);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: color 220ms ease;
}

.footer-legal button:hover {
  color: var(--primary);
}

body.legal-modal-open {
  overflow: hidden;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(6px);
}

.legal-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 42rem;
  max-height: 80vh;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 3.25rem;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 2.8rem;
  border-bottom: 1px solid var(--slate-50);
}

.legal-modal__header h3 {
  margin: 0;
  color: var(--secondary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.legal-modal__close {
  border: 0;
  background: transparent;
  color: var(--secondary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  transition: background-color 220ms ease, color 220ms ease;
}

.legal-modal__close:hover {
  background: var(--slate-50);
  color: var(--primary);
}

.legal-modal__body {
  padding: 2rem 2.8rem;
  overflow-y: auto;
  color: #7186ad;
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.75;
}

.legal-modal__body p {
  margin: 0 0 1.6rem;
}

.legal-modal__footer {
  padding: 1.8rem 2.8rem 2.4rem;
  background: var(--slate-50);
  text-align: center;
}

.legal-modal__confirm {
  min-width: 15rem;
  min-height: 3.4rem;
  border: 0;
  border-radius: 1.1rem;
  background: var(--secondary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
  transition: background-color 220ms ease, transform 220ms ease;
}

.legal-modal__confirm:hover {
  background: var(--primary);
}

.legal-modal__confirm:active {
  transform: scale(0.98);
}

.cookie-consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 130;
  display: none;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-consent-banner.is-visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent-banner__panel {
  width: min(100%, 80rem);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--slate-100);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
  border-radius: 2rem;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-consent-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.cookie-consent-banner__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(237, 102, 0, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.cookie-consent-banner__copy h3 {
  margin: 0 0 0.35rem;
  color: var(--secondary);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cookie-consent-banner__copy p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.94rem;
  line-height: 1.6;
}

.cookie-consent-banner__status {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--slate-400);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.cookie-consent-banner__shield {
  color: #10b981;
}

.cookie-consent-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.cookie-consent-banner__button {
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border-radius: 1rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.cookie-consent-banner__button:active {
  transform: scale(0.98);
}

.cookie-consent-banner__button--secondary {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
}

.cookie-consent-banner__button--secondary:hover {
  background: #f1f5f9;
  color: var(--secondary);
}

.cookie-consent-banner__button--primary {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(237, 102, 0, 0.2);
}

.cookie-consent-banner__button--primary:hover {
  background: #d85d00;
}

.whatsapp-floating-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 18px 42px rgba(34, 197, 94, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-floating-button:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 22px 48px rgba(34, 197, 94, 0.38);
}

.whatsapp-floating-button__icon {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-floating-button__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-floating-button__label {
  position: absolute;
  right: calc(100% + 0.85rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 0.6rem 0.85rem;
  border-radius: 0.9rem;
  background: var(--secondary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.whatsapp-floating-button:hover .whatsapp-floating-button__label {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

@media (max-width: 1024px) {
  .services-grid,
  .testimonials-grid,
  .process-grid,
  .portfolio-grid,
  .stats-grid,
  .contact-grid,
  .split-layout,
  .footer-grid,
  .coverage-grid,
  .service-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }

  .portfolio-quote {
    max-width: 36rem;
    margin: 0;
    text-align: left;
  }

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

  .coverage-map-shell {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent-banner__panel {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-banner__actions {
    width: 100%;
  }

  .hero-content {
    margin-left: 4rem;
  }
}

@media (max-width: 768px) {
  .site-header.menu-open-mobile {
    background: rgba(255, 255, 255, 0.995);
    border-bottom-color: transparent;
    box-shadow: none;
    min-height: 100vh;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    font-size: 2.1rem;
    line-height: 1;
    color: var(--secondary);
    z-index: 1201;
  }

  .main-nav {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.995);
    padding: 5.8rem 1.75rem 2rem;
    border-top: 4px solid var(--primary);
    z-index: 1200;
    overflow-y: auto;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .main-nav a:not(.button) {
    color: var(--secondary);
    padding-bottom: 0;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav.is-open::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.995);
    z-index: -1;
  }

  .main-nav--enhanced {
    justify-content: flex-start;
  }

  .nav-links {
    width: 100%;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
  }

  .nav-links a {
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
  }

  .main-nav a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    min-height: 4.6rem;
    justify-content: center;
    font-size: 0.98rem;
    border-radius: 1.2rem;
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.22);
  }

  .nav-actions {
    width: 100%;
    max-width: 21.5rem;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: 1rem;
  }

  .lang-switch {
    align-self: center;
    min-width: 14rem;
    justify-content: space-between;
    padding: 0.32rem;
  }

  .lang-switch__button {
    min-width: 6.3rem;
    min-height: 2.5rem;
    font-size: 0.84rem;
  }

  .stats-grid,
  .services-grid,
  .testimonials-grid,
  .process-grid,
  .portfolio-grid,
  .contact-grid,
  .split-layout,
  .footer-grid,
  .field-grid,
  .coverage-grid,
  .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-left: 0;
    padding: calc(var(--header-height) + 3.2rem) 1.6rem 4rem;
  }

  .portfolio-section {
    padding-top: 3.5rem;
  }

  .portfolio-heading h2 {
    font-size: clamp(2.35rem, 9vw, 3.5rem);
  }

  .portfolio-card,
  .portfolio-card--offset {
    min-height: 320px;
    height: 320px;
    margin-top: 0;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .coverage-map-copy {
    padding: 1.3rem;
  }

  .coverage-map {
    min-height: 340px;
  }

  .footer-main {
    gap: 2.2rem;
  }

  .footer-brand-block {
    align-items: center;
    justify-items: center;
    justify-self: center;
    text-align: center;
  }

  .footer-brand-block .brand {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand-block p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-copy {
    align-items: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .cookie-consent-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-consent-banner__content {
    flex-direction: column;
  }

  .cookie-consent-banner__actions {
    flex-direction: column;
  }

  .hero-copy {
    max-width: 100%;
  }

  .contact-panel,
  .form-panel,
  .cta-box,
  .service-card,
  .service-proof-card__body {
    padding: 1.5rem;
  }

  .contact-panel h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .stats-section,
  .about-section,
  .services-section,
  .process-section,
  .coverage-section,
  .portfolio-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 3.5rem 0;
  }

  .consent-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-badges {
    width: 100%;
    gap: 0.55rem;
  }

  .cta-badges li {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .testimonials-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .testimonials-mark {
    display: none;
  }

  .testimonial-slide {
    padding: 1.8rem 1.35rem;
    border-radius: 2rem;
    min-height: auto;
  }

  .testimonial-slide > p {
    font-size: 1.06rem;
    line-height: 1.6;
  }

  .testimonial-slide__controls {
    display: none;
  }

  .testimonial-mobile-controls {
    display: flex;
  }

  .testimonial-slide__footer {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .site-header.menu-open-mobile {
    min-height: 100vh !important;
  }

  .site-header.menu-open-mobile #mainNav {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    min-height: 100vh !important;
    height: 100vh !important;
    max-height: 100vh !important;
    padding: 5.8rem 1.75rem 2rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}
