﻿:root {
  --bg: #06090f;
  --bg-soft: #0b111d;
  --panel: rgba(11, 18, 31, 0.82);
  --panel-border: rgba(123, 150, 197, 0.26);
  --text: #e8edf7;
  --muted: #9aacbe;
  --primary: #3dd6ff;
  --secondary: #ff8e45;
  --ok: #52ffbc;
  --shadow: 0 20px 48px rgba(2, 8, 17, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Verdana, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 15%, rgba(61, 214, 255, 0.14), transparent 38%),
    radial-gradient(circle at 90% 72%, rgba(255, 142, 69, 0.12), transparent 36%),
    linear-gradient(180deg, #05080d 0%, #070d16 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
}

body::before {
  top: -12vw;
  left: -10vw;
  background: #0bc8ff;
  animation: driftBlob 12s ease-in-out infinite;
}

body::after {
  right: -12vw;
  bottom: -14vw;
  background: #ff8e45;
  animation: driftBlob 16s ease-in-out infinite reverse;
}

h1,
h2,
h3,
.brand span,
.eyebrow,
.btn {
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, Arial, sans-serif;
}

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

picture {
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: #8ee9ff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}

.shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  min-height: 100vh;
  position: relative;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 12, 22, 0.86), rgba(8, 11, 18, 0.4));
  pointer-events: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1rem 0;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(6, 10, 18, 0.88);
  box-shadow: 0 14px 34px rgba(2, 8, 17, 0.55);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f4f8ff;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 12px 8px 8px;
  border-radius: 14px;
  border: 1px solid rgba(162, 197, 242, 0.28);
  background: linear-gradient(120deg, rgba(14, 26, 45, 0.9), rgba(14, 21, 36, 0.86));
  box-shadow: 0 12px 30px rgba(2, 8, 17, 0.4);
}

.brand span {
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  background: linear-gradient(120deg, #dff8ff 0%, #3dd6ff 40%, #ffb07b 70%, #e3f8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 250% 100%;
  animation: brandShimmer 5s linear infinite;
  text-shadow: 0 8px 20px rgba(63, 211, 255, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-sub {
  margin-top: 4px;
  font-family: "Segoe UI", Tahoma, Verdana, Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #9db2cf;
  text-shadow: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 12px 24px rgba(2, 8, 17, 0.5);
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-lang {
  display: inline-flex;
  align-items: center;
}

#langSwitcher {
  background: rgba(10, 19, 34, 0.9);
  color: #dff0ff;
  border: 1px solid rgba(126, 159, 206, 0.42);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  outline: none;
}

#langSwitcher:focus {
  border-color: rgba(88, 225, 255, 0.84);
  box-shadow: 0 0 0 2px rgba(88, 225, 255, 0.22);
}

.menu a {
  color: #d5e4ff;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu a:hover,
.menu a:focus {
  color: #04111f;
  background: linear-gradient(120deg, #3dd6ff, #5df5c4);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 10px;
  width: 40px;
  height: 40px;
}

.menu-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.06;
  text-wrap: balance;
}

.brand-mark {
  display: inline-block;
  letter-spacing: 0.05em;
  background: linear-gradient(120deg, #ffffff 5%, #56e7ff 45%, #ffaf74 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: brandShimmer 4s linear infinite;
  text-shadow: 0 8px 32px rgba(48, 184, 255, 0.28);
}

.lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero-product-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-product-pills a {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(129, 166, 214, 0.38);
  background: rgba(8, 20, 36, 0.72);
  color: #d8ebff;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.hero-product-pills a:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 220, 255, 0.8);
  background: rgba(14, 31, 53, 0.85);
  color: #ecf8ff;
}

.hero-proof {
  margin-top: 0.75rem;
  color: #c9def7;
  font-size: 0.9rem;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #03131f;
  background: linear-gradient(120deg, #31d3ff, #5bf8c5);
  box-shadow: 0 14px 34px rgba(40, 202, 255, 0.28);
}

.btn-ghost {
  color: #e4f2ff;
  background: rgba(13, 23, 40, 0.78);
  border: 1px solid var(--panel-border);
}

.hero-metrics {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics article {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 12px 14px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.3rem;
  color: #fff;
}

.hero-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  min-height: 100%;
  object-fit: cover;
  animation: floatImage 5.5s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-visual img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(2, 8, 17, 0.65);
}

.section {
  padding: 5rem 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.16;
}

.section-heading {
  margin-bottom: 1.5rem;
}

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

.panel,
.product-card,
.step {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.panel:hover,
.product-card:hover,
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(83, 219, 255, 0.55);
  box-shadow: 0 24px 46px rgba(2, 8, 17, 0.62);
}

.panel {
  padding: 1.2rem;
}

.check-list {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
}

.check-list li {
  margin-bottom: 0.5rem;
}

.image-panel {
  padding: 0;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-card {
  padding: 1.2rem;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.product-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(129, 158, 205, 0.3);
  margin-bottom: 0.9rem;
  box-shadow: 0 14px 28px rgba(2, 8, 17, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover .product-thumb {
  transform: scale(1.02);
  box-shadow: 0 20px 34px rgba(2, 8, 17, 0.58);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 214, 255, 0.52);
}

.product-card h3,
.step h3,
.panel h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.product-card p,
.step p,
.panel p {
  margin: 0;
  color: var(--muted);
}

.product-link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.page-header {
  min-height: auto;
}

.inner-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 3.4rem 0 2rem;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: #9cdfff;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.spec-card h3,
.detail-card h3 {
  margin-top: 0;
}

.spec-note {
  margin-top: 0.7rem;
  color: #cfe5ff;
  font-size: 0.82rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(138, 166, 209, 0.2);
  font-size: 0.9rem;
}

.spec-table th {
  color: #ddf2ff;
  font-weight: 700;
  background: rgba(59, 214, 255, 0.12);
}

.spec-table td {
  color: var(--muted);
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.8rem;
}

.chip-list span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--panel-border);
  background: rgba(11, 20, 34, 0.72);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d6e9ff;
  font-size: 0.82rem;
}

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

.faq-card {
  padding: 1rem;
}

.faq-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

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

.step {
  padding: 1rem;
  position: relative;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(61, 214, 255, 0.28), rgba(255, 142, 69, 0.24));
  color: #f4fbff;
  font-weight: 700;
}

.split-cta {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.split-cta img {
  border-radius: 18px;
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.split-cta img:hover {
  transform: scale(1.02);
}

.split-cta > div {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.split-cta p {
  color: var(--muted);
}

.contact .panel a {
  color: #b9ecff;
}

.contact-grid {
  align-items: stretch;
}

.contact-points {
  margin-top: 0.7rem;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(151, 179, 224, 0.22);
}

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

.contact-icon {
  width: 18px;
  margin-top: 4px;
  color: #6de5ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-item span:not(.contact-icon) {
  color: var(--muted);
}

.contact-item .contact-icon {
  color: #6de5ff;
}

.contact-item a {
  color: #d7f0ff;
}

.contact-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-form-note {
  margin-bottom: 0.9rem !important;
  color: #cde5ff !important;
}

.inquiry-panel {
  background: linear-gradient(140deg, rgba(10, 18, 31, 0.94), rgba(12, 22, 38, 0.88));
}

#formkeep-embed {
  background: #f8fbff;
  border: 1px solid rgba(132, 160, 203, 0.55);
  border-radius: 14px;
  padding: 10px;
  min-height: 520px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

#formkeep-embed:empty {
  display: none;
}

#formkeep-embed iframe {
  width: 100%;
  min-height: 500px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
}

#formkeep-embed label,
#formkeep-embed p,
#formkeep-embed span,
#formkeep-embed input,
#formkeep-embed textarea,
#formkeep-embed select,
#formkeep-embed button {
  color: #0e1a2e !important;
}

#formkeep-embed input,
#formkeep-embed textarea,
#formkeep-embed select {
  background: #ffffff !important;
  border: 1px solid #8ea8c9 !important;
}

.form-fallback {
  margin-top: 0.8rem !important;
  font-size: 0.84rem;
}

.form-fallback a {
  color: #d6eeff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.defer-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.defer-note {
  margin-top: 0.55rem !important;
  color: #aac4e1 !important;
  font-size: 0.8rem;
}

#mapContainer {
  margin-top: 0.9rem;
}

#mapContainer iframe {
  width: 100%;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  filter: saturate(0.88) contrast(1.02) brightness(0.92);
}

.map-panel {
  margin-top: 1rem;
}

.map-panel iframe {
  width: 100%;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  filter: saturate(0.88) contrast(1.02) brightness(0.92);
}

.site-footer {
  border-top: 1px solid rgba(115, 146, 193, 0.2);
  background: #05080d;
}

.footer-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: #8ea3bf;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  font-size: 0.86rem;
  color: #c7d8f3;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #052112;
  background: linear-gradient(120deg, #32dd86, #95ffcf);
  box-shadow: 0 16px 28px rgba(4, 20, 10, 0.45);
  z-index: 45;
  animation: pulseFloat 2.2s ease-in-out infinite;
}

.wa-icon {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.whatsapp-float:hover {
  color: #052112;
  filter: brightness(1.06);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes brandShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseFloat {
  0%, 100% { box-shadow: 0 0 0 0 rgba(80, 255, 180, 0.4), 0 16px 28px rgba(4, 20, 10, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(80, 255, 180, 0), 0 16px 28px rgba(4, 20, 10, 0.45); }
}

@keyframes driftBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -24px) scale(1.08); }
}

@supports (content-visibility: auto) {
  .section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 880px;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.3rem;
  }

  .hero-visual {
    order: -1;
  }

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

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

  .split-cta,
  .about-grid,
  .product-grid,
  .contact-grid,
  .content-grid,
  .inner-hero,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body::before,
  body::after {
    display: none;
  }

  .nav {
    backdrop-filter: none;
    background-color: rgba(6, 10, 18, 0.92);
  }

  .hero-visual img,
  .brand span,
  .whatsapp-float {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .shell {
    width: min(1180px, calc(100% - 1.2rem));
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    position: absolute;
    left: 0.6rem;
    right: 0.6rem;
    top: 66px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(8, 14, 24, 0.96);
    border: 1px solid var(--panel-border);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    width: 100%;
  }

  .nav-lang {
    width: 100%;
  }

  #langSwitcher {
    width: 100%;
  }

  .brand {
    padding: 6px 9px 6px 6px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    font-size: 1.02rem;
  }

  .brand-sub {
    display: none;
  }

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

@media (hover: none) {
  .btn:hover,
  .panel:hover,
  .product-card:hover,
  .step:hover,
  .split-cta img:hover {
    transform: none;
    box-shadow: var(--shadow);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

