:root {
  --gold: #f5c400;
  --gold-strong: #ffd21a;
  --gold-soft: #fff4bd;
  --navy: #0f172a;
  --navy-2: #111c33;
  --navy-3: #17233d;
  --blue: #2563eb;
  --blue-soft: #dbeafe;
  --green: #18a957;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --surface-glass: rgba(255, 255, 255, 0.78);
  --text: #111827;
  --muted: #5d687b;
  --line: #dfe5ee;
  --shadow-sm: 0 10px 35px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.16);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1200px;
  --header-height: 82px;
  --font-sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

[data-theme="dark"] {
  --bg: #08111f;
  --surface: #101b2d;
  --surface-2: #152238;
  --surface-glass: rgba(16, 27, 45, 0.8);
  --text: #f5f7fb;
  --muted: #a9b3c4;
  --line: #26344a;
  --gold-soft: #3f3511;
  --blue-soft: #162d5b;
  --shadow-sm: 0 10px 35px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.36);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  background: var(--navy);
  color: #fff;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.page-loader p {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.loader-sun {
  position: relative;
  width: 62px;
  height: 62px;
  animation: loader-spin 2.3s linear infinite;
}

.loader-sun::before,
.loader-sun::after,
.loader-sun span::before,
.loader-sun span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
}

.loader-sun::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.loader-sun span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.loader-sun span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.loader-sun span {
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 5px solid var(--gold);
  border-radius: 50%;
  background: var(--navy);
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.scroll-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #ffdf55);
  box-shadow: 0 0 12px rgba(245, 196, 0, 0.7);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: var(--surface-glass);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  color: var(--text);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

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

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark {
  display: block;
}

[data-theme="dark"] .site-header.is-scrolled .brand-logo-light {
  display: block;
}

[data-theme="dark"] .site-header.is-scrolled .brand-logo-dark {
  display: none;
}

.light-brand .brand-logo {
  display: block;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(245, 196, 0, 0.45);
  border-radius: 14px;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 25px rgba(245, 196, 0, 0.25);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 400;
  letter-spacing: 0.055em;
}

.site-header.is-scrolled .brand-copy strong {
  color: var(--text);
}

.brand-copy small {
  margin-top: 5px;
  color: currentColor;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  opacity: 0.75;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.83rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  content: "";
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

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

.theme-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  cursor: pointer;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.site-header.is-scrolled .theme-toggle {
  border-color: var(--line);
  background: var(--surface-2);
}

.theme-toggle svg {
  width: 19px;
  height: 19px;
}
.theme-toggle .moon-icon {
  display: none;
}
[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}
[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-phone > span:first-child {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
}

.header-phone-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-phone-copy small {
  font-size: 0.62rem;
  opacity: 0.68;
}
.header-phone-copy strong {
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--gold);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

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

.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

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

.hero-media {
  background: url("assets/images/real-rooftop-installation.webp") 62% center /
    cover no-repeat;
  transform: scale(1.03);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 15, 29, 0.97) 0%,
      rgba(7, 15, 29, 0.86) 40%,
      rgba(7, 15, 29, 0.38) 68%,
      rgba(7, 15, 29, 0.22) 100%
    ),
    linear-gradient(0deg, rgba(7, 15, 29, 0.76) 0%, transparent 45%);
}

.hero::before {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  padding-top: 106px;
  padding-bottom: 70px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: #a67f00;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.section-label.light {
  color: var(--gold);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.3rem, 6.4vw, 6.3rem);
  font-weight: 800;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c5ccda;
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 15px 35px rgba(245, 196, 0, 0.2);
}

.button-primary:hover {
  background: var(--gold-strong);
  box-shadow: 0 18px 42px rgba(245, 196, 0, 0.35);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .button-dark {
  background: var(--gold);
  color: var(--navy);
}

.button-full {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 0;
  color: #d8deea;
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  stroke-width: 2.5;
}

.glass-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.glass-card::before {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(245, 196, 0, 0.15);
  content: "";
  filter: blur(4px);
}

.hero-card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 17px;
  background: var(--gold);
  color: var(--navy);
}

.hero-card-icon svg {
  width: 30px;
  height: 30px;
}
.card-kicker {
  margin: 22px 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-card h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.3;
}
.hero-card > p:not(.card-kicker) {
  margin: 14px 0 19px;
  color: #c8cfdb;
  font-size: 0.87rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
}

.text-link svg {
  transition: transform 0.2s ease;
}
.text-link:hover svg {
  transform: translateX(4px);
}

.availability {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.availability i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38d47c;
  box-shadow: 0 0 0 6px rgba(56, 212, 124, 0.14);
}

.availability span {
  display: flex;
  flex-direction: column;
  color: #aeb8c8;
  font-size: 0.68rem;
  line-height: 1.35;
}
.availability strong {
  color: #fff;
  font-size: 0.79rem;
}

.solar-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(245, 196, 0, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.solar-orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
  content: "";
}

.solar-orbit-one {
  top: 14%;
  right: -12%;
  width: 580px;
  height: 580px;
  animation: orbit 26s linear infinite;
}
.solar-orbit-one::after {
  top: 20%;
  left: 5%;
}
.solar-orbit-two {
  right: 10%;
  bottom: -35%;
  width: 760px;
  height: 760px;
  animation: orbit 34s linear reverse infinite;
}
.solar-orbit-two::after {
  top: 8%;
  right: 24%;
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 99px;
}

.scroll-cue span::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 99px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  50% {
    transform: translate(-50%, 10px);
    opacity: 0.2;
  }
}

.trust-strip {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  min-height: 110px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 13px;
  padding: 10px 28px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  padding-left: 0;
}
.trust-grid > div:last-child {
  border-right: 0;
}
.trust-grid > div > strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
}
.trust-grid svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #b68d00;
}
.trust-grid span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}
.trust-grid span strong {
  color: var(--text);
  font-size: 0.83rem;
}

.about-section {
  overflow: hidden;
}
.section-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  filter: blur(60px);
  pointer-events: none;
}
.glow-left {
  top: 15%;
  left: -250px;
}

.about-layout {
  display: grid;
  align-items: center;
  gap: 82px;
  grid-template-columns: 0.82fr 1.18fr;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.section-title span {
  color: #b28a00;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.light-title {
  color: #fff;
}
.light-title span {
  color: var(--gold);
}

.section-intro {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
}

.about-copy > p:not(.section-label) {
  color: var(--muted);
}
.about-copy .section-intro {
  margin-top: 28px;
}
.about-copy .button {
  margin-top: 16px;
}

.about-bento {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto 255px auto;
  list-style: none;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.bento-main {
  display: grid;
  align-items: end;
  gap: 26px;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  padding: 34px;
}

.bento-number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.85;
  opacity: 0.75;
}

.mini-label {
  color: #9a7800;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.bento-card h3 {
  margin: 8px 0 7px;
  font-size: 1.35rem;
  line-height: 1.25;
}
.bento-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.bento-gold {
  padding: 28px;
  border-color: transparent;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(245, 196, 0, 0.22);
}

.bento-gold svg {
  width: 34px;
  height: 34px;
}
.bento-gold p {
  color: rgba(15, 23, 42, 0.72);
}

.bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.bento-photo:hover img {
  transform: scale(1.06);
}
.bento-photo::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(6, 12, 23, 0.82));
  content: "";
}
.bento-photo span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
}

.bento-quote {
  grid-column: 1 / -1;
  padding: 30px 34px;
  background: var(--navy);
  color: #fff;
}

.bento-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.35;
}
.bento-quote span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-section {
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.services-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 25%,
    #000 75%,
    transparent
  );
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}
.section-heading.centered {
  display: flex;
  max-width: 800px;
  margin-inline: auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.section-heading.centered > p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
}
.services-section .section-heading.centered > p:last-child {
  color: #aeb7c7;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  min-height: 370px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(245, 196, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.service-card.featured {
  border-color: rgba(245, 196, 0, 0.45);
  background: linear-gradient(
    155deg,
    rgba(245, 196, 0, 0.15),
    rgba(255, 255, 255, 0.045)
  );
}
.service-index {
  position: absolute;
  top: 24px;
  right: 25px;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-size: 2rem;
}
.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 45px;
  place-items: center;
  border-radius: 17px;
  background: rgba(245, 196, 0, 0.13);
  color: var(--gold);
}
.service-icon svg {
  width: 29px;
  height: 29px;
}
.service-card h3 {
  margin: 23px 0 12px;
  font-size: 1.22rem;
}
.service-card p {
  margin: 0;
  color: #aeb7c7;
  font-size: 0.82rem;
}
.service-card > a {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}
.service-card > a svg {
  transition: transform 0.2s ease;
}
.service-card > a:hover svg {
  transform: translateX(5px);
}
.popular-badge {
  position: absolute;
  top: 0;
  left: 24px;
  padding: 6px 11px;
  border-radius: 0 0 9px 9px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1.25fr 0.75fr;
}

.split-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
}

.product-bento {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 350px 280px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.product-large {
  grid-row: 1 / 3;
}
.product-wide {
  grid-column: 2;
}
.product-large img,
.product-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-large:hover img,
.product-wide:hover img {
  transform: scale(1.055);
}
.product-card::after {
  pointer-events: none;
}
.product-large::after,
.product-wide::after {
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgba(7, 14, 26, 0.93));
  content: "";
}

.product-overlay {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: #fff;
}
.product-overlay > span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.product-overlay h3 {
  margin: 7px 0;
  font-size: 1.55rem;
}
.product-overlay p {
  max-width: 520px;
  margin: 0;
  color: #d0d6e0;
  font-size: 0.8rem;
}
.product-overlay a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.product-spec {
  display: grid;
  align-items: center;
  gap: 25px;
  grid-template-columns: 150px 1fr;
  padding: 28px;
}
.product-spec h3 {
  margin: 7px 0 8px;
  font-size: 1.35rem;
}
.product-spec p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.dark-spec {
  background: var(--navy);
  color: #fff;
}
.dark-spec p {
  color: #aeb7c7;
}
.dark-spec .mini-label {
  color: var(--gold);
}

.spec-visual {
  position: relative;
  width: 145px;
  height: 92px;
  border-radius: 50% / 18%;
  background: linear-gradient(
    90deg,
    #8993a0,
    #f5f7fa 35%,
    #7d8794 68%,
    #d7dde5
  );
  box-shadow:
    inset 0 -12px 20px rgba(0, 0, 0, 0.18),
    0 15px 30px rgba(15, 23, 42, 0.18);
}

.spec-visual::before,
.spec-visual::after {
  position: absolute;
  top: 0;
  width: 18px;
  height: 100%;
  border-radius: 50%;
  content: "";
}
.spec-visual::before {
  left: -3px;
  background: #9aa3ae;
}
.spec-visual::after {
  right: -3px;
  background: #6f7985;
}
.spec-visual span {
  position: absolute;
  right: 20px;
  bottom: -12px;
  width: 9px;
  height: 18px;
  border-radius: 2px;
  background: #353f4d;
}
.spec-visual span:nth-child(2) {
  right: auto;
  left: 20px;
}
.spec-visual span:nth-child(3) {
  top: 12px;
  right: -15px;
  bottom: auto;
  width: 18px;
  height: 9px;
}
.spec-visual.copper {
  background: linear-gradient(
    90deg,
    #713816,
    #d88944 35%,
    #8b451f 68%,
    #d49a65
  );
}
.spec-visual.copper::before {
  background: #a7582a;
}
.spec-visual.copper::after {
  background: #623015;
}

.stats-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #111827;
  color: #fff;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.84)),
    url("assets/images/real-brand-banner.webp") center/cover;
  opacity: 0.95;
}
.stats-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
}
.stats-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}
.stats-copy > p:last-child {
  max-width: 520px;
  margin: 20px 0 0;
  color: #b9c2d0;
}
.counter-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.counter-card {
  padding: 35px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(12px);
}
.counter-card strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}
.counter-card > span {
  display: block;
  margin-top: 13px;
  color: #d2d8e2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 25px;
  margin: 75px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.process-timeline::before {
  position: absolute;
  top: 41px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
  content: "";
}
.process-item {
  position: relative;
  padding: 0 15px;
  text-align: center;
}
.process-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
  color: #a98100;
  box-shadow: var(--shadow-sm);
  transform: rotate(4deg);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.process-item:hover .process-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(0) translateY(-6px);
}
.process-icon svg {
  width: 31px;
  height: 31px;
}
.process-number {
  position: absolute;
  z-index: 3;
  top: -9px;
  left: calc(50% + 23px);
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
}
.process-item h3 {
  margin: 25px 0 8px;
  font-size: 1.08rem;
}
.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.references-section {
  padding-bottom: 0;
}

.references-card {
  display: grid;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  grid-template-columns: 1.15fr 0.85fr;
}

.references-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.references-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, var(--surface));
  content: "";
}

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

.references-copy {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 45px 48px 45px 18px;
}

.references-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.references-copy h2 span {
  color: #a77d00;
  font-family: var(--font-display);
  font-weight: 400;
}

.references-copy > p:not(.section-label) {
  margin: 22px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.reference-points {
  display: grid;
  gap: 8px;
  margin-bottom: 25px;
  grid-template-columns: repeat(3, 1fr);
}

.reference-points span {
  display: flex;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--bg);
  flex-direction: column;
  line-height: 1.35;
}

.reference-points strong {
  color: #957100;
  font-size: 0.73rem;
}

.reference-points small {
  color: var(--muted);
  font-size: 0.59rem;
}

.gallery-section {
  background: var(--navy);
  color: #fff;
}
.gallery-heading > p {
  color: #aeb7c7;
}
.gallery-grid {
  display: grid;
  gap: 15px;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: 0;
  border-radius: var(--radius);
  background: #182238;
  padding: 0;
  text-align: left;
}
.gallery-item.gallery-tall {
  grid-row: span 2;
}
.gallery-item.gallery-wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.35s ease;
}
.gallery-item .crop-detail {
  object-position: center 22%;
  transform: scale(1.32);
}
.gallery-item .crop-alt {
  object-position: 78% center;
  transform: scale(1.15);
}
.gallery-item::after {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(5, 11, 22, 0.85));
  content: "";
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}
.gallery-item:hover .crop-detail {
  transform: scale(1.4);
}
.gallery-item:hover .crop-alt {
  transform: scale(1.23);
}
.gallery-meta {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 21px;
  left: 24px;
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1.35;
}
.gallery-meta small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-meta strong {
  font-size: 0.95rem;
}
.gallery-item > i {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.34);
  color: #fff;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  backdrop-filter: blur(8px);
}
.gallery-item:hover > i {
  opacity: 1;
  transform: translateY(0);
}

.regions-layout {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 0.8fr 1.2fr;
}
.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}
.region-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}
.region-list li.active {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--text);
}
.region-list svg {
  width: 15px;
  height: 15px;
  color: #a87f00;
}
.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.map-topline {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
}
.map-topline > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-topline svg {
  width: 28px;
  height: 28px;
  color: #a77d00;
}
.map-topline span {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.map-topline strong {
  font-size: 0.86rem;
}
.map-topline small {
  color: var(--muted);
  font-size: 0.67rem;
}
.map-topline i {
  position: relative;
  padding-left: 13px;
  color: var(--green);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}
.map-topline i::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 455px;
  border: 0;
  filter: saturate(0.7) contrast(1.08);
}
[data-theme="dark"] .map-card iframe {
  filter: grayscale(0.35) invert(0.88) hue-rotate(180deg) contrast(0.9);
}

.contact-map {
  margin-top: 24px;
}

.faq-section {
  background: var(--surface-2);
}
.faq-layout {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 0.72fr 1.28fr;
}
.faq-intro {
  position: sticky;
  top: 120px;
}
.faq-intro > p:not(.section-label) {
  color: var(--muted);
}
.faq-help {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}
.faq-help > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--gold);
  color: var(--navy);
}
.faq-help div {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.faq-help small {
  color: var(--muted);
  font-size: 0.7rem;
}
.faq-help a {
  font-size: 1rem;
  font-weight: 800;
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion details {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 800;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: #a77d00;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.accordion details[open] summary span {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(180deg);
}
.accordion details p {
  margin: -3px 52px 24px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.quote-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.quote-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    radial-gradient(circle at 15% 40%, var(--blue) 0, transparent 30%),
    radial-gradient(circle at 85% 70%, var(--gold) 0, transparent 24%);
  filter: blur(70px);
}
.quote-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: 0.9fr 1.1fr;
}
.quote-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}
.quote-copy > p:not(.section-label) {
  max-width: 570px;
  margin: 25px 0;
  color: #b9c2d0;
}
.quote-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #dbe0e8;
  font-size: 0.82rem;
  font-weight: 700;
}
.quote-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.quote-copy li svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  stroke-width: 2.6;
}
.quote-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: #fff;
  color: #111827;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}
.form-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 23px;
  line-height: 1.35;
}
.form-heading span {
  color: #977300;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.form-heading strong {
  font-size: 1.5rem;
}

.capacity-fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.capacity-fieldset legend {
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 800;
}

.capacity-options {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.capacity-options label {
  cursor: pointer;
}

.capacity-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.capacity-options span {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dce2ea;
  border-radius: 12px;
  background: #f8fafc;
  flex-direction: column;
  line-height: 1.2;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.capacity-options span strong {
  font-size: 1rem;
}

.capacity-options span small {
  color: #697386;
  font-size: 0.62rem;
}

.capacity-options input:checked + span {
  border-color: #c99d00;
  background: #fff8d7;
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.16);
  transform: translateY(-2px);
}

.capacity-options input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.capacity-error {
  display: none;
  margin-top: 6px;
  color: #c52c36;
  font-size: 0.66rem;
}

.capacity-fieldset.has-error .capacity-error {
  display: block;
}

.spam-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.recaptcha-ready {
  display: none;
}

.field {
  position: relative;
  margin-bottom: 16px;
}
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.7rem;
  font-weight: 800;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #dce2ea;
  border-radius: 12px;
  background: #f8fafc;
  color: #111827;
  outline: 0;
  padding: 13px 14px;
  font-size: 0.82rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field textarea {
  min-height: 105px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: #d4aa00;
  box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.13);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9aa3af;
}
.field-error {
  display: none;
  margin-top: 5px;
  color: #c52c36;
  font-size: 0.66rem;
}
.field.has-error input,
.field.has-error textarea {
  border-color: #dc3545;
}
.field.has-error .field-error {
  display: block;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 3px 0 18px;
  color: #5b6472;
  font-size: 0.67rem;
  cursor: pointer;
}
.consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold);
}
.consent.has-error {
  color: #c52c36;
}
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 13px 0 0;
  color: #737d8c;
  font-size: 0.61rem;
}
.form-note svg {
  width: 14px;
  height: 14px;
}

.contact-section {
  padding-bottom: 70px;
}
.contact-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: 70px;
  padding: 55px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  grid-template-columns: 0.8fr 1.2fr;
}
.contact-card::before {
  position: absolute;
  top: -140px;
  left: -100px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(245, 196, 0, 0.13);
  content: "";
  filter: blur(5px);
}
.contact-heading {
  position: relative;
  z-index: 1;
}
.contact-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.contact-heading h2 span {
  color: #aa8200;
  font-family: var(--font-display);
  font-weight: 400;
}
.contact-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}
.contact-options {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.contact-options > * {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--bg);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.contact-options > a:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.contact-icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: #987500;
}
.contact-icon.whatsapp {
  background: #dff8e8;
  color: #119448;
}
[data-theme="dark"] .contact-icon.whatsapp {
  background: #153b28;
}
.contact-options > * > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.35;
}
.contact-options small {
  color: var(--muted);
  font-size: 0.64rem;
}
.contact-options strong {
  overflow: hidden;
  font-size: 0.77rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: #a17c00;
}

.site-footer {
  padding-top: 75px;
  background: #08101e;
  color: #fff;
}
.footer-grid {
  display: grid;
  gap: 55px;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
}
.light-brand .brand-copy strong {
  color: var(--gold);
}
.footer-brand > p {
  max-width: 360px;
  margin: 22px 0;
  color: #919cad;
  font-size: 0.77rem;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links h3,
.footer-cta h3 {
  margin: 0 0 12px;
  font-size: 0.85rem;
}
.footer-links a {
  color: #919cad;
  font-size: 0.73rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.footer-cta {
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}
.footer-cta p {
  margin: 0 0 18px;
  color: #919cad;
  font-size: 0.73rem;
}
.footer-cta .button {
  width: 100%;
  min-height: 48px;
  padding: 12px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9aa6b7;
  font-size: 0.66rem;
}
.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 800;
  right: 25px;
  bottom: 25px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #19b65a;
  color: #fff;
  box-shadow: 0 16px 35px rgba(20, 170, 82, 0.35);
  transition: transform 0.25s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.04);
}
.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}
.pulse-ring {
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(25, 182, 90, 0.5);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  70%,
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
.floating-label {
  position: absolute;
  right: calc(100% + 12px);
  padding: 8px 11px;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.floating-whatsapp:hover .floating-label {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top {
  position: fixed;
  z-index: 790;
  right: 32px;
  bottom: 96px;
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top svg {
  transform: rotate(-90deg);
}
.mobile-cta {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 35px;
  place-items: center;
  background: rgba(3, 8, 17, 0.94);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}
.lightbox figure {
  max-width: min(1100px, 94vw);
  margin: 0;
}
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.lightbox figcaption {
  margin-top: 13px;
  color: #d6dce6;
  font-size: 0.77rem;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  cursor: pointer;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.offer-modal {
  position: fixed;
  z-index: 2500;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 25px;
  place-items: center;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.offer-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 18, 0.78);
  backdrop-filter: blur(7px);
}
.offer-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
  text-align: center;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.3s ease;
}
.offer-modal.is-open .offer-card {
  transform: translateY(0) scale(1);
}
.offer-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 22px;
  background: var(--gold);
  color: var(--navy);
}
.offer-icon svg {
  width: 36px;
  height: 36px;
}
.offer-card .section-label {
  justify-content: center;
  margin-bottom: 10px;
}
.offer-card h2 {
  margin: 0;
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.offer-card > p:not(.section-label) {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 0.84rem;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  cursor: pointer;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text);
}
.horizontal-offer {
  display: grid;
  width: min(100%, 680px);
  align-items: center;
  gap: 30px;
  grid-template-columns: 180px 1fr;
  text-align: left;
}
.horizontal-offer .section-label {
  justify-content: flex-start;
}
.horizontal-offer > div:last-child > p:not(.section-label) {
  color: var(--muted);
}
.exit-visual {
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--gold) 0 35%,
    rgba(245, 196, 0, 0.18) 36% 58%,
    transparent 59%
  );
  color: var(--navy);
}
.exit-visual svg {
  width: 84px;
  height: 84px;
}

.toast {
  position: fixed;
  z-index: 3500;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast svg {
  color: var(--gold);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.65, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.js .reveal.reveal-delay {
  transition-delay: 0.12s;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  :root {
    --container: 1020px;
  }
  .main-nav {
    gap: 19px;
  }
  .header-phone-copy {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card {
    min-height: 340px;
  }
  .about-layout {
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: 1.25fr 0.8fr 0.8fr;
  }
  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .section {
    padding: 90px 0;
  }
  .menu-toggle {
    display: grid;
  }
  .main-nav {
    position: fixed;
    z-index: 900;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    color: var(--text);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }
  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .main-nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }
  .main-nav a:hover {
    background: var(--surface-2);
  }
  .main-nav a::after {
    display: none;
  }
  .site-header:not(.is-scrolled) .main-nav {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.96);
    color: #fff;
  }
  .hero {
    min-height: 900px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 120px;
  }
  .hero-content {
    max-width: 760px;
  }
  .hero-card {
    max-width: 500px;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 15, 29, 0.97), rgba(7, 15, 29, 0.75)),
      linear-gradient(0deg, rgba(7, 15, 29, 0.85), transparent 55%);
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    padding: 18px 0;
  }
  .trust-grid > div {
    border-bottom: 1px solid var(--line);
  }
  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }
  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    border-bottom: 0;
  }
  .trust-grid > div:nth-child(3) {
    padding-left: 0;
  }
  .about-layout,
  .regions-layout,
  .faq-layout,
  .quote-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .about-layout,
  .regions-layout,
  .faq-layout,
  .quote-layout {
    gap: 55px;
  }
  .faq-intro {
    position: static;
  }
  .split-heading {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .product-bento {
    grid-template-rows: 480px 320px auto;
  }
  .product-large {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .product-wide {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .product-spec {
    min-height: 230px;
  }
  .stats-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-timeline {
    gap: 0;
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }
  .process-timeline::before {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.gallery-wide {
    grid-column: span 1;
  }
  .gallery-item:last-child {
    grid-column: span 2;
  }
  .map-card iframe {
    height: 380px;
  }
  .contact-card {
    gap: 42px;
    padding: 42px;
  }
  .references-card {
    grid-template-columns: 1fr;
  }
  .references-media::after {
    background: linear-gradient(0deg, var(--surface), transparent 35%);
  }
  .references-copy {
    margin-top: -80px;
    padding: 30px;
  }
}

@media (max-width: 680px) {
  :root {
    --radius: 18px;
    --radius-lg: 25px;
  }
  body {
    padding-bottom: 69px;
  }
  .container {
    width: min(calc(100% - 26px), var(--container));
  }
  .section {
    padding: 74px 0;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .brand-mark svg {
    width: 23px;
    height: 23px;
  }
  .brand-copy strong {
    font-size: 1.08rem;
  }
  .brand-copy small {
    font-size: 0.5rem;
  }
  .brand-logo {
    width: 205px;
  }
  .header-phone,
  .theme-toggle {
    display: none;
  }
  .hero {
    min-height: 850px;
    align-items: flex-start;
  }
  .hero-layout {
    gap: 34px;
    padding-top: 128px;
    padding-bottom: 90px;
  }
  .hero-media {
    background-position: 64% center;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 15, 29, 0.97), rgba(7, 15, 29, 0.74)),
      linear-gradient(0deg, rgba(7, 15, 29, 0.95), transparent 60%);
  }
  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }
  .hero-lead {
    margin-top: 22px;
    font-size: 0.93rem;
    line-height: 1.7;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-trust {
    display: grid;
    gap: 7px;
  }
  .glass-card {
    padding: 25px;
  }
  .hero-card {
    display: none;
  }
  .scroll-cue {
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }
  .trust-grid > div,
  .trust-grid > div:nth-child(3) {
    min-height: 66px;
    padding: 8px 5px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid > div:last-child {
    border-bottom: 0;
  }
  .section-title {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }
  .about-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto 230px 260px auto;
  }
  .bento-main {
    grid-column: 1;
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .bento-number {
    font-size: 3.7rem;
  }
  .bento-quote {
    grid-column: 1;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 330px;
  }
  .product-bento {
    display: flex;
    flex-direction: column;
  }
  .product-large {
    min-height: 500px;
  }
  .product-wide {
    min-height: 330px;
  }
  .product-spec {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .spec-visual {
    transform: scale(0.9);
    transform-origin: left center;
  }
  .counter-grid {
    grid-template-columns: 1fr;
  }
  .counter-card {
    padding: 27px 18px;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    row-gap: 38px;
  }
  .gallery-grid {
    display: grid;
    grid-auto-rows: 280px;
    grid-template-columns: 1fr;
  }
  .gallery-item.gallery-tall {
    grid-row: span 1;
  }
  .gallery-item.gallery-wide,
  .gallery-item:last-child {
    grid-column: span 1;
  }
  .map-card iframe {
    height: 330px;
  }
  .accordion summary {
    min-height: 72px;
    font-size: 0.84rem;
  }
  .accordion details p {
    margin-right: 0;
  }
  .quote-section {
    padding: 78px 0;
  }
  .quote-form {
    padding: 24px 20px;
  }
  .references-media {
    min-height: 310px;
  }
  .references-copy {
    padding: 25px 20px 32px;
  }
  .reference-points {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 28px 20px;
  }
  .contact-options {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-cta {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 45px;
  }
  .floating-whatsapp,
  .back-to-top {
    display: none;
  }
  .mobile-cta {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 69px;
    grid-template-columns: 1.15fr 0.85fr;
    background: #fff;
    box-shadow: 0 -10px 35px rgba(15, 23, 42, 0.15);
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--navy);
    font-size: 0.74rem;
    font-weight: 800;
  }
  .mobile-cta a:first-child {
    border-top: 3px solid var(--gold);
  }
  .mobile-cta a:last-child {
    background: #08783a;
    color: #fff;
  }
  .mobile-cta svg {
    width: 22px;
    height: 22px;
  }
  .mobile-cta span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }
  .mobile-cta small {
    font-size: 0.55rem;
    font-weight: 600;
  }
  .horizontal-offer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .horizontal-offer .section-label {
    justify-content: center;
  }
  .exit-visual {
    display: none;
  }
  .offer-card {
    padding: 32px 22px;
  }
  .lightbox {
    padding: 18px;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    display: none;
  }
  .hero h1 {
    font-size: 2.72rem;
  }
  .eyebrow {
    font-size: 0.61rem;
  }
  .mobile-cta a:first-child strong {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
