:root {
  --navy-950: #04101f;
  --navy-900: #07182d;
  --navy-800: #0a2547;
  --navy-700: #103b6d;
  --blue-500: #1677d2;
  --cyan-400: #55c8f5;
  --cyan-300: #8cddfa;
  --ice-100: #edf7fc;
  --ice-50: #f7fbfd;
  --white: #ffffff;
  --ink: #102033;
  --muted: #607084;
  --line: rgba(15, 42, 70, 0.12);
  --dark-line: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 24px 70px rgba(3, 18, 35, 0.12);
  --shadow-card: 0 18px 42px rgba(3, 18, 35, 0.09);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ice-50);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 16, 31, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(140, 221, 250, 0.4);
  border-radius: 13px;
  background:
    linear-gradient(
      145deg,
      rgba(85, 200, 245, 0.22),
      rgba(22, 119, 210, 0.05)
    );
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(85, 200, 245, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan-400);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--cyan-400), #2d9be2);
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(85, 200, 245, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, #75d4f7, #3ca9ea);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.button-large {
  min-width: 190px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 90px;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(25, 121, 201, 0.2),
      transparent 32%
    ),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255,255,255,.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.03) 1px,
      transparent 1px
    );
  background-size: 58px 58px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(15px);
}

.hero-glow-one {
  width: 440px;
  height: 440px;
  top: -170px;
  right: 4%;
  background: rgba(85, 200, 245, 0.1);
}

.hero-glow-two {
  width: 310px;
  height: 310px;
  bottom: -170px;
  left: 25%;
  background: rgba(22, 119, 210, 0.11);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 75px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.eyebrow span {
  width: 25px;
  height: 1px;
  background: var(--cyan-400);
}

.hero h1 {
  max-width: 770px;
  margin: 26px 0 24px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.hero h1 em {
  display: block;
  color: var(--cyan-400);
  font-style: normal;
}

.hero-text {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 680px;
  margin-top: 49px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof div {
  padding-right: 25px;
}

.hero-proof div + div {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 14px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
}

.visual-shell {
  padding: 28px;
  border: 1px solid rgba(140, 221, 250, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}

.visual-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}

.visual-label {
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-top h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}

.status {
  height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(85, 200, 245, 0.2);
  border-radius: 999px;
  background: rgba(85, 200, 245, 0.08);
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 700;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 13px var(--cyan-400);
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.operation-card {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 19px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 19px;
  background: rgba(3, 18, 35, 0.48);
}

.operation-card-wide {
  grid-column: 1 / -1;
  min-height: auto;
  flex-direction: row;
  align-items: center;
}

.operation-icon {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: rgba(85, 200, 245, 0.1);
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
}

.operation-card div span,
.operation-card div strong {
  display: block;
}

.operation-card div span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operation-card div strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1.5;
}

.operation-result {
  margin-left: auto;
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 700;
}

.operation-card-accent {
  position: relative;
  overflow: hidden;
  border-color: rgba(85, 200, 245, 0.26);
  background:
    linear-gradient(
      135deg,
      rgba(22, 119, 210, 0.21),
      rgba(85, 200, 245, 0.05)
    );
}

.pulse-ring {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(85, 200, 245, 0.55);
  border-radius: 50%;
  box-shadow:
    0 0 0 7px rgba(85, 200, 245, 0.07),
    0 0 30px rgba(85, 200, 245, 0.22);
}

.floating-note {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(85, 200, 245, 0.25);
  border-radius: 18px;
  background: rgba(7, 24, 45, 0.95);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}

.floating-note span {
  color: var(--cyan-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.floating-note p {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 12px;
  line-height: 1.55;
}

.principle-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principle-grid div {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 100px;
  padding: 0 34px;
}

.principle-grid div + div {
  border-left: 1px solid var(--line);
}

.principle-grid span {
  color: var(--blue-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principle-grid strong {
  color: var(--ink);
  font-size: 13px;
}

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--ice-50);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.vision-copy h2,
.cta-panel h2 {
  margin: 18px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.solution-card {
  position: relative;
  min-height: 395px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 119, 210, 0.3);
}

.solution-card.featured {
  background:
    linear-gradient(
      150deg,
      rgba(22, 119, 210, 0.08),
      rgba(255, 255, 255, 0.95)
    );
}

.solution-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #c7d5df;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 119, 210, 0.12);
  border-radius: 16px;
  background: var(--ice-100);
  color: var(--blue-500);
  font-size: 20px;
}

.solution-card h3 {
  margin: 35px 0 15px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 34px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
}

.solution-card a span {
  transition: transform 0.2s ease;
}

.solution-card a:hover span {
  transform: translateX(4px);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(22, 119, 210, 0.16),
      transparent 30%
    ),
    var(--navy-950);
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  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: 62px 62px;
}

.vision-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.section-kicker-light {
  color: var(--cyan-300);
}

.vision-copy h2 {
  color: var(--white);
}

.vision-copy p {
  max-width: 660px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 16px;
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 31px;
  color: var(--cyan-300);
  font-size: 13px;
  font-weight: 800;
}

.vision-panel {
  position: relative;
  padding: 48px;
  border: 1px solid rgba(140, 221, 250, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      150deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.025)
    );
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.22);
}

.vision-quote-mark {
  position: absolute;
  top: 18px;
  right: 32px;
  color: rgba(85, 200, 245, 0.18);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
}

.vision-panel blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.vision-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
}

.signature-line {
  width: 45px;
  height: 1px;
  background: var(--cyan-400);
}

.vision-signature strong,
.vision-signature small {
  display: block;
}

.vision-signature strong {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.vision-signature small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.cta-section {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(85, 200, 245, 0.12),
      transparent 34%
    ),
    var(--ice-100);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
  padding: 57px 62px;
  border: 1px solid rgba(22, 119, 210, 0.16);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.cta-panel p {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--navy-950);
}

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

.footer-brand {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-layout p {
  max-width: 380px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--cyan-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  letter-spacing: 0.05em;
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .hero-layout,
  .vision-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 650px;
  }

  .floating-note {
    right: 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .solution-card {
    min-height: 310px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header .button-small {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding: 75px 0 72px;
  }

  .hero-layout {
    gap: 55px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-proof div {
    padding: 0;
  }

  .hero-proof div + div {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .visual-shell {
    padding: 18px;
  }

  .visual-top {
    flex-direction: column;
  }

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

  .operation-card-wide {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .operation-result {
    margin-left: 0;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

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

  .principle-grid div {
    min-height: 80px;
    padding: 0 8px;
  }

  .principle-grid div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .vision-copy h2 {
    font-size: 38px;
  }

  .vision-panel {
    padding: 34px 26px;
  }

  .vision-panel blockquote {
    font-size: 25px;
  }

  .cta-panel {
    gap: 35px;
    padding: 38px 26px;
  }

  .cta-panel .button {
    width: 100%;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.services-hero {
  padding: 100px 0 88px;
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(85, 200, 245, 0.12),
      transparent 28%
    ),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.services-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  gap: 85px;
  align-items: end;
}

.services-hero h1 {
  max-width: 880px;
  margin: 22px 0 24px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.services-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.8;
}

.services-hero-note {
  padding: 28px;
  border: 1px solid rgba(140, 221, 250, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.services-hero-note span,
.services-hero-note strong {
  display: block;
}

.services-hero-note span {
  margin-bottom: 14px;
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-hero-note strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.45;
}

.service-stack {
  display: grid;
  gap: 18px;
  margin-top: 56px;
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1.2fr) minmax(260px, 0.65fr);
  gap: 34px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.service-row-accent {
  border-color: rgba(22, 119, 210, 0.28);
  background:
    linear-gradient(
      145deg,
      rgba(22, 119, 210, 0.07),
      var(--white)
    );
}

.service-index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--ice-100);
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
}

.service-tag {
  color: var(--blue-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-main h3 {
  margin: 12px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  line-height: 1.25;
}

.service-main p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-results {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.service-results > span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-results ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-results li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-results li + li {
  margin-top: 9px;
}

.service-results li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.process-layout h2 {
  margin: 18px 0 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.process-steps article {
  min-height: 210px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.process-steps span,
.process-steps strong {
  display: block;
}

.process-steps span {
  margin-bottom: 28px;
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.process-steps strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.process-steps p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 920px) {
  .services-hero-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 58px 1fr;
  }

  .service-results {
    grid-column: 2;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .services-hero {
    padding: 74px 0 68px;
  }

  .services-hero h1 {
    font-size: 43px;
  }

  .service-row {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .service-results {
    grid-column: auto;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Ajuste final de proporciones — Servicios */
.services-hero {
  padding-top: 82px;
  padding-bottom: 76px;
}

.services-hero h1 {
  max-width: 850px;
  font-size: clamp(44px, 5.2vw, 64px);
  line-height: 1.04;
}

.services-hero p {
  max-width: 790px;
}

.process-layout h2 {
  max-width: 580px;
  font-size: clamp(36px, 4.2vw, 50px);
}

@media (max-width: 640px) {
  .services-hero h1 {
    font-size: 39px;
  }
}

/* Ajuste final del hero — Home */
.hero {
  padding-top: 78px;
  padding-bottom: 68px;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.82fr);
  gap: 58px;
}

.hero h1 {
  max-width: 720px;
  margin-top: 22px;
  margin-bottom: 21px;
  font-size: clamp(45px, 5.1vw, 66px);
  line-height: 1.01;
}

.hero-text {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 29px;
}

.hero-proof {
  max-width: 640px;
  margin-top: 36px;
  padding-top: 22px;
}

.visual-shell {
  padding: 23px;
  border-radius: 27px;
}

.visual-top {
  margin-bottom: 19px;
}

.visual-top h2 {
  font-size: 20px;
}

.operation-grid {
  gap: 10px;
}

.operation-card {
  min-height: 125px;
  gap: 14px;
  padding: 17px;
  border-radius: 16px;
}

.operation-card-wide {
  min-height: auto;
}

.operation-card div strong {
  font-size: 12px;
}

.floating-note {
  right: -18px;
  bottom: -20px;
  width: 190px;
  padding: 15px;
}

.floating-note p {
  font-size: 11px;
}

@media (max-width: 1020px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-text {
    font-size: 15px;
  }
}

.technology-hero {
  padding: 88px 0 80px;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(85, 200, 245, 0.13),
      transparent 28%
    ),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.technology-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
  gap: 75px;
  align-items: center;
}

.technology-hero h1 {
  max-width: 820px;
  margin: 22px 0 24px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.technology-hero h1 em {
  display: block;
  color: var(--cyan-400);
  font-style: normal;
}

.technology-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.8;
}

.technology-system {
  padding: 28px;
  border: 1px solid rgba(140, 221, 250, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
}

.technology-system-top span,
.technology-system-top strong {
  display: block;
}

.technology-system-top span {
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.technology-system-top strong {
  margin-top: 8px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.technology-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
}

.technology-flow div {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(3, 18, 35, 0.48);
}

.technology-flow span {
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
}

.technology-flow strong {
  color: var(--white);
  font-size: 12px;
}

.technology-flow i {
  color: rgba(255, 255, 255, 0.28);
  font-style: normal;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.technology-card {
  position: relative;
  min-height: 360px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.technology-card-featured {
  border-color: rgba(22, 119, 210, 0.25);
  background:
    linear-gradient(
      145deg,
      rgba(22, 119, 210, 0.07),
      var(--white)
    );
}

.technology-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #c7d5df;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.technology-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--ice-100);
  color: var(--blue-500);
  font-size: 20px;
}

.technology-card h3 {
  margin: 29px 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}

.technology-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.technology-card ul {
  margin: 25px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.technology-card li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.technology-card li + li {
  margin-top: 8px;
}

.technology-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
}

.technology-principle-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.technology-principle-layout h2 {
  margin: 18px 0 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4.5vw, 55px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.technology-principle-layout > div:first-child p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.8;
}

.technology-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.technology-principles article {
  min-height: 205px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.technology-principles span,
.technology-principles strong {
  display: block;
}

.technology-principles span {
  margin-bottom: 28px;
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
}

.technology-principles strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.technology-principles p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 920px) {
  .technology-hero-layout,
  .technology-principle-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .technology-hero {
    padding: 68px 0 64px;
  }

  .technology-hero h1 {
    font-size: 40px;
  }

  .technology-flow {
    grid-template-columns: 1fr;
  }

  .technology-flow i {
    text-align: center;
    transform: rotate(90deg);
  }

  .technology-principles {
    grid-template-columns: 1fr;
  }
}

.about-hero {
  padding: 88px 0 80px;
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(85, 200, 245, 0.13),
      transparent 28%
    ),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.62fr);
  gap: 85px;
  align-items: end;
}

.about-hero h1 {
  max-width: 850px;
  margin: 22px 0 24px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.8;
}

.about-manifesto {
  padding: 32px;
  border: 1px solid rgba(140, 221, 250, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.about-manifesto span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-manifesto blockquote {
  margin: 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  line-height: 1.4;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 100px;
}

.about-story-layout h2 {
  margin: 18px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4.8vw, 57px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.about-story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-story-copy p + p {
  margin-top: 22px;
}

.about-principles-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.about-principles-grid article {
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ice-50);
}

.about-principles-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--blue-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.about-principles-grid h3 {
  margin: 0 0 15px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}

.about-principles-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.about-vision-layout {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 90px;
  align-items: center;
}

.about-vision-layout h2 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.about-vision-layout > div:first-child p {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.82;
}

.about-vision-card {
  padding: 42px;
  border: 1px solid rgba(140, 221, 250, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.025)
    );
}

.about-vision-label {
  display: block;
  margin-bottom: 30px;
  color: var(--cyan-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-vision-card strong {
  display: block;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.35;
}

.about-vision-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 920px) {
  .about-hero-layout,
  .about-story-layout,
  .about-vision-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 68px 0 64px;
  }

  .about-hero h1 {
    font-size: 40px;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  padding: 88px 0 80px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(85, 200, 245, 0.13),
      transparent 28%
    ),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.6fr);
  gap: 85px;
  align-items: end;
}

.contact-hero h1 {
  max-width: 860px;
  margin: 22px 0 24px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.contact-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.8;
}

.contact-direct {
  padding: 32px;
  border: 1px solid rgba(140, 221, 250, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.contact-direct-label,
.contact-direct strong,
.contact-direct a {
  display: block;
}

.contact-direct-label {
  margin-bottom: 22px;
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-direct strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
}

.contact-direct a {
  margin-top: 12px;
  color: var(--cyan-400);
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  font-weight: 800;
}

.contact-direct p {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 95px;
  align-items: start;
}

.contact-main h2 {
  margin: 18px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4.8vw, 57px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.contact-main p {
  max-width: 700px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

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

.contact-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.contact-steps article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ice-100);
  color: var(--blue-500);
  font-size: 10px;
  font-weight: 800;
}

.contact-steps strong {
  display: block;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.contact-steps p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.contact-fit-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.contact-fit-layout h2 {
  margin: 18px 0 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4.6vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

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

.contact-fit-grid article {
  display: grid;
  grid-template-columns: 45px 1fr;
  column-gap: 18px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-fit-grid span {
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
}

.contact-fit-grid strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.contact-fit-grid p {
  grid-column: 2;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 920px) {
  .contact-hero-layout,
  .contact-layout,
  .contact-fit-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 68px 0 64px;
  }

  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-direct a {
    font-size: 23px;
  }
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-actions .button-secondary {
  border-color: rgba(10, 30, 54, 0.18);
  background: transparent;
  color: var(--navy-950);
}

.contact-actions .button-secondary:hover {
  border-color: rgba(10, 30, 54, 0.32);
  background: rgba(10, 30, 54, 0.04);
}
