:root {
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --bg: #070b14;
  --bg-soft: #0d1322;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.13);
  --card: rgba(255, 255, 255, 0.92);
  --text: #0e1726;
  --muted: #5f6c7b;
  --white: #ffffff;
  --red: #e30613;
  --red-dark: #b70510;
  --orange: #ff9f00;
  --amber: #ffbf3f;
  --blue: #2aa9e0;
  --green: #19b669;
  --line: rgba(15, 23, 42, 0.13);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(2, 8, 23, 0.24);
  --shadow-soft: 0 18px 60px rgba(2, 8, 23, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: light;
}
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(227, 6, 19, 0.18); }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, padding .25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.is-scrolled,
.site-header.has-bg {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(2, 8, 23, 0.08);
  border-color: rgba(15, 23, 42, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 185px;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.54);
  box-shadow: 0 12px 36px rgba(2,8,23,.16);
}
.brand img {
  width: clamp(185px, 18vw, 260px);
  height: auto;
  filter: none;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255,255,255,.08);
}
.site-header.is-scrolled .main-nav,
.site-header.has-bg .main-nav {
  border-color: rgba(15,23,42,.10);
  background: rgba(15,23,42,.04);
}
.main-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-header.is-scrolled .main-nav a,
.site-header.has-bg .main-nav a { color: #182235; }
.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255,255,255,.18);
  outline: none;
  transform: translateY(-1px);
}
.site-header.is-scrolled .main-nav a:hover,
.site-header.has-bg .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible,
.site-header.has-bg .main-nav a:focus-visible { background: rgba(227,6,19,.09); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}
.site-header.is-scrolled .lang-switch,
.site-header.has-bg .lang-switch {
  background: rgba(15,23,42,.04);
  border-color: rgba(15,23,42,.10);
}
.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: transparent;
  color: rgba(255,255,255,.9);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .03em;
  transition: all .2s ease;
}
.site-header.is-scrolled .lang-btn,
.site-header.has-bg .lang-btn { color: #152033; }
.lang-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 8px 18px rgba(227,6,19,.22);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 850;
  font-size: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 28px rgba(227, 6, 19, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(227,6,19,.34); }
.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255,255,255,.14);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.site-header.is-scrolled .menu-toggle,
.site-header.has-bg .menu-toggle { background: rgba(15,23,42,.07); color: #152033; }
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  display: block;
  transition: .22s ease;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 13px; }
.menu-toggle span::before { transform: translateY(-7px); }
.menu-toggle span::after { transform: translateY(7px); }
body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { transform: rotate(45deg); }
body.menu-open .menu-toggle span::after { transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--bg);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 159, 0, .32), transparent 24%),
    radial-gradient(circle at 30% 62%, rgba(42, 169, 224, .24), transparent 30%),
    linear-gradient(90deg, rgba(5, 10, 20, .92) 0%, rgba(5, 10, 20, .72) 42%, rgba(5, 10, 20, .20) 100%),
    linear-gradient(180deg, rgba(5, 10, 20, .45), rgba(5, 10, 20, .86));
  z-index: 1;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.02);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.orb {
  position: absolute;
  width: 280px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 62%);
  filter: blur(2px);
}
.orb.one { top: 18%; right: 10%; animation: float 8s ease-in-out infinite; }
.orb.two { bottom: 16%; right: 32%; width: 180px; animation: float 9s ease-in-out infinite reverse; }
.hero-content {
  position: relative;
  z-index: 3;
  padding: 168px 0 74px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 370px;
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .10em;
  margin: 0 0 16px;
}
.hero .eyebrow {
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 14px;
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 0 0 6px rgba(255,159,0,.13);
}
h1, h2, h3, h4 {
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 0;
}
h1 {
  max-width: 900px;
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 950;
}
h1 .gradient-text,
h2 .gradient-text {
  background: linear-gradient(135deg, #fff 0%, #ffd36a 24%, #ff7b32 55%, #e30613 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 710px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,.86);
}
.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.015em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: 0 18px 46px rgba(227, 6, 19, .30);
}
.btn-primary:hover { box-shadow: 0 24px 56px rgba(227,6,19,.38); }
.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-secondary:hover { background: rgba(255,255,255,.18); }
.btn-dark {
  background: #101827;
  color: #fff;
  box-shadow: 0 14px 36px rgba(2,8,23,.22);
}
.btn-outline {
  background: #fff;
  color: var(--text);
  border-color: rgba(15,23,42,.10);
}
.btn svg,
.header-cta svg,
.whatsapp-float svg { width: 18px; height: 18px; flex: 0 0 auto; }
.hero-panel {
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: 0 34px 100px rgba(0,0,0,.26);
}
.panel-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.panel-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 14px 32px rgba(227,6,19,.26);
}
.panel-icon svg { width: 24px; height: 24px; }
.panel-top h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
}
.energy-flow {
  display: grid;
  gap: 10px;
}
.flow-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.flow-item strong { display: block; line-height: 1.15; }
.flow-item span { color: rgba(255,255,255,.74); font-size: 13px; }
.flow-bullet {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-weight: 950;
}
.trust-row {
  position: relative;
  z-index: 4;
  width: min(var(--container), calc(100% - 40px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}
.trust-card strong {
  font-size: 15px;
  line-height: 1.2;
}
.trust-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,159,0,.16), rgba(227,6,19,.12));
  color: var(--red);
  flex: 0 0 auto;
}
.trust-icon svg { width: 21px; height: 21px; }

.section {
  padding: clamp(78px, 10vw, 124px) 0;
  position: relative;
}
.section-white { background: #fff; }
.section-dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,159,0,.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(42,169,224,.20), transparent 28%),
    linear-gradient(135deg, #07101e 0%, #101827 100%);
  color: #fff;
  overflow: hidden;
}
.section-soft {
  background:
    radial-gradient(circle at top left, rgba(255,159,0,.16), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }
.section h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 950;
}
.section-dark h2 .gradient-text { background: linear-gradient(135deg, #fff, #ffda7c 42%, #e30613); -webkit-background-clip: text; color: transparent; }
.section-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
}
.section-dark .section-lead { color: rgba(255,255,255,.74); }

.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}
.intro-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 500px;
}
.intro-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.intro-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 40px);
  border-radius: 22px;
  padding: 14px 16px;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}
.intro-badge strong { line-height: 1.15; }
.intro-badge span { display: block; color: var(--muted); font-size: 13px; }
.intro-badge .pulse {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(25,182,105,.14);
}
.feature-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}
.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 34px rgba(2,8,23,.05);
}
.feature-item .icon,
.service-icon,
.process-number,
.contact-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255,159,0,.16), rgba(227,6,19,.12));
  color: var(--red);
}
.feature-item svg,
.service-icon svg,
.contact-icon svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 20px; margin-bottom: 5px; }
.feature-item p { color: var(--muted); margin: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(227,6,19,.16);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--blue));
}
.service-card h3 { font-size: clamp(23px, 2.4vw, 30px); margin: 18px 0 10px; }
.service-card p { color: var(--muted); margin: 0 0 18px; }
.service-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #243148;
  font-weight: 700;
}
.service-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: .62em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--red));
}
.note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(42,169,224,.08);
  color: #304154;
  font-size: 13px;
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  gap: clamp(28px, 6vw, 68px);
  align-items: center;
}
.system-card {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.08);
  padding: clamp(22px, 3vw, 34px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
}
.route {
  display: grid;
  gap: 12px;
}
.route-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
}
.route-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,159,0,.22), rgba(227,6,19,.18));
  color: #fff;
}
.route-icon svg { width: 25px; height: 25px; }
.route-item strong { display: block; font-size: 17px; }
.route-item span { color: rgba(255,255,255,.72); font-size: 14px; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.benefit {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
}
.benefit strong { display: block; font-size: 18px; margin-bottom: 6px; }
.benefit p { margin: 0; color: rgba(255,255,255,.74); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: var(--radius-lg);
  background: #111827;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.gallery-card.wide { grid-column: span 2; }
.gallery-card.tall { min-height: 470px; }
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 62%;
  background: linear-gradient(180deg, transparent, rgba(3,8,18,.88));
  z-index: 1;
}
.gallery-caption {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 2;
  color: #fff;
}
.gallery-caption strong { display: block; font-size: 18px; line-height: 1.15; }
.gallery-caption span { display: block; color: rgba(255,255,255,.76); font-size: 14px; margin-top: 6px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-soft);
}
.process-number {
  font-weight: 950;
  margin-bottom: 18px;
}
.process-card h3 { font-size: 22px; margin-bottom: 10px; }
.process-card p { margin: 0; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 64px);
  align-items: start;
}
.contact-card,
.form-card {
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.contact-card { padding: 28px; }
.contact-card h3,
.form-card h3 { font-size: 28px; margin-bottom: 16px; }
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.contact-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.06);
}
.contact-row span { color: var(--muted); font-size: 13px; }
.contact-row strong { display: block; line-height: 1.2; }
.form-card { padding: clamp(22px, 4vw, 34px); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 850; font-size: 14px; color: #243148; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  background: #fff;
  padding: 13px 14px;
  color: #0f172a;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(227,6,19,.42);
  box-shadow: 0 0 0 5px rgba(227,6,19,.08);
}
.check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  font-size: 14px;
  color: var(--muted);
}
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); }
.check a { color: var(--red); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-weight: 800;
}
.form-status.ok { color: #0f8f50; }
.form-status.error { color: var(--red); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal-section { background: #0b1220; color: #fff; }
.legal-section .section-lead { color: rgba(255,255,255,.72); }
.legal-grid {
  display: grid;
  gap: 14px;
}
.legal-card {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.legal-card summary {
  list-style: none;
  padding: 22px 24px;
  font-weight: 950;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-card summary::-webkit-details-marker { display: none; }
.legal-card summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  flex: 0 0 auto;
}
.legal-card[open] summary::after { content: "−"; }
.legal-body {
  padding: 0 24px 24px;
  color: rgba(255,255,255,.78);
}
.legal-body h4 {
  color: #fff;
  letter-spacing: -0.03em;
  font-size: 22px;
  margin: 24px 0 10px;
}
.legal-body p { margin: 0 0 12px; }
.legal-body a { color: #ffd36a; text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }
.legal-table {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 9px 18px;
  margin: 18px 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}
.legal-table dt { color: rgba(255,255,255,.58); }
.legal-table dd { margin: 0; font-weight: 800; color: #fff; }
.terms-text {
  max-height: 520px;
  overflow: auto;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
}
.terms-text pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.58;
  color: rgba(255,255,255,.78);
}

.footer {
  background: #060a12;
  color: #fff;
  padding: 38px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 24px;
  align-items: start;
}
.footer p { color: rgba(255,255,255,.68); margin: 0; }
.footer h4 { font-size: 16px; letter-spacing: -0.02em; margin-bottom: 10px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.72); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.58);
  font-size: 14px;
}
.footer-bottom a { color: rgba(255,255,255,.78); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #21c063, #128c7e);
  box-shadow: 0 18px 50px rgba(18,140,126,.34);
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 22px 60px rgba(18,140,126,.42); }
.back-top {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 899;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .2s ease;
}
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top svg { width: 19px; height: 19px; }


.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 850;
  font-size: 13px;
}
.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 0 0 5px rgba(255,159,0,.12);
}
.btn-ghost {
  color: #fff;
  background: rgba(5,10,20,.28);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(5,10,20,.38); }
.btn-full { width: 100%; margin-top: 16px; }
.leadbox { padding: 22px; }
.quick-text {
  margin: 0 0 18px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}
.quick-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 16px;
}
.quick-steps div {
  border-radius: 18px;
  padding: 12px 10px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
}
.quick-steps span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #ffd36a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
}
.quick-steps strong,
.quick-steps em {
  display: block;
  font-style: normal;
  line-height: 1.2;
}
.quick-steps strong { font-size: 13px; }
.quick-steps em { color: rgba(255,255,255,.66); font-size: 12px; margin-top: 3px; }
.quick-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quick-select a {
  flex: 1 1 calc(50% - 8px);
  text-align: center;
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.90);
  font-weight: 850;
  font-size: 13px;
  transition: background .2s ease, transform .2s ease;
}
.quick-select a:hover { background: rgba(255,255,255,.20); transform: translateY(-1px); }
.quick-phone {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}
.quick-phone strong { color: #fff; }

.quick-quote {
  position: relative;
  padding: 52px 0 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.quote-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 12%, rgba(255,159,0,.26), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(42,169,224,.22), transparent 28%),
    linear-gradient(135deg, #07101e 0%, #141f32 100%);
  box-shadow: 0 30px 90px rgba(2,8,23,.22);
  overflow: hidden;
}
.quote-card .eyebrow { color: #ffd36a; }
.quote-card h2 {
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -0.05em;
}
.quote-card p { color: rgba(255,255,255,.74); margin: 14px 0 0; }
.quote-metrics {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.quote-metrics div {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  padding: 14px 16px;
}
.quote-metrics strong { display: block; font-size: 18px; line-height: 1.15; }
.quote-metrics span { display: block; margin-top: 4px; color: rgba(255,255,255,.66); font-size: 14px; }
.quote-actions,
.mid-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.quote-card .btn-outline {
  color: #fff;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.premium-section {
  background:
    radial-gradient(circle at 86% 10%, rgba(255,159,0,.13), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  overflow: hidden;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--blue));
}
.solution-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(255,159,0,.25), transparent 26%),
    linear-gradient(135deg, #07101e, #172033);
  border-color: rgba(255,255,255,.14);
  transform: translateY(-10px);
}
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(227,6,19,.18); }
.solution-card.featured:hover { transform: translateY(-16px); }
.solution-tag {
  align-self: flex-start;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--red);
  background: rgba(227,6,19,.08);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.solution-card.featured .solution-tag { color: #ffd36a; background: rgba(255,255,255,.12); }
.solution-card h3 { font-size: clamp(26px, 3vw, 36px); margin: 22px 0 12px; }
.solution-card p { color: var(--muted); margin: 0 0 18px; }
.solution-card.featured p { color: rgba(255,255,255,.74); }
.solution-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.solution-list li {
  position: relative;
  padding-left: 22px;
  color: #253047;
  font-weight: 750;
}
.solution-card.featured .solution-list li { color: rgba(255,255,255,.82); }
.solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--red));
}
.solution-cta,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  border-radius: 999px;
  padding: 13px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(227,6,19,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.solution-cta:hover,
.card-link:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(227,6,19,.30); }
.card-link { margin-top: 22px; width: 100%; }

.mid-cta {
  padding: 56px 0;
  background: #060a12;
  color: #fff;
}
.mid-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: 30px;
  padding: clamp(24px, 4vw, 40px);
  background:
    radial-gradient(circle at 15% 22%, rgba(255,159,0,.22), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(42,169,224,.20), transparent 28%),
    rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
}
.mid-cta-card h2 { font-size: clamp(30px, 4vw, 48px); }
.mid-cta-card p { margin: 12px 0 0; color: rgba(255,255,255,.72); }
.form-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 18px;
}
.form-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 8px 11px;
  color: #243148;
  background: rgba(255,159,0,.10);
  border: 1px solid rgba(255,159,0,.18);
  font-size: 13px;
  font-weight: 850;
}
.form-benefits span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-18px,0); }
}

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .hero-grid,
  .intro-grid,
  .system-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 520px; }
  .service-grid,
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card.featured { transform: none; }
  .solution-card.featured:hover { transform: translateY(-8px); }
  .quote-card,
  .mid-cta-card { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.wide { grid-column: span 1; }
}
@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .nav-wrap {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 102px 20px 30px;
    background: rgba(7, 11, 20, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  body.menu-open .nav-wrap { transform: translateX(0); }
  .main-nav {
    display: grid;
    align-items: stretch;
    border-radius: 24px;
    padding: 10px;
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(255,255,255,.12) !important;
  }
  .main-nav a {
    color: #fff !important;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 17px;
  }
  .header-actions { justify-content: space-between; }
  .lang-switch { background: rgba(255,255,255,.10) !important; border-color: rgba(255,255,255,.12) !important; }
  .lang-btn { color: #fff !important; }
  .site-header.has-bg .menu-toggle { color: #fff; background: rgba(255,255,255,.14); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { min-height: 72px; }
  .brand { min-width: 0; padding: 7px 10px; border-radius: 15px; }
  .brand img { width: 174px; }
  .hero-content { padding: 130px 0 54px; }
  .hero-grid { gap: 30px; }
  .hero-panel { display: none; }
  .hero-proof { gap: 8px; }
  .hero-proof span { font-size: 12px; padding: 7px 10px; }
  .quote-card { border-radius: 26px; }
  .quote-actions .btn,
  .mid-cta-actions .btn { width: 100%; }
  .trust-row { grid-template-columns: 1fr; margin-top: 14px; width: min(100% - 28px, var(--container)); }
  .section { padding: 70px 0; }
  .intro-visual, .intro-visual img { min-height: 380px; }
  .benefit-grid, .process-grid, .gallery-grid, .form-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card.tall { min-height: 360px; }
  .legal-table { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 56px; height: 56px; padding: 0; justify-content: center; right: 16px; bottom: 16px; }
  .back-top { right: 16px; bottom: 82px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
