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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  --indigo:        #4F46E5;
  --indigo-light:  #6366F1;
  --indigo-glow:   #818CF8;
  --indigo-dim:    #312E81;
  --coral:         #FF5C47;
  --coral-light:   #FF7A68;
  --bg-dark:       #0D0D14;
  --bg-card:       #13131F;
  --bg-card-alt:   #1A1A2E;
  --border:        rgba(255,255,255,0.08);
  --white:         #FAFAF9;
  --white-muted:   rgba(250,250,249,0.65);
  --white-dim:     rgba(250,250,249,0.35);
  --charcoal:      #1C1C28;
  --text-body:     #E2E2EE;
  --text-muted:    #9090A8;
  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --shadow-card:   0 4px 32px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);
  --shadow-btn:    0 8px 24px rgba(79,70,229,0.4);
  --shadow-coral:  0 8px 24px rgba(255,92,71,0.35);
  --transition:    0.22s cubic-bezier(0.4,0,0.2,1);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── CONTAINER ── */
.wrap {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; font-family: 'Inter', sans-serif; }

p {
  color: var(--text-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  max-width: 68ch;
}

a {
  color: var(--indigo-glow);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--white); }

strong { color: var(--white); font-weight: 700; }
em { font-style: italic; }

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.35em; color: var(--text-body); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--indigo-light);
  box-shadow: 0 12px 32px rgba(79,70,229,0.55);
  color: #fff;
}

.btn--coral {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn--coral:hover {
  background: var(--coral-light);
  color: #fff;
  box-shadow: 0 12px 32px rgba(255,92,71,0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--indigo-glow);
  color: var(--indigo-glow);
  background: rgba(99,102,241,0.08);
}

.btn--outline-coral {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}
.btn--outline-coral:hover {
  background: var(--coral);
  color: #fff;
}

.btn--sm {
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}

.btn--lg {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,20,0.88);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-light) 60%, var(--coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand__mark svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.brand__name {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.brand__name span {
  color: var(--indigo-glow);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.75rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--indigo-glow);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--white);
}
.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--white);
}
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: clamp(0.25rem, 1vw, 0.75rem);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: border-color var(--transition);
}
.nav__hamburger:hover { border-color: var(--indigo-glow); }
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13,13,20,0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile .nav__link {
  font-size: 1.5rem;
  color: var(--white);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: 2rem;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}

.footer__brand-col .brand__name {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 26ch;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.footer__social-link:hover {
  background: var(--indigo);
  color: #fff;
  border-color: var(--indigo);
}

.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: var(--text-body);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: none;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
}
.footer__legal a:hover { color: var(--white); }

/* ── SECTIONS ── */
section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-glow);
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius-xl);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
}

.section-eyebrow--coral {
  color: var(--coral);
  background: rgba(255,92,71,0.1);
  border-color: rgba(255,92,71,0.25);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header--center p {
  margin-inline: auto;
}

.section-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 58ch;
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* ── HERO ── */
.hero-section {
  padding-top: clamp(7rem, 14vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79,70,229,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,92,71,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  color: var(--indigo-glow);
  position: relative;
}

.hero-title .highlight--coral {
  color: var(--coral);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  max-width: 50ch;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.75rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-trust__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-card);
}

.hero-badge__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-badge__text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

.hero-badge__text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 8px 40px rgba(79,70,229,0.2);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.2);
}

.card__icon--coral {
  background: rgba(255,92,71,0.1);
  border-color: rgba(255,92,71,0.2);
}

.card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.card__body {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: none;
}

.card--featured {
  background: linear-gradient(145deg, var(--indigo-dim) 0%, var(--bg-card) 100%);
  border-color: rgba(99,102,241,0.35);
}

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.stat-item {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.04em;
}

.stat-number .stat-accent {
  color: var(--indigo-glow);
}

.stat-number .stat-coral {
  color: var(--coral);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: none;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--indigo-dim) 0%, #1e1b4b 50%, var(--bg-card-alt) 100%);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-band__sub {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 780px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(99,102,241,0.35); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  list-style: none;
  user-select: none;
}

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

.faq-item__chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(99,102,241,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--indigo-glow);
  transition: transform var(--transition);
}

details[open] .faq-item__chevron {
  transform: rotate(180deg);
  background: var(--indigo);
  color: #fff;
}

.faq-item__answer {
  padding: 0 1.5rem 1.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: none;
}

/* ── CONTENT SECTION ── */
.content-section {
  background: var(--bg-dark);
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.content-layout--wide-text {
  grid-template-columns: 1.3fr 1fr;
}

.content-body p + p { margin-top: 1rem; }

/* ── IMAGES ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-rounded {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.img-aspect-video {
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── FORMS ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--indigo-light);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.18);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin-block: clamp(2rem, 4vw, 4rem);
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.04em;
}

.badge--indigo {
  background: rgba(99,102,241,0.15);
  color: var(--indigo-glow);
  border: 1px solid rgba(99,102,241,0.25);
}

.badge--coral {
  background: rgba(255,92,71,0.12);
  color: var(--coral);
  border: 1px solid rgba(255,92,71,0.25);
}

.badge--green {
  background: rgba(52,211,153,0.12);
  color: #34D399;
  border: 1px solid rgba(52,211,153,0.25);
}

/* ── ALT SURFACE ── */
.surface-alt {
  background: var(--bg-card-alt);
  border-radius: var(--radius-xl);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .content-layout,
  .content-layout--wide-text {
    grid-template-columns: 1fr;
  }
  .nav__list,
  .nav__cta {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .card-grid,
  .card-grid--2 {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer__legal {
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-band__actions {
    flex-direction: column;
    align-items: center;
  }
}*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}