/* -----------------------------
   Sparc-style clone (desktop-first)
   Based on provided screenshots.
--------------------------------- */

:root {
  --bg: #F5F7FA;
  /* cool pale blue/white */
  --card: #E6EBF5;
  /* pale blue cards */
  --dark: #00004D;
  /* Deep Blue */
  --accent: #99ABD6;
  /* Periwinkle */
  --line: #D1D9E6;
  /* blue-gray divider lines */
  --muted: #5E6B80;
  /* slate-blue secondary text */
  --white: #ffffff;

  --container: 1600px;
  --pad: 56px;

  --r-lg: 28px;
  --r-md: 22px;

  --shadow: 0 20px 40px rgba(0, 0, 77, 0.12);
  /* blue-tinted shadow */
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--dark);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

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

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

button,
input {
  font: inherit;
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 24px 0;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
  background: transparent;
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-center,
.nav-right {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  opacity: .95;
}

.nav-link-pill {
  background: #FEB55D;
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 999px;
  opacity: 1;
  transition: background 0.25s ease, transform 0.2s ease;
}

.nav-link-pill:hover {
  background: #ffcc85;
  transform: scale(1.05);
}

.site-header.is-hero .nav-link-pill {
  color: var(--dark) !important;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 30px;
  height: 30px;
}

.brand-logo {
  height: 60px;
  width: auto;
  transition: filter 0.25s ease;
}

.brand-word {
  transform: translateY(1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 77, .08);
  font-size: 14px;
  font-weight: 600;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: transparent;
}

.site-header.is-scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(0, 0, 77, .08);
}

.site-header.is-hero {
  color: var(--white);
}

.site-header.is-hero .btn-dark {
  background: var(--dark);
}

.site-header.is-hero .nav-link {
  opacity: .92;
}

.site-header.is-hero .brand-logo {
  filter: brightness(0) invert(1);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: calc(100vh - 160px);
  min-height: 400px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2)),
    url("v1 header.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-inner {
  position: relative;
  height: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-title {
  margin: 0;
  max-width: 760px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: clamp(44px, 4.9vw, 88px);
}

.hero-subtitle {
  margin: 10px 0 0;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 400;
  opacity: 0.95;
}

.btn-video {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 240px;
  height: 80px;
  padding: 0 18px 0 28px;
  border: 0;
  background: var(--dark);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .16);
}

.btn-hero-cta {
  margin-top: 34px;
  background: var(--dark);
  color: var(--white);
  height: 62px;
  border-radius: 999px;
  padding: 0 8px 0 24px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 77, 0.2);
  transition: transform 0.2s ease;
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
}

.btn-hero-cta__circle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  display: grid;
  place-items: center;
}

.btn-hero-cta__circle svg {
  width: 20px;
  height: 20px;
}

.btn-video__text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn-video__circle {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: var(--dark);
}

.icon-play {
  width: 20px;
  height: 20px;
}

.hero-kicker {
  position: absolute;
  left: 0;
  bottom: 32px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  opacity: .92;
}

.hero-discover {
  position: absolute;
  right: 0;
  bottom: 26px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  opacity: .95;
}

.icon-down {
  width: 18px;
  height: 18px;
}

/* ---------- Logo strip - Partner Carousel ---------- */
.logo-strip {
  padding: 48px 0;
  overflow: hidden;
  position: relative;
}

/* Gradient fade effect on edges */
.logo-strip::before,
.logo-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

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

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 120px;
  padding: 0 20px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.logo-item img {
  max-height: 50px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- Features Section ---------- */
.section-features {
  padding: 64px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

.features-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 16px;
}

.features-title {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-size: clamp(32px, 3.4vw, 58px);
  color: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--r-md);
  padding: 40px 32px;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card__head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--dark);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--dark);
}

.feature-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Sections ---------- */
.section {
  padding: 52px 0;
}

.section-tight {
  padding-top: 20px;
}

.section-title {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(34px, 3.6vw, 64px);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

/* ---------- About card ---------- */
.about-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}

.about-text p {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  align-content: center;
  justify-items: end;
}

.stat {
  width: 100%;
  max-width: 240px;
}

.stat__value {
  font-size: 64px;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.stat__label {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Business areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  margin-top: 22px;
}

.area {
  padding: 18px 0 52px;
  border-bottom: 2px solid var(--line);
}

.area__head {
  display: flex;
  gap: 18px;
  align-items: center;
}

.area__icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
}

.area__title {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
  font-size: 46px;
}

.area__desc {
  margin: 14px 0 0;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  opacity: .9;
}

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: start;
}

.accordion {
  margin-top: 34px;
}

.acc-item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.acc-num {
  font-weight: 600;
  color: rgba(153, 171, 214, .75);
  font-size: 18px;
}

.acc-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.acc-icon {
  display: grid;
  place-items: center;
  color: var(--dark);
  opacity: .9;
}

.acc-icon svg {
  width: 18px;
  height: 18px;
  transition: transform .2s ease;
}

.acc-panel {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 18px;
  padding: 0;
  border-bottom: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height .25s ease, opacity .25s ease, visibility .25s ease;
}

.acc-panel p {
  grid-column: 1 / 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 8px;
}

.acc-item[aria-expanded="true"]+.acc-panel {
  max-height: 140px;
  padding: 0 0 18px;
  opacity: 1;
  visibility: visible;
}



.acc-item[aria-expanded="true"] .acc-icon svg {
  transform: rotate(180deg);
}

.benefits-media {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow);
  background: #d6dede;
}

.benefits-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.cta-on-image {
  position: absolute;
  right: 22px;
  bottom: 22px;
  background: var(--dark);
  color: var(--white);
  height: 62px;
  border-radius: 999px;
  padding: 0 14px 0 22px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}

.cta-on-image__circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  display: grid;
  place-items: center;
}

.cta-on-image__circle svg {
  width: 18px;
  height: 18px;
}

/* ---------- Story section ---------- */
.story {
  background: var(--dark);
  color: var(--white);
  border-radius: 34px;
  padding: 56px;
  position: relative;
}

.story-link {
  position: absolute;
  top: 44px;
  right: 56px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  opacity: .92;
}

.story-link svg {
  width: 18px;
  height: 18px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.story-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 320px;
  background: rgba(255, 255, 255, .06);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: var(--dark);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.play-btn svg {
  width: 18px;
  height: 18px;
}

.story-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  opacity: .8;
  margin-bottom: 14px;
}

.story-quote {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.story-byline {
  margin: 16px 0 0;
  font-size: 13px;
  opacity: .85;
}

/* ---------- News ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 30px;
}

.news-card {
  padding: 0;
}

.news-img {
  width: 100%;
  border-radius: 26px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d6dede;
  box-shadow: 0 12px 26px rgba(0, 0, 77, .10);
}

.news-title {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.news-date {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(0, 0, 77, .75);
  font-weight: 600;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.newsletter-title {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1.06;
}

.newsletter-desc {
  margin: 16px 0 0;
  color: rgba(0, 0, 77, .88);
  font-weight: 500;
  line-height: 1.6;
  font-size: 15px;
}

.newsletter-right {
  display: grid;
  gap: 16px;
  justify-content: end;
}

.email-pill {
  width: 520px;
  height: 68px;
  border-radius: 999px;
  background: rgba(245, 247, 250, .92);
  border: 1px solid rgba(0, 0, 77, .10);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-left: 22px;
  padding-right: 10px;
}

.email-pill input {
  border: 0;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 77, .9);
}

.email-pill input::placeholder {
  color: rgba(0, 0, 77, .55);
  font-weight: 600;
}

.email-pill__go {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.email-pill__go svg {
  width: 18px;
  height: 18px;
}

.consent {
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 77, .8);
}

.consent input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--dark);
}

/* ---------- Footer ---------- */
.footer {
  padding: 74px 0 24px;
  background: #00004D;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr 1fr;
  gap: 80px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}

.footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-text {
  margin: 0 0 26px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.65;
  font-size: 14px;
  max-width: 420px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.footer .btn-dark {
  background: #99ABD6;
  color: #00004D;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-info-item a {
  color: var(--white);
  transition: color 0.2s ease;
}

.footer-info-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 54px;
}

.footer-line {
  height: 1px;
  background: rgba(255, 255, 255, .10);
  margin-bottom: 18px;
}

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

.copyright {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.footer-links {
  justify-self: end;
  display: inline-flex;
  gap: 26px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 77, .12);
  background: rgba(245, 247, 250, .9);
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}

.lang-pill svg {
  width: 16px;
  height: 16px;
}

.flag {
  font-size: 16px;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.modal__panel {
  position: relative;
  width: min(980px, calc(100% - 60px));
  margin: 9vh auto 0;
  background: var(--bg);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 77, .12);
  background: rgba(245, 247, 250, .9);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal__media {
  padding: 40px 20px 20px;
}

.video-placeholder {
  height: 480px;
  border-radius: 18px;
  background:
    radial-gradient(1200px 400px at 30% 30%, rgba(171, 204, 189, .65) 0%, rgba(171, 204, 189, 0) 55%),
    linear-gradient(135deg, rgba(20, 54, 63, .90), rgba(20, 54, 63, .60));
  position: relative;
  overflow: hidden;
}

.video-placeholder__badge {
  position: absolute;
  left: 18px;
  top: 18px;
  background: rgba(239, 245, 243, .9);
  color: var(--dark);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

/* ---------- Accessibility helpers ---------- */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  :root {
    --pad: 28px;
  }

  .nav-left {
    display: none;
  }

  .header-grid {
    grid-template-columns: 1fr auto;
  }

  .brand {
    justify-content: flex-start;
  }

  .nav-right {
    gap: 16px;
  }

  .hero {
    height: 700px;
  }

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

  .about-stats {
    justify-items: start;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .benefits-media {
    height: 440px;
  }

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

  .story-link {
    position: static;
    margin-bottom: 20px;
  }

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

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

  .newsletter-right {
    justify-content: start;
  }

  .email-pill {
    width: 100%;
  }

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

  .footer-bottom-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}