:root {
  --ink: #061638;
  --text: #263248;
  --muted: #667085;
  --line: rgba(6, 22, 56, 0.12);
  --surface: #ffffff;
  --soft: #eaf3ff;
  --accent: #006dff;
  --accent-dark: #061638;
  --accent-2: #00a7ff;
  --shadow: 0 24px 70px rgba(6, 22, 56, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--text);
  background: var(--surface);
  font-family: "Segoe UI", Arial, sans-serif;
}

body.locked {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 28px clamp(18px, 5vw, 70px);
}

.nav-shell {
  width: min(100%, 1650px);
  min-height: 88px;
  margin-inline: auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 54px);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand img {
  width: clamp(135px, 13vw, 230px);
  max-height: 64px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.4vw, 40px);
  color: var(--ink);
  font-size: clamp(0.94rem, 1vw, 1.12rem);
  font-weight: 700;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.quote-button,
.hero-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1.5px solid var(--surface);
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.quote-button:hover,
.hero-button:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.1rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--soft);
  background-image:
    radial-gradient(circle at 24px 24px, rgba(9, 10, 16, 0.08) 1px, transparent 2px),
    radial-gradient(circle at 72px 72px, rgba(9, 10, 16, 0.06) 1px, transparent 2px);
  background-size: 96px 96px;
}

.hero-slider,
.hero-slide {
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 150px clamp(24px, 6.5vw, 124px) 70px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.28) 44%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.hero-content span,
.section-head span,
.contact-section span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content span {
  color: #fff;
}

.hero-content h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(3rem, 7.4vw, 8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 680px;
  margin: 28px 0 34px;
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  line-height: 1.65;
}

.slider-dots {
  position: absolute;
  left: clamp(24px, 6.5vw, 124px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 12px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(9, 10, 16, 0.28);
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--accent);
}

.section {
  padding: clamp(56px, 6.5vw, 96px) clamp(22px, 5vw, 84px);
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 82vh;
  padding: 180px clamp(22px, 5vw, 84px) clamp(64px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(234, 243, 255, 0.9) 0%, rgba(246, 249, 255, 0.82) 52%, rgba(255, 255, 255, 0.92) 100%),
    url("assets/data2.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 109, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(6, 22, 56, 0.1), transparent 30%);
}

.page-hero-about {
  background-position: center;
}

.page-hero-services {
  background-image:
    linear-gradient(180deg, rgba(234, 243, 255, 0.9) 0%, rgba(246, 249, 255, 0.82) 52%, rgba(255, 255, 255, 0.92) 100%),
    url("assets/serviços.jfif");
}

.page-hero-products {
  background-image:
    linear-gradient(180deg, rgba(234, 243, 255, 0.9) 0%, rgba(246, 249, 255, 0.82) 52%, rgba(255, 255, 255, 0.92) 100%),
    url("assets/produtos.jpg");
}

.page-hero-news {
  background-image:
    linear-gradient(180deg, rgba(234, 243, 255, 0.9) 0%, rgba(246, 249, 255, 0.82) 52%, rgba(255, 255, 255, 0.92) 100%),
    url("assets/noticias.jfif");
}

.page-hero-contact {
  background-image:
    linear-gradient(180deg, rgba(234, 243, 255, 0.9) 0%, rgba(246, 249, 255, 0.82) 52%, rgba(255, 255, 255, 0.92) 100%),
    url("assets/contacto.jfif");
}

.page-hero .section-pill {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 0 28px;
  border: 1px solid rgba(0, 109, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-hero .section-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.page-hero h1 {
  width: min(1060px, 100%);
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 6.5rem);
  line-height: 1.04;
  font-weight: 900;
}

.page-hero p {
  width: min(820px, 100%);
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

.contact-page-section {
  background: #f6f8fb;
}

.contact-quick-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.contact-quick-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 22, 56, 0.06);
}

.contact-quick-card.is-active {
  border-color: #1f45ff;
}

.contact-quick-card i {
  color: var(--ink);
  font-size: 1rem;
}

.contact-quick-card h3 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-quick-card > a:not(.contact-mini-button) {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-quick-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-mini-button {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-message-panel {
  width: min(1180px, 100%);
  margin: clamp(58px, 7vw, 96px) auto 0;
  display: grid;
  grid-template-columns: 0.92fr 1.25fr;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(6, 22, 56, 0.12);
}

.contact-message-intro {
  padding: clamp(32px, 5vw, 58px);
  background:
    linear-gradient(145deg, rgba(0, 109, 255, 0.92), rgba(6, 22, 56, 0.98));
  color: #fff;
}

.contact-message-intro span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-message-intro h2 {
  margin-top: 26px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.contact-message-intro p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-message-intro ul {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  list-style: none;
}

.contact-message-intro li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-message-intro li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #ffd400;
  color: var(--ink);
  font-size: 0.72rem;
}

.contact-form {
  padding: clamp(32px, 5vw, 58px);
  display: grid;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 1.25rem;
}

.contact-form label {
  margin-bottom: 7px;
  color: #69a7df;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid #1f45ff;
  border-radius: 4px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid #1f45ff;
  outline-offset: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  min-height: 44px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.contact-map {
  width: min(1180px, 100%);
  margin: clamp(34px, 5vw, 58px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 22, 56, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: clamp(320px, 38vw, 460px);
  display: block;
  border: 0;
}

.contact-panel {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 22, 56, 0.08);
}

.contact-panel span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-panel h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.contact-panel p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.contact-methods a {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  font-weight: 800;
}

.contact-methods i {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
}

.about-proof-section,
.leadership-section {
  background: #f3f6fb;
}

.timeline-section {
  background: #fff;
}

.identity-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.about-page-head {
  width: min(940px, 100%);
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.about-page-head .section-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 0 18px;
  border: 1px solid rgba(0, 109, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 109, 255, 0.07);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-page-head h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 3.5rem);
  line-height: 1.1;
  font-weight: 900;
}

.proof-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.proof-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 22, 56, 0.06);
}

.proof-card i {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(0, 109, 255, 0.1);
  color: var(--accent);
}

.proof-card h3 {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
}

.proof-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.identity-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.identity-card {
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(6, 22, 56, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 22, 56, 0.08);
}

.identity-card-featured {
  background:
    linear-gradient(145deg, rgba(0, 109, 255, 0.95), rgba(6, 22, 56, 0.98)),
    var(--ink);
  color: #fff;
}

.identity-card i {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  background: rgba(0, 109, 255, 0.1);
  color: var(--accent);
  font-size: 1.18rem;
}

.identity-card-featured i {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.identity-card span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.identity-card-featured span {
  color: rgba(255, 255, 255, 0.78);
}

.identity-card h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.16;
}

.identity-card-featured h3 {
  color: #fff;
}

.identity-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.identity-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.timeline-list {
  width: min(840px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: start;
}

.timeline-item time {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #153bd7;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline-highlight time {
  background: #d8b400;
  color: var(--ink);
}

.timeline-item h3 {
  color: var(--ink);
  font-size: 1.08rem;
}

.timeline-item p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.leadership-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.leader-card {
  min-height: 360px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 22, 56, 0.06);
}

.leader-avatar {
  width: 132px;
  height: 132px;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(0, 109, 255, 0.92), rgba(6, 22, 56, 0.98));
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  overflow: hidden;
}

.leader-avatar img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-avatar span {
  position: relative;
  z-index: 1;
}

.leader-card h3 {
  color: var(--ink);
  font-size: 1.12rem;
}

.leader-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.leader-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

.leader-socials a {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.leader-socials a:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #fff;
}

.faq-section {
  background: #fff;
}

.faq-list {
  width: min(900px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(6, 22, 56, 0.06);
  overflow: hidden;
}

.faq-item summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(0, 109, 255, 0.1);
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--accent);
  color: #fff;
}

.faq-item p {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.section-head {
  width: min(900px, 100%);
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.contact-section h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.06;
}

.section-head p,
.contact-section p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-section {
  background: #fff;
}

.about-layout {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.98fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.about-media {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  isolation: isolate;
}

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

.about-media::before {
  inset: 34px -18px -22px 44px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 109, 255, 0.16), rgba(0, 167, 255, 0.14)),
    #eef6ff;
}

.about-media::after {
  left: -20px;
  bottom: 42px;
  z-index: 2;
  width: min(260px, 62%);
  height: 116px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(9, 10, 16, 0.16);
  backdrop-filter: blur(14px);
}

.about-media img {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  min-height: inherit;
  object-fit: cover;
  border-radius: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 88% 100%, 0 100%);
  box-shadow: 0 28px 80px rgba(9, 10, 16, 0.14);
}

.about-media-badge {
  position: absolute;
  left: 24px;
  bottom: 56px;
  z-index: 3;
  max-width: 230px;
  padding: 28px 24px 3px;
}

.about-media-badge strong,
.about-media-badge span {
  display: block;
}

.about-media-badge strong {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.9;
}

.about-media-badge span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.about-content {
  display: grid;
  gap: 22px;
}

.about-content span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-content h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 1.02;
}

.about-content p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-points div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.about-points strong,
.about-points small {
  display: block;
}

.about-points strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.96rem;
}

.about-points small {
  color: var(--muted);
  line-height: 1.45;
}

.about-link {
  width: fit-content;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.muted,
.services-section {
  background: #f6f8fb;
}

.services-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 109, 255, 0.08), transparent 28%),
    #f3f6fb;
}

.services-section .section-head {
  width: min(1320px, 100%);
}

.services-section .section-head h2 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5.2vw, 5.35rem);
  line-height: 1.05;
  font-weight: 900;
}

.services-section .section-head h1 mark {
  background: transparent;
  color: var(--accent);
}

.services-section .section-head p {
  width: min(840px, 100%);
  margin: 24px auto 0;
  color: #667085;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  line-height: 1.55;
}

.services-section .section-pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 0 28px;
  border: 1px solid rgba(0, 109, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 109, 255, 0.07);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.services-section .section-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1220px, 100%);
  margin: 48px auto 0;
}

.service-card {
  min-height: 370px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 31, 55, 0.08);
}

.service-card-featured {
  grid-column: span 2;
}

.service-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 109, 255, 0.08);
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card i {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 12px 24px rgba(23, 18, 79, 0.22);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.25;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: #475467;
  font-size: 0.86rem;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(0, 167, 255, 0.12);
}

.service-card a {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card a::after {
  content: " →";
}

.service-detail-section {
  background: #f6f8fb;
}

.service-index {
  width: min(1180px, 100%);
  margin: 0 auto clamp(38px, 5vw, 68px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.service-index a {
  min-height: 116px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(6, 22, 56, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-index a:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 109, 255, 0.34);
}

.service-index i {
  color: var(--accent);
  font-size: 1.15rem;
}

.service-index span {
  font-size: 0.86rem;
  line-height: 1.25;
}

.service-detail-list {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 26px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 22, 56, 0.08);
  scroll-margin-top: 140px;
}

.service-detail-featured {
  border-color: rgba(0, 109, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 255, 0.72));
}

.service-detail-main h2 {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  line-height: 1.08;
}

.service-detail-main p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-detail-main a {
  min-height: 46px;
  margin-top: 28px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.service-detail-side {
  padding: 24px;
  border: 1px solid rgba(6, 22, 56, 0.1);
  border-radius: 8px;
  background: #f8fafc;
}

.service-detail-side h3 {
  color: var(--ink);
  font-size: 1rem;
}

.service-detail-side h3 + ul,
.service-detail-side h3 + p {
  margin-top: 14px;
}

.service-detail-side h3:not(:first-child) {
  margin-top: 26px;
}

.service-detail-side ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.service-detail-side li {
  position: relative;
  padding-left: 22px;
  color: #475467;
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-detail-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(0, 167, 255, 0.12);
}

.service-detail-side p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.products-section {
  background:
    linear-gradient(180deg, #eaf3ff 0%, #f6f9ff 46%, #ffffff 100%);
  overflow: hidden;
}

.product-detail-section {
  background:
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.product-index {
  width: min(1180px, 100%);
  margin: 0 auto clamp(38px, 5vw, 68px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-index a {
  min-height: 112px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(6, 22, 56, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-index a:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 109, 255, 0.34);
}

.product-index i {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 109, 255, 0.1);
  color: var(--accent);
}

.product-index span {
  font-size: 0.92rem;
  line-height: 1.25;
}

.product-detail-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.product-detail-card {
  min-height: 620px;
  padding: clamp(30px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(6, 22, 56, 0.09);
  scroll-margin-top: 140px;
}

.product-detail-featured {
  border-color: rgba(0, 109, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 255, 0.78));
}

.product-detail-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--accent), var(--ink));
  color: #fff;
  font-size: 1.18rem;
}

.product-detail-card > span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-card h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.product-detail-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.product-detail-columns {
  width: 100%;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
}

.product-detail-columns h3 {
  color: var(--ink);
  font-size: 1rem;
}

.product-detail-columns ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  list-style: none;
}

.product-detail-columns li {
  position: relative;
  padding-left: 22px;
  color: #475467;
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-detail-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(0, 167, 255, 0.12);
}

.product-detail-columns h3 + p {
  margin-top: 14px;
}

.product-detail-card > a {
  min-height: 46px;
  margin-top: auto;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.products-shell {
  width: min(1220px, 100%);
  margin-inline: auto;
}

.products-intro {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(42px, 5vw, 70px);
  text-align: center;
}

.products-intro .section-pill {
  width: min(356px, 100%);
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 0 28px;
  border: 1px solid rgba(0, 109, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: #006dff;
  font-size: clamp(0.82rem, 1.35vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.products-intro .section-pill::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #006dff;
}

.products-intro h2 {
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 3.85rem);
  line-height: 1.14;
  font-weight: 900;
 
}

.products-intro h2 mark {
  background: transparent;
  color: #006dff;
  
}

.products-intro p {
  max-width: 1040px;
  margin-top: 34px;
  color: #667085;
  font-size: clamp(1.08rem, 2vw, 1.86rem);
  line-height: 1.45;
 
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 100px;
}

.product-card {
  min-height: 406px;
  padding: 40px 40px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(6, 22, 56, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(6, 22, 56, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 22, 56, 0.18);
  box-shadow: 0 30px 80px rgba(6, 22, 56, 0.1);
}

.product-card.is-selected {
  border-color: #1f45ff;
  box-shadow:
    0 30px 80px rgba(6, 22, 56, 0.1),
    0 0 0 1px rgba(31, 69, 255, 0.12);
}

.product-topline {
  width: min(250px, 100%);
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: center;
  margin-bottom: 30px;
  padding: 10px 18px;
  border: 1px solid rgba(6, 22, 56, 0.1);
  border-radius: 12px;
  background: #fff;
}

.product-topline i {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #183184;
  color: #fff;
  font-size: 0.92rem;
}

.product-topline span {
  color: #183184;
  font-size: clamp(0.84rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.product-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1.24rem, 1.5vw, 1.58rem);
  line-height: 1.22;
  font-weight: 900;
}

.product-card p {
  color: #53627a;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.65;
}

.product-card ul {
  display: none;
}

.product-card li {
  position: relative;
  padding-left: 26px;
  color: #344054;
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-card-primary li,
.product-card-banking li {
  color: rgba(255, 255, 255, 0.86);
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(0, 167, 255, 0.12);
}

.product-card-primary li::before,
.product-card-banking li::before {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.product-card a {
  min-height: auto;
  margin-top: auto;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: #153bd7;
  font-size: 0.94rem;
  font-weight: 900;
}

.product-card a::after {
  content: " ↗";
  margin-left: 8px;
  font-size: 1rem;
}

.news-section {
  background: #f6f8fb;
}

.news-page-section {
  background: #f6f8fb;
}

.news-feature {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(6, 22, 56, 0.09);
}

.news-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.news-feature span,
.news-article span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-feature h2 {
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1.06;
}

.news-feature p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
  text-align: justify;
}

.news-feature a,
.news-article a {
  width: fit-content;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.news-page-grid {
  width: min(1180px, 100%);
  margin: clamp(36px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-article-section {
  background: #fff;
}

.news-article-list {
  width: min(980px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 24px;
}

.news-article {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(6, 22, 56, 0.06);
  scroll-margin-top: 140px;
}

.news-article h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  line-height: 1.1;
}

.news-article p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  text-align: justify;
}

.news-head {
  width: min(960px, 100%);
  margin-inline: auto;
  text-align: center;
}

.news-head .section-pill {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 0 24px;
  border: 1px solid rgba(0, 109, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 109, 255, 0.07);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.news-head .section-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.news-head h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 900;
}

.news-head p {
  width: min(780px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.news-grid {
  width: min(1440px, 100%);
  margin: clamp(36px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.news-card {
  min-height: 598px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(6, 22, 56, 0.08);
}

.news-card img {
  width: 100%;
  height: clamp(220px, 18vw, 285px);
  object-fit: cover;
  background: var(--soft);
}

.news-card:nth-child(3) img {
  object-position: right center;
}

.news-body {
  flex: 1;
  padding: clamp(26px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-body span {
  margin-bottom: 18px;
  color: #0b3c8c;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-card-featured {
  background:
    linear-gradient(145deg, rgba(6, 22, 56, 0.96), rgba(0, 109, 255, 0.9)),
    var(--ink);
  color: #fff;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.news-meta span,
.news-meta time {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 109, 255, 0.08);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.news-card-featured .news-meta span,
.news-card-featured .news-meta time {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.news-card h2,
.news-card h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.14;
  font-weight: 800;
}

.news-card-featured h2,
.news-card-featured h3 {
  color: #fff;
}

.news-card p {
  margin-top: 18px;
  color: #344054;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.5;
  text-align: justify;
}

.news-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.news-card a {
  margin-top: auto;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #153bd7;
  font-size: 0.94rem;
  font-weight: 900;
}

.news-card-featured a {
  color: #fff;
}

.news-card a::after {
  content: " ↗";
  margin-left: 8px;
  font-size: 1rem;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 42px auto 0;
}

.portfolio-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}

.partners-section {
  background:
    linear-gradient(180deg, #eaf3ff 0%, #f6f9ff 48%, #ffffff 100%);
  overflow: hidden;
}

.partners-head {
  width: min(1180px, 100%);
  margin-inline: auto;
  text-align: center;
}

.partners-head span {
  width: min(446px, 100%);
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
  padding: 0 30px;
  border: 1px solid rgba(0, 109, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: #006dff;
  font-size: clamp(0.84rem, 1.35vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.partners-head span::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #006dff;
}

.partners-head h2 {
  color: var(--ink);
  font-size: clamp(3rem, 7.2vw, 7rem);
  line-height: 1.04;
  font-weight: 900;
}

.partners-head h2 mark {
  display: block;
  background: transparent;
  color: #006dff;
}

.partners-marquee {
  width: min(1500px, 100%);
  margin: clamp(34px, 4.5vw, 56px) auto 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.partners-track {
  width: max-content;
  display: flex;
  gap: 28px;
  animation: partners-scroll 28s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo {
  width: clamp(230px, 17vw, 290px);
  height: 106px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 18px 26px;
  border: 1px solid rgba(6, 22, 56, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 22, 56, 0.06);
}

.partner-logo img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }
}

.contact-section {
  width: min(1180px, calc(100% - 44px));
  margin: clamp(64px, 8vw, 108px) auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.quote-button-dark {
  background: var(--ink);
  color: #fff;
}

.page-loader,
.access-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.page-loader {
  display: grid;
  place-items: center;
  background: #061638;
  color: #fff;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.loader-graphic {
  width: 74px;
  height: 74px;
  position: relative;
  display: grid;
  place-items: center;
}

.loader-graphic span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #006dff;
  animation: loader-pulse 1.1s ease-in-out infinite;
}

.loader-graphic span:nth-child(1) {
  top: 6px;
  animation-delay: 0s;
}

.loader-graphic span:nth-child(2) {
  right: 6px;
  animation-delay: 0.15s;
}

.loader-graphic span:nth-child(3) {
  bottom: 6px;
  animation-delay: 0.3s;
}

.loader-graphic span:nth-child(4) {
  left: 6px;
  animation-delay: 0.45s;
}

.loader-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-gate {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(6, 22, 56, 0.94), rgba(0, 109, 255, 0.82)),
    url("assets/data2.jpg") center / cover;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.access-gate.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.access-card {
  width: min(430px, 100%);
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(6, 22, 56, 0.34);
}

.access-logo {
  width: min(190px, 72%);
  max-height: 72px;
  object-fit: contain;
  margin: 0 auto 26px;
}

.access-card h3 {
  color: var(--ink);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.1;
  text-align: center;
}

.access-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.access-card label {
  display: block;
  margin-top: 26px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.access-card input {
  width: 100%;
  min-height: 52px;
  margin-top: 9px;
  padding: 0 16px;
  border: 1px solid rgba(6, 22, 56, 0.18);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
}

.access-card input:focus {
  outline: 3px solid rgba(0, 109, 255, 0.16);
  border-color: var(--accent);
}

.access-error {
  display: none;
  margin-top: 10px;
  color: #c1121f;
  font-size: 0.9rem;
  font-weight: 800;
}

.access-card.has-error .access-error {
  display: block;
}

.btn-access {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-access:hover,
.btn-access:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
}

@keyframes loader-pulse {
  0%,
  100% {
    transform: scale(0.76);
    opacity: 0.48;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.footer {
  background: #061638;
  color: #f4f4f5;
  padding: 52px clamp(22px, 5vw, 84px) 26px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, 1fr);
  gap: 34px;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.footer-brand img {
  width: min(210px, 100%);
  max-height: 76px;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 8px;
  background: #061638
}

.footer p,
.footer a {
  color: #c9ccd4;
  line-height: 1.6;
}

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.96rem;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 9px 0;
}

.footer a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
}

.footer-contact a:first-of-type {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mach-link {
  color: #fff;
  font-weight: 800;
}

.floating-chat {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(8px, 3vw, 42px);
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.chat-card {
  position: relative;
  width: min(360px, calc(100vw - 36px));
  display: none;
  padding: 42px 24px 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 22, 56, 0.2);
}

.floating-chat.is-open .chat-card {
  display: block;
}

.chat-avatar {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 4px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 22, 56, 0.22);
  overflow: hidden;
}

.chat-avatar img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.chat-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #101828;
  font-size: 1.1rem;
  cursor: pointer;
}

.chat-messages {
  max-height: 230px;
  overflow-y: auto;
  display: grid;
  gap: 10px;
  padding-right: 4px;
}

.chat-messages p {
  width: fit-content;
  max-width: 100%;
  padding: 0;
  color: #23262f;
  font-size: 1rem;
  line-height: 1.65;
}

.chat-messages .chat-user-message {
  justify-self: end;
  padding: 10px 12px;
  border-radius: 12px 12px 2px 12px;
  background: #eaf3ff;
  color: var(--ink);
  line-height: 1.45;
}

.chat-form {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  min-width: 0;
  flex: 1;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
}

.chat-form button,
.chat-toggle {
  border: 0;
  background: #1c2796;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(28, 39, 150, 0.28);
}

.chat-form button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
}

.chat-toggle {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.7rem;
}

.floating-chat.is-open .chat-toggle {
  width: 62px;
  height: 62px;
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: clamp(18px, 5vw, 70px);
    right: clamp(18px, 5vw, 70px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .quote-button {
    justify-self: end;
  }

  .services-grid,
  .service-index,
  .product-index,
  .products-grid,
  .proof-grid,
  .identity-grid,
  .contact-quick-grid,
  .leadership-grid,
  .news-page-grid,
  .news-grid,
  .portfolio-strip,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

  .news-feature {
    grid-template-columns: 1fr;
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px;
  }

  .nav-shell {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .brand img {
    width: 132px;
  }

  .nav-shell > .quote-button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 46px;
  }

  .main-nav {
    left: 14px;
    right: 14px;
  }

  .hero-slide {
    padding: 170px 22px 72px;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 15vw, 4.9rem);
  }

  .slider-dots {
    left: 22px;
  }

  .services-grid,
  .service-index,
  .product-index,
  .products-grid,
  .proof-grid,
  .identity-grid,
  .contact-quick-grid,
  .leadership-grid,
  .news-page-grid,
  .news-grid,
  .portfolio-strip,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
    padding: 32px 28px 34px;
  }

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

  .product-detail-columns {
    grid-template-columns: 1fr;
  }

  .products-intro .section-pill {
    min-height: 52px;
    margin-bottom: 28px;
    letter-spacing: 0.22em;
  }

  .products-intro p {
    margin-top: 22px;
  }

  .partners-head span {
    min-height: 58px;
    margin-bottom: 36px;
    letter-spacing: 0.22em;
  }

  .about-media {
    min-height: 340px;
  }

  .about-media::before {
    inset: 24px -10px -14px 22px;
  }

  .about-media::after {
    left: 14px;
    bottom: 18px;
    width: min(230px, 78%);
    height: 98px;
  }

  .about-media img {
    height: 340px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 100%, 0 100%);
  }

  .about-media-badge {
    left: 28px;
    bottom: 36px;
    max-width: 190px;
    padding: 24px 18px 16px;
  }

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

  .service-card,
  .service-card-featured {
    grid-column: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-item time {
    width: fit-content;
    padding: 0 14px;
  }

  .contact-section,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-chat {
    right: 14px;
    bottom: 14px;
  }

  .chat-toggle {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
  }

  .floating-chat.is-open .chat-toggle {
    width: 54px;
    height: 54px;
  }
}
