:root {
  --ink: #123348;
  --muted: #5f7482;
  --paper: #f3fafc;
  --white: #ffffff;
  --violet: #0a91a8;
  --violet-bright: #5bd0dc;
  --violet-soft: #dff6f8;
  --navy: #0a6278;
  --line: #d8e9ee;
  --shadow: 0 22px 60px rgba(18, 76, 95, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid rgba(67,196,211,.72); outline-offset: 4px; }
svg { width: 24px; height: 24px; }
.shell { width: min(1220px, calc(100% - 56px)); margin-inline: auto; }

.hero {
  min-height: 700px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 13%, rgba(132, 238, 239, .28), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(112, 221, 233, .22), transparent 24%),
    linear-gradient(135deg, #0b5874 0%, #0f7893 52%, #1596a8 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -270px;
  bottom: -330px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.014);
}
.glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.glow-one { width: 420px; height: 420px; right: 18%; top: 130px; background: rgba(175, 250, 247, .12); }
.glow-two { width: 180px; height: 180px; left: -70px; bottom: 60px; background: rgba(184, 244, 248,.13); }

.topbar {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand { display: inline-flex; gap: 13px; align-items: center; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.5px;
  border: 2px solid var(--violet-bright);
  border-radius: 12px;
  transform: rotate(-4deg);
  box-shadow: inset 0 0 0 3px rgba(88,211,220,.16);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 15px; letter-spacing: .14em; }
.brand-copy small { margin-top: 6px; color: #cceef2; font-size: 9px; letter-spacing: .3em; }
nav { display: flex; align-items: center; gap: 5px; padding: 5px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; }
nav a { padding: 10px 13px; color: var(--white); border-radius: 999px; font-size: 14px; font-weight: 600; transition: background .2s ease, opacity .2s ease; }
nav a:hover, nav a:focus-visible { color: var(--white); background: rgba(255,255,255,.09); opacity: 1; }
.whatsapp-nav { color: var(--white); }
.nav-cta { padding-inline: 19px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); }

.hero-grid {
  min-height: 604px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .74fr);
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
  padding-block: 58px 86px;
}
.eyebrow { color: #d0f3f5; font-size: 11px; font-weight: 800; letter-spacing: .24em; }
.eyebrow span { display: inline-block; width: 27px; height: 2px; margin: 0 11px 3px 0; background: var(--violet-bright); }
.hero-copy h1 { margin: 27px 0 24px; font-size: clamp(52px, 5.8vw, 76px); line-height: .98; letter-spacing: -.057em; font-weight: 720; }
.hero-copy h1 em { color: #9cf4ef; font-style: normal; }
.hero-copy > p:not(.privacy-note) { max-width: 630px; color: #e1f4f6; font-size: 18px; line-height: 1.68; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 56px; padding: 0 25px; border-radius: 13px; font-size: 14px; font-weight: 750; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button-primary { color: #075d70; background: linear-gradient(135deg, #ffffff, #dff8f8); box-shadow: 0 15px 38px rgba(4,62,78,.22); }
.button-primary:hover { color: #064d60; background: #c8f1f3; transform: translateY(-1px); }
.button-secondary { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.26); color: #ffffff; }
.button-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); transform: translateY(-1px); }
.privacy-note { display: flex; gap: 9px; align-items: center; margin-top: 24px; color: #d4eef1; font-size: 12px; }
.privacy-note span { display: grid; place-items: center; width: 18px; height: 18px; color: #a8f1ee; border: 1px solid rgba(190,245,243,.5); border-radius: 50%; }

.service-panel { border: 1px solid rgba(255,255,255,.28); border-radius: 24px; overflow: hidden; background: linear-gradient(155deg, rgba(255,255,255,.2), rgba(255,255,255,.1)); backdrop-filter: blur(22px); box-shadow: 0 38px 90px rgba(5,53,69,.25), inset 0 1px rgba(255,255,255,.18); }
.panel-topline { display: flex; align-items: center; gap: 9px; padding: 17px 22px; color: #ddd8e8; font-size: 11px; border-bottom: 1px solid rgba(255,255,255,.09); }
.panel-topline small { margin-left: auto; color: #c7e7ea; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #56d49b; box-shadow: 0 0 0 5px rgba(86,212,155,.1); }
.panel-content { padding: 33px 33px 36px; }
.panel-kicker { color: #d0eff1; font-size: 10px; font-weight: 800; letter-spacing: .19em; }
.panel-content h2 { margin: 14px 0 27px; font-size: 32px; line-height: 1.16; letter-spacing: -.035em; }
.mini-actions { display: grid; gap: 9px; }
.mini-actions a { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; padding: 14px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.16); border-radius: 13px; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.mini-actions a:hover { background: rgba(255,255,255,.2); border-color: rgba(184,244,245,.55); transform: translateX(3px); }
.mini-icon { width: 42px; height: 42px; display: grid; place-items: center; color: #d7fbf8; background: rgba(7,91,111,.24); border-radius: 10px; }
.mini-icon svg { width: 21px; height: 21px; }
.mini-actions a > span:nth-child(2) { display: flex; flex-direction: column; }
.mini-actions strong { font-size: 13px; }
.mini-actions small { margin-top: 5px; color: #d1e8ea; font-size: 10px; }
.mini-actions b { color: #d1eaec; font-size: 22px; font-weight: 400; }

.services { padding-block: 92px 98px; scroll-margin-top: 20px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.section-kicker { color: var(--violet); font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.section-heading h2 { margin: 12px 0 0; font-size: clamp(36px, 4vw, 50px); line-height: 1.08; letter-spacing: -.05em; }
.section-heading p { max-width: 470px; margin: 0 0 3px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 43px; }
.service-card { min-height: 332px; position: relative; display: flex; flex-direction: column; padding: 31px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #a9dce4; box-shadow: 0 28px 72px rgba(17,87,106,.14); }
.service-card.featured { background: linear-gradient(145deg, #0b7085, #07586f); color: var(--white); border-color: rgba(89,208,219,.48); box-shadow: 0 26px 68px rgba(11,80,98,.24); }
.card-number { position: absolute; top: 25px; right: 25px; color: #c9c4d4; font-size: 10px; letter-spacing: .12em; }
.featured .card-number { color: #9bd3db; }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--violet); background: var(--violet-soft); border: 1px solid #ccebee; border-radius: 15px; }
.featured .card-icon { color: var(--violet); background: var(--violet-soft); }
.service-card h3 { margin: 29px 0 13px; font-size: 23px; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.featured p { color: #d2eaed; }
.service-card a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 23px; color: var(--violet); font-size: 13px; font-weight: 800; border-top: 1px solid var(--line); }
.featured a { color: #c5f3f0; border-color: rgba(255,255,255,.18); }
.coming-soon { align-self: flex-start; margin-top: auto; padding: 8px 11px; color: #16778b; background: var(--violet-soft); border-radius: 7px; font-size: 9px; font-weight: 800; letter-spacing: .12em; }

.process-section { padding: 91px 0 96px; color: var(--ink); background: radial-gradient(circle at 82% 0%, rgba(92,208,218,.2), transparent 31%), linear-gradient(140deg, #e5f7f9, #d8f0f4); }
.process-grid { display: grid; gap: 42px; }
.process-copy { display: grid; grid-template-columns: minmax(320px,.9fr) minmax(360px,1.1fr); column-gap: 100px; align-items: end; }
.process-copy .section-kicker, .process-copy h2 { grid-column: 1; }
.process-copy h2 { margin: 17px 0 0; font-size: clamp(38px, 4vw, 52px); line-height: 1.07; letter-spacing: -.05em; }
.process-copy p { grid-column: 2; grid-row: 1 / span 2; max-width: 520px; margin: 0 0 5px; color: #4f7180; font-size: 15px; line-height: 1.75; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 17px; min-height: 150px; padding: 25px 23px; background: rgba(255,255,255,.75); border: 1px solid rgba(79,171,187,.24); border-radius: 18px; box-shadow: 0 14px 34px rgba(19,93,109,.08); }
.steps li > span { width: 48px; height: 48px; display: grid; place-items: center; color: #08758b; background: #d6f3f5; border: 1px solid #a8dfe5; border-radius: 15px; font-size: 12px; font-weight: 800; }
.steps strong { display: block; margin: 3px 0 8px; font-size: 16px; }
.steps p { margin: 0; color: #5e7884; font-size: 13px; line-height: 1.65; }

.protected { padding-block: 88px 94px; }
.protected-intro { display: grid; grid-template-columns: 56px 1fr minmax(300px, 470px); align-items: center; gap: 25px; }
.lock-mark { width: 56px; height: 56px; display: grid; place-items: center; color: var(--violet); background: var(--violet-soft); border-radius: 16px; font-size: 29px; font-weight: 700; transform: rotate(180deg); }
.protected-intro h2 { margin: 12px 0 0; font-size: clamp(30px, 3vw, 42px); letter-spacing: -.04em; }
.protected-intro > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.future-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 35px; }
.future-grid span { display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 0 20px; color: #494657; background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 10px 28px rgba(26,19,51,.045); font-size: 13px; font-weight: 650; }
.future-grid b { padding: 6px 8px; color: #16798c; background: #e1f5f7; border-radius: 6px; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }

.contact-band { padding: 78px 0; color: var(--white); background: radial-gradient(circle at 82% 5%, rgba(255,255,255,.17), transparent 27%), linear-gradient(115deg, #1598aa, #0b6d8c); }
.contact-band .section-kicker { color: #c8f3f2; }
.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.contact-inner h2 { max-width: 560px; margin: 12px 0 0; font-size: clamp(31px, 3vw, 42px); line-height: 1.08; letter-spacing: -.04em; }
.contact-actions { display: grid; grid-template-columns: repeat(2, minmax(210px, 1fr)); gap: 12px; }
.contact-actions a, .facebook-contact { min-width: 220px; display: flex; flex-direction: column; padding: 18px 21px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.23); border-radius: 14px; box-shadow: 0 10px 26px rgba(8,67,84,.13); }
.contact-actions a { transition: transform .2s ease, background .2s ease; }
.contact-actions a:hover { background: rgba(255,255,255,.17); transform: translateY(-1px); }
.whatsapp-contact { box-shadow: inset 3px 0 #25d366; }
.facebook-contact { opacity: .66; }
.contact-actions small { color: #d7f2f4; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.contact-actions strong { margin-top: 6px; font-size: 13px; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 178px;
  padding: 10px 15px 10px 10px;
  color: #fff;
  background: #128c4a;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(7,55,27,.3);
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-float:hover { background: #0f9f4d; transform: translateY(-2px); }
.whatsapp-float-icon { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 40px; color: #fff; background: rgba(255,255,255,.14); border-radius: 50%; }
.whatsapp-float-icon svg { width: 25px; height: 25px; }
.whatsapp-float > span:last-child { display: flex; flex-direction: column; }
.whatsapp-float strong { font-size: 13px; }
.whatsapp-float small { margin-top: 3px; color: #c6f3d6; font-size: 8px; }

footer { padding: 31px 0; color: #b9d8de; background: #07374b; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner .brand-mark { width: 38px; height: 38px; }
.footer-inner p, .footer-inner > a:last-child { font-size: 11px; }
.footer-inner > a:last-child { color: #bdecef; }

@media (max-width: 900px) {
  nav { gap: 4px; }
  nav a:not(.nav-cta) { display: none; }
  nav { background: transparent; border-color: transparent; padding: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; padding-top: 80px; }
  .service-panel { width: 100%; max-width: 560px; }
  .section-heading { align-items: start; flex-direction: column; gap: 20px; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .process-copy { grid-template-columns: 1fr; gap: 20px; }
  .process-copy .section-kicker, .process-copy h2, .process-copy p { grid-column: 1; grid-row: auto; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 0; }
  .protected-intro { grid-template-columns: 56px 1fr; }
  .protected-intro > p { grid-column: 2; }
  .future-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { align-items: flex-start; flex-direction: column; }
  .contact-actions { width: 100%; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 30px, 1220px); }
  .topbar { height: 88px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 8px; }
  .nav-cta { padding: 10px 15px; }
  .hero-grid { padding: 67px 0 72px; }
  .hero-copy h1 { font-size: 46px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .privacy-note { align-items: flex-start; line-height: 1.5; }
  .panel-content { padding: 25px 20px 24px; }
  .services { padding-block: 68px 74px; }
  .process-section, .protected { padding-block: 72px; }
  .protected-intro { grid-template-columns: 1fr; }
  .protected-intro > p { grid-column: auto; }
  .future-grid { grid-template-columns: 1fr; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-actions a, .facebook-contact { min-width: 0; }
  .whatsapp-float { right: 14px; bottom: 14px; min-width: 0; padding: 8px; }
  .whatsapp-float > span:last-child { display: none; }
}

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