@font-face {
  font-family: 'Bebas';
	font-style: normal;
	font-weight: 700;
  src: url('../assets/fonts/Bebas-bold.woff') format('woff'), url('../assets/fonts/Bebas-bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Bebas';
	font-style: normal;
	font-weight: 400;
  src: url('../assets/fonts/Bebas-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/OpenSans.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
}

:root {
  --bg: #050505;
  --white: #ffffff;
  --card: rgba(199, 196, 196, 0.2);
  --text: #fff;
  --text-black: #000;
  --text-muted: #737373;
  --muted: #bdbdb7;
  --accent: rgba(180, 184, 251, 1);
  --accent-light: rgba(210, 212, 255, 1);
  --accent-gray: rgba(176, 183, 191, 1);
  --accent-dark: #1f781e;
  --dark: rgba(37, 38, 42, 1);
  --gradient: radial-gradient(
    circle at 20% 20%,
    #4bff6b 0%,
    #1a1f10 45%,
    #050505 90%
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
body.menu-open {
  overflow: hidden;
}

.main-text {
  font-size: clamp(1.1rem, 2.6vw, 1.5625rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bebas', 'Inter', 'Segoe UI', system-ui, -apple-system,
    sans-serif;
  font-weight: 400;
}

h1,
h2 {
  text-transform: uppercase;
}

h2 {
  color: var(--white) !important;
}

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

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

blockquote {
  border-left: 5px solid var(--accent);
  margin: 0;
  padding-left: 35px;
  margin-bottom: 30px;
  color: var(--text-muted);
}

[id] {
  scroll-margin-top: 30px;
}

.green {
  color: var(--accent);
}

.container {
  width: min(1220px, 100% - 25px);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 20px;
}

.section-header h2 {
  margin: 0.4rem 0px 0px 20px;
  font-size: 110px;
  line-height: 1.2;
  color: var(--text-black);
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

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

.accent-text_gray {
  color: var(--accent-gray);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(247, 247, 245, 0.096);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 31px 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 40px;
  color: var(--accent);
}

.text-bold {
  font-weight: 700 !important;
  line-height: 1.2;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.primary-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 20px;
}

.ghost-btn,
.accent-btn {
  border: none;
  border-radius: 10px;
  padding: 5px 15px;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.accent-btn {
  background: var(--accent-light);
  color: var(--dark);
}

.accent-btn_white {
  background: var(--white);
}

.ghost-btn {
  background: transparent;
  border: 1px solid rgba(247, 247, 245, 0.3);
  color: var(--text);
}

.accent-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  gap: 6px;
  flex-direction: column;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  background-color: transparent;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 32px;
  height: 2px;
  background: rgba(179, 179, 179, 1);
  display: block;
}

.hero {
  padding: 6rem 0 5rem;
  position: relative;
}

.hero-inner {
  position: relative;
}

.hero h1 {
  font-size: 110px;
  margin: 0.4rem 0 1rem;
  position: relative;
  z-index: 2;
  line-height: 1;
}

.hero .description {
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.tags span {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 247, 245, 0.5);
  font-size: 1.2rem;
  backdrop-filter: blur(12px) saturate(140%);
  background: rgba(255, 255, 255, 0.1);
}

.hero-text {
  padding-top: 8rem;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-text h1 {
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.hero-media {
  margin: 0;
  display: flex;
  justify-content: center;
  position: absolute;
  top: -45px;
  right: 0;
  bottom: 0;
}

.text-card {
  background: var(--card);
  backdrop-filter: blur(5px);
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 500;
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 25px;
}

#about {
  overflow-x: hidden;
}

.inventory {
  position: relative;
}

.inventory-media {
  position: absolute;
  left: -20%;
  z-index: -1;
  transform: scaleX(-1);
}

.about-container {
  position: relative;
}

.about__img {
  position: absolute;
  right: -10%;
  top: -15%;
  width: 45%;
  transform: rotate(20deg);
}

.about__cards {
  display: flex;
  gap: 20px;
}

.about-card {
  flex: 0 1 calc(50% - 20px);
}

.about-card ul {
  color: var(--white);
}

.about-card__title {
  font-weight: 700;
  color: var(--accent);
}

.about-card:hover {
  transition: all 0.24s ease;
  border: 1px solid var(--accent);
}

.about-card__title {
  margin-top: 0;
}

.image-placeholder {
  width: 100%;
  min-height: 260px;
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(55, 255, 90, 0.8),
    rgba(9, 24, 7, 0.95)
  );
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4), 0 25px 50px rgba(0, 0, 0, 0.4);
}

.text-card[data-accordion] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.text-card__icon {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.text-card__icon::before {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  position: relative;
  top: -2px;
}

[data-accordion].is-open .text-card__icon {
  transform: rotate(180deg);
}

.text-card__accordion-content {
  flex: 0 1 calc(50% - 20px);
}

.benefits-grid,
.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.inventory-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.inventory-blockquote {
  margin-top: 30px;
  margin-left: 20px;
}

.inventory-card {
  background: var(--card);
  border-radius: 20px;
  backdrop-filter: blur(3px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  column-gap: 10px;
  padding: 30px 20px;
  flex: 0 1 calc(50% - 10px);
}

.inventory-card--full {
  flex: 0 1 100%;
}

.inventory-card--full .card-body {
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
}

.inventory-card--full .card-body ul {
  flex: 0 1 50%;
}

.inventory-card__head {
  display: flex;
  justify-content: space-between;
}

.inventory-card__title {
  color: var(--accent);
  font-size: 25px !important;
  font-weight: 700;
}

.inventory-card .card-body {
  margin-top: 12px;
}

.inventory-card h3 {
  font-size: 25px;
  color: var(--accent);
  margin: 0;
}

.inventory-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--white);
}

.inventory-card p {
  margin: 0;
  font-size: 20px;
}

.inventory-card a {
  font-size: 20px;
}

.inventory-card img {
  width: 100%;
  border-radius: 10px;
}

.inventory-card__subtitle--mobile {
  display: none;
}

.inventory-card__toggle {
  margin: 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.inventory-card__toggle:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.inventory-card__toggle-icon {
  width: 14px;
  height: 14px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  display: inline-block;
  position: relative;
  top: -2px;
}

.inventory-card.is-expanded .inventory-card__toggle-icon {
  transform: rotate(135deg);
  top: 2px;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.benefit-card__content {
  max-width: 65%;
  position: relative;
  z-index: 1;
}

.benefit-card__content h3 {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 25px;
  line-height: 1.2;
}

.benefit-card__content h3 br {
  display: none;
}

.benefit-card__content p {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.benefit-card__flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.benefit-card__icon {
  height: auto;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.benefit-card__icon__mobile {
  display: none;
}

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

.audience-grid article {
  background: #c7c4c415;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.audience-grid article h3 {
  font-family: 'Open Sans';
  font-weight: 700;
  color: var(--accent);
  font-size: 25px;
  margin: 0;
}

.audience-grid article p {
  font-size: 20px;
}

.steps {
  overflow-x: hidden;
}

.steps h2 {
  margin-left: 0;
}

.steps-header {
  font-weight: 700;
  font-size: 25px;
  position: relative;
  z-index: 10;
}

.steps-title {
  margin-bottom: 30px !important;
}

.steps-subtitle {
  text-transform: uppercase;
}

.steps-header p {
  margin: 10px 0px;
  font-weight: 500;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.steps-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin-top: 2.5rem;
}

.steps-flow__item {
  flex: 1 1 260px;
  position: relative;
}

.steps-flow__item:nth-child(1) {
  z-index: 6;
}
.steps-flow__item:nth-child(2) {
  z-index: 5;
}
.steps-flow__item:nth-child(3) {
  z-index: 4;
}
.steps-flow__item:nth-child(4) {
  z-index: 3;
}
.steps-flow__item:nth-child(5) {
  z-index: 2;
}
.steps-flow__item:nth-child(6) {
  z-index: 1;
}

.steps-flow__block {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100px;
  border-radius: 0 999px 999px 0;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-left: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}

.steps-flow__item::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: var(--bg);
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.steps-flow__item--advertiser .steps-flow__block {
  background: rgba(38, 39, 102, 1);
  padding-right: 27px;
}

.steps-flow__item--dsp .steps-flow__block {
  background: rgba(54, 56, 141, 1);
  padding-right: 65px;
}

.steps-flow__item--exchange .steps-flow__block {
  background: rgba(75, 77, 173, 1);
  padding-right: 15px;
}

.steps-flow__item--ssp .steps-flow__block {
  background: rgba(86, 89, 195, 1);
  padding-right: 30px;
}

.steps-flow__item--web .steps-flow__block {
  background: rgba(116, 119, 227, 1);
  padding-right: 21px;
}

.steps-flow__item--user .steps-flow__block {
  background: rgba(148, 151, 249, 1);
  padding-right: 58px;
}

.steps-flow__item:first-child::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: var(--bg);
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.step-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 30px 20px;
  border-radius: 28px;
  background: #c7c4c415;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  flex: 0 1 calc(40% - 20px);
}

.step-card:nth-child(1),
.step-card:nth-child(4) {
  flex: 0 0 calc(60% - 20px);
}

.step-card__content {
  position: relative;
  z-index: 1;
}

.step-card__content h3 {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 25px;
}

.step-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.step-card__icon {
  width: 110px;
  height: auto;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.step-card__icon__mobile {
  display: none;
}

.cta {
  padding-bottom: 5rem;
}

.cta-card {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 1, 1) 0%,
    rgba(38, 39, 102, 1) 100%
  );
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  border-radius: 40px;
  color: #f7f7f5;
  text-align: center;
}

.cta-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-card__header h2 {
  margin: 0 0 1rem;
  font-size: 44px;
  font-weight: 700;
  font-family: 'Bebas';
  letter-spacing: 3px;
  text-transform: none;
}

.cta-card__header p {
  margin: 0 0 11rem;
  font-size: 25px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  max-width: 820px;
}

.cta-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.2rem;
}

.cta-form__submit {
  display: block;
  grid-column: 1 / -1;
  justify-self: center;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background: var(--accent-light);
  color: #041104;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 392px;
}

.cta-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  background: #000;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  color: var(--text-muted);
}

.footer-logo {
  font-size: 40px;
}

.policy {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}
.policy--mobile {
  display: none;
}

.address--mobile {
  display: none;
}

.address--mobile span {
  position: relative;
  top: 20px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu .menu-content {
  width: min(90vw, 320px);
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 162, 55, 0.1),
    rgba(0, 0, 0, 0.95)
  );
  backdrop-filter: blur(12px);
  padding: 26px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-left: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  margin-left: 24px;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 215px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 20px;
  font-weight: 700;
}

.mobile-menu a.logo {
  font-size: 35px;
}

.mobile-menu .accent-btn {
  margin-top: auto;
  margin-bottom: 110px;
  text-align: center;
}

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

@media (max-width: 1140px) {
  .about__img {
    right: 0;
  }
}

@media (max-width: 900px) {
  .inventory {
    overflow: hidden;
  }
  .inventory-card__img {
    flex-shrink: 0;
  }
  .inventory-card__subtitle {
    display: none;
  }
  .inventory-card__subtitle--mobile {
    display: block;
  }
  .inventory-card__toggle {
    display: inline-flex;
  }
  .inventory-card--collapsible .card-body ul {
    display: none;
  }
  .inventory-card--collapsible.is-expanded .card-body ul {
    display: block;
    margin-top: 20px;
  }
  .inventory-card--full .card-body {
    display: block;
  }
  .inventory-card__img img {
    height: 70px;
  }
  .hero {
    overflow-x: hidden;
  }
  .hero-text h1 {
    font-size: 70px;
    line-height: 1;
  }
  .hero-text h1 br {
    display: none;
  }
  .logo {
    font-size: 35px;
  }
  .header-btn {
    display: none;
  }
  .primary-nav,
  .site-header .ghost-btn {
    display: none;
  }

  .hero-actions .accent-btn {
    width: 100%;
    text-align: center;
    margin-top: 120px;
  }

  .tags span {
    font-size: 0.8rem;
  }

  .hero-media {
    top: 100px;
    bottom: 0px;
    right: 0px;
    left: 0;
  }

  .inventory-card {
    padding: 20px 15px;
    flex-direction: column;
    gap: 20px;
  }

  .hero .description {
    font-size: 20px;
    line-height: 1.2;
  }

  .about__cards {
    flex-direction: column;
  }

  .about__img {
    width: 220px;
    top: 0;
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

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

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

  .text-card {
    padding: 20px 15px;
  }

  .text-card__accordion-content ul {
    font-size: 20px;
    padding-inline-start: 20px;
  }

  .inventory-wrapper {
    flex-direction: column;
  }

  .inventory-media {
    left: -40%;
    right: -40%;
  }

  .audience-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .step-header {
    position: relative;
    z-index: 2;
  }

  .steps-header p {
    margin: 0px 20px;
    font-weight: 500;
    font-size: 20px;
  }

  .steps-header p.green {
    font-size: 25px;
    font-weight: 700;
  }

  .steps-flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .steps-flow__item {
    flex: 1 1 100px;
    width: 220px;
    margin-left: 0 !important;
    position: relative;
    margin-top: 0;
  }

  .steps-flow__item + .steps-flow__item {
    margin-top: -80px;
  }

  .steps-flow__item .steps-flow__block {
    width: 220px;
    height: 180px;
    margin: 0 auto;
    border-radius: 0 0 999px 999px;
    justify-content: center;
    align-items: end;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
  }

  .steps-flow__item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(90% + 45px);
    height: 140px;
    background: var(--bg);
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
    top: -50px;
    z-index: 2;
    pointer-events: none;
  }

  .steps-flow__item--advertiser .steps-flow__block {
    padding-right: 0;
    padding-bottom: 40px;
  }

  .steps-flow__item--dsp .steps-flow__block {
    padding-right: 0;
    padding-bottom: 40px;
  }

  .steps-flow__item--exchange .steps-flow__block {
    padding-right: 0;
    padding-bottom: 40px;
  }

  .steps-flow__item--ssp .steps-flow__block {
    padding-right: 0;
    padding-bottom: 40px;
  }

  .steps-flow__item--web .steps-flow__block {
    padding-right: 0;
    padding-bottom: 30px;
  }

  .steps-flow__item--user .steps-flow__block {
    padding-right: 0;
    padding-bottom: 40px;
  }

  .steps-flow__item:first-child::after {
    display: none;
  }

  .policy--desktop {
    display: none;
  }

  .policy--mobile {
    display: block;
  }

  .address--mobile {
    display: block;
  }

  .address--desktop {
    display: none;
  }

  .policy-wrapper {
    width: 100%;
    border-top: 1px solid rgba(162, 162, 162, 1);
  }

  .footer-inner {
    padding: 0px 20px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 18px 15px;
  }
  .header-inner .logo img {
    max-width: 205px;
  }
  .container {
    width: min(1220px, 100% - 10px);
    margin: 0 auto;
  }

  .benefit-card__content h3 {
    margin-bottom: 0;
  }

  .benefit-card__content h3 br {
    display: block;
  }

  .audience-grid article {
    padding: 20px 15px;
  }

  .text-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  [data-accordion].is-open .text-card__accordion-content {
    max-height: 800px;
    opacity: 1;
    pointer-events: auto;
  }

  .cta-form {
    display: flex;
    flex-direction: column;
  }

  .cta-card__header p {
    font-size: 20px;
  }

  .hero-inner {
    overflow: hidden;
  }

  .benefit-card__icon {
    display: none;
  }

  .benefit-card__icon__mobile {
    display: block;
  }

  .section-header h2 {
    margin: 0.4rem 0px 0px 15px;
    font-size: 45px;
  }

  .inventory-blockquote {
    margin-left: 15px;
    padding-left: 12px;
    border-width: 2px;
  }

  .step-card__icon {
    display: none;
  }

  .step-card__icon__mobile {
    display: block;
    width: 70px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.55));
  }

  .steps-flow {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .steps-flow__item::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-media {
    left: -50%;
  }
  .cta-form__submit {
    min-width: 100%;
  }
  .hero {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .hero-inner {
    text-align: left;
  }

  .cta-card {
    padding: 15px 15px 140px 20px;
    border-radius: 15px;
  }

  .steps-grid {
    flex-direction: column;
  }

  .benefit-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .benefit-card__content {
    max-width: 100%;
  }

  .benefit-card__flex {
    margin-bottom: 12px;
  }

  .benefit-card__icon__mobile {
    width: 78px;
  }

  .step-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #1d1d1d 0%, #0f0f0f 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .step-card__content p {
    color: rgba(255, 255, 255, 0.8);
  }
}
