:root {
  --ink: #0b1324;
  --muted: #617087;
  --blue: #176bff;
  --blue-dark: #0649c9;
  --cyan: #55e6ff;
  --lime: #c8ff72;
  --paper: #f5f7fb;
  --line: rgba(16, 42, 78, .11);
  --white: #fff;
  --navy: #071427;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(20, 46, 90, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 100;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--lime));
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 {
  margin: 0 0 .65em;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.04;
  letter-spacing: -.045em;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: clamp(3.15rem, 7.4vw, 6.9rem); font-weight: 850; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 760; }
p { margin: 0 0 1rem; }
.wrap { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.muted, .section-head p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(22px) saturate(150%);
  transition: box-shadow .3s, border-color .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(10,30,60,.06); }
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-size: 1.12rem; font-weight: 820; letter-spacing: -.025em; }
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 27px; }
.nav-links a { position: relative; text-decoration: none; font-size: .91rem; font-weight: 650; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right .25s; }
.nav-links a:hover::after { right: 0; }
.nav-toggle { display: none; border: 0; background: none; font-size: 1.45rem; color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  transition: border-color .25s, background .25s, transform .25s;
}
.language-switch:hover { transform: translateY(-2px); border-color: rgba(23,107,255,.3); background: white; }
.language-option.active { color: var(--blue); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 9px 25px rgba(23,107,255,.17);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.button::after { content: "↗"; transition: transform .25s; }
.button:hover { transform: translateY(-3px); background: var(--blue-dark); box-shadow: 0 16px 35px rgba(23,107,255,.27); }
.button:hover::after { transform: translate(2px,-2px); }
.button.secondary { color: var(--ink); background: rgba(255,255,255,.78); border-color: var(--line); box-shadow: none; }
.button.secondary:hover { background: white; box-shadow: 0 12px 30px rgba(20,46,90,.1); }
.button.dark { background: var(--navy); border-color: var(--navy); }
.download-button { margin: 12px 0 10px; }
.download-button::after { content: "↓"; transform: none; }
.download-button:hover::after { transform: translateY(3px); }
.download-note { max-width: 520px; color: var(--muted); font-size: .86rem; }
.header-whatsapp img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.eyebrow { margin-bottom: 1.15rem; color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: 72px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 5%, rgba(85,230,255,.28), transparent 30%),
    radial-gradient(circle at 9% 86%, rgba(23,107,255,.12), transparent 28%),
    linear-gradient(150deg, #fff 15%, #eef5ff 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  animation: float-orb 10s ease-in-out infinite;
}
.hero::before { width: 310px; height: 310px; right: -90px; top: 8%; background: rgba(85,230,255,.15); }
.hero::after { width: 180px; height: 180px; left: 42%; bottom: -80px; background: rgba(23,107,255,.12); animation-delay: -5s; }
.hero-grid, .split { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(0,.96fr); gap: clamp(42px, 6vw, 82px); align-items: center; }
.hero-grid > *, .split > *, .grid > * { min-width: 0; }
.hero-grid { position: relative; z-index: 1; }
.hero h1 { max-width: 700px; font-size: clamp(3.15rem, 5.8vw, 5.2rem); text-wrap: balance; animation: hero-up .8s .05s both cubic-bezier(.2,.75,.2,1); }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero p { max-width: 650px; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero .eyebrow { animation: hero-up .7s both; }
.hero .actions, .hero .trust { animation: hero-up .8s .18s both; }
.hero-photo { position: relative; perspective: 1000px; animation: hero-in .9s .12s both cubic-bezier(.2,.75,.2,1); }
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 8% -5% -4% 7%;
  border-radius: 38px;
  background: linear-gradient(145deg, var(--cyan), var(--blue));
  transform: rotate(4deg);
  opacity: .22;
}
.hero-photo img {
  position: relative;
  width: 100%;
  height: min(69vh, 650px);
  min-height: 520px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 38px;
  box-shadow: var(--shadow);
  transform: rotateY(var(--tilt-x, 0deg)) rotateX(var(--tilt-y, 0deg));
  transition: transform .18s ease-out;
}
.floating-card {
  position: absolute;
  z-index: 2;
  left: -34px;
  bottom: 35px;
  max-width: 250px;
  padding: 17px 21px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 20px 55px rgba(10,35,70,.18);
  backdrop-filter: blur(18px);
  font-weight: 800;
  animation: card-float 5s ease-in-out infinite;
}
.trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; font-size: .88rem; font-weight: 680; }
.trust span::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 7px; border-radius: 50%; background: #dfffe9; color: #08783c; font-size: .7rem; }

.section { position: relative; padding: clamp(78px, 9vw, 122px) 0; }
.section.soft { background: var(--paper); }
.section.dark { color: white; background: var(--navy); overflow: hidden; }
.section.dark::after { content: ""; position: absolute; width: 500px; height: 500px; right: -180px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(85,230,255,.18), transparent 68%); }
.dark .muted, .dark .section-head p { color: #b8c7d9; }
.section-head { max-width: 790px; margin-bottom: 48px; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 35px rgba(20,46,90,.055);
  transition: transform .35s cubic-bezier(.2,.75,.2,1), box-shadow .35s, border-color .35s;
}
.card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.65) 50%, transparent 75%); transform: translateX(-120%); transition: transform .7s; pointer-events: none; }
.card:hover { transform: translateY(-8px); border-color: rgba(23,107,255,.22); box-shadow: 0 24px 58px rgba(20,46,90,.12); }
.card:hover::after { transform: translateX(120%); }
.card p { color: var(--muted); }
.card .icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 24px; border-radius: 15px; color: var(--blue); background: linear-gradient(145deg,#e9f2ff,#f4fbff); font-size: 1.2rem; }
.media-card { padding: 0; }
.media-card img { width: 100%; height: 245px; object-fit: cover; transition: transform .6s cubic-bezier(.2,.75,.2,1); }
.media-card:hover img { transform: scale(1.045); }
.media-card .body { position: relative; z-index: 1; padding: 27px; background: white; }
.tag { display: inline-block; margin-bottom: 12px; padding: 5px 10px; border-radius: 999px; color: var(--blue); background: #eaf2ff; font-size: .73rem; font-weight: 820; }
.price { font-size: 2.5rem; font-weight: 850; letter-spacing: -.055em; }
.price small { color: var(--muted); font-size: .9rem; font-weight: 600; }
.steps { counter-reset: steps; }
.step { position: relative; padding: 5px 10px 5px 73px; }
.step::before { counter-increment: steps; content: counter(steps); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 17px; color: white; background: linear-gradient(145deg,var(--blue),#62b9ff); box-shadow: 0 12px 28px rgba(23,107,255,.22); font-weight: 850; }
.portrait { width: 100%; max-height: 650px; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.quote { position: relative; z-index: 1; max-width: 1000px; font-size: clamp(1.7rem, 3.5vw, 3.1rem); font-weight: 720; line-height: 1.28; letter-spacing: -.035em; }
.equipment-intro { max-width: 760px; }
.equipment-grid .media-card img { height: 280px; }
.equipment-note { margin-top: 26px; padding: 20px 24px; border: 1px solid var(--line); border-radius: 18px; color: var(--muted); background: white; }

.community-grid { align-items: stretch; }
.community-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 12px 40px rgba(20,46,90,.08);
  text-decoration: none;
  transition: transform .35s cubic-bezier(.2,.75,.2,1), box-shadow .35s;
}
.community-card:hover { transform: translateY(-7px); box-shadow: 0 25px 65px rgba(20,46,90,.15); }
.channel-banner { width: 100%; height: 128px; object-fit: cover; }
.channel-body { position: relative; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 18px; padding: 27px; }
.channel-avatar { width: 66px; height: 66px; border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.channel-body h3 { margin: 4px 0; }
.channel-body p { margin: 0; color: var(--muted); }
.community-label { display: flex; align-items: center; gap: 7px; color: #e5231f; font-size: .78rem; font-weight: 820; text-transform: uppercase; letter-spacing: .11em; }
.community-label img { width: 18px; height: 18px; }
.community-arrow { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: white; background: var(--ink); font-size: 1.2rem; transition: transform .25s; }
.community-card:hover .community-arrow { transform: translate(3px,-3px); }
.trustpilot-card { display: flex; flex-direction: column; justify-content: center; padding: 36px; background: linear-gradient(145deg,#fff,#effff7); }
.trustpilot-top { display: flex; align-items: center; gap: 11px; font-size: 1.3rem; }
.trustpilot-top img { width: 32px; height: 32px; }
.trust-stars { margin: 24px 0 8px; color: #00b67a; font-size: clamp(2rem,4vw,2.8rem); letter-spacing: .07em; line-height: 1; }
.trust-stars span { color: #d9e1e6; }
.trust-score { margin: 5px 0; color: var(--ink); }
.trust-score strong { font-size: 1.7rem; }
.trustpilot-card > p:not(.trust-stars):not(.trust-score) { color: var(--muted); }
.trust-link { margin-top: 15px; color: #007d55; font-weight: 780; }

.contact-box { position: relative; overflow: hidden; padding: clamp(34px,6vw,72px); border-radius: 36px; color: white; background: linear-gradient(135deg,#0b5dea,#092955); box-shadow: var(--shadow); }
.contact-box::after { content: ""; position: absolute; width: 330px; height: 330px; right: -100px; bottom: -180px; border-radius: 50%; background: rgba(85,230,255,.23); }
.contact-box > * { position: relative; z-index: 1; }
.contact-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contact-links .button { color: var(--ink); background: white; border: 0; }

.page-hero { position: relative; padding: clamp(65px,9vw,112px) 0; overflow: hidden; background: radial-gradient(circle at 85% 10%,rgba(85,230,255,.24),transparent 30%), linear-gradient(145deg,#fbfdff,#ebf3ff); }
.page-hero::after { content: ""; position: absolute; width: 260px; height: 260px; right: 8%; bottom: -190px; border: 55px solid rgba(23,107,255,.08); border-radius: 50%; }
.page-hero h1 { max-width: 980px; font-size: clamp(2.8rem,6.2vw,5.7rem); animation: hero-up .75s both; }
.page-hero .muted { max-width: 720px; font-size: 1.15rem; }
.breadcrumbs { margin-bottom: 28px; color: var(--muted); font-size: .85rem; }
.breadcrumbs a { text-decoration: none; }
.article { width: min(800px, calc(100% - 42px)); margin: auto; padding: 76px 0 105px; }
.article h1 { font-size: clamp(2.7rem,6vw,5rem); }
.article h2 { margin-top: 2.3em; font-size: clamp(1.8rem,4vw,2.45rem); }
.article h3 { margin-top: 1.8em; }
.article p, .article li { color: #3d4d63; }
.article img.cover { width: 100%; max-height: 500px; margin: 25px 0 45px; border-radius: 28px; object-fit: cover; box-shadow: var(--shadow); }
.meta { margin-bottom: 20px; color: var(--muted); font-size: .9rem; }
.article-callout { margin: 30px 0; padding: 22px 25px; border-left: 4px solid var(--blue); border-radius: 0 16px 16px 0; background: #edf5ff; }
.list-check { padding: 0; list-style: none; }
.list-check li { position: relative; margin: 10px 0; padding-left: 29px; }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.calculator { padding: clamp(26px,5vw,50px); border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: var(--shadow); }
.field { margin-bottom: 25px; }
.field label { display: block; margin-bottom: 8px; font-weight: 740; }
.field select, .field input { width: 100%; padding: 14px; border: 1px solid #bdc9d6; border-radius: 13px; background: white; font: inherit; }
.range-row { display: flex; align-items: center; gap: 16px; }
.range-row input { flex: 1; min-width: 0; }
.range-row output { min-width: 78px; color: var(--blue); font-weight: 820; }
.result { display: none; margin-top: 30px; padding: 30px; border-radius: 22px; color: white; background: var(--navy); text-align: center; }
.result.show { display: block; animation: result-pop .45s both; }
.result strong { display: block; color: var(--cyan); font-size: 3.2rem; }
.legal { width: min(860px, calc(100% - 42px)); margin: auto; padding: 75px 0 105px; }
.legal h1 { font-size: clamp(3rem,6vw,5rem); }
.legal h2 { margin-top: 2rem; font-size: 1.65rem; }
.notice { padding: 18px 20px; border: 1px solid #f1d482; border-radius: 15px; color: #634c00; background: #fff7dd; }
.empty { min-height: 60vh; padding: 100px 0; text-align: center; }

.site-footer { padding: 65px 0 30px; color: #b9c8d9; background: #040e1b; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; }
.footer-grid p { max-width: 440px; }
.footer-grid h3 { color: white; font-size: 1rem; letter-spacing: 0; }
.footer-grid a { display: block; margin: 7px 0; color: #b9c8d9; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-grid .brand { display: flex; color: white; margin-bottom: 15px; }
.footer-bottom { margin-top: 42px; padding-top: 23px; border-top: 1px solid #203044; font-size: .84rem; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 13px;
  background: rgba(255,255,255,.06);
  transition: transform .25s, background .25s, border-color .25s;
}
.socials a:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.13); }
.socials img { width: 21px; height: 21px; filter: brightness(0) invert(1); }
.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 999px;
  color: #052b16;
  background: #69e68f;
  box-shadow: 0 15px 40px rgba(12,95,45,.28);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 48px rgba(12,95,45,.36); }
.whatsapp-float img { width: 27px; height: 27px; filter: brightness(0); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 10px; top: 10px; z-index: 100; padding: 10px; background: white; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.grid > .reveal:nth-child(2) { transition-delay: .08s; }
.grid > .reveal:nth-child(3) { transition-delay: .16s; }
.grid > .reveal:nth-child(4) { transition-delay: .24s; }

@keyframes hero-up { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes hero-in { from { opacity: 0; transform: translate(35px,20px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes float-orb { 50% { transform: translate(-25px,28px) scale(1.08); } }
@keyframes card-float { 50% { transform: translateY(-8px); } }
@keyframes result-pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }

@media (max-width: 950px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 78px; left: 16px; right: 16px; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-links a::after { display: none; }
  .hero { min-height: auto; }
  .hero-grid, .split { grid-template-columns: minmax(0,1fr); }
  .hero-photo { max-width: 650px; }
  .hero-photo img { height: 620px; }
  .floating-card { left: 18px; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-actions { margin-left: auto; }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 28px,1180px); }
  .nav { height: 70px; }
  .nav-actions .header-whatsapp { display: none; }
  .nav-actions { gap: 7px; }
  .language-switch { min-height: 34px; padding: 5px 9px; }
  .nav-links { top: 70px; }
  .hero { padding: 55px 0 70px; }
  h1 { letter-spacing: -.055em; }
  .hero h1 { font-size: clamp(2.8rem,12.5vw,3.65rem); }
  .hero-photo img { min-height: 0; height: 500px; border-radius: 28px; }
  .floating-card { position: relative; left: auto; bottom: auto; margin: -25px 15px 0; }
  .actions .button { width: 100%; }
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .range-row { align-items: flex-start; flex-direction: column; }
  .range-row output { min-width: 0; }
  .channel-banner { height: 90px; }
  .channel-body { grid-template-columns: auto minmax(0,1fr); padding: 21px; }
  .channel-avatar { width: 52px; height: 52px; }
  .community-arrow { display: none; }
  .trustpilot-card { padding: 28px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .step { padding-left: 67px; }
  .media-card img { height: 230px; }
  .equipment-grid .media-card img { height: 245px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
