:root {
  color-scheme: dark;
  --ink: #05050a;
  --black: #070707;
  --navy: #090d19;
  --navy-2: #10172b;
  --panel: rgba(13, 16, 31, 0.82);
  --panel-strong: rgba(17, 22, 42, 0.94);
  --line: rgba(129, 155, 255, 0.2);
  --line-strong: rgba(64, 214, 255, 0.34);
  --text: #f6f7ff;
  --muted: #b9bfd6;
  --soft: #dbe4ff;
  --purple: #6c3cff;
  --purple-2: #9b5cff;
  --blue: #00d4ff;
  --blue-2: #3a7cff;
  --teal: #54f0d2;
  --danger: #ff6d9a;
  --shadow: rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --container: 1180px;
  --header-height: 92px;
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(15, 20, 38, 0.96), rgba(5, 5, 10, 0.98) 38%, rgba(9, 12, 22, 0.98)),
    linear-gradient(180deg, var(--ink), var(--navy) 48%, var(--black));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(91, 74, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.06) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

::selection {
  background: rgba(0, 212, 255, 0.34);
  color: var(--text);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel-strong);
  color: var(--text);
  transform: translateY(-160%);
  transition: transform var(--ease);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(116, 137, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(5, 5, 10, 0.98), rgba(8, 9, 16, 0.96), rgba(4, 6, 12, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: auto;
  height: 88px;
  max-width: 176px;
  filter: drop-shadow(0 0 24px rgba(97, 64, 255, 0.42));
}

.brand-text {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.94rem;
  transition: color var(--ease), background var(--ease), transform var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: rgba(110, 70, 255, 0.12);
  color: var(--text);
}

.nav-link-book {
  border-color: rgba(0, 212, 255, 0.28);
  background: linear-gradient(135deg, rgba(108, 60, 255, 0.95), rgba(58, 124, 255, 0.95) 52%, rgba(0, 212, 255, 0.95));
  color: var(--text);
  box-shadow: 0 16px 34px rgba(58, 124, 255, 0.2);
}

.nav-link-book:hover,
.nav-link-book:focus-visible,
.nav-link-book.is-active {
  background: linear-gradient(135deg, var(--purple), var(--blue-2) 52%, var(--blue));
  box-shadow: 0 18px 42px rgba(0, 212, 255, 0.25);
  color: var(--text);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  font-weight: 700;
}

.dropdown-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--ease);
}

.nav-dropdown.is-open .dropdown-chevron,
.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown:focus-within .dropdown-chevron,
.mobile-dropdown[open] .dropdown-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1100;
  display: grid;
  width: max-content;
  min-width: 250px;
  gap: 0.25rem;
  padding: 0.65rem;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(17, 22, 42, 0.98), rgba(4, 6, 12, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity var(--ease), transform var(--ease);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0.7rem 0.78rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background var(--ease), color var(--ease);
}

.dropdown-link:hover,
.dropdown-link:focus-visible,
.dropdown-link.is-active {
  background: rgba(0, 212, 255, 0.1);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 14, 27, 0.86);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.menu-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.menu-open .nav-toggle-lines::before {
  opacity: 0;
}

.menu-open .nav-toggle-lines::after {
  top: 0;
  transform: rotate(90deg);
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue-2) 52%, var(--blue));
  color: var(--text);
  box-shadow: 0 18px 40px rgba(74, 103, 255, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 54px rgba(0, 212, 255, 0.26);
}

.button-secondary {
  border-color: rgba(99, 221, 255, 0.32);
  background: rgba(12, 16, 31, 0.72);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(0, 212, 255, 0.12);
}

.button-ghost {
  border-color: rgba(132, 108, 255, 0.32);
  background: rgba(92, 64, 255, 0.1);
  color: var(--soft);
}

.button-whatsapp {
  border-color: rgba(37, 211, 102, 0.42);
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #03140b;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.18);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, 0.72);
  box-shadow: 0 22px 52px rgba(37, 211, 102, 0.25);
}

.whatsapp-icon {
  width: 1.28rem;
  height: 1.28rem;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: calc(100svh - var(--header-height) - 66px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(108, 60, 255, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(5, 5, 10, 0.92), rgba(6, 8, 16, 0.84) 50%, rgba(5, 5, 10, 0.92)),
    linear-gradient(180deg, rgba(5, 5, 10, 0.18), rgba(5, 5, 10, 0.92)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::before,
.hero::after,
.page-hero::before,
.split-band::before {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 10, 0.96));
  z-index: -1;
}

.hero::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(108, 60, 255, 0.24), transparent 38%),
    linear-gradient(300deg, rgba(0, 212, 255, 0.18), transparent 42%);
  mix-blend-mode: screen;
}

.hero-content {
  width: min(100% - 2rem, 980px);
  margin: 0 auto;
  padding: 3.95rem 0 3.45rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  content: "";
}

.hero .eyebrow {
  justify-content: center;
}

.hero .eyebrow::after {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  content: "";
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: 4.35rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 720px;
  margin: 1.2rem 0 0;
  color: var(--soft);
  font-size: 1.18rem;
}

.hero h1,
.hero p {
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.85rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.proof-pill {
  min-height: 42px;
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(132, 108, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(9, 12, 24, 0.68);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-tight {
  padding: 3.6rem 0;
}

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

.section-kicker {
  margin: 0 0 0.55rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  max-width: 680px;
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.06;
}

.section-copy {
  max-width: 640px;
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.dark-card,
.service-card,
.trust-card,
.value-card,
.step-card,
.testimonial-card,
.contact-card,
.include-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 23, 43, 0.92), rgba(7, 9, 18, 0.86)),
    rgba(10, 12, 24, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -1.8rem;
}

.trust-card {
  min-height: 118px;
  padding: 1.2rem;
}

.trust-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.trust-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.split-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(112, 135, 255, 0.13);
  background:
    linear-gradient(120deg, rgba(15, 19, 36, 0.88), rgba(5, 5, 10, 0.94)),
    linear-gradient(180deg, rgba(0, 212, 255, 0.06), rgba(108, 60, 255, 0.08));
}

.split-band::before {
  inset: 0;
  background-image: linear-gradient(120deg, transparent, rgba(0, 212, 255, 0.08), transparent);
  opacity: 0.75;
}

.split-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  min-height: 440px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius);
  background: var(--navy-2);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.74);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.metric {
  padding: 1rem;
  border: 1px solid rgba(105, 87, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(5, 7, 15, 0.56);
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 1.65rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  display: flex;
  min-height: 428px;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  border-color: var(--line-strong);
  box-shadow: 0 28px 80px rgba(0, 212, 255, 0.14);
  transform: translateY(-4px);
}

.service-image {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background: var(--navy-2);
}

.service-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04) brightness(0.68);
  transition: transform 420ms ease;
}

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

.service-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 18, 0.9));
  content: "";
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.service-number {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0.45rem 0 0;
  font-size: 1.35rem;
  line-height: 1.18;
}

.service-card p {
  margin: 0.7rem 0 1.15rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.mini-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.72rem;
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 900;
  transition: background var(--ease), color var(--ease);
}

.mini-link:hover,
.mini-link:focus-visible {
  background: rgba(0, 212, 255, 0.1);
  color: var(--text);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.value-card,
.step-card,
.testimonial-card,
.include-card {
  padding: 1.3rem;
}

.value-card .index,
.step-card .index,
.include-card .index {
  display: inline-flex;
  min-width: 38px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 900;
}

.value-card h3,
.step-card h3,
.testimonial-card h3,
.include-card h3 {
  margin: 0.9rem 0 0;
  font-size: 1.12rem;
}

.value-card p,
.step-card p,
.testimonial-card p,
.include-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.testimonial-card {
  min-height: 245px;
}

.reviews-section {
  overflow: hidden;
  border-block: 1px solid rgba(112, 135, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(108, 60, 255, 0.14), transparent 38%),
    linear-gradient(225deg, rgba(0, 212, 255, 0.12), transparent 44%),
    rgba(5, 7, 15, 0.94);
}

.reviews-top {
  align-items: center;
}

.reviews-top .section-copy {
  max-width: 760px;
}

.reviews-controls {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.carousel-arrow {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(6, 9, 20, 0.84);
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
  transition: background var(--ease), border-color var(--ease), opacity var(--ease), transform var(--ease);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: rgba(0, 212, 255, 0.58);
  background: rgba(0, 212, 255, 0.12);
  transform: translateY(-2px);
}

.carousel-arrow:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.reviews-carousel {
  margin-top: 1.4rem;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-auto-columns: calc((100% - 2rem) / 3);
  grid-auto-flow: column;
  gap: 1rem;
  transition: transform 320ms ease;
  will-change: transform;
}

.review-card {
  min-height: 330px;
}

.review-rating {
  margin-top: 0.65rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-card .quote-mark {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card h3 {
  color: var(--text);
}

.testimonial-card footer {
  margin-top: 1rem;
  color: var(--soft);
  font-weight: 800;
}

.quote-section {
  border-block: 1px solid rgba(112, 135, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(108, 60, 255, 0.16), transparent 36%),
    linear-gradient(225deg, rgba(0, 212, 255, 0.12), transparent 42%),
    rgba(6, 8, 17, 0.86);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.quote-panel {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.quote-contact {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.quote-contact a,
.contact-row a {
  color: var(--blue);
  font-weight: 900;
}

.quote-form {
  padding: 1.35rem;
  contain: layout paint;
}

.quote-form-head {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.quote-form-head h3 {
  margin: 0;
  font-size: 1.32rem;
}

.quote-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quote-form-kicker {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.required-mark {
  color: var(--blue);
  font-weight: 900;
}

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

.field {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  max-width: 100%;
  border: 1px solid rgba(130, 145, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(5, 7, 15, 0.82);
  color: var(--text);
  outline: none;
  padding: 0.82rem 0.88rem;
  font-size: 1rem;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 212, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(84, 240, 210, 0.28);
  border-radius: var(--radius);
  background: rgba(84, 240, 210, 0.08);
  color: var(--soft);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(84, 240, 210, 0.36);
  background: rgba(84, 240, 210, 0.1);
}

.form-status.is-error {
  border-color: rgba(255, 91, 128, 0.42);
  background: rgba(255, 91, 128, 0.1);
  color: #ffd8e0;
}

.form-status.is-pending {
  border-color: rgba(0, 212, 255, 0.32);
  background: rgba(0, 212, 255, 0.08);
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 460px;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 10, 0.97), rgba(6, 8, 16, 0.86), rgba(8, 10, 18, 0.66)),
    linear-gradient(180deg, rgba(5, 5, 10, 0.08), rgba(5, 5, 10, 0.94)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(108, 60, 255, 0.24), transparent 40%),
    linear-gradient(280deg, rgba(0, 212, 255, 0.16), transparent 45%);
}

.page-hero-content {
  padding: 5rem 0 4rem;
}

.page-hero-shell {
  display: grid;
  padding: 5rem 0 4rem;
}

.page-hero-main {
  max-width: 780px;
}

.page-hero-shell.has-hero-form {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  grid-template-areas:
    "main form"
    "features form";
  gap: 1.25rem 2rem;
  align-items: end;
}

.page-hero-shell.has-hero-form .page-hero-main {
  grid-area: main;
}

.page-hero-shell.has-hero-form .page-hero-form-wrap {
  grid-area: form;
  align-self: center;
}

.page-hero-shell.has-hero-form .feature-strip {
  grid-area: features;
}

.page-hero-form-wrap .quote-form {
  border-color: rgba(0, 212, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(108, 60, 255, 0.16), transparent 44%),
    rgba(6, 9, 20, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 42px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(18px);
}

.page-hero-form-wrap .quote-form-head {
  margin-bottom: 0.85rem;
}

.page-hero-form-wrap .quote-form {
  padding: 1rem;
}

.page-hero-form-wrap .form-grid {
  gap: 0.64rem;
}

.page-hero-form-wrap label {
  font-size: 0.82rem;
}

.page-hero-form-wrap input,
.page-hero-form-wrap select,
.page-hero-form-wrap textarea {
  min-height: 44px;
  padding: 0.72rem 0.78rem;
}

.page-hero-form-wrap textarea {
  min-height: 76px;
}

.quote-form .button {
  width: 100%;
  margin-top: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 800;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.feature-strip span {
  padding: 0.62rem 0.8rem;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 7, 15, 0.64);
  color: var(--soft);
  font-weight: 800;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

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

.include-list {
  display: grid;
  gap: 0.72rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.include-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.include-list li::before {
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.8);
  content: "";
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.35rem;
}

.contact-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.contact-row {
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
}

.final-cta {
  overflow: hidden;
  border-block: 1px solid rgba(112, 135, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(108, 60, 255, 0.2), transparent 38%),
    linear-gradient(225deg, rgba(0, 212, 255, 0.14), transparent 45%),
    rgba(4, 6, 12, 0.94);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer {
  border-top: 1px solid rgba(112, 135, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 10, 20, 0.96), rgba(3, 4, 9, 0.98));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.9fr 0.9fr;
  gap: 2rem;
  padding: 4rem 0 2.5rem;
}

.footer-logo {
  width: 154px;
  filter: drop-shadow(0 0 18px rgba(97, 64, 255, 0.34));
}

.footer-copy {
  max-width: 340px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.footer-title {
  margin: 0 0 0.95rem;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 900;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  transition: color var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--blue);
}

.newsletter-form {
  display: grid;
  gap: 0.7rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.social-row a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 7, 15, 0.74);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid rgba(112, 135, 255, 0.13);
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 95;
  display: inline-flex;
  min-width: 58px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(84, 240, 210, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, #0bbf7d, #1fe5a0);
  color: #04110d;
  box-shadow: 0 18px 40px rgba(31, 229, 160, 0.26);
  font-weight: 1000;
}

.whatsapp-float .whatsapp-icon {
  width: 31px;
  height: 31px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .phone-link,
  .header-actions .button-primary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    gap: 0.6rem;
    overflow-y: auto;
    padding: 1rem;
    border-bottom: 1px solid rgba(112, 135, 255, 0.18);
    background:
      linear-gradient(180deg, rgba(5, 5, 10, 0.98), rgba(8, 11, 22, 0.98));
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.4);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .menu-open .mobile-nav {
    transform: translateY(0);
  }

  .mobile-nav .nav-link,
  .mobile-nav .button,
  .mobile-summary {
    justify-content: flex-start;
    width: 100%;
  }

  .mobile-dropdown {
    display: grid;
    gap: 0.5rem;
  }

  .mobile-dropdown summary {
    list-style: none;
  }

  .mobile-dropdown summary::-webkit-details-marker {
    display: none;
  }

  .mobile-summary {
    min-height: 48px;
  }

  .mobile-dropdown-panel {
    display: grid;
    gap: 0.35rem;
    padding: 0.25rem 0 0.35rem 0.8rem;
    border-left: 1px solid rgba(0, 212, 255, 0.22);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.3rem;
  }

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

  .reviews-track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }

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

  .split-layout,
  .quote-layout,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-shell.has-hero-form {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "form"
      "features";
    align-items: start;
  }

  .page-hero-shell.has-hero-form .page-hero-form-wrap {
    width: min(100%, 560px);
  }

  .quote-panel {
    position: static;
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .brand-mark {
    width: auto;
    height: 68px;
    max-width: 138px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.65rem 0 3.15rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.48rem;
    line-height: 1.03;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .proof-pill {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 4rem 0;
  }

  .section-tight {
    padding: 3rem 0;
  }

  .section-top {
    display: grid;
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .trust-grid,
  .services-grid,
  .value-grid,
  .steps-grid,
  .metrics-row,
  .include-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reviews-top {
    text-align: center;
  }

  .reviews-top .section-copy {
    margin-inline: auto;
  }

  .reviews-controls {
    justify-content: center;
  }

  .reviews-track {
    grid-auto-columns: 100%;
  }

  .image-panel,
  .image-panel img {
    min-height: 320px;
  }

  .service-card {
    min-height: 0;
  }

  .page-hero {
    min-height: 400px;
  }

  .page-hero-content,
  .page-hero-shell {
    padding: 4rem 0 3.2rem;
  }

  .quote-form {
    padding: 1rem;
  }

  .page-hero-form-wrap .quote-form {
    padding: 0.88rem;
  }

  .quote-form-head h3 {
    font-size: 1.18rem;
  }

  .page-hero-form-wrap .quote-form-head {
    gap: 0.2rem;
    margin-bottom: 0.72rem;
  }

  .page-hero-form-wrap .form-note {
    margin-top: 0.68rem;
    font-size: 0.8rem;
  }

  .form-grid {
    gap: 0.85rem;
  }

  input,
  select,
  textarea {
    min-height: 46px;
    padding: 0.78rem 0.82rem;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .page-hero h1 {
    font-size: 2.08rem;
  }

  .section-title {
    font-size: 1.72rem;
  }

  .brand-mark {
    width: auto;
    height: 60px;
    max-width: 124px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
