:root {
  --navy-950: #07182f;
  --navy-900: #09264c;
  --blue-800: #0b4d7a;
  --blue-600: #0b87c8;
  --cyan-500: #16c7df;
  --cyan-200: #b8f8ff;
  --mint-300: #a9f4db;
  --white: #ffffff;
  --paper: #f5f9fc;
  --text: #14243a;
  --muted: #64748b;
  --line: rgba(20, 36, 58, 0.12);
  --shadow: 0 24px 70px rgba(7, 24, 47, 0.16);
  --shadow-soft: 0 14px 38px rgba(7, 24, 47, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 9999;
  background: var(--navy-950);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--container), calc(100% - 38px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(9, 38, 76, 0.08);
}

.nav {
  width: min(var(--container), calc(100% - 34px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy-950);
}

.logo-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--cyan-500);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(22, 199, 223, 0.16), rgba(11, 135, 200, 0.1));
  box-shadow: inset 0 0 0 1px rgba(22, 199, 223, 0.2);
}

.logo-symbol svg {
  width: 32px;
  height: 32px;
}

.logo-symbol circle {
  fill: currentColor;
  opacity: 0.15;
}

.logo-symbol path,
.logo-symbol circle:last-child {
  fill: currentColor;
}

.logo-symbol path:nth-of-type(2) {
  opacity: 0.65;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.94rem;
  color: #314862;
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--blue-800);
  background: rgba(11, 135, 200, 0.11);
  outline: none;
}

.nav-menu .menu-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 12px 26px rgba(11, 135, 200, 0.28);
}

.nav-menu .menu-button:hover,
.nav-menu .menu-button:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  border: 0;
  border-radius: 14px;
  background: rgba(11, 135, 200, 0.12);
  color: var(--navy-900);
  cursor: pointer;
}

.nav-toggle span {
  width: 23px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(100svh - 76px);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 84px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(22, 199, 223, 0.28), transparent 30%),
    radial-gradient(circle at 84% 75%, rgba(169, 244, 219, 0.24), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 45%, #0b4a78);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.25));
}

.hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.85;
}

.shape-one {
  width: 320px;
  height: 320px;
  left: -110px;
  bottom: -120px;
  background: rgba(22, 199, 223, 0.18);
}

.shape-two {
  width: 420px;
  height: 420px;
  right: -170px;
  top: 70px;
  background: rgba(169, 244, 219, 0.13);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
}

.eyebrow,
.section-tag {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  font-weight: 900;
}

.eyebrow {
  color: var(--cyan-200);
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 8.7rem);
  line-height: 0.86;
  letter-spacing: -0.09em;
}

.hero-title {
  max-width: 700px;
  margin: 28px 0 10px;
  font-size: clamp(1.35rem, 3.2vw, 2.55rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-500), var(--mint-300));
  color: var(--navy-950);
  box-shadow: 0 18px 38px rgba(22, 199, 223, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
}

.btn-light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 18px 34px rgba(7, 24, 47, 0.16);
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.quick-info span {
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.lab-panel {
  position: absolute;
  inset: 42px 16px auto auto;
  width: min(410px, 100%);
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 34px 90px rgba(0,0,0,0.32);
  backdrop-filter: blur(18px);
}

.panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}

.monitor {
  min-height: 205px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(184,248,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(184,248,255,0.08) 1px, transparent 1px),
    rgba(4, 16, 34, 0.6);
  background-size: 26px 26px;
  overflow: hidden;
}

.line {
  height: 12px;
  border-radius: 999px;
  margin: 19px 0;
  background: linear-gradient(90deg, var(--cyan-500), var(--mint-300));
  box-shadow: 0 0 30px rgba(22, 199, 223, 0.28);
}

.line-a { width: 74%; }
.line-b { width: 46%; margin-left: auto; }
.line-c { width: 86%; }

.sample-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.sample-area span {
  display: block;
  height: 82px;
  border-radius: 18px 18px 22px 22px;
  background: linear-gradient(to top, rgba(22,199,223,0.66) 0 48%, rgba(255,255,255,0.75) 49% 100%);
  border: 1px solid rgba(255,255,255,0.32);
}

.panel-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--white);
}

.panel-label strong {
  font-size: 1.05rem;
}

.panel-label small {
  color: rgba(255,255,255,0.74);
}

.float-card {
  position: absolute;
  max-width: 210px;
  padding: 14px 17px;
  border-radius: 18px;
  color: var(--navy-950);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.float-one { top: 18px; left: 0; }
.float-two { right: 0; bottom: 76px; }
.float-three { left: 16px; bottom: 38px; }

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-tag {
  color: var(--blue-600);
}

.section-heading h2,
.finance-card h2,
.cta-card h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.065em;
  color: var(--navy-950);
}

.section-heading p:not(.section-tag),
.finance-card p:not(.section-tag),
.cta-card p:not(.section-tag),
.contact-copy p:not(.section-tag) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: auto -50px -60px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(22, 199, 223, 0.13);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  font-weight: 900;
}

.info-card h3,
.service-item h3 {
  margin: 22px 0 8px;
  font-size: 1.24rem;
  line-height: 1.18;
  color: var(--navy-950);
}

.info-card p,
.service-item p {
  margin: 0;
  color: var(--muted);
}

.section-blue {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(22,199,223,0.24), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--blue-800));
}

.section-blue .section-tag,
.section-blue .section-heading h2,
.section-blue .service-item h3 {
  color: var(--white);
}

.section-blue .section-heading p,
.section-blue .service-item p {
  color: rgba(255,255,255,0.76);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 16px 42px rgba(0,0,0,0.14);
}

.service-item span {
  display: inline-flex;
  color: var(--cyan-200);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.service-item h3 {
  margin-top: 10px;
}

.finance-section {
  background:
    linear-gradient(135deg, rgba(22,199,223,0.12), rgba(169,244,219,0.16)),
    var(--paper);
}

.finance-card,
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--cyan-500), var(--mint-300));
  color: var(--navy-950);
  padding: clamp(30px, 6vw, 62px);
  box-shadow: var(--shadow);
}

.finance-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.finance-card::after,
.cta-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -110px;
  top: -130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.36);
}

.finance-card > *,
.cta-card > * {
  position: relative;
  z-index: 1;
}

.finance-card .section-tag,
.cta-card .section-tag {
  color: var(--navy-950);
}

.finance-card p:not(.section-tag),
.cta-card p:not(.section-tag) {
  color: rgba(7,24,47,0.76);
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.person-card {
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--blue-800));
  box-shadow: var(--shadow-soft);
}

.person-card span {
  display: block;
  color: var(--cyan-200);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  margin-bottom: 6px;
}

.person-card strong {
  font-size: 1.4rem;
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-row:hover,
.contact-row:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(11,135,200,0.24);
  outline: none;
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-row small {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 4px;
}

.contact-row strong {
  color: var(--navy-950);
  overflow-wrap: anywhere;
}

.cta-section {
  padding: 84px 0;
  background: var(--paper);
}

.cta-card {
  text-align: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(184,248,255,0.5), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--blue-800));
  color: var(--white);
}

.cta-card h2,
.cta-card .section-tag {
  color: var(--white);
}

.cta-card p:not(.section-tag) {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.78);
}

.cta-card .btn {
  margin-top: 26px;
}

.footer {
  padding: 34px 0;
  color: rgba(255,255,255,0.78);
  background: #041123;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.footer p {
  max-width: 660px;
  margin: 0;
}

.footer span,
.footer a {
  display: block;
  color: rgba(255,255,255,0.82);
  margin-bottom: 6px;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--cyan-200);
  outline: none;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--mint-300), var(--cyan-500));
  box-shadow: 0 20px 40px rgba(7,24,47,0.24);
  font-weight: 900;
}

.whatsapp-float span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-950);
  font-size: 0.68rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 17px;
    right: 17px;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a {
    justify-content: flex-start;
    min-height: 48px;
    border-radius: 14px;
  }

  .nav-menu .menu-button {
    justify-content: center;
  }

  .hero {
    padding: 68px 0;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .lab-panel {
    inset: 28px auto auto 50%;
    transform: translateX(-50%);
    width: min(420px, 94%);
  }

  .float-two {
    right: 0;
    bottom: 34px;
  }

  .float-three {
    bottom: 10px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .finance-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container,
  .nav {
    width: calc(100% - 28px);
  }

  .nav {
    min-height: 68px;
  }

  .logo-symbol {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 62px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 22vw, 5.5rem);
  }

  .hero-title {
    margin-top: 22px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .quick-info span {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .lab-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .monitor {
    min-height: 150px;
  }

  .sample-area span {
    height: 62px;
  }

  .float-card {
    font-size: 0.86rem;
    padding: 11px 13px;
  }

  .float-one {
    top: 0;
  }

  .float-two {
    right: 0;
    bottom: 26px;
  }

  .float-three {
    left: 0;
    bottom: 0;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .cta-section {
    padding: 62px 0;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 10px 14px;
  }
}
