@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-0: #ffffff;
  --bg-1: #f8fafc;
  --bg-2: #ffffff;
  --bg-3: #f1f5f9;
  --bg-4: #e2e8f0;
  --accent: #1e40af;
  --accent-hover: #1d3a9a;
  --accent-dim: rgba(30, 64, 175, 0.07);
  --black: #203e86;
  --text-0: #253e7a;
  --text-1: #1b2f4e;
  --text-2: #5a7197;
  --text-3: #5679be;
  --border: rgba(15, 23, 42, 0.09);
  --border-hover: rgba(15, 23, 42, 0.18);
  --divider: rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, .07);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, .1);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, .14);
  --nav-h: 72px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-d: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text-0);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

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

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

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
textarea,
select {
  font-family: inherit
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-d);
  color: var(--text-0);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.022em
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem)
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem)
}

h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem)
}

h4 {
  font-size: .95rem;
  letter-spacing: 0
}

p {
  color: var(--text-2);
  line-height: 1.8;
  font-size: .97rem
}

.lead {
  font-size: 1.05rem;
  color: var(--text-1);
  line-height: 1.85
}

.eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px
}

.g-text {
  background: linear-gradient(135deg, var(--text-0) 40%, var(--text-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.a-text {
  color: var(--accent)
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 112px 0
}

.section-sm {
  padding: 72px 0
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.text-center {
  text-align: center
}

.section-rule {
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin: 18px 0 28px;
  opacity: .6;
  border-radius: 1px
}

.section-rule.center {
  margin: 18px auto 28px
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease-out)
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.feat-card {
  padding: 36px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease-out)
}

.feat-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.feat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--accent);
  margin-bottom: 22px;
  background: var(--bg-1)
}

.feat-card:hover .feat-icon {
  border-color: var(--accent)
}

.feat-card h3 {
  margin-bottom: 10px
}

.feat-card p {
  font-size: .88rem
}

.stat-card {
  padding: 36px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease-out)
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.stat-num {
  font-family: var(--font-d);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: -0.04em;
  line-height: 1
}

.stat-lbl {
  font-size: .82rem;
  color: var(--text-2);
  margin-top: 10px;
  line-height: 1.5
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 980px;
  font-family: var(--font);
  font-weight: 500;
  font-size: .88rem;
  transition: all .22s var(--ease);
  white-space: nowrap;
  letter-spacing: .01em
}

.btn-primary {
  background: var(--accent);
  color: #fff
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  color: #fff
}

.btn-outline {
  border: 1.5px solid rgba(15, 23, 42, 0.2);
  color: var(--text-0);
  background: transparent
}

.btn-outline:hover {
  border-color: var(--text-0);
  background: var(--text-0);
  color: #fff;
  transform: translateY(-1px)
}

.btn-black {
  background: var(--black);
  color: #fff
}

.btn-black:hover {
  background: #1e293b;
  transform: translateY(-1px);
  color: #fff
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform .2s var(--ease);
  flex-shrink: 0
}

.btn:hover svg {
  transform: translateX(3px)
}

.page-hero {
  padding: 148px 0 88px;
  background: var(--bg-0);
  border-bottom: 1px solid var(--divider);
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 113, 227, .05) 0%, transparent 70%)
}

.page-hero h1 {
  max-width: 780px;
  margin: 12px 0 20px
}

.page-hero .lead {
  max-width: 620px
}

.cta-band {
  padding: 96px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--divider)
}

.cta-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 80px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0, 113, 227, .04), transparent 70%);
  pointer-events: none
}

.cta-box h2 {
  margin-bottom: 16px
}

.cta-box .lead {
  max-width: 520px;
  margin: 0 auto 36px
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

.marquee-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
  mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent)
}

.marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 35s linear infinite
}

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

.marquee-pill {
  flex-shrink: 0;
  padding: 8px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 980px;
  font-size: .82rem;
  color: var(--text-2);
  white-space: nowrap;
  transition: all .2s var(--ease);
  box-shadow: var(--shadow-sm)
}

.marquee-pill:hover {
  border-color: var(--border-hover);
  color: var(--text-0)
}

.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
  letter-spacing: .05em;
  text-transform: uppercase
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-0);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s var(--ease)
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, .1)
}

.form-group textarea {
  min-height: 130px;
  resize: vertical
}

.faq-item {
  border-bottom: 1px solid var(--divider)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 24px
}

.faq-q h4 {
  font-size: .97rem;
  font-weight: 500;
  color: var(--text-1);
  transition: color .2s var(--ease)
}

.faq-q:hover h4 {
  color: var(--text-0)
}

.faq-toggle {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all .25s var(--ease)
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg)
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease)
}

.faq-body p {
  padding-bottom: 22px;
  font-size: .9rem;
  line-height: 1.85
}

.faq-item.open .faq-body {
  max-height: 360px
}

.hero-slide {
  opacity: 0;
  position: absolute;
  width: 100%;
  pointer-events: none;
  transition: opacity .9s var(--ease)
}

.hero-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  animation: slideIn 1.1s var(--ease-out) both
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px
}

.s-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-3);
  cursor: pointer;
  transition: all .3s var(--ease)
}

.s-dot.active {
  background: var(--text-0);
  width: 20px;
  border-radius: 3px
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.8s both
}

.scroll-cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-3), transparent)
}

.scroll-cue-text {
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3)
}

/* ── Responsive global ── */
@media(max-width:1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:860px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .section {
    padding: 80px 0
  }

  .section-sm {
    padding: 52px 0
  }

  .cta-box {
    padding: 52px 28px
  }

  h1 {
    font-size: clamp(2rem, 5vw, 3rem) !important
  }

  h2 {
    font-size: clamp(1.5rem, 3vw, 2rem) !important
  }
}

@media(max-width:640px) {
  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .section {
    padding: 64px 0
  }

  .cta-box {
    padding: 40px 20px
  }

  .cta-box h2 {
    font-size: 1.7rem
  }

  .hero-slide h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important
  }

  .hero-actions {
    flex-direction: column;
    align-items: center
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center
  }
}

@media(max-width:480px) {
  .grid-4 {
    grid-template-columns: 1fr
  }

  .container {
    padding: 0 18px
  }

  .hero-inner {
    padding: 60px 0
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(44px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-44px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(44px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.9)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

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

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg)
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

[data-animate] {
  opacity: 0
}

[data-animate].animated {
  animation-fill-mode: both;
  animation-timing-function: var(--ease-out);
  animation-duration: .75s
}

[data-animate="fade-up"].animated {
  animation-name: fadeUp
}

[data-animate="fade-in"].animated {
  animation-name: fadeIn;
  animation-duration: 1s
}

[data-animate="fade-left"].animated {
  animation-name: fadeLeft
}

[data-animate="fade-right"].animated {
  animation-name: fadeRight
}

[data-animate="scale-in"].animated {
  animation-name: scaleIn;
  animation-duration: .7s
}

.d1 {
  animation-delay: .10s !important
}

.d2 {
  animation-delay: .20s !important
}

.d3 {
  animation-delay: .30s !important
}

.d4 {
  animation-delay: .40s !important
}