:root {
  --navy: #1a237e;
  --navy-deep: #0d1440;
  --navy-mid: #283593;
  --amber: #ffb300;
  --amber-soft: #ffe29a;
  --ink: #101828;
  --slate: #5b6472;
  --line: rgba(26, 35, 126, 0.12);
  --mist: #f3f5fb;
  --white: #ffffff;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(13, 20, 64, 0.12);
  --font: "Outfit", "Segoe UI", sans-serif;
  --display: "Syne", "Outfit", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(255, 179, 0, 0.08), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(26, 35, 126, 0.08), transparent 50%),
    #eef1f8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-mid);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(13, 20, 64, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  padding: 0.35rem 0.55rem 0.35rem 0.4rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand:hover {
  color: var(--navy-deep);
}

.brand-logo {
  width: auto;
  height: 36px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.brand-name {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
}

.brand-name b {
  font-weight: 800;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--amber-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d1440 0%, #1a237e 52%, #2a3990 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.22), transparent 60%);
  pointer-events: none;
  animation: float-glow 9s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.brand-hero {
  margin-bottom: 1rem;
}

.brand-hero-logo {
  width: min(100%, 420px);
  height: auto;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero-tagline {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 34rem;
  margin-bottom: 0.9rem;
}

.lead,
.section-lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
  font-size: 1.05rem;
}

.section-lead {
  color: var(--slate);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--amber);
  color: #1a1400;
}

.btn-primary:hover {
  background: #ffc433;
  color: #1a1400;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.hero-points li {
  position: relative;
  padding-left: 0.9rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber);
}

.hero-visual {
  justify-self: end;
  width: min(100%, 620px);
  animation: rise-in 1s ease both;
}

.hero-slideshow {
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-slides {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0b1228;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: #f4f6fb;
}

.hero-slide-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.hero-slide-open:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
}

.hero-slide figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #12203f;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 24, 0.82);
  backdrop-filter: blur(4px);
  border: 0;
  cursor: pointer;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100vh - 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 6rem);
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #12203f;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: #fff;
  transform: scale(1.05);
}

.lightbox-close {
  position: absolute;
  top: -0.35rem;
  right: -0.15rem;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 2;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.55rem;
  line-height: 1;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 0.35rem;
}

.lightbox-next {
  right: 0.35rem;
}

body.lightbox-open {
  overflow: hidden;
}

.hero-slide-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  color: #12203f;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slide-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.hero-slide-prev {
  left: 0.65rem;
}

.hero-slide-next {
  right: 0.65rem;
}

.hero-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  padding: 0.3rem 0.45rem;
  border-radius: 999px;
  background: rgba(10, 16, 36, 0.35);
}

.hero-slide-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slide-dot.is-active {
  background: var(--amber);
  transform: scale(1.15);
}

.strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.strip-inner > p {
  color: var(--slate);
  font-weight: 600;
  font-size: 0.92rem;
}

.strip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.strip-tags span {
  background: var(--mist);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f7f8fd 0%, #eef1f8 100%);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section h2,
.form-card h2,
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
}

.section .eyebrow {
  color: var(--navy-mid);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.offer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.45rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(13, 20, 64, 0.16);
}

.offer img,
.offer-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: 1rem;
  object-fit: cover;
  background: var(--mist);
}

.offer-icon {
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--navy);
  border: 1px solid var(--line);
}

.offer h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 0.45rem;
}

.offer > p,
.offer li {
  color: var(--slate);
  font-size: 0.96rem;
}

.offer ul {
  margin: 0.9rem 0 0 1.05rem;
}

.offer li {
  margin-bottom: 0.28rem;
}

.platform-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
  align-items: start;
}

.about-brand {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.about-logo {
  width: min(100%, 260px);
  height: auto;
  padding: 1.1rem 1.25rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink);
  font-weight: 500;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy);
  font-weight: 800;
}

.platform-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.metric {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.1rem;
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  font-family: var(--display);
  color: var(--navy-deep);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.metric span {
  color: var(--slate);
  font-size: 0.92rem;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.steps h3 {
  font-family: var(--display);
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.steps p {
  color: var(--slate);
  font-size: 0.94rem;
}

.section-quote {
  background:
    radial-gradient(700px 280px at 15% 0%, rgba(255, 179, 0, 0.12), transparent 60%),
    linear-gradient(180deg, #101938 0%, #1a237e 100%);
  color: var(--white);
}

.section-quote .eyebrow {
  color: var(--amber);
}

.section-quote h2 {
  color: var(--white);
}

.section-quote .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.quote {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  backdrop-filter: blur(8px);
}

.quote p {
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.45;
  margin-bottom: 1.2rem;
}

.quote footer {
  display: grid;
  gap: 0.15rem;
}

.quote strong {
  color: var(--amber-soft);
}

.quote span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.about-cards {
  display: grid;
  gap: 0.9rem;
}

.about-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
}

.about-cards h3 {
  font-family: var(--display);
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

.about-cards p {
  color: var(--slate);
  font-size: 0.95rem;
}

.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  color: var(--white);
  padding: 2.6rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-copy {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 40rem;
}

.cta-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem;
  object-fit: contain;
}

.cta-band h2 {
  color: var(--white);
  max-width: 34rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 34rem;
}

.form-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.form-card > p,
.contact-card .muted {
  color: var(--slate);
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

form label {
  display: block;
  font-weight: 600;
  margin: 0.75rem 0 0.35rem;
  color: var(--navy-deep);
  font-size: 0.9rem;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid #c9d0e4;
  border-radius: 12px;
  font: inherit;
  background: #fbfcff;
  color: var(--ink);
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: 2px solid rgba(26, 35, 126, 0.25);
  border-color: var(--navy-mid);
}

.form-card .btn {
  margin-top: 1rem;
}

.alert {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.contact-card img,
.contact-logo {
  width: min(100%, 168px);
  height: auto;
  border-radius: 0;
  margin: 0 auto 0.85rem;
  background: transparent;
  object-fit: contain;
}

.contact-card {
  text-align: center;
}

.contact-card dl {
  text-align: left;
}

.contact-card h3 {
  font-family: var(--display);
  color: var(--navy-deep);
  font-size: 1.35rem;
}

.contact-card dl {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.contact-card dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  font-weight: 700;
}

.contact-card dd {
  color: var(--ink);
  font-weight: 600;
}

.site-footer {
  background: #0a102f;
  color: #b8c0d9;
  padding: 2.6rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 0.7rem;
  font-family: var(--display);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.55rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

.footer-brand img {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.site-footer p {
  max-width: 28rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: #d7def3;
}

.site-footer a:hover {
  color: var(--amber-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #8e98b5;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.26s; }

@keyframes float-glow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate3d(-24px, -18px, 0) scale(1.08); opacity: 1; }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero-grid,
  .offer-grid,
  .platform-grid,
  .about-grid,
  .contact-grid,
  .quotes,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .platform-panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding: 3.4rem 0 2.8rem;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 560px);
  }

  .hero-slide figcaption {
    bottom: 2.4rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  .site-nav.open {
    display: block;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .brand-logo {
    height: 32px;
  }

  .brand-hero-logo {
    width: min(100%, 320px);
    padding: 0.7rem 0.9rem;
  }

  .cta-copy {
    align-items: flex-start;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.35rem 0 0.55rem;
  }

  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .offer-grid,
  .platform-panel,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-tagline {
    font-size: 1.15rem;
  }

  .section {
    padding: 3.4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-visual,
  .hero-glow,
  .offer {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
