:root {
  --navy-950: #031d35;
  --navy-900: #052b4d;
  --navy-800: #07385f;
  --navy-700: #0b4b75;
  --cyan-500: #15a7df;
  --cyan-400: #37bee8;
  --teal-500: #19a486;
  --green-400: #94bd7c;
  --ink: #102b44;
  --muted: #5b6e7f;
  --line: rgba(7, 56, 95, 0.12);
  --surface: #ffffff;
  --soft: #f3f8fb;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 28px 70px rgba(5, 43, 77, 0.12);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdff;
  font-family:
    Inter, Avenir, "Segoe UI", Roboto, Helvetica, Arial, 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,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-top: 3px solid var(--cyan-500);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 35px rgba(5, 43, 77, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: var(--shell);
  min-height: 82px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(7, 56, 95, 0.08);
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 7px 20px rgba(5, 43, 77, 0.1);
}

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

.brand-copy strong {
  color: var(--navy-900);
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.brand-i {
  color: var(--cyan-500);
}

.brand-copy small {
  margin-top: 4px;
  color: var(--navy-700);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #284960;
  font-size: 0.91rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--cyan-500);
}

.main-nav .nav-cta {
  padding: 10px 19px;
  color: white;
  background: var(--navy-900);
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: white;
  background: var(--cyan-500);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding: 154px 0 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(21, 167, 223, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6fbfe 55%, #edf7fb 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -230px;
  left: -180px;
  border: 1px solid rgba(21, 167, 223, 0.18);
  border-radius: 50%;
}

.hero::after {
  width: 820px;
  height: 2px;
  right: -280px;
  bottom: 210px;
  background: linear-gradient(90deg, transparent, rgba(21, 167, 223, 0.25), transparent);
  transform: rotate(-26deg);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(25, 164, 134, 0.12);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 310px;
  height: 310px;
  right: 3%;
  bottom: -140px;
}

.hero-orbit-two {
  width: 180px;
  height: 180px;
  right: 10%;
  bottom: -75px;
}

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

.eyebrow {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 10px;
  color: var(--navy-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--cyan-500);
}

.hero h1,
.section-heading h2,
.solutions-intro h2,
.contact h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5vw, 5rem);
}

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

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  box-shadow: 0 15px 30px rgba(5, 43, 77, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cyan-500);
  box-shadow: 0 16px 32px rgba(21, 167, 223, 0.24);
}

.button-secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(21, 167, 223, 0.45);
  box-shadow: 0 12px 28px rgba(5, 43, 77, 0.08);
}

.hero-tags {
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.hero-tags li {
  padding: 7px 12px;
  color: #426078;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 16%;
  left: 15%;
  background: rgba(21, 167, 223, 0.16);
  border-radius: 50%;
  filter: blur(70px);
}

.visual-frame {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(5, 43, 77, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: perspective(1300px) rotateY(-4deg) rotateX(1deg);
}

.visual-frame::after {
  position: absolute;
  content: "";
  inset: 38px 0 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 35%);
  pointer-events: none;
}

.visual-topbar {
  display: flex;
  height: 38px;
  padding: 0 15px;
  align-items: center;
  gap: 6px;
  background: #f7fafc;
  border-bottom: 1px solid rgba(7, 56, 95, 0.08);
}

.visual-topbar span {
  width: 7px;
  height: 7px;
  background: #dbe6ed;
  border-radius: 50%;
}

.visual-topbar span:first-child {
  background: var(--cyan-400);
}

.visual-topbar p {
  margin: 0 auto;
  color: #91a3b1;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 1.442 / 1;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 56, 95, 0.1);
  box-shadow: 0 16px 36px rgba(5, 43, 77, 0.15);
  backdrop-filter: blur(12px);
}

.floating-card-one {
  right: -22px;
  bottom: 64px;
  padding: 13px 18px;
  gap: 11px;
  border-radius: 16px;
}

.floating-card-two {
  top: 78px;
  left: -26px;
  padding: 12px 16px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 14px;
}

.floating-card strong {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
}

.floating-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.2;
}

.floating-card-two strong {
  color: var(--cyan-500);
  font-size: 1.05rem;
}

.floating-dot {
  width: 9px;
  height: 9px;
  background: var(--teal-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(25, 164, 134, 0.12);
}

.capabilities {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 74px;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  color: #5b7488;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.capabilities i {
  width: 4px;
  height: 4px;
  background: var(--cyan-500);
  border-radius: 50%;
}

.section {
  padding: 120px 0;
}

.services {
  background: white;
}

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

.section-heading h2,
.solutions-intro h2,
.contact h2 {
  font-size: clamp(2.35rem, 4vw, 4.1rem);
}

.section-heading > p,
.solutions-intro > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 370px;
  padding: 28px;
  background: linear-gradient(160deg, white, #f8fbfd);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(21, 167, 223, 0.32);
  box-shadow: 0 22px 45px rgba(5, 43, 77, 0.1);
  transform: translateY(-6px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 26px;
  color: #a7b8c4;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  place-items: center;
  color: var(--cyan-500);
  background: rgba(21, 167, 223, 0.09);
  border: 1px solid rgba(21, 167, 223, 0.14);
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
}

.service-icon-phone {
  font-size: 1.7rem;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-900);
  font-size: 1.22rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.card-link {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-700);
  font-size: 0.75rem;
  font-weight: 750;
}

.card-link b {
  color: var(--cyan-500);
  font-size: 1rem;
}

.solutions {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(21, 167, 223, 0.18), transparent 28%),
    linear-gradient(145deg, #031d35 0%, #052f52 58%, #073d62 100%);
}

.solution-lines {
  position: absolute;
  width: 560px;
  height: 560px;
  top: -220px;
  right: -90px;
  border: 1px solid rgba(55, 190, 232, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(55, 190, 232, 0.035),
    0 0 0 160px rgba(55, 190, 232, 0.025);
}

.solutions .section-shell {
  position: relative;
  z-index: 2;
}

.eyebrow-light {
  color: #92c7df;
}

.solutions-intro {
  max-width: 790px;
}

.solutions-intro h2,
.contact h2 {
  color: white;
}

.solutions-intro > p {
  max-width: 680px;
  margin-top: 25px;
  color: #b8cad8;
}

.product-grid {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.product-card::after {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -100px;
  content: "";
  background: rgba(21, 167, 223, 0.12);
  border-radius: 50%;
  filter: blur(4px);
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-badge {
  padding: 7px 12px;
  color: #bce9f8;
  background: rgba(21, 167, 223, 0.12);
  border: 1px solid rgba(55, 190, 232, 0.18);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-arrow {
  color: var(--cyan-400);
  font-size: 1.2rem;
}

.product-name {
  margin-top: 36px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}

.product-name em {
  margin-left: 8px;
  color: var(--cyan-400);
  font-style: normal;
  font-weight: 500;
}

.product-i {
  color: var(--cyan-400);
}

.product-card > p {
  max-width: 500px;
  margin: 24px 0;
  color: #c5d4df;
}

.product-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  color: #e4eef4;
  font-size: 0.88rem;
  list-style: none;
}

.product-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  content: "";
  background: var(--teal-500);
  border-radius: 50%;
}

.product-compliance {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  margin-top: 24px;
  padding: 13px 14px;
  gap: 10px;
  color: #dff7ee;
  background: rgba(37, 175, 135, 0.1);
  border: 1px solid rgba(95, 219, 181, 0.2);
  border-radius: 14px;
}

.product-compliance > span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  color: #062f56;
  background: #7edacb;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.product-compliance p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.process {
  background:
    radial-gradient(circle at 0% 90%, rgba(148, 189, 124, 0.11), transparent 23%),
    var(--soft);
}

.process-heading {
  align-items: end;
}

.process-list {
  display: grid;
  margin: 60px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: steps;
  list-style: none;
}

.process-step {
  position: relative;
  display: grid;
  padding: 34px 38px 18px 0;
  grid-template-columns: auto 1fr;
  gap: 22px;
  border-top: 1px solid rgba(7, 56, 95, 0.18);
}

.process-step:not(:last-child) {
  margin-right: 24px;
}

.process-step::before {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -6px;
  left: 0;
  content: "";
  background: var(--cyan-500);
  border: 3px solid var(--soft);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--cyan-500);
}

.process-step > span {
  color: var(--cyan-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-step h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 1.1rem;
  line-height: 1.3;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  padding: 70px 0;
  background: white;
}

.contact-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 64px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(55, 190, 232, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(5, 43, 77, 0.18);
}

.contact-panel::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -210px;
  bottom: -230px;
  content: "";
  border: 1px solid rgba(55, 190, 232, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(55, 190, 232, 0.04);
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  max-width: 710px;
}

.contact-copy > p {
  max-width: 680px;
  margin-top: 22px;
  color: #bdd0dd;
}

.button-light {
  margin-top: 32px;
  color: var(--navy-900);
  background: white;
}

.button-light:hover,
.button-light:focus-visible {
  color: white;
  background: var(--cyan-500);
  box-shadow: 0 16px 34px rgba(21, 167, 223, 0.22);
}

.contact-details {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0;
  padding: 30px;
  gap: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  font-style: normal;
}

.contact-details > div + div {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-label {
  display: block;
  margin-bottom: 7px;
  color: #8eb9d2;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a {
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--cyan-400);
}

.contact-details p {
  margin: 0;
  color: #d8e4ec;
  font-size: 0.96rem;
  line-height: 1.55;
}

.site-footer {
  padding: 34px 0;
  background: white;
  border-top: 1px solid var(--line);
}

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

.footer-brand img {
  width: 44px;
  height: 44px;
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.footer-grid > a:last-child {
  justify-self: end;
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 650;
}

.footer-grid > a:last-child:hover {
  color: var(--cyan-500);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(21, 167, 223, 0.45);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5.4vw, 4rem);
  }

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

  .service-card {
    min-height: 330px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    padding: 18px;
    gap: 4px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 25px 55px rgba(5, 43, 77, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    backdrop-filter: blur(16px);
  }

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

  .main-nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }

  .main-nav .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid,
  .section-heading,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-tags {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .capabilities {
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading {
    gap: 24px;
  }

  .section-heading > p {
    max-width: 590px;
  }

  .product-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

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

  .process-list {
    gap: 10px;
  }

  .process-step:not(:last-child) {
    margin-right: 0;
  }

  .contact-panel {
    padding: 46px;
    align-items: start;
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-grid > a:last-child {
    justify-self: center;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 26px);
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .brand-copy small {
    max-width: 180px;
    font-size: 0.5rem;
    white-space: nowrap;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-tags {
    gap: 6px;
  }

  .visual-frame {
    border-radius: 19px;
    transform: none;
  }

  .floating-card-one {
    right: -2px;
    bottom: 22px;
  }

  .floating-card-two {
    top: 58px;
    left: -2px;
  }

  .capabilities {
    min-height: 108px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .solutions-intro h2,
  .contact h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .service-grid {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 315px;
  }

  .product-card {
    padding: 28px 24px;
  }

  .product-name {
    font-size: 1.8rem;
  }

  .contact {
    padding: 36px 0;
  }

  .contact-panel {
    padding: 35px 24px;
    border-radius: 22px;
  }

  .contact-details {
    padding: 24px;
  }

  .contact-details a {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Extensión del diseño publicado en iconnectec.com, 16-09-2026. */
.legal-page .site-header { background: rgba(255,255,255,.96); box-shadow: 0 10px 35px rgba(5,43,77,.06); }
.legal-hero { padding: 142px 0 52px; background: radial-gradient(ellipse at 85% 15%, rgba(21,167,223,.12), transparent 55%), linear-gradient(145deg,#f3f8fb,#fbfdff); border-bottom: 1px solid var(--line); }
.legal-crumb { color: var(--muted); font-size:.85rem; margin:0 0 24px; }
.legal-crumb a { color:var(--navy-700); }
.legal-hero h1 { margin:14px 0 20px; max-width:900px; color:var(--navy-900); font-size:clamp(2.4rem,4.5vw,4.15rem); font-weight:760; line-height:1.08; letter-spacing:-.045em; }
.legal-hero .legal-lead { margin:0; max-width:760px; color:var(--muted); font-size:1.1rem; }
.legal-meta { display:flex; flex-wrap:wrap; gap:12px; margin-top:25px; }
.legal-meta span { border:1px solid var(--line); background:#fff; border-radius:999px; padding:6px 14px; font-size:.78rem; color:var(--navy-700); }
.legal-layout { display:grid; grid-template-columns:260px minmax(0,1fr); gap:48px; align-items:start; padding:48px 0 72px; }
.legal-sidebar { position:sticky; top:108px; padding:24px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); }
.legal-sidebar h2 { margin:0 0 14px; font-size:.8rem; color:var(--navy-700); text-transform:uppercase; letter-spacing:.09em; }
.legal-sidebar nav { display:grid; gap:4px; }
.legal-sidebar a { padding:7px 0; color:var(--muted); font-size:.86rem; line-height:1.4; }
.legal-sidebar a:hover { color:var(--cyan-500); }
.legal-sidebar .legal-related { margin-top:22px; padding-top:20px; border-top:1px solid var(--line); }
.legal-related a { display:block; }
.legal-related a[aria-current=page] { color:var(--navy-900); font-weight:700; }
.legal-content { min-width:0; }
.legal-content section { padding:0 0 30px; margin-bottom:30px; border-bottom:1px solid var(--line); scroll-margin-top:110px; }
.legal-content section:last-child { border-bottom:0; margin-bottom:0; padding-bottom:0; }
.legal-content h2 { color:var(--navy-900); font-size:1.5rem; line-height:1.3; letter-spacing:-.025em; margin:0 0 18px; }
.legal-content h3 { color:var(--navy-700); font-size:1.03rem; margin:24px 0 10px; }
.legal-content p { margin:0 0 15px; color:#425e73; }
.legal-content ul,.legal-content ol { margin:0 0 18px; padding-left:23px; color:#425e73; }
.legal-content li { padding-left:3px; margin-bottom:9px; }
.legal-content a { color:var(--navy-700); text-decoration:underline; text-underline-offset:3px; overflow-wrap:anywhere; }
.legal-content a:hover { color:var(--cyan-500); }
.legal-content .button { color:#fff; text-decoration:none; }
.legal-callout { background:var(--soft); border-left:3px solid var(--cyan-500); border-radius:0 16px 16px 0; padding:22px 24px; margin:22px 0; }
.legal-callout p:last-child { margin-bottom:0; }
.legal-contact { background:var(--navy-900); border-radius:var(--radius-md); padding:28px; margin-top:28px; }
.legal-contact h3,.legal-contact p { color:#fff; }
.legal-contact a { color:#8ddfff; }
.legal-contact h3 { margin-top:0; }
.legal-contact p:last-child { margin-bottom:0; }
.legal-footer-links { display:flex; flex-wrap:wrap; justify-content:center; gap:12px 26px; border-top:1px solid var(--line); margin-top:25px; padding-top:22px; font-size:.8rem; color:var(--navy-700); }
.legal-footer-links a:hover { color:var(--cyan-500); }
.legal-draft { padding:15px 20px; background:#fff5df; border:1px solid #ebd19f; color:#684713; border-radius:14px; margin-top:25px; font-size:.88rem; }
.legal-pending { color:#684713; background:#fff5df; padding:2px 5px; border-radius:4px; overflow-wrap:anywhere; }
.legal-content .legal-table-wrap { overflow-x:auto; margin:18px 0; }
.legal-content table { width:100%; border-collapse:collapse; font-size:.93rem; }
.legal-content th { background:var(--soft); color:var(--navy-900); text-align:left; }
.legal-content td,.legal-content th { border-bottom:1px solid var(--line); padding:14px; vertical-align:top; }
.legal-content td { color:#425e73; }
:focus-visible { outline:3px solid var(--cyan-500); outline-offset:4px; }
@media(max-width:860px) { .legal-layout { grid-template-columns:1fr; gap:30px; } .legal-sidebar { position:static; } .legal-sidebar nav { grid-template-columns:repeat(2,minmax(0,1fr)); gap:5px 20px; } .legal-hero { padding-top:128px; } }
@media(max-width:580px) { .legal-hero { padding:120px 0 36px; } .legal-layout { padding:32px 0 48px; } .legal-sidebar { padding:20px; } .legal-sidebar nav { grid-template-columns:1fr; } .legal-content h2 { font-size:1.32rem; } .legal-contact { padding:22px; } }
@media print { .site-header,.legal-sidebar,.legal-footer-links,.legal-crumb { display:none; } .legal-hero { padding:0 0 20px; background:#fff; } .legal-hero h1 { font-size:28pt; } .legal-layout { display:block; padding:24px 0; } .legal-content section { break-inside:avoid; } .legal-contact { background:#fff; border:1px solid #ccc; } .legal-contact h3,.legal-contact p,.legal-contact a { color:#000; } .section-shell { width:100%; } }
