/* =========================================================
   ELÉTRICA ESTELAR · design system
   ========================================================= */

:root {
  /* Paleta oficial: degradê dourado da marca */
  --gold-1: #D2AC6A;
  --gold-2: #E5C785;
  --gold-3: #B98E4A;
  --gold-soft: rgba(229, 199, 133, 0.14);
  --gold-line: rgba(210, 172, 106, 0.30);

  /* Neutros */
  --ink: #0A0A0B;
  --ink-2: #18181B;
  --ink-3: #2A2A2F;
  --bone: #FAF8F3;
  --bone-2: #F2EDE2;
  --line: #ECE7DC;
  --muted: #6B6A66;
  --muted-2: #8E8C85;
  --white: #FFFFFF;

  --wa: #25D366;
  --wa-deep: #1FB257;

  /* Tipografia */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sombra editorial */
  --shadow-card: 0 1px 2px rgba(20, 16, 8, 0.04), 0 14px 38px rgba(20, 16, 8, 0.06);
  --shadow-soft: 0 6px 24px rgba(20, 16, 8, 0.08);

  /* Transições */
  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);

  --max: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 3px;
  border-radius: 6px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--ink);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 200;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(120deg, rgba(10, 10, 11, 0.88), rgba(30, 30, 34, 0.88) 60%, rgba(10, 10, 11, 0.88));
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s var(--easing);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 46px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-desktop a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.2s var(--easing);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  transition: right 0.3s var(--easing);
}

.nav-desktop a:hover {
  color: #FFFEFB;
}

.nav-desktop a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing), background 0.2s var(--easing);
}

.wa-pill:hover {
  background: var(--wa-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s var(--easing);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  width: 20px;
  height: 1.8px;
  background: #FFFEFB;
  border-radius: 2px;
  transition: transform 0.25s var(--easing), opacity 0.25s var(--easing);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 24px 16px;
  background:
    linear-gradient(120deg, rgba(10, 10, 11, 0.92), rgba(30, 30, 34, 0.92) 60%, rgba(10, 10, 11, 0.92));
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
}
.nav-mobile[hidden] {
  display: none;
}
.nav-mobile a {
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: -0.01em;
}
.nav-mobile a:last-child {
  border-bottom: 0;
}
.nav-mobile a:hover {
  color: var(--gold-2);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: clamp(620px, 90vh, 880px);
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.42) 0%, rgba(10, 10, 11, 0.62) 60%, rgba(10, 10, 11, 0.82) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(229, 199, 133, 0.16), transparent 55%);
}

.hero-glow {
  position: absolute;
  left: -10%;
  bottom: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(210, 172, 106, 0.18), transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 9.8vh, 91px) 24px clamp(60px, 10vh, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 199, 133, 0.32);
  background: rgba(229, 199, 133, 0.06);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 10px rgba(229, 199, 133, 0.7);
}

.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-top: 0;
  max-width: 920px;
  font-variation-settings: "opsz" 144;
  color: #FFFEFB;
}

.hero-title-em {
  display: block;
  background: linear-gradient(120deg, var(--gold-2), var(--gold-1) 60%, var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  margin-top: 26px;
  font-size: clamp(13px, 1.28vw, 15px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  max-width: 540px;
  font-weight: 400;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing), background 0.25s var(--easing), color 0.25s var(--easing);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold-2), var(--gold-1));
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(210, 172, 106, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 16px 38px rgba(210, 172, 106, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-whatsapp {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.32);
  padding: 16px 26px;
  font-size: 15.5px;
}
.btn-whatsapp:hover {
  background: var(--wa-deep);
  transform: translateY(-1.5px);
}

.hero-meta {
  margin-top: clamp(48px, 8vh, 80px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
}

.hero-meta > div {
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}
.hero-meta > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-meta dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(229, 199, 133, 0.85);
  margin-bottom: 6px;
}

.hero-meta dd {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
}

/* =========================================================
   SEÇÕES · bases
   ========================================================= */

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
  max-width: 780px;
}

.section-sub {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}

/* =========================================================
   SERVIÇOS
   ========================================================= */

.services {
  padding: clamp(80px, 12vh, 130px) 24px clamp(80px, 12vh, 120px);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(229, 199, 133, 0.07), transparent 70%),
    var(--white);
}

.services-head {
  max-width: var(--max);
  margin: 0 auto 56px;
  text-align: left;
}

.segment-toggle {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  margin-top: 36px;
  padding: 5px;
  border-radius: 999px;
  background: var(--bone-2);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 2px rgba(20, 16, 8, 0.05);
  max-width: 100%;
}

.segment-thumb {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  width: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-2), var(--gold-1));
  box-shadow: 0 4px 14px rgba(210, 172, 106, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.45s var(--easing), width 0.45s var(--easing);
  z-index: 0;
  pointer-events: none;
}

.segment-option {
  position: relative;
  z-index: 1;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s var(--easing);
}

.segment-option.is-active {
  color: var(--ink);
}

.services-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s var(--easing), border-color 0.35s var(--easing), box-shadow 0.35s var(--easing);
  opacity: 0;
  transform: translateY(8px);
  animation: cardIn 0.5s var(--easing) forwards;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
  box-shadow: var(--shadow-card);
}

.service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bone-2);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--easing);
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 11, 0.18) 100%);
  pointer-events: none;
}

.service-body {
  padding: 22px 22px 24px;
}

.service-body h3 {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* =========================================================
   DIFERENCIAIS
   ========================================================= */

.diferenciais {
  padding: clamp(80px, 12vh, 130px) 24px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(229, 199, 133, 0.14), transparent 70%);
  pointer-events: none;
}

.diferenciais-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.diferenciais-head .section-eyebrow {
  color: var(--gold-2);
}
.diferenciais-head .section-title {
  color: #FFFEFB;
}
.diferenciais-head .section-sub {
  color: rgba(255, 255, 255, 0.62);
}

.pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.pillar {
  padding: 28px 26px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s var(--easing), border-color 0.3s var(--easing);
}

.pillar:hover {
  background: rgba(229, 199, 133, 0.05);
  border-color: rgba(229, 199, 133, 0.22);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(229, 199, 133, 0.16), rgba(210, 172, 106, 0.06));
  border: 1px solid rgba(229, 199, 133, 0.20);
  color: var(--gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar h3 {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: #FFFEFB;
  margin-bottom: 8px;
}

.pillar p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */

.localizacao {
  padding: clamp(80px, 12vh, 130px) 24px;
  background: var(--bone);
}

.localizacao-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.localizacao-text .btn {
  margin-top: 28px;
}

.map-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bone-2);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.02);
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.cta {
  padding: clamp(60px, 9vh, 90px) 24px;
  background: var(--white);
}

.cta-card {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 64px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, var(--ink-2), var(--ink) 70%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(229, 199, 133, 0.22), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(229, 199, 133, 0.10), transparent 60%);
  z-index: -1;
}

.cta-eyebrow {
  color: var(--gold-2);
}

.cta-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: #FFFEFB;
  max-width: 760px;
}

.cta-sub {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
  max-width: 560px;
}

.cta-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.cta-phone {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s var(--easing);
}
.cta-phone strong {
  color: #FFFEFB;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.cta-phone:hover {
  color: var(--gold-2);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  padding: 70px 24px 30px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s var(--easing);
}
.footer-col a:hover {
  color: var(--gold-2);
}

.footer-col .muted {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer-col address {
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  transition: border-color 0.25s var(--easing), color 0.25s var(--easing), background 0.25s var(--easing);
}

.social-row a:hover {
  border-color: rgba(229, 199, 133, 0.45);
  color: var(--gold-2);
  background: rgba(229, 199, 133, 0.06);
}

.footer-bottom {
  max-width: var(--max);
  margin: 56px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-mark {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 1024px) {
  .diferenciais-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .localizacao-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 880px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header {
    background: linear-gradient(180deg, rgb(10, 10, 11) 0%, rgba(30, 30, 34, 0.86) 100%);
  }

  .nav-mobile {
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.96) 0%, rgba(30, 30, 34, 0.88) 100%);
  }

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

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

@media (max-width: 640px) {
  .header-inner {
    padding: 12px 18px;
  }

  .brand-logo {
    height: 40px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-inner {
    padding-top: clamp(67px, 11.2vh, 98px);
    padding-bottom: clamp(48px, 8vh, 80px);
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
  }

  .hero-meta > div {
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hero-meta > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .segment-option {
    padding: 11px 16px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
