
:root {
  --bg: #06101f;
  --bg-soft: #0a1730;
  --bg-card: rgba(11, 24, 46, 0.78);
  --bg-card-strong: rgba(11, 24, 46, 0.92);
  --line: rgba(138, 165, 214, 0.16);
  --line-strong: rgba(138, 165, 214, 0.28);
  --text: #eef4ff;
  --muted: #a9bad7;
  --muted-2: #7f94b9;
  --primary: #6ca0ff;
  --accent: #58d0ff;
  --accent-2: #4ce0c9;
  --success: #5ad6b5;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(88, 208, 255, 0.10), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(108, 160, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #09152c 0%, #071225 45%, #050d1d 100%);
  color: var(--text);
  min-height: 100vh;
}
body.splash-active { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 92px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(88,208,255,0.08);
  border: 1px solid rgba(88,208,255,0.18);
  color: #d7ecff;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(88, 208, 255, 0.75);
}
.section-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  margin: 18px 0 18px;
  letter-spacing: -0.03em;
}
.section-subtitle {
  color: var(--muted);
  max-width: 760px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(4, 10, 23, 0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display:flex; align-items:center; justify-content:space-between;
  min-height: 78px;
  gap: 18px;
}
.brand { display:flex; align-items:center; gap: 14px; min-width: 0; }
.brand img {
  width: 52px; height: 52px; object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(88,208,255,0.15));
}
.brand-text strong { display:block; font-size: 17px; letter-spacing: 0.06em; }
.brand-text span { display:block; color: var(--muted-2); font-size: 13px; margin-top: 3px; }
.nav-links { display:flex; align-items:center; gap: 10px; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  padding: 12px 14px;
  border-radius: 999px;
  transition: .25s ease;
  font-size: 15px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.cta {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius: 999px; padding: 15px 22px; font-weight: 600;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.cta.primary {
  background: linear-gradient(135deg, rgba(98,148,255,1), rgba(76,224,201,0.95));
  color: #081220; box-shadow: 0 18px 36px rgba(77, 134, 255, 0.25);
}
.cta.secondary {
  background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); color: var(--text);
}
.cta:hover { transform: translateY(-2px); }
.lift-card { transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.lift-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0,0,0,.34); border-color: rgba(108,160,255,0.24); }
.hero { padding: 56px 0 28px; }
.hero-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: stretch; }
.hero-card, .glass-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.hero-copy { padding: 46px; }
.hero-copy p { color: var(--muted); font-size: 18px; line-height: 1.75; max-width: 64ch; }
.hero-actions { display:flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-stats { margin-top: 34px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { padding: 18px; border-radius: 18px; background: rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); }
.stat strong { display:block; font-size: 20px; margin-bottom: 8px; }
.stat span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.logo-showcase {
  min-height: 100%;
  padding: 34px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at top, rgba(108,160,255,.16), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}
.logo-showcase::before {
  content:"";
  position:absolute;
  inset: 12% 12%;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(88,208,255,.16), transparent 60%);
  filter: blur(24px);
}
.logo-showcase img {
  width: min(100%, 480px);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
}
.split-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 42px; }
.choice-card {
  position:relative;
  min-height: 610px;
  padding: 32px;
  border-radius: var(--radius-xl);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(6,17,36,.58), rgba(6,17,36,.9));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  isolation:isolate;
}
.choice-card::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(6,17,36,.18), rgba(6,17,36,.92) 70%);
  z-index:1;
}
.choice-card .bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.24; transform: scale(1.02); }
.choice-card .content { position:relative; z-index:2; display:flex; flex-direction:column; justify-content:flex-end; min-height:100%; }
.choice-logo {
  width: 180px;
  object-fit: contain;
  object-position: center;
  margin-bottom: auto;
  background: rgba(7,18,37,.55);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  padding: 18px;
  border-radius: 22px;
}
.choice-card h3 { font-size: clamp(28px, 4vw, 40px); margin: 18px 0 14px; }
.choice-card p { color: #d7e3f7; line-height: 1.72; font-size: 17px; }
.badges { display:flex; flex-wrap:wrap; gap: 10px; margin: 24px 0 28px; }
.badge { padding: 10px 12px; border-radius:999px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1); color:#eef4ff; font-size:14px; }
.quick-contact-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 22px; }
.trust-boosters { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.booster-card { padding: 24px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)); border:1px solid rgba(255,255,255,.06); }
.booster-card strong { display:block; font-size: 19px; margin-bottom: 10px; }
.booster-card span { color: var(--muted); line-height: 1.7; }
.quick-contact-card, .contact-card, .service-card, .highlight-card, .panel, .kpi, .legal-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.06);
  border-radius: 22px;
}
.quick-contact-card, .contact-card, .legal-card { padding: 24px; }
.quick-contact-card h4, .contact-card h3, .legal-card h3 { margin: 0 0 12px; font-size: 22px; }
.quick-contact-card p, .contact-card p, .legal-card p, .service-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.contact-lines { display:grid; gap: 10px; margin-top: 16px; }
.contact-line {
  display:flex; justify-content:space-between; gap: 16px; align-items: center;
  padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
}
.contact-line span { color: var(--muted); }
.contact-line strong, .contact-line a { word-break: break-word; text-align: right; }
.contact-actions { display:flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.contact-hero { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.contact-hero-card { padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); }
.contact-hero-card span { display:block; color: var(--muted-2); font-size: 13px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; }
.contact-hero-card strong, .contact-hero-card a { word-break: break-word; }
.alert-card { margin-top: 26px; padding: 22px 24px; border-radius: 24px; background: linear-gradient(135deg, rgba(255,143,77,0.15), rgba(255,86,86,0.12)); border:1px solid rgba(255,143,77,0.22); box-shadow: var(--shadow); }
.alert-card strong { display:block; font-size: 22px; margin-bottom: 8px; }
.alert-card p { margin: 0 0 16px; color: #f2e3dc; line-height: 1.75; }
.alert-actions { display:flex; gap: 12px; flex-wrap: wrap; }
.service-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.service-card { padding: 24px; }
.service-card h3 { margin: 0 0 12px; font-size: 22px; }
.highlight-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 34px; }
.highlight-card { padding: 28px; }
.highlight-card h3 { margin: 0 0 12px; font-size: 24px; }
.highlight-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.cert-card {
  margin-top: 34px;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(76,224,201,0.09), rgba(108,160,255,0.14));
  border: 1px solid rgba(108,160,255,0.2);
  box-shadow: var(--shadow);
}
.cert-card h3 { margin: 0 0 12px; font-size: 28px; }
.cert-card p { margin: 0; color: #dbe8ff; line-height: 1.85; max-width: 82ch; }
.trust-strip {
  margin-top: 36px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(76,224,201,0.10), rgba(108,160,255,0.10));
  border:1px solid rgba(108,160,255,0.18);
  display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;
}
.trust-strip strong { font-size: 22px; }
.trust-strip span { color: var(--muted); }
.footer { padding: 28px 0 46px; border-top: 1px solid rgba(255,255,255,.06); margin-top: 64px; }
.footer-row {
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
  color: var(--muted);
}
.footer-links { display:flex; gap: 16px; flex-wrap:wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.page-hero { padding: 70px 0 22px; }
.page-hero-card {
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.page-hero-copy { padding: 46px; }
.page-hero-copy h1 { font-size: clamp(36px, 5vw, 60px); line-height: 1.02; margin: 18px 0 16px; }
.page-hero-copy p { color: var(--muted); font-size: 18px; line-height: 1.78; }
.page-hero-image {
  min-height: 100%;
  overflow: hidden;
  display:grid;
  place-items:center;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 24%, rgba(108,160,255,.18), transparent 35%),
    linear-gradient(180deg, rgba(6,17,36,.36), rgba(6,17,36,.72));
  position:relative;
}
.page-hero-image::after {
  content:"";
  position:absolute;
  inset:12%;
  border-radius: 28px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
}
.page-hero-image img {
  width: min(100%, 430px);
  max-height: 280px;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
}
.breadcrumbs { display:flex; gap:10px; flex-wrap:wrap; color: var(--muted-2); font-size:14px; margin-bottom: 14px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs span.sep { opacity:.5; }
.content-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.panel { padding: 28px; }
.panel h2 { margin-top:0; font-size: 30px; }
.panel p { color: var(--muted); line-height: 1.8; }
.list { display:grid; gap: 14px; margin-top: 22px; }
.list-item {
  display:flex; gap: 14px; align-items:flex-start;
  padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
}
.list-item .icon {
  flex:0 0 36px; width:36px; height:36px; border-radius:12px; display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(108,160,255,.16), rgba(76,224,201,.16)); border:1px solid rgba(108,160,255,.18);
}
.list-item strong { display:block; margin-bottom: 6px; }
.kpi-stack { display:grid; gap: 16px; }
.kpi { padding: 22px; }
.kpi strong { display:block; font-size: 18px; margin-bottom: 8px; }
.kpi span { color: var(--muted); line-height: 1.65; }
.contact-section-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.legal-card { line-height: 1.8; }
.legal-card h2 { margin-top: 0; font-size: 30px; }
.legal-card h3 { margin-top: 28px; font-size: 22px; }
.legal-card ul { margin: 12px 0 0 20px; color: var(--muted); }
.legal-card li + li { margin-top: 8px; }
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 18px 32px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, opacity .2s ease;
}
.float-btn:hover { transform: translateY(-2px); }
.float-btn.whatsapp { background: linear-gradient(135deg, #12b981, #25d366); }
.float-btn.email { background: linear-gradient(135deg, #568eff, #58d0ff); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn.is-placeholder { opacity: .82; }
.splash {
  position: fixed;
  inset: 0;
  z-index: 120;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #040914;
}
.splash.hidden { display: none; }
.splash::before,
.splash::after {
  content:"";
  position:absolute;
  inset:-10%;
  opacity:.95;
}
.splash::before {
  background:
    radial-gradient(circle at 20% 50%, rgba(95,211,255,0.42), transparent 28%),
    radial-gradient(circle at 25% 48%, rgba(95,211,255,0.16), transparent 36%);
  animation: waterPulse 4s ease-in-out infinite alternate;
}
.splash::after {
  background:
    radial-gradient(circle at 80% 50%, rgba(255,143,77,0.42), transparent 28%),
    radial-gradient(circle at 75% 50%, rgba(255,143,77,0.16), transparent 36%);
  animation: firePulse 3.4s ease-in-out infinite alternate;
}
.splash-center {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 34px 28px;
  border-radius: 34px;
  background: rgba(7, 16, 32, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 100px rgba(0,0,0,.4);
  backdrop-filter: blur(16px);
  text-align: center;
}
.splash-logo {
  width: min(100%, 340px);
  margin: 0 auto 24px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.32));
}
.splash-kicker {
  color: #cde7ff;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
}
.splash-title {
  margin: 16px auto;
  font-size: clamp(32px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.04em;
  max-width: 13ch;
}
.splash-text {
  margin: 0 auto;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}
.splash-divider {
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items:center;
  margin: 26px 0;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.splash-divider::before, .splash-divider::after {
  content:"";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}
.splash-actions { display:flex; justify-content:center; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.splash-skip { background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); color: var(--text); }
.splash-reveal { transition: opacity .7s ease, visibility .7s ease; }
.splash-reveal.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes waterPulse {
  from { transform: translateX(-2%) translateY(-1%) scale(1); }
  to { transform: translateX(2%) translateY(1%) scale(1.04); }
}
@keyframes firePulse {
  from { transform: translateX(2%) translateY(1%) scale(1); }
  to { transform: translateX(-2%) translateY(-1%) scale(1.06); }
}
.notice { margin-top: 12px; color: var(--muted-2); font-size: 14px; }
@media (max-width: 1100px) {
  .hero-grid, .page-hero-card, .content-grid, .split-grid, .highlight-grid, .quick-contact-grid, .contact-section-grid, .trust-boosters { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-hero { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { align-items:flex-start; padding: 10px 0 14px; flex-direction:column; }
  .nav-links { width: 100%; }
  .hero-copy, .page-hero-copy { padding: 30px 24px; }
  .choice-card { min-height: 500px; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
  .floating-actions { right: 14px; bottom: 14px; }
  .splash-center { padding: 28px 20px; max-height: calc(100vh - 28px); }
  .contact-line { flex-direction: column; align-items: flex-start; }
  .contact-line strong, .contact-line a { text-align: left; }
}


/* Cookie consent premium */
.cookie-backdrop{
  position:fixed;
  inset:0;
  background:rgba(4,10,20,.62);
  z-index:9998;
  backdrop-filter: blur(4px);
}
.cookie-modal{
  position:fixed;
  right:24px;
  bottom:24px;
  width:min(520px, calc(100vw - 32px));
  background:linear-gradient(180deg, rgba(9,20,37,.98), rgba(8,17,31,.98));
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:22px;
  z-index:9999;
  box-shadow:0 24px 60px rgba(0,0,0,.32);
}
.cookie-header p{
  margin:10px 0 0;
  color:rgba(255,255,255,.82);
  line-height:1.55;
}
.cookie-options{
  display:grid;
  gap:12px;
  margin:18px 0 12px;
}
.cookie-option{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  background:rgba(255,255,255,.04);
}
.cookie-option input{
  margin-top:4px;
  transform:scale(1.15);
}
.cookie-option span{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.cookie-option small{
  color:rgba(255,255,255,.74);
  line-height:1.45;
}
.cookie-option-required{
  opacity:.86;
}
.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.cookie-btn{
  min-width:148px;
}
.cookie-links{
  margin-top:14px;
  font-size:.95rem;
}
.cookie-links a,
.footer-cookie-link{
  color:rgba(255,255,255,.88);
}
.footer-cookie-link{
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
  font:inherit;
  text-decoration:underline;
}
.consent-note{
  margin-top:10px;
  color:rgba(255,255,255,.72);
}
@media (max-width: 768px){
  .cookie-modal{
    left:12px;
    right:12px;
    bottom:12px;
    width:auto;
    border-radius:20px;
    padding:18px;
  }
  .cookie-actions{
    flex-direction:column;
  }
  .cookie-btn{
    width:100%;
  }
}
