:root {
  --navy: #071427;
  --navy-2: #0b1d35;
  --blue: #2677ff;
  --cyan: #48d9ff;
  --gold: #f4bd5a;
  --ink: #13243a;
  --muted: #657287;
  --paper: #f4f7fb;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { display: block; width: auto; object-fit: contain; }
.brand-logo-header { height: 58px; border-radius: 7px; }
.brand-logo-footer { height: 55px; border-radius: 7px; }
.site-header nav { display: flex; gap: 34px; font-size: 14px; color: #c9d5e6; }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover { color: white; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 54px; padding: 0 25px; border-radius: 14px;
  color: white; background: linear-gradient(135deg, var(--blue), #1558d8);
  font-weight: 700; font-size: 14px;
  box-shadow: 0 13px 30px rgba(27, 104, 242, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(27, 104, 242, .38); }
.button-small { min-height: 42px; padding: 0 18px; border: 1px solid rgba(255,255,255,.16); }

.hero {
  position: relative; min-height: 780px; overflow: hidden;
  display: grid; grid-template-columns: 1.04fr .96fr; align-items: center;
  gap: 65px; padding: 140px max(24px, calc((100vw - 1180px) / 2)) 82px;
  color: white;
  background:
    linear-gradient(110deg, rgba(7,20,39,.98), rgba(7,20,39,.9)),
    radial-gradient(circle at 80% 20%, #164d86, transparent 38%),
    var(--navy);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent, black 60%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.orb-one { width: 420px; height: 420px; right: -150px; top: 80px; background: rgba(38,119,255,.15); }
.orb-two { width: 250px; height: 250px; left: 43%; bottom: -150px; background: rgba(72,217,255,.08); }
.hero-content, .hero-visual { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 23px; color: #9cc1ff; font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: var(--cyan); }
.eyebrow.dark { color: var(--blue); }
.hero h1 { max-width: 650px; margin: 0; font-size: clamp(47px, 5.2vw, 74px); line-height: 1.04; letter-spacing: -.045em; }
.hero h1 em, .contact-section h2 em { color: var(--cyan); font-style: normal; }
.hero-text { max-width: 590px; margin: 26px 0 0; color: #b5c4d8; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 35px; }
.text-link { display: inline-flex; gap: 11px; color: #d5dfec; font-size: 14px; font-weight: 700; }
.hero-proof { display: flex; gap: 0; margin-top: 52px; }
.hero-proof div { padding: 0 24px; border-left: 1px solid rgba(255,255,255,.14); }
.hero-proof div:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 14px; }
.hero-proof span { margin-top: 7px; color: #7f91a9; font-size: 11px; }

.hero-visual { min-height: 500px; display: grid; place-items: center; }
.visual-card { border: 1px solid rgba(255,255,255,.15); background: rgba(14,35,61,.84); backdrop-filter: blur(18px); box-shadow: 0 28px 60px rgba(0,0,0,.28); }
.card-main { width: min(410px, 88%); min-height: 410px; border-radius: 32px; padding: 38px; transform: rotate(-3deg); }
.card-label { color: #8fa5c2; font-size: 10px; letter-spacing: .2em; }
.identity-logo {
  display: block;
  width: min(250px, 86%);
  aspect-ratio: 1;
  margin: 20px auto 4px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
}
.color-row { display: flex; gap: 8px; margin: 38px 0 28px; }
.color-row i { width: 42px; height: 9px; border-radius: 20px; background: var(--blue); }
.color-row i:nth-child(2) { background: var(--cyan); }
.color-row i:nth-child(3) { background: var(--gold); }
.color-row i:nth-child(4) { background: #eef5ff; }
.card-main p { color: #b9c7d9; font-size: 14px; }
.card-float { position: absolute; display: flex; align-items: center; gap: 13px; border-radius: 16px; padding: 15px 18px; }
.card-float strong, .card-float small { display: block; }
.card-float strong { font-size: 12px; }
.card-float small { margin-top: 5px; color: #91a4bd; font-size: 9px; }
.top-card { top: 45px; right: -12px; }
.bottom-card { left: -10px; bottom: 55px; }
.mini-icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: var(--navy); background: var(--cyan); }
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: #55e391; box-shadow: 0 0 0 7px rgba(85,227,145,.11); }
.spark { position: absolute; color: var(--cyan); }
.spark-one { left: 5%; top: 65px; font-size: 20px; }
.spark-two { right: 7%; bottom: 70px; color: var(--gold); font-size: 14px; }

.services-section { padding: 105px max(24px, calc((100vw - 1180px) / 2)); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.section-heading h2 { max-width: 700px; margin: 0; color: var(--ink); font-size: clamp(36px, 4vw, 54px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 55px; }
.service-card { position: relative; min-height: 440px; overflow: hidden; border: 1px solid #dde5ef; border-radius: 22px; background: white; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.service-card summary { display: block; min-height: 440px; cursor: pointer; list-style: none; }
.service-card summary::-webkit-details-marker { display: none; }
.service-card summary:focus-visible { outline: 3px solid rgba(38,119,255,.35); outline-offset: -3px; border-radius: 21px; }
.service-card:last-child:nth-child(3n + 1) { grid-column: 2; }
.service-card:hover { transform: translateY(-5px); border-color: #b9d2ff; box-shadow: 0 20px 45px rgba(34,62,99,.09); }
.service-card[open] { border-color: #b9d2ff; box-shadow: 0 20px 45px rgba(34,62,99,.09); }
.service-media { position: relative; height: 190px; overflow: hidden; background: var(--navy); }
.service-image { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .service-image { transform: scale(1.035); }
.service-top { position: absolute; inset: 17px 17px auto; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.service-number { min-width: 38px; height: 36px; padding: 0 10px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; color: white; background: rgba(7,20,39,.72); backdrop-filter: blur(8px); font-size: 11px; font-weight: 800; }
.service-arrow { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; color: var(--blue); background: rgba(255,255,255,.94); box-shadow: 0 6px 18px rgba(0,0,0,.14); font-size: 21px; font-weight: 400; transition: transform .25s ease, color .2s ease, background .2s ease; }
.service-card[open] .service-arrow { transform: rotate(45deg); color: white; background: var(--blue); }
.service-body { padding: 25px 27px 28px; }
.service-tag { display: inline-block; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-card h3 { margin: 13px 0 12px; font-size: 23px; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 19px; color: var(--blue); font-size: 12px; font-weight: 800; }
.service-more::after { content: "↓"; transition: transform .2s ease; }
.service-card[open] .service-more::after { transform: rotate(180deg); }
.service-details { margin: 0 27px 27px; padding: 24px 0 2px; border-top: 1px solid #e6edf5; }
.details-label { display: block; margin-bottom: 10px; color: var(--ink); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.service-details ul { display: grid; gap: 8px; margin: 18px 0 22px; padding: 0; list-style: none; }
.service-details li { position: relative; padding-left: 22px; color: #44536a; font-size: 13px; line-height: 1.5; }
.service-details li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.service-details a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 13px; font-weight: 800; }
.service-details a:hover { text-decoration: underline; text-underline-offset: 4px; }

.process-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; padding: 100px max(24px, calc((100vw - 1180px) / 2)); color: white; background: var(--navy); }
.process-copy h2 { margin: 0; font-size: clamp(36px, 4vw, 53px); line-height: 1.08; letter-spacing: -.04em; }
.process-copy > p { max-width: 500px; margin: 24px 0 32px; color: #aabbd0; line-height: 1.8; }
.button-light { color: var(--navy); background: white; box-shadow: none; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.steps li:first-child { padding-top: 0; }
.steps li > span { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(72,217,255,.4); border-radius: 50%; color: var(--cyan); font-weight: 800; }
.steps strong { font-size: 18px; }
.steps p { margin: 8px 0 0; color: #93a7c0; font-size: 13px; line-height: 1.6; }

.contact-section { position: relative; overflow: hidden; padding: 110px 24px; text-align: center; color: white; background: linear-gradient(135deg, #0b3c93, #196fea 55%, #1647b5); }
.contact-section > * { position: relative; z-index: 1; }
.contact-section .eyebrow { justify-content: center; color: #c8dcff; }
.contact-section h2 { margin: 0; font-size: clamp(43px, 6vw, 72px); line-height: 1.05; letter-spacing: -.05em; }
.contact-section > p:not(.eyebrow) { max-width: 610px; margin: 25px auto 0; color: #d5e4ff; font-size: 16px; line-height: 1.7; }
.contact-actions { display: flex; align-items: center; justify-content: center; gap: 27px; margin-top: 35px; }
.mail-link { font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.45); }
.contact-glow { position: absolute; z-index: 0; width: 600px; height: 600px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 120px rgba(255,255,255,.025), 0 0 0 240px rgba(255,255,255,.018); }

footer { min-height: 120px; padding: 28px max(24px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #90a0b5; background: #050e1c; font-size: 12px; }
.footer-brand { color: white; }
footer p { margin: 0; }
.whatsapp-float { position: fixed; z-index: 50; right: 22px; bottom: 22px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: white; background: #20c76b; font-size: 25px; box-shadow: 0 12px 30px rgba(11,101,50,.34); transition: transform .2s ease; }
.whatsapp-float:hover { transform: scale(1.06); }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 145px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { min-height: 450px; }
  .section-heading, .process-section { grid-template-columns: 1fr; gap: 52px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child:nth-child(3n + 1) { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }
  .section-heading > p { max-width: 650px; }
}

@media (max-width: 640px) {
  .site-header { width: calc(100% - 32px); height: 78px; }
  .brand-logo-header { height: 43px; max-width: 154px; }
  .site-header .button { min-height: 38px; padding: 0 13px; font-size: 11px; }
  .hero { min-height: auto; padding: 120px 18px 65px; }
  .hero h1 { font-size: 45px; }
  .hero-text { font-size: 16px; }
  .hero-actions, .contact-actions { width: 100%; flex-direction: column; gap: 18px; }
  .hero-actions .button, .contact-actions .button { width: 100%; }
  .hero-proof { width: 100%; justify-content: center; }
  .hero-proof div { padding: 0 12px; }
  .hero-proof span { font-size: 9px; }
  .hero-visual { min-height: 390px; margin-top: 5px; }
  .card-main { min-height: 340px; padding: 28px; }
  .identity-logo { width: min(220px, 82%); border-radius: 20px; }
  .top-card { right: 0; top: 27px; }
  .bottom-card { left: 0; bottom: 25px; }
  .services-section, .process-section { padding-top: 75px; padding-bottom: 75px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child:nth-child(3n + 1) { grid-column: auto; width: 100%; }
  .service-card, .service-card summary { min-height: 270px; }
  .contact-section { padding: 85px 20px; }
  footer { padding-top: 38px; padding-bottom: 38px; flex-direction: column; text-align: center; }
}

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