﻿:root {
  --bg-900: #03060c;
  --bg-850: #060b14;
  --bg-800: #091220;
  --panel: rgba(10, 20, 33, 0.7);
  --panel-strong: rgba(11, 24, 39, 0.92);
  --text-100: #f5fbff;
  --text-300: #b5c9d8;
  --accent-400: #49e8f5;
  --accent-500: #19d6e8;
  --accent-600: #00b9cd;
  --line: rgba(73, 232, 245, 0.25);
  --line-soft: rgba(73, 232, 245, 0.12);
  --ok: #6fffb2;
  --danger: #ff9ea3;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 0 40px rgba(25, 214, 232, 0.17);
  --container: min(1120px, calc(100% - 3rem));
  --header-height: 82px;
  --hero-vh: 100vh;
  --tap-size: 48px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-100);
  background: linear-gradient(180deg, var(--bg-850) 0%, var(--bg-900) 62%, #02050a 100%);
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 720px;
  height: 720px;
  top: -280px;
  left: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 214, 232, 0.18) 0%, rgba(5, 16, 27, 0) 68%);
  filter: blur(20px);
}

body::after {
  width: 600px;
  height: 600px;
  bottom: -260px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 232, 245, 0.11) 0%, rgba(5, 16, 27, 0) 72%);
  filter: blur(28px);
}

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

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

p {
  margin: 0;
  color: var(--text-300);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.015em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 6.4rem);
}

.section-top-line {
  border-top: 1px solid var(--line-soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-400);
  margin-bottom: 0.85rem;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent-500);
}

.section-title {
  font-size: clamp(1.6rem, 4.4vw, 2.75rem);
  margin-bottom: 0.95rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2.3vw, 1.12rem);
  max-width: 58ch;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 0.9rem;
  top: 0.9rem;
  background: var(--accent-500);
  color: #001b22;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 999;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  background: linear-gradient(180deg, rgba(3, 6, 12, 0.94) 0%, rgba(3, 6, 12, 0.68) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(73, 232, 245, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(118px, 14vw, 170px);
  min-height: 0;
  line-height: 0;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

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

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: #dbe9f5;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.38rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent 0%, var(--accent-500) 28%, var(--accent-500) 72%, transparent 100%);
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: #f5fdff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(8, 18, 29, 0.9);
  color: #eaf8ff;
  display: none;
  place-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition);
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: rotate(90deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  opacity: 0;
}

.page-main {
  padding-top: var(--header-height);
  overflow-x: clip;
}

.hero {
  min-height: calc(var(--hero-vh) - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 560px;
  height: 560px;
  right: -180px;
  top: -120px;
  background: radial-gradient(circle, rgba(73, 232, 245, 0.22) 0%, rgba(3, 7, 13, 0) 72%);
  filter: blur(20px);
}

.hero::after {
  width: 500px;
  height: 500px;
  left: -160px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(0, 185, 205, 0.18) 0%, rgba(3, 7, 13, 0) 70%);
  filter: blur(22px);
}

.hero-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  margin: 0.6rem 0 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 54ch;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--tap-size);
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.74rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-500);
  outline-offset: 2px;
}

.btn-primary {
  color: #012128;
  background: linear-gradient(110deg, #79f5ff 0%, #29dce9 35%, #00b9cd 100%);
  box-shadow: 0 10px 26px rgba(0, 185, 205, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 185, 205, 0.3);
}

.btn-secondary {
  color: #d9f9ff;
  background: rgba(6, 16, 27, 0.75);
  border-color: var(--line);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(73, 232, 245, 0.4);
  box-shadow: var(--shadow-accent);
}

.hero-stat-panel {
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(9, 22, 37, 0.85), rgba(5, 12, 20, 0.9));
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-soft);
}

.hero-stat-panel h3 {
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #b7f6ff;
}

.metric-list {
  display: grid;
  gap: 0.9rem;
}

.metric-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.9rem;
  background: rgba(7, 16, 27, 0.85);
}

.metric-label {
  display: block;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #98b8cb;
  margin-bottom: 0.22rem;
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f1fbff;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: #9cbfd4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(73, 232, 245, 0.9) 0%, rgba(73, 232, 245, 0) 100%);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.45;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(5px);
  }
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }
}

.presentation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.info-card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(8, 17, 28, 0.72), rgba(7, 14, 24, 0.95));
  border-radius: var(--radius-md);
  padding: clamp(1rem, 2.8vw, 1.4rem);
}

.info-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

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

.service-card,
.reason-card,
.process-card,
.gallery-card,
.contact-card,
.quote-card,
.timeline-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(7, 15, 25, 0.78), rgba(5, 11, 18, 0.92));
  padding: 1.15rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.reason-card:hover,
.process-card:hover,
.gallery-card:hover,
.contact-card:hover,
.quote-card:hover,
.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(73, 232, 245, 0.36);
  box-shadow: var(--shadow-accent);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-content: center;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  color: #002b32;
  background: linear-gradient(135deg, #88f7ff 0%, #4ce9f6 35%, #00becf 100%);
}

.service-card h3,
.reason-card h3,
.process-card h3,
.gallery-card h3,
.contact-card h3,
.quote-card h3,
.timeline-card h3 {
  font-size: 1.07rem;
  margin-bottom: 0.55rem;
}

.card-note {
  margin-top: 0.7rem;
  font-size: 0.84rem;
  color: #8bb3c7;
}

.reason-grid,
.process-grid,
.timeline-grid,
.quote-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

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

.visual-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  min-height: 190px;
  isolation: isolate;
}

.visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 420ms ease;
}

.visual-item:hover img {
  transform: scale(1.05);
}

.visual-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  color: #d9f7ff;
  background: linear-gradient(180deg, rgba(3, 6, 11, 0) 0%, rgba(3, 6, 11, 0.8) 45%, rgba(3, 6, 11, 0.95) 100%);
}

.visual-item-lg {
  grid-column: span 7;
  min-height: 280px;
}

.visual-item-sm {
  grid-column: span 5;
}

.cta-strip {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4.4vw, 2.5rem);
  background: linear-gradient(115deg, rgba(8, 19, 32, 0.9) 0%, rgba(5, 13, 22, 0.95) 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.cta-strip h3 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
}

.inner-hero {
  padding-block: clamp(3rem, 8vw, 5rem) clamp(2.4rem, 5.4vw, 3.5rem);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  right: -130px;
  top: -220px;
  background: radial-gradient(circle, rgba(73, 232, 245, 0.16) 0%, rgba(3, 7, 13, 0) 72%);
  filter: blur(18px);
}

.inner-hero p {
  max-width: 62ch;
}

.list-lines {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.list-lines li {
  position: relative;
  padding-left: 1rem;
  color: #d8e9f5;
}

.list-lines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-500);
}

.quote-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: rgba(6, 15, 25, 0.88);
}

.quote-box h4 {
  color: #d4f6fb;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.8rem;
}

.quote-box p + p {
  margin-top: 0.55rem;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(73, 232, 245, 0.32) 48%, transparent 100%);
  margin-block: 1.1rem;
}

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

.gallery-card {
  padding: 0;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 0.9rem;
  background: linear-gradient(180deg, rgba(4, 7, 12, 0) 0%, rgba(3, 7, 12, 0.85) 50%, rgba(3, 7, 12, 0.95) 100%);
}

.gallery-span-6 {
  grid-column: span 6;
}

.gallery-span-4 {
  grid-column: span 4;
}

.gallery-span-8 {
  grid-column: span 8;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding-inline: 0.72rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #bceaf3;
  margin-bottom: 0.65rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.contact-card {
  padding: clamp(1.2rem, 3vw, 1.6rem);
}

.contact-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line strong {
  color: #e9f8ff;
}

.form-wrap {
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(8, 18, 30, 0.92), rgba(5, 12, 20, 0.92));
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

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

.field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #97bbce;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(73, 232, 245, 0.2);
  background: rgba(4, 11, 19, 0.92);
  color: #eff9ff;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.78rem 0.9rem;
  min-height: var(--tap-size);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(73, 232, 245, 0.52);
  box-shadow: 0 0 0 3px rgba(73, 232, 245, 0.12);
}

.form-status {
  margin-top: 0.9rem;
  font-size: 0.9rem;
}

.form-status.is-ok {
  color: var(--ok);
}

.form-status.is-error {
  color: var(--danger);
}

.whatsapp-btn {
  width: 100%;
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  margin-top: clamp(3.4rem, 8vw, 5rem);
}

.footer-wrap {
  width: var(--container);
  margin-inline: auto;
  padding-block: 1.2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  color: #97b9cd;
  font-size: 0.85rem;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  width: clamp(110px, 12vw, 150px);
  line-height: 0;
}

.footer-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 540ms ease, transform 540ms ease;
}

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

.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .hero-grid,
  .contact-grid,
  .presentation {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-block: clamp(3rem, 7vw, 5rem);
  }

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

  .reason-grid,
  .timeline-grid,
  .quote-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-item-lg,
  .visual-item-sm {
    grid-column: span 6;
  }

  .cta-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  :root {
    --container: min(1120px, calc(100% - 1.6rem));
    --header-height: 74px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    background: rgba(4, 9, 16, 0.97);
    border-bottom: 1px solid var(--line-soft);
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: var(--tap-size);
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(73, 232, 245, 0.08);
  }

  .nav.is-open {
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
  }

  .hero-scroll {
    display: none;
  }

  .visual-item-lg,
  .visual-item-sm,
  .gallery-span-8,
  .gallery-span-6,
  .gallery-span-4 {
    grid-column: span 12;
  }
}

@media (max-width: 620px) {
  .section {
    padding-block: 3.3rem;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .card-grid,
  .reason-grid,
  .process-grid,
  .timeline-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
  }
}

/* -------------------------------------------------------------------------- */
/* Home Premium Pass                                                           */
/* -------------------------------------------------------------------------- */
.home-page .section {
  padding-block: clamp(4.6rem, 8.5vw, 7.1rem);
}

.home-page .section-top-line {
  position: relative;
  border-top: 0;
}

.home-page .section-top-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 3rem));
  height: 1px;
  background: linear-gradient(90deg, rgba(73, 232, 245, 0) 0%, rgba(73, 232, 245, 0.34) 48%, rgba(73, 232, 245, 0) 100%);
}

.home-page .section-head {
  margin-bottom: clamp(2.4rem, 4.6vw, 3.4rem);
}

.home-page .reveal {
  transition: opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-page .hero {
  min-height: calc(var(--hero-vh) - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.home-page .hero::before {
  width: 760px;
  height: 760px;
  right: -250px;
  top: -240px;
  background: radial-gradient(circle, rgba(75, 236, 248, 0.2) 0%, rgba(6, 15, 25, 0) 73%);
  filter: blur(34px);
}

.home-page .hero::after {
  width: 640px;
  height: 640px;
  left: -220px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(0, 185, 205, 0.16) 0%, rgba(6, 15, 25, 0) 74%);
  filter: blur(38px);
}

.home-page .hero-premium .hero-grid {
  gap: clamp(2.2rem, 4.5vw, 4.4rem);
}

.home-page .hero-copy {
  max-width: 670px;
}

.home-page .hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.15rem;
  padding: 0.42rem 0.65rem 0.42rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(73, 232, 245, 0.22);
  background: linear-gradient(90deg, rgba(9, 24, 37, 0.85), rgba(5, 12, 20, 0.72));
}

.home-page .hero-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 999px;
  border: 1px solid rgba(73, 232, 245, 0.26);
  background: rgba(5, 11, 19, 0.76);
}

.home-page .hero-overline {
  display: block;
  font-size: 0.71rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b4e9f4;
  font-weight: 600;
}

.home-page .hero-mini {
  margin-top: 0.16rem;
  font-size: 0.78rem;
  color: #89a9bc;
}

.home-page .hero-title {
  font-size: clamp(2.1rem, 5.4vw, 4.45rem);
  margin: 0;
  max-width: 18ch;
}

.home-page .hero-subtitle {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 59ch;
  color: #c1d8e8;
}

.home-page .hero-proof-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.62rem;
}

.home-page .hero-proof-list li {
  position: relative;
  padding-left: 1.48rem;
  color: #d9edf8;
  font-size: 0.93rem;
}

.home-page .hero-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #83f5ff 0%, #25d9e9 58%, #00aabb 100%);
  box-shadow: 0 0 14px rgba(73, 232, 245, 0.45);
}

.home-page .hero-cta {
  margin-top: 1.75rem;
  gap: 0.9rem;
}

.home-page .hero-note {
  margin-top: 0.95rem;
  font-size: 0.84rem;
  color: #8ab0c4;
}

.home-page .hero-dashboard {
  border: 1px solid rgba(73, 232, 245, 0.22);
  background: linear-gradient(158deg, rgba(11, 24, 39, 0.92) 0%, rgba(5, 11, 19, 0.95) 100%);
  border-radius: 26px;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(130, 247, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.home-page .hero-dashboard::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 232, 245, 0.14) 0%, rgba(73, 232, 245, 0) 72%);
}

.home-page .hero-dashboard-head {
  position: relative;
}

.home-page .hero-dashboard-head .section-kicker {
  margin-bottom: 0.55rem;
}

.home-page .hero-dashboard-head h2 {
  font-size: clamp(1.18rem, 2.5vw, 1.5rem);
  line-height: 1.35;
}

.home-page .hero-metric-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.72rem;
}

.home-page .hero-dashboard .metric-item {
  border: 1px solid rgba(73, 232, 245, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8, 18, 30, 0.82), rgba(7, 15, 25, 0.95));
  padding: 0.84rem 0.9rem;
}

.home-page .hero-dashboard .metric-label {
  margin-bottom: 0.2rem;
  color: #88b5ca;
}

.home-page .hero-dashboard .metric-value {
  font-size: 1.01rem;
  letter-spacing: 0.01em;
}

.home-page .metric-detail {
  margin-top: 0.24rem;
  color: #98b9cb;
  font-size: 0.82rem;
  line-height: 1.5;
}

.home-page .hero-dashboard-foot {
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(73, 232, 245, 0.16);
  color: #c4dce9;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home-page .status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #57f2ff;
  box-shadow: 0 0 0 0 rgba(87, 242, 255, 0.5);
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(87, 242, 255, 0.52);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(87, 242, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(87, 242, 255, 0);
  }
}

.home-page .hero-scroll {
  bottom: clamp(1rem, 2.2vw, 1.7rem);
  gap: 0.46rem;
  letter-spacing: 0.14em;
  color: #a4c8db;
  transition: opacity 280ms ease, transform 280ms ease;
}

.home-page .hero-scroll::after {
  content: none;
}

.home-page .hero-scroll.is-hidden {
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
}

.home-page .hero-scroll-text {
  font-size: 0.71rem;
}

.home-page .hero-scroll-indicator {
  width: 22px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(121, 238, 246, 0.56);
  display: inline-flex;
  justify-content: center;
  padding-top: 6px;
}

.home-page .hero-scroll-indicator span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #8df6ff;
  animation: scrollHint 1.5s ease-in-out infinite;
}

@keyframes scrollHint {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
}

.home-page .home-services .card-grid {
  gap: 1.25rem;
}

.home-page .home-services .service-card {
  position: relative;
  border: 1px solid rgba(73, 232, 245, 0.16);
  border-radius: 18px;
  padding: 1.3rem;
  background: linear-gradient(170deg, rgba(8, 19, 31, 0.86), rgba(5, 11, 19, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.home-page .home-services .service-card::after {
  content: "";
  position: absolute;
  inset: auto 1.3rem 0.95rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(73, 232, 245, 0.45), rgba(73, 232, 245, 0));
  opacity: 0;
  transition: opacity var(--transition);
}

.home-page .home-services .service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 232, 245, 0.35);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35), 0 0 28px rgba(25, 214, 232, 0.14);
}

.home-page .home-services .service-card:hover::after {
  opacity: 1;
}

.home-page .service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.home-page .home-services .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid rgba(73, 232, 245, 0.24);
  background: linear-gradient(150deg, rgba(138, 248, 255, 0.2) 0%, rgba(39, 217, 232, 0.24) 54%, rgba(2, 32, 41, 0.42) 100%);
  color: #c8fbff;
  margin-bottom: 0;
}

.home-page .home-services .card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.home-page .service-id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(73, 232, 245, 0.22);
  padding-inline: 0.54rem;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ad6e1;
  font-weight: 600;
}

.home-page .home-services .service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}

.home-page .home-services .service-card p {
  font-size: 0.94rem;
  color: #b8cfe0;
}

.home-page .home-trust .reason-grid {
  gap: 1.15rem;
}

.home-page .home-trust .reason-card {
  border-radius: 20px;
  border: 1px solid rgba(73, 232, 245, 0.18);
  padding: 1.45rem;
  background: linear-gradient(170deg, rgba(8, 20, 33, 0.88), rgba(5, 12, 20, 0.96));
}

.home-page .reason-kicker {
  margin-bottom: 0.62rem;
  color: #8fe8f2;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 600;
}

.home-page .home-trust .reason-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.62rem;
}

.home-page .home-trust .reason-card p {
  font-size: 0.94rem;
  color: #bdd2e1;
}

.home-page .trust-strip {
  margin-top: 1.45rem;
  border: 1px solid rgba(73, 232, 245, 0.16);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(6, 15, 25, 0.82);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.home-page .trust-strip p {
  color: #d7edf9;
  font-size: 0.86rem;
  text-align: center;
}

.home-page .cta-strip-strong {
  border: 1px solid rgba(73, 232, 245, 0.2);
  border-radius: 24px;
  padding: clamp(1.5rem, 4.7vw, 2.65rem);
  background:
    radial-gradient(440px 220px at 92% 18%, rgba(61, 231, 243, 0.16) 0%, rgba(6, 14, 23, 0) 66%),
    linear-gradient(120deg, rgba(8, 20, 33, 0.96) 0%, rgba(5, 12, 20, 0.95) 62%, rgba(8, 19, 29, 0.96) 100%);
}

.home-page .cta-strip-strong h3 {
  max-width: 22ch;
  margin-bottom: 0.68rem;
}

.home-page .cta-points {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.42rem;
}

.home-page .cta-points li {
  position: relative;
  padding-left: 1.2rem;
  color: #cfe8f7;
  font-size: 0.89rem;
}

.home-page .cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5feef9;
}

.home-page .cta-actions {
  display: grid;
  gap: 0.75rem;
  justify-items: stretch;
  min-width: min(100%, 320px);
}

.home-page .btn-whatsapp {
  min-height: 50px;
}

@media (max-width: 1050px) {
  .home-page .hero {
    min-height: auto;
    padding-block: clamp(3rem, 8vw, 5rem) 2.3rem;
  }

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

  .home-page .hero-dashboard {
    max-width: 760px;
  }

  .home-page .trust-strip {
    grid-template-columns: 1fr;
  }

  .home-page .cta-strip-strong h3 {
    max-width: none;
  }
}

@media (max-width: 840px) {
  .home-page .section-top-line::before {
    width: calc(100% - 1.6rem);
  }

  .home-page .hero-brand-lockup {
    width: 100%;
    border-radius: 16px;
  }

  .home-page .hero-title {
    max-width: none;
  }

  .home-page .hero-proof-list {
    gap: 0.55rem;
  }

  .home-page .hero-scroll {
    display: none;
  }

  .home-page .home-services .card-grid {
    gap: 1rem;
  }
}

@media (max-width: 620px) {
  .home-page .section {
    padding-block: 3.8rem;
  }

  .home-page .hero-logo {
    width: 42px;
    height: 42px;
  }

  .home-page .hero-overline {
    letter-spacing: 0.12em;
  }

  .home-page .hero-mini {
    font-size: 0.74rem;
  }

  .home-page .hero-subtitle,
  .home-page .home-services .service-card p,
  .home-page .home-trust .reason-card p {
    font-size: 0.92rem;
  }

  .home-page .cta-actions {
    min-width: 100%;
  }
}

/* -------------------------------------------------------------------------- */
/* Mobile Hardening (Real Device Breakpoints)                                 */
/* -------------------------------------------------------------------------- */
/* Key goals: better touch targets, cleaner spacing, safer mobile navigation. */
@media (max-width: 1024px) {
  :root {
    --container: min(1120px, calc(100% - 2.2rem));
    --header-height: 78px;
  }

  .header-wrap {
    gap: 0.9rem;
  }

  .brand {
    width: clamp(114px, 22vw, 156px);
  }

  .section {
    padding-block: clamp(3.8rem, 6.5vw, 5.2rem);
  }

  .section-title {
    font-size: clamp(1.5rem, 4.2vw, 2.45rem);
  }

  .section-subtitle {
    max-width: 64ch;
  }

  .cta-strip {
    gap: 1.1rem;
    padding: clamp(1.35rem, 4vw, 2.1rem);
  }

  .visual-grid,
  .gallery-grid {
    gap: 0.9rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(1120px, calc(100% - 1.5rem));
    --header-height: 74px;
    --tap-size: 50px;
  }

  body::before {
    width: 540px;
    height: 540px;
    top: -240px;
    left: -220px;
    opacity: 0.72;
  }

  body::after {
    width: 480px;
    height: 480px;
    right: -180px;
    bottom: -220px;
    opacity: 0.7;
  }

  .site-header {
    backdrop-filter: blur(10px);
  }

  .header-wrap {
    min-height: var(--header-height);
  }

  .brand {
    width: clamp(108px, 34vw, 148px);
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(4, 9, 16, 0.985);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
    transition: max-height var(--transition);
  }

  .nav.is-open {
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: var(--tap-size);
    padding: 0.95rem 1.1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(73, 232, 245, 0.08);
  }

  .hero {
    padding-block: clamp(2.3rem, 8vw, 3.6rem);
  }

  .hero-grid {
    gap: 1.6rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7.2vw, 2.9rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-cta {
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-block: 3.35rem;
  }

  .section-head {
    margin-bottom: 1.8rem;
  }

  .presentation,
  .contact-grid,
  .card-grid,
  .reason-grid,
  .process-grid,
  .timeline-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .reason-card,
  .process-card,
  .timeline-card,
  .quote-card,
  .contact-card,
  .info-card,
  .form-wrap {
    padding: 1.05rem;
  }

  .visual-item,
  .gallery-card img {
    min-height: 200px;
  }

  .visual-item-lg {
    min-height: 240px;
  }

  .contact-line {
    padding: 0.78rem 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .footer-wrap {
    gap: 0.65rem;
  }

  .footer-brand {
    width: 120px;
  }
}

@media (max-width: 430px) {
  :root {
    --container: min(1120px, calc(100% - 1.2rem));
    --header-height: 72px;
  }

  .hero-title {
    font-size: clamp(1.72rem, 8.6vw, 2.28rem);
  }

  .hero-subtitle {
    font-size: 0.97rem;
  }

  .hero-proof-list li {
    font-size: 0.88rem;
    padding-left: 1.28rem;
  }

  .home-page .hero-dashboard {
    padding: 1rem;
    border-radius: 18px;
  }

  .home-page .hero-dashboard .metric-item {
    padding: 0.74rem 0.76rem;
  }

  .section-title {
    font-size: clamp(1.42rem, 7vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .cta-strip,
  .home-page .cta-strip-strong {
    padding: 1.15rem;
    border-radius: 18px;
  }

  .home-page .cta-points li {
    font-size: 0.84rem;
  }

  .field label {
    font-size: 0.76rem;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 1rem;
  }

  .gallery-card-content {
    padding: 0.72rem;
  }
}

@media (max-width: 412px) {
  .brand {
    width: 112px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-proof-list {
    gap: 0.48rem;
  }

  .home-page .hero-mini {
    font-size: 0.72rem;
  }

  .btn {
    font-size: 0.9rem;
  }

  .section {
    padding-block: 3.1rem;
  }

  .footer-wrap {
    font-size: 0.82rem;
  }
}

@media (max-width: 390px) {
  :root {
    --container: min(1120px, calc(100% - 1rem));
    --header-height: 70px;
  }

  .brand {
    width: 106px;
  }

  .header-wrap {
    gap: 0.55rem;
  }

  .hero-title {
    font-size: clamp(1.62rem, 8.8vw, 2.1rem);
  }

  .hero-subtitle {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .home-page .hero-brand-lockup {
    padding: 0.46rem 0.58rem;
    gap: 0.62rem;
  }

  .home-page .hero-logo {
    width: 38px;
    height: 38px;
  }

  .home-page .hero-overline {
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }

  .home-page .hero-dashboard-head h2 {
    font-size: 1.04rem;
  }

  .form-wrap {
    padding: 1rem;
  }

  .field textarea {
    min-height: 136px;
  }
}

@media (max-width: 360px) {
  :root {
    --header-height: 68px;
    --tap-size: 48px;
  }

  .brand {
    width: 98px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-title {
    font-size: 1.52rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .home-page .hero-note {
    font-size: 0.78rem;
  }

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

  .section-subtitle,
  .service-card p,
  .reason-card p,
  .process-card p,
  .timeline-card p,
  .contact-card p {
    font-size: 0.9rem;
  }

  .service-card,
  .reason-card,
  .process-card,
  .timeline-card,
  .quote-card,
  .contact-card,
  .info-card,
  .form-wrap,
  .home-page .hero-dashboard {
    padding: 0.92rem;
  }

  .home-page .hero-proof-list li::before {
    width: 8px;
    height: 8px;
  }

  .footer-brand {
    width: 106px;
  }
}

/* -------------------------------------------------------------------------- */
/* Mobile UX Polish v2 (360px - 430px focus)                                  */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .section-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.7rem;
  }

  .section-title {
    line-height: 1.18;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    line-height: 1.62;
  }

  .site-header {
    background: linear-gradient(180deg, rgba(3, 6, 12, 0.96) 0%, rgba(3, 6, 12, 0.82) 100%);
  }

  .nav {
    border-top: 1px solid rgba(73, 232, 245, 0.08);
  }

  .nav a {
    font-weight: 500;
  }

  .hero-dashboard,
  .cta-strip,
  .form-wrap {
    overflow: hidden;
  }

  .service-card h3,
  .reason-card h3,
  .process-card h3,
  .timeline-card h3,
  .contact-card h3,
  .quote-card h3 {
    line-height: 1.3;
  }
}

@media (max-width: 430px) {
  :root {
    --container: min(1120px, calc(100% - 1.1rem));
    --header-height: 72px;
    --tap-size: 52px;
  }

  body::before,
  body::after {
    opacity: 0.56;
    filter: blur(24px);
  }

  .header-wrap {
    gap: 0.45rem;
  }

  .brand {
    width: 108px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .nav a {
    font-size: 0.97rem;
    padding: 0.88rem 1rem;
  }

  .section {
    padding-block: 2.95rem;
  }

  .section-head {
    margin-bottom: 1.35rem;
  }

  .section-title {
    font-size: clamp(1.36rem, 6.8vw, 1.84rem);
  }

  .section-subtitle {
    font-size: 0.93rem;
  }

  .home-page .hero {
    padding-block: 2.05rem 2.45rem;
  }

  .home-page .hero-grid {
    gap: 1.1rem;
  }

  .home-page .hero-brand-lockup {
    display: grid;
    grid-template-columns: auto 1fr;
    width: 100%;
    padding: 0.45rem 0.55rem;
    gap: 0.55rem;
    border-radius: 14px;
  }

  .home-page .hero-logo {
    width: 36px;
    height: 36px;
  }

  .home-page .hero-overline {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .home-page .hero-mini {
    font-size: 0.7rem;
  }

  .home-page .hero-title {
    font-size: clamp(1.62rem, 8.2vw, 2.08rem);
    line-height: 1.18;
  }

  .home-page .hero-subtitle {
    margin-top: 0.86rem;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .home-page .hero-proof-list {
    margin-top: 1rem;
    gap: 0.42rem;
  }

  .home-page .hero-proof-list li {
    font-size: 0.85rem;
    padding-left: 1.18rem;
  }

  .home-page .hero-proof-list li::before {
    top: 0.5rem;
    width: 7px;
    height: 7px;
  }

  .home-page .hero-note {
    margin-top: 0.7rem;
    font-size: 0.76rem;
  }

  .home-page .hero-dashboard {
    padding: 0.88rem;
    border-radius: 16px;
    border-color: rgba(73, 232, 245, 0.16);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  }

  .home-page .hero-dashboard .section-kicker {
    margin-bottom: 0.35rem;
  }

  .home-page .hero-dashboard-head h2 {
    font-size: 0.98rem;
  }

  .home-page .hero-dashboard .metric-item {
    padding: 0.66rem 0.7rem;
  }

  .home-page .metric-detail {
    display: none;
  }

  .home-page .hero-dashboard-foot {
    margin-top: 0.7rem;
    padding-top: 0.65rem;
    font-size: 0.76rem;
  }

  .home-page .hero-scroll {
    display: none !important;
  }

  .card-grid,
  .reason-grid,
  .process-grid,
  .timeline-grid,
  .quote-grid,
  .presentation,
  .contact-grid,
  .home-page .home-services .card-grid {
    gap: 0.78rem;
  }

  .service-card,
  .reason-card,
  .process-card,
  .timeline-card,
  .quote-card,
  .contact-card,
  .info-card,
  .form-wrap,
  .home-page .home-trust .reason-card,
  .home-page .home-services .service-card {
    padding: 0.94rem;
    border-radius: 14px;
  }

  .service-card h3,
  .reason-card h3,
  .process-card h3,
  .timeline-card h3,
  .contact-card h3,
  .quote-card h3,
  .home-page .home-services .service-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.45rem;
  }

  .service-card p,
  .reason-card p,
  .process-card p,
  .timeline-card p,
  .contact-card p,
  .quote-card p,
  .home-page .home-services .service-card p {
    font-size: 0.89rem;
    line-height: 1.58;
  }

  .card-icon,
  .home-page .home-services .card-icon {
    width: 40px;
    height: 40px;
  }

  .home-page .home-services .card-icon svg {
    width: 20px;
    height: 20px;
  }

  .visual-item,
  .gallery-card img {
    min-height: 172px;
  }

  .visual-item-lg {
    min-height: 210px;
  }

  .gallery-card-content {
    padding: 0.68rem;
  }

  .gallery-card-content p {
    font-size: 0.84rem;
  }

  .cta-strip,
  .home-page .cta-strip-strong {
    padding: 1.02rem;
  }

  .cta-strip h3,
  .home-page .cta-strip-strong h3 {
    font-size: 1.18rem;
    line-height: 1.25;
  }

  .home-page .cta-actions {
    gap: 0.62rem;
  }

  .btn {
    min-height: 52px;
    font-size: 0.93rem;
  }

  .field label {
    font-size: 0.72rem;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    border-radius: 10px;
  }

  .field textarea {
    min-height: 128px;
  }

  .footer-wrap {
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    padding-block: 1rem 1.2rem;
  }

  .footer-wrap p {
    width: 100%;
    font-size: 0.79rem;
  }

  .footer-brand {
    width: 114px;
  }
}

@media (max-width: 390px) {
  :root {
    --container: min(1120px, calc(100% - 0.95rem));
    --header-height: 70px;
  }

  .brand {
    width: 102px;
  }

  .home-page .hero-title {
    font-size: clamp(1.54rem, 8.6vw, 1.98rem);
  }

  .home-page .hero-proof-list li:last-child,
  .home-page .hero-dashboard .metric-item:last-child {
    display: none;
  }

  .home-page .hero-dashboard {
    padding: 0.82rem;
  }

  .btn {
    font-size: 0.91rem;
  }
}

@media (max-width: 360px) {
  :root {
    --header-height: 68px;
  }

  .brand {
    width: 95px;
  }

  .home-page .hero-overline {
    letter-spacing: 0.08em;
  }

  .home-page .hero-mini {
    display: none;
  }

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

  .section-subtitle,
  .service-card p,
  .reason-card p,
  .process-card p,
  .timeline-card p,
  .contact-card p {
    font-size: 0.87rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Header Premium Pass (Desktop + Mobile)                                     */
/* -------------------------------------------------------------------------- */
.site-header {
  background: rgba(3, 7, 13, 0.66);
  border-bottom: 1px solid rgba(73, 232, 245, 0.09);
  backdrop-filter: blur(8px);
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 10, 18, 0.9);
  border-bottom-color: rgba(73, 232, 245, 0.2);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: clamp(72px, 7.3vw, 84px);
  gap: clamp(0.75rem, 1.8vw, 1.55rem);
}

.site-logo {
  width: clamp(140px, 15vw, 188px);
}

.site-logo .brand-logo {
  width: auto;
  max-width: 100%;
  max-height: clamp(34px, 3.6vw, 42px);
  object-fit: contain;
}

.site-nav {
  gap: clamp(0.95rem, 1.8vw, 1.65rem);
}

.site-nav .nav-link {
  font-size: 0.93rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #d7e8f4;
  padding-block: 0.22rem;
}

.site-nav .nav-link::after {
  bottom: -0.48rem;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible,
.site-nav .nav-link.is-active {
  color: #f2fbff;
}

.menu-toggle {
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(73, 232, 245, 0.38);
  background: rgba(8, 20, 32, 0.94);
  box-shadow: 0 0 0 3px rgba(73, 232, 245, 0.11);
}

.site-header.is-scrolled .menu-toggle {
  background: rgba(7, 17, 28, 0.95);
}

@media (min-width: 841px) {
  .site-nav {
    position: static;
    inset: auto;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .site-nav a {
    min-height: 0;
    border: 0;
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    min-height: 78px;
  }

  .site-logo {
    width: clamp(130px, 18vw, 162px);
  }

  .site-logo .brand-logo {
    max-height: 36px;
  }

  .site-nav {
    gap: 1.1rem;
  }

  .site-nav .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 72px;
    gap: 0.62rem;
  }

  .site-logo {
    width: 122px;
  }

  .site-logo .brand-logo {
    max-height: 32px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-right: -0.08rem;
  }

  .site-nav {
    inset: var(--header-height) 0 0;
    max-height: 0;
    overflow: hidden;
    padding: 0.2rem 0 0.45rem;
    border-top: 1px solid rgba(73, 232, 245, 0.11);
    border-bottom: 1px solid rgba(73, 232, 245, 0.12);
    background: linear-gradient(180deg, rgba(4, 9, 16, 0.98) 0%, rgba(4, 10, 17, 0.99) 100%);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.44);
  }

  .site-nav.is-open {
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav .nav-link {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(73, 232, 245, 0.08);
  }

  .site-nav .nav-link::after {
    bottom: 0.68rem;
    left: 1rem;
    width: calc(100% - 2rem);
  }
}

@media (max-width: 430px) {
  .header-inner {
    min-height: 70px;
    gap: 0.5rem;
  }

  .site-logo {
    width: 112px;
  }

  .site-logo .brand-logo {
    max-height: 30px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav .nav-link {
    min-height: 49px;
    font-size: 0.95rem;
    padding: 0.84rem 0.96rem;
  }
}

@media (max-width: 412px) {
  .site-logo {
    width: 108px;
  }

  .header-inner {
    gap: 0.42rem;
  }
}

@media (max-width: 390px) {
  .header-inner {
    min-height: 68px;
  }

  .site-logo {
    width: 102px;
  }

  .site-logo .brand-logo {
    max-height: 28px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav .nav-link {
    min-height: 48px;
    font-size: 0.93rem;
    padding: 0.8rem 0.9rem;
  }
}

@media (max-width: 360px) {
  .header-inner {
    min-height: 66px;
  }

  .site-logo {
    width: 96px;
  }

  .site-logo .brand-logo {
    max-height: 26px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    width: 18px;
  }

  .site-nav .nav-link {
    min-height: 46px;
    font-size: 0.9rem;
    padding: 0.78rem 0.84rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Header Brand Signature v2                                                   */
/* -------------------------------------------------------------------------- */
.site-header {
  isolation: isolate;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-header::before {
  left: 50%;
  bottom: 0;
  width: min(980px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(73, 232, 245, 0) 0%, rgba(73, 232, 245, 0.32) 52%, rgba(73, 232, 245, 0) 100%);
  opacity: 0.78;
  transition: opacity 260ms ease;
}

.site-header::after {
  width: 340px;
  height: 140px;
  top: -92px;
  left: clamp(0px, 14vw, 180px);
  background: radial-gradient(circle, rgba(73, 232, 245, 0.16) 0%, rgba(73, 232, 245, 0) 74%);
  opacity: 0.5;
  filter: blur(14px);
  transition: opacity 260ms ease;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.site-header.is-scrolled::after {
  opacity: 0.72;
}

.site-header .header-inner {
  position: relative;
  padding-inline: clamp(0.34rem, 0.9vw, 0.74rem);
}

.site-logo {
  position: relative;
  padding-right: clamp(0.38rem, 0.82vw, 0.56rem);
}

.site-logo .brand-logo {
  display: block;
  filter: drop-shadow(0 3px 12px rgba(7, 18, 30, 0.35));
  transition: filter 260ms ease, opacity 260ms ease;
}

.site-header.is-scrolled .site-logo .brand-logo {
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
}

.site-logo::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 28px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(73, 232, 245, 0) 0%, rgba(73, 232, 245, 0.26) 32%, rgba(73, 232, 245, 0.12) 70%, rgba(73, 232, 245, 0) 100%);
}

.site-nav {
  opacity: 1;
  transform: none;
  transition: max-height var(--transition), opacity 220ms ease, transform 220ms ease;
}

.menu-toggle {
  border-color: rgba(73, 232, 245, 0.24);
  background: linear-gradient(160deg, rgba(7, 18, 30, 0.94), rgba(5, 12, 21, 0.92));
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  border-radius: 999px;
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(73, 232, 245, 0.3);
}

@media (min-width: 841px) {
  .site-nav .nav-link {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.45rem 0.78rem;
    color: #d2e6f4;
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  }

  .site-nav .nav-link::after {
    bottom: -0.58rem;
    opacity: 0.78;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link:focus-visible {
    color: #f4fbff;
    background: rgba(73, 232, 245, 0.08);
    border-color: rgba(73, 232, 245, 0.18);
    box-shadow: inset 0 1px 0 rgba(174, 252, 255, 0.14);
  }

  .site-nav .nav-link.is-active {
    color: #f8fcff;
    background: rgba(73, 232, 245, 0.12);
    border-color: rgba(73, 232, 245, 0.28);
  }
}

@media (max-width: 840px) {
  .site-header::before {
    width: calc(100% - 0.9rem);
  }

  .site-header::after {
    width: 240px;
    height: 100px;
    left: 10px;
    top: -74px;
    opacity: 0.45;
  }

  .site-logo::after {
    display: none;
  }

  .site-nav {
    opacity: 0;
    transform: translateY(-8px);
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav .nav-link {
    border-radius: 11px;
    border: 1px solid transparent;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link:focus-visible,
  .site-nav .nav-link.is-active {
    background: rgba(73, 232, 245, 0.08);
    border-color: rgba(73, 232, 245, 0.2);
  }
}

@media (max-width: 430px) {
  .site-header::after {
    width: 170px;
    height: 76px;
    top: -60px;
    opacity: 0.38;
  }

  .site-header .header-inner {
    padding-inline: 0.16rem;
  }

  .menu-toggle {
    margin-right: -0.06rem;
  }
}
