:root {
  --ink: #071526;
  --navy: #0a1c31;
  --navy-2: #102947;
  --blue: #1688ff;
  --blue-2: #5eb7ff;
  --amber: #f5a524;
  --cloud: #f4f8fc;
  --mist: #e7eef6;
  --white: #ffffff;
  --muted: #607086;
  --line: rgba(8, 28, 49, 0.12);
  --shadow: 0 24px 70px rgba(5, 25, 46, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 70px 0; }
.surface { background: var(--cloud); }
.dark-surface { background: var(--navy); color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #0a72db;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 2px;
  background: var(--amber);
  content: "";
}

.dark-surface .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow { color: var(--blue-2); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(3.1rem, 7vw, 6.6rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.15rem); margin-bottom: 22px; }
h3 { font-size: clamp(1.28rem, 2vw, 1.65rem); margin-bottom: 12px; }
p { color: var(--muted); }
.dark-surface p, .hero p, .page-hero p { color: rgba(255,255,255,.72); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.27rem); line-height: 1.7; }
.section-intro { max-width: 760px; margin-bottom: 48px; }
.section-intro p:last-child { margin-bottom: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 38, .94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), #0a67c8);
  border-radius: 12px 12px 12px 3px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
  color: var(--white);
  font-size: .87rem;
}

.brand-copy { line-height: 1.04; }
.brand-copy small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.52);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a:not(.btn) {
  color: rgba(255,255,255,.75);
  font-size: .94rem;
  font-weight: 650;
  transition: color .2s ease;
}
.nav-links > a:hover:not(.btn), .nav-links > a[aria-current="page"]:not(.btn) { color: var(--white); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: #0876e4; }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: #eaf4ff; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-arrow::after { content: "↗"; font-size: 1.1em; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero::after {
  position: absolute;
  inset: auto -8vw -180px auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(94,183,255,.22);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(22,136,255,.035), 0 0 0 180px rgba(22,136,255,.025);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,17,31,.98) 0%, rgba(5,17,31,.92) 34%, rgba(5,17,31,.46) 60%, rgba(5,17,31,.08) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 750px; padding: 118px 0 96px; }
.hero h1 { max-width: 780px; }
.hero h1 span { color: var(--blue-2); }
.hero .lead { max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 32px; color: rgba(255,255,255,.58); font-size: .9rem; }

.proof-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.proof-item { padding: 26px 25px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: 4px; font-size: 1.12rem; }
.proof-item span { color: var(--muted); font-size: .86rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.copy-stack p:last-child { margin-bottom: 0; }
.statement-card {
  position: relative;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.statement-card::before {
  position: absolute;
  inset: -110px -90px auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 35% 35%, rgba(94,183,255,.75), rgba(22,136,255,.05) 64%, transparent 65%);
  border-radius: 50%;
  content: "";
}
.statement-card::after {
  position: absolute;
  inset: 38px 38px auto auto;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  content: "";
}
.statement-card > * { position: relative; z-index: 1; }
.statement-card .big-number { color: var(--amber); font-size: clamp(4.7rem, 9vw, 7rem); font-weight: 900; line-height: .9; letter-spacing: -.08em; }
.statement-card h3 { max-width: 360px; margin: 18px 0 0; font-size: 1.75rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(22,136,255,.42); box-shadow: 0 22px 55px rgba(5,25,46,.1); }
.card-number { color: var(--blue); font-size: .82rem; font-weight: 900; letter-spacing: .12em; }
.card h3 { margin-top: 44px; }
.card p { margin-bottom: 28px; }
.text-link { margin-top: auto; color: #096dca; font-weight: 800; }
.text-link::after { margin-left: 8px; content: "→"; transition: margin .2s ease; }
.text-link:hover::after { margin-left: 12px; }

.value-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: start; }
.value-list { border-top: 1px solid rgba(255,255,255,.15); }
.value-row { display: grid; grid-template-columns: 64px 1fr; gap: 10px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.value-row span { color: var(--amber); font-weight: 800; }
.value-row h3 { margin-bottom: 7px; }
.value-row p { margin-bottom: 0; }

.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.industry-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.industry-tag { display: inline-flex; margin-bottom: 28px; padding: 6px 10px; border-radius: 999px; background: #eaf4ff; color: #096dca; font-size: .76rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: steps; }
.process-step { position: relative; padding: 28px 32px 0 0; counter-increment: steps; }
.process-step::before { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 28px; background: var(--blue); border-radius: 50%; color: var(--white); content: "0" counter(steps); font-weight: 900; }
.process-step:not(:last-child)::after { position: absolute; top: 27px; right: 18px; left: 70px; height: 1px; background: var(--line); content: ""; }

.cta-panel {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 40px;
  align-items: center;
  padding: 56px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2038, #0b3155);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.cta-panel h2 { max-width: 730px; margin-bottom: 12px; }
.cta-panel p { margin-bottom: 0; }
.cta-actions { display: flex; justify-content: flex-end; }

.page-hero {
  position: relative;
  padding: 118px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at 82% 22%, rgba(22,136,255,.25), transparent 27%), var(--navy);
  color: var(--white);
}
.page-hero h1 { max-width: 930px; font-size: clamp(3.2rem, 6vw, 5.7rem); }
.page-hero .lead { max-width: 730px; }
.breadcrumbs { margin-bottom: 22px; color: rgba(255,255,255,.5); font-size: .86rem; }
.breadcrumbs a:hover { color: var(--white); }

.service-band { padding: 58px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 80px; }
.service-band:nth-child(even) { background: var(--cloud); }
.service-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.service-index { color: var(--blue); font-size: .84rem; font-weight: 900; letter-spacing: .1em; }
.service-copy > p { max-width: 760px; font-size: 1.08rem; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 25px; margin: 26px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: 14px 0 14px 27px; border-top: 1px solid var(--line); color: #33455a; }
.feature-list li::before { position: absolute; left: 0; color: var(--blue); content: "✓"; font-weight: 900; }

.side-nav { position: sticky; top: 105px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.side-nav strong { display: block; margin-bottom: 14px; }
.side-nav a { display: block; padding: 10px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.side-nav a:hover { color: var(--blue); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-card { padding: 36px; background: var(--navy); border-radius: var(--radius-lg); color: var(--white); }
.contact-item { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-item:first-of-type { margin-top: 25px; }
.contact-item span { display: block; margin-bottom: 4px; color: rgba(255,255,255,.5); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-item a, .contact-item strong { font-size: 1.06rem; }

.form-card { padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #cbd6e1; border-radius: 11px; background: var(--white); color: var(--ink); outline: none; }
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(22,136,255,.11); }
.form-note { margin: 15px 0 0; font-size: .84rem; }
.form-status { display: none; margin: 16px 0 0; padding: 13px 15px; border-radius: 10px; font-size: .9rem; }
.form-status.show { display: block; }
.form-status.success { background: #e9f8ef; color: #176337; }
.form-status.error { background: #fff0ef; color: #972c26; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 19px;
  background: #19a85b;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(3, 31, 17, .28);
  color: var(--white);
  font-size: .92rem;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); background: #118b49; }
.whatsapp-dot { width: 11px; height: 11px; background: var(--white); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,255,255,.18); }

.site-footer { padding: 68px 0 28px; background: #061321; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 70px; }
.footer-grid p { max-width: 430px; color: rgba(255,255,255,.56); }
.footer-links h4 { margin-bottom: 17px; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { display: block; margin: 9px 0; color: rgba(255,255,255,.65); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .82rem; }

.legal-copy { max-width: 880px; }
.legal-copy h2 { margin-top: 45px; font-size: 2rem; }
.legal-copy h3 { margin-top: 30px; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px 30px;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 40px rgba(0,0,0,.22);
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links .btn { margin-top: 18px; }
  .hero { min-height: 700px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,17,31,.98), rgba(5,17,31,.85) 58%, rgba(5,17,31,.48)); }
  .hero-content { max-width: 660px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .value-grid, .contact-grid, .service-layout { grid-template-columns: 1fr; gap: 45px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .process-step:nth-child(2)::after { display: none; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .side-nav { position: static; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 30px, 1180px); }
  .section { padding: 78px 0; }
  .section-sm { padding: 54px 0; }
  .nav-wrap { min-height: 70px; }
  .nav-links { top: 70px; }
  .brand-copy small { display: none; }
  .hero { min-height: 670px; align-items: flex-end; }
  .hero-image { object-position: 68% center; opacity: .68; }
  .hero-overlay { background: linear-gradient(0deg, rgba(5,17,31,.99) 10%, rgba(5,17,31,.8) 74%, rgba(5,17,31,.5)); }
  .hero-content { padding: 120px 0 76px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-actions .btn { width: 100%; }
  .proof-strip { margin-top: 0; }
  .proof-grid { grid-template-columns: 1fr; border-radius: 0; }
  .proof-item, .proof-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .cards, .industry-grid, .process-grid, .feature-list, .form-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .statement-card { min-height: 380px; padding: 30px; }
  .cta-panel, .contact-card, .form-card { padding: 30px 24px; border-radius: 20px; }
  .page-hero { padding: 92px 0 76px; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 15px; bottom: 15px; min-height: 49px; padding: 0 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
