﻿:root {
  --bg: #0a051c;
  --card: rgba(255, 255, 255, 0.1);
  --violet: #a33ef6;
  --violet-2: #8c00ff;
  --white: #fff;
  --ink: #162136;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
}

main {
  padding-top: 80px;
}

.container {
  width: 1280px;
  max-width: calc(100vw - 64px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pill-btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #7b07d9 0%, #aa47fc 100%);
  color: #fff;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
  will-change: transform;
}

.pill-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(163, 62, 246, 0.5);
  gap: 10px;
}

.world-map {
  position: absolute;
  top: 178px;
  left: calc(50% + 127px);
  transform: translateX(-50%);
  width: 1282px;
  height: 719px;
  background: url("./images/12c271f5-c56d-421c-87e2-6225af0a93b6.svg") center/cover no-repeat;
  opacity: .34;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 3200px;
  transform: translateX(-50%);
  width: 1440px;
  height: 700px;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 5, 28, 0.7);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease-out;
  z-index: 1000;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(0);
  will-change: transform;
}

.site-header.hide {
  transform: translateY(-100%);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1280px;
  max-width: calc(100vw - 64px);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: transform 0.2s ease;
  will-change: transform;
}

.logo:hover {
  transform: scale(1.01);
}

.logo span:last-child {
  color: var(--violet);
  letter-spacing: 3px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-icon-lg {
  width: 82px;
  height: 82px;
}

.logo-icon-md {
  width: 62px;
  height: 62px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 469px);
  gap: 40px;
  align-items: start;
  padding: 30px 0 30px;
}

h1, h2 {
  margin: 0;
  line-height: 1.2;
}

.h2-64 {
  font-size: 64px;
  line-height: 1.2;
}

.grad-title {
  background: linear-gradient(90deg, #fff 0%, #8900ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  transition: text-shadow 0.2s ease;
}

.grad-title:hover {
  text-shadow: 0 0 6px rgba(163, 62, 246, 0.4);
}

.hero-text h1 {
  font-size: 52px;
  margin-bottom: 12px;
  max-width: 700px;
  word-break: break-word;
  hyphens: auto;
  line-height: 1.3;
}

.hero-text p {
  margin: 0;
  font-size: 24px;
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 56px;
  }
}

@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 56px;
    white-space: normal;
    word-break: keep-all;
  }
}

.promo {
  background: var(--card);
  border-radius: 20px;
  padding: 20px 24px;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(163, 62, 246, 0.15);
}

.promo-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.promo-label-spaced {
  margin-bottom: 10px;
}

.promo-label-accent {
  margin: 16px 0 8px;
  color: var(--violet);
}

.promo-text {
  margin: 0 0 12px;
  font-size: 18px;
}

.promo-text--tight {
  font-size: 16px;
  line-height: 1.4;
  max-width: 100%;
  word-break: break-word;
  hyphens: auto;
}

@media (min-width: 1024px) {
  .promo-text--tight {
    font-size: 18px;
  }
}

.flag-row {
  display: flex;
  gap: 6px;
  margin: 10px 0 14px;
  flex-wrap: wrap;
}

.flag-row img {
  width: 50px;
  height: 30px;
  border-radius: 5px;
  background: #fff;
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  will-change: transform;
}

.flag-row img:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 10px rgba(163, 62, 246, 0.3);
}

.field {
  background: #fff;
  color: var(--violet);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.field:hover {
  transform: scale(1.01);
  box-shadow: 0 0 10px rgba(163, 62, 246, 0.2);
}

.section-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 120px 28px;
  margin-top: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section-card:hover {
  border-color: rgba(163, 62, 246, 0.3);
  box-shadow: 0 0 20px rgba(163, 62, 246, 0.08);
}

@media (max-width: 1024px) {
  .section-card {
    padding: 36px 60px 28px;
  }
}

@media (max-width: 768px) {
  .section-card {
    padding: 36px 30px 28px;
  }
}

.cap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--violet);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.cap:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--violet);
}

.dot-white {
  background: #fff;
}

.subgrad {
  margin: 14px 0 22px;
  font-size: 48px;
  font-weight: 900;
  color: var(--violet);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature {
  border-radius: 15px;
  padding: 14px;
  min-height: 205px;
  background: linear-gradient(180deg, rgba(255,255,255,.2) 0%, rgba(140,0,255,.2) 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.feature:hover {
  transform: translateY(-3px) scale(1.01);
  background: linear-gradient(180deg, rgba(255,255,255,.25) 0%, rgba(140,0,255,.25) 100%);
  box-shadow: 0 8px 20px rgba(163, 62, 246, 0.2);
}

.feature-icon-wrap {
  width: 53px;
  height: 53px;
  border-radius: 25px;
  background: linear-gradient(135deg, #a33ef6 0%, #8c00ff 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
  will-change: transform;
}

.feature:hover .feature-icon-wrap {
  transform: scale(1.05);
}

.feature-icon-wrap img {
  width: 33px;
  height: 33px;
  object-fit: contain;
  display: block;
}

.feature h3 {
  margin: 10px 0;
  font-size: 24px;
  transition: color 0.2s ease;
}

.feature:hover h3 {
  color: var(--violet);
}

.feature p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.cta-big {
  width: 100%;
  margin-top: 16px;
  padding: 20px;
  font-size: 24px;
  font-weight: 800;
  justify-content: center;
  gap: 12px;
}

.gift-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
  will-change: transform;
}

.cta-big:hover .gift-icon {
  transform: rotate(5deg) scale(1.05);
}

.steps-title {
  margin: 26px 0 20px;
}

.steps-title .kicker {
  text-transform: uppercase;
  color: #a9a9a9;
  font-size: 24px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.steps-title h2 {
  font-size: 64px;
}

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 49px minmax(0, 1fr) 49px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
}

.step {
  background: var(--card);
  border-radius: 65px;
  height: 100px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.step:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(163, 62, 246, 0.15);
}

.step-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  will-change: transform;
}

.step:hover .step-icon {
  transform: scale(1.05);
}

.step-icon-combo {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  position: relative;
}

.step-icon-lock {
  width: 27px;
  height: 34px;
  position: absolute;
  left: 9px;
  top: 6px;
  transition: transform 0.2s ease;
  will-change: transform;
}

.step-icon-eye {
  width: 31px;
  height: 15px;
  position: absolute;
  left: 7px;
  top: 19px;
  transition: transform 0.2s ease;
  will-change: transform;
}

.step:hover .step-icon-lock,
.step:hover .step-icon-eye {
  transform: translateY(-1px);
}

.step strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  transition: color 0.2s ease;
}

.step:hover strong {
  color: var(--violet);
}

.step small {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #efefef;
}

.arrow {
  width: 49px;
  height: 49px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arrow img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 0.2s ease;
  will-change: transform;
}

.arrow:hover img {
  transform: translateX(3px);
}

.section-gap {
  margin-top: 20px;
}

.section-small-gap {
  margin-top: 16px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 65px;
  margin-top: 14px;
}

.tech-item {
  background: #fff;
  border-radius: 28px;
  min-height: 112px;
  padding: 30px 20px;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.tech-item:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 20px rgba(163, 62, 246, 0.2);
  background: linear-gradient(135deg, #fff, #f5ebff);
}

.tech-item b {
  display: block;
  font-size: 18px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.tech-item:hover b {
  color: var(--violet);
}

.tech-item span {
  color: var(--violet);
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .tech-item b {
    font-size: 14px;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .tech-item b {
    font-size: 12px;
    white-space: normal;
  }
}

.audience-slider-container {
  width: 100%;
  overflow-x: visible;
}

.audience-cards {
  display: flex;
  gap: 21px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.audience-cards::-webkit-scrollbar {
  display: none;
}

.aud-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--card);
  border-radius: 28px;
  padding: 14px 12px;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.aud-card:hover {
  transform: translateY(-3px) scale(1.01);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 25px rgba(163, 62, 246, 0.2);
}

.aud-card img {
  width: 100%;
  height: 158px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(163, 62, 246, 0.65));
  margin-top: -10px;
  transition: transform 0.2s ease, filter 0.2s ease;
  will-change: transform;
}

.aud-card:hover img {
  filter: drop-shadow(0 0 22px rgba(163, 62, 246, 0.8));
  transform: scale(1.02);
}

.aud-card h4 {
  margin: 8px 0 8px;
  font-size: 24px;
  color: var(--violet);
  transition: color 0.2s ease;
}

.aud-card:hover h4 {
  color: #c46eff;
}

.aud-card p {
  margin: 0;
  font-size: 13.4px;
  line-height: 1.5;
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
  cursor: pointer;
}

.dot-indicator.active {
  background: #fff;
  width: 24px;
  border-radius: 5px;
}

@media (min-width: 769px) {
  .audience-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  
  .aud-card {
    flex: none;
    min-width: auto;
  }
  
  .slider-dots {
    display: none;
  }
}

@media (max-width: 768px) {
  .audience-cards {
    display: flex;
    gap: 16px;
    padding: 4px 4px 8px 4px;
  }
  
  .aud-card {
    flex: 0 0 calc(85% - 16px);
    min-width: 260px;
    scroll-snap-align: start;
  }
  
  .slider-dots {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .arrow {
    transform: rotate(90deg);
    margin: 10px auto;
    display: flex;
  }
  
  .arrow:hover img {
    transform: translateX(0) rotate(0);
  }
}

.orb {
  margin: -400px 0 40px 0;
  padding: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow-x: hidden;
  overflow-y: visible;
  z-index: -1;
  pointer-events: none;
}

.globe-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1068px) {
  .orb {
    margin-top: -200px;
  }
  
  .globe-image {
    width: 100%;
    transform: none;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .orb {
    margin-top: -200px;
  }
  
  .globe-image {
    width: 100%;
    transform: none;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .orb {
    margin-top: -100px;
  }
  
  .globe-image {
    width: 100%;
    transform: none;
    object-fit: cover;
  }
}

@media (max-width: 400px) {
  .orb {
    margin-top: -100px;
  }
}

.compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 39px;
  margin-top: 18px;
}

.compare-col h4 {
  text-align: center;
  margin: 0 0 10px;
  font-size: 24px;
}

.compare-list {
  background: var(--card);
  border-radius: 5px;
  min-height: 219px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.compare-list:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 15px rgba(163, 62, 246, 0.15);
}

.compare-list p {
  margin: 0 0 15px;
  font-size: 20px;
  transition: color 0.2s ease;
}

.compare-list:hover p {
  color: var(--violet);
}

.start {
  margin: 20px 0 30px;
}

.start .kicker {
  text-transform: uppercase;
  color: #a9a9a9;
  font-size: 24px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.start h2 {
  font-size: 56px;
}

.start ol {
  margin: 18px 0 0;
  padding-left: 24px;
  font-size: 24px;
}

.start li {
  transition: transform 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.start li:hover {
  color: var(--violet);
  transform: translateX(3px);
}

.faq-head .cap {
  background: var(--violet);
  color: #fff;
}

.faq-title {
  margin-top: 6px;
  font-size: 32px;
}

.faq-wrap {
  display: grid;
  gap: 4.631px;
  margin-top: 14px;
}

.faq-item {
  background: #fff;
  border: 0.926229px solid rgba(16,33,61,.1);
  border-radius: 25.9344px;
  color: #000;
  overflow: hidden;
  min-height: 72.246px;
  position: relative;
  transition: min-height 0.2s ease-out, border-color 0.2s ease;
  will-change: min-height;
}

.faq-item:hover {
  border-color: rgba(163, 62, 246, 0.4);
}

.faq-btn {
  position: absolute;
  left: .93px;
  right: .93px;
  top: .93px;
  height: 70.39px;
  width: calc(100% - 1.86px);
  border: 0;
  background: #fff;
  border-radius: 25.9344px;
  box-shadow: 0 3.70492px 3.70492px rgba(0, 0, 0, 0.25);
  padding: 0 26.86px;
  text-align: left;
  font-weight: 700;
  color: var(--violet);
  font-size: 16px;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-btn:hover {
  background: #f9f0ff;
  color: #7b00d9;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  font-size: 16px;
  line-height: 19px;
  transition: max-height 0.2s ease-out, padding 0.2s ease-out;
  margin-top: 72px;
  will-change: max-height;
}

.faq-item.open {
  border-color: rgba(163, 62, 246, 0.45);
  min-height: 166px;
}

.faq-item.open .faq-content {
  max-height: 200px;
  padding: 22px 28px 20px;
}

.faq-toggle {
  width: 37.05px;
  height: 37.05px;
  border-radius: 925.303px;
  background: #fff;
  box-shadow: 0 1.85246px 3.70492px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
  will-change: transform;
}

.faq-btn:hover .faq-toggle {
  transform: scale(1.05);
}

.faq-caret {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #A33EF6;
  transition: transform 0.2s ease-out;
  display: block;
  will-change: transform;
}

.faq-item.open .faq-caret {
  transform: rotate(180deg);
}

.tech-spec-section {
  margin-top: 26px;
}

.tech-spec-card {
  margin-top: 14px;
  border-radius: 25px;
  padding: 38px 22px;
  background: linear-gradient(269deg, rgba(170,66,255,0) 23.6%, #aa42ff 99.8%);
  position: relative;
  overflow: hidden;
  min-height: 321px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.tech-spec-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(163, 62, 246, 0.2);
}

.tech-spec-card h3 {
  margin: 0 0 15px;
  font-size: 32px;
}

.tech-spec-card p {
  margin: 0 0 8px;
  font-size: 20px;
}

.tech-spec-card b {
  font-size: 24px;
}

.rack {
  position: absolute;
  right: 12px;
  top: -16px;
  width: 530px;
  opacity: .95;
  transition: transform 0.2s ease;
  will-change: transform;
}

.tech-spec-card:hover .rack {
  transform: scale(1.01);
}

footer {
  padding: 50px 0 30px;
}

.footer-top {
  border-top: 1px solid rgba(255,255,255,.3);
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding: 26px 0;
}

.footer-logo {
  font-size: 40px;
}

.footer-tagline {
  font-size: 28px;
  margin: 22px 0 0;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0;
}

.contact-pills span {
  background: #fff;
  color: var(--violet);
  padding: 11px 16px;
  border-radius: 110px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  cursor: default;
}

.contact-pills span:hover {
  transform: translateY(-2px);
  background: var(--violet);
  color: #fff;
  box-shadow: 0 4px 12px rgba(163, 62, 246, 0.3);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.copy {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
}

.icon-white {
  filter: brightness(0) invert(1);
}

.chrome-icon-small {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.chrome-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.chrome-icon-medium {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.btn-promo {
  width: 100%;
  font-size: 24px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero, .tech-grid, .compare {
    grid-template-columns: 1fr;
  }
  .rack {
    display: none;
  }
  .subgrad, .steps-title h2, h2.grad-title, .start h2, .h2-64 {
    font-size: 40px;
  }
  .hero-text h1 {
    font-size: 40px;
  }
  .hero-text p {
    font-size: 20px;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .world-map, .hero-glow {
    display: none;
  }
  .container {
    max-width: calc(100vw - 40px);
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }
  .subgrad, .steps-title h2, h2.grad-title, .start h2, .h2-64 {
    font-size: 32px;
  }
  .feature h3 {
    font-size: 20px;
  }
  .feature p {
    font-size: 16px;
  }
  .step {
    padding: 15px;
    height: auto;
  }
  .step strong {
    font-size: 14px;
  }
  .step small {
    font-size: 11px;
  }
}