
:root {
  --color-red: #f9423a;
  --color-black: #000;
  --color-white: #fff;
  --color-gray-bg: #eee;
  --color-gray-666: #666;
  --color-gray-888: #888;
  --color-gray-333: #333;
  --color-gray-bbb: #bbb;
  --color-glass: rgba(204, 204, 204, 0.5);

  --font-heading: "Switzer", sans-serif;
  --font-body: "Switzer", sans-serif;

  --page-width: 1600px;
  --page-padding: clamp(20px, 4.25vw, 68px);
  --section-gap: clamp(48px, 5.625vw, 90px);
  --section-padding-y: clamp(64px, 7.5vw, 120px);

  --radius-card: clamp(16px, 1.5vw, 24px);
  --radius-btn-pill: 100px;
  --radius-btn-nav: 22px;
  --radius-input: 4px;
}

/* ---------- Typography ---------- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-white);
}

.text-trim {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.page {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  overflow-x: clip;
  background: var(--color-white);
}

/* ---------- Hero---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--page-width);
  height: 100%;
  margin: 0 auto;
}

.hero__nav {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 48px var(--page-padding);
}

.hero__logo {
  width: 240px;
}

.hero__logo-img {
  width: 173px;
  height: 32px;
  object-fit: contain;
}

.hero__nav-center {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 160px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-btn-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-white);
  white-space: nowrap;
}

.hero__nav-right {
  display: flex;
  justify-content: flex-end;
  width: 240px;
}

.hero__login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 44px;
  padding: 0 20px;
  background: var(--color-glass);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-white);
  white-space: nowrap;
}

.hero__content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 4.5vw, 72px);
  min-height: 0;
  width: 100%;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: clamp(48px, 5.25vw, 84px);
  text-align: center;
  color: var(--color-white);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.hero__subtitle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero__subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: var(--color-white);
  white-space: nowrap;
}

.hero__cta-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 64px;
  padding: 0 40px 0 48px;
  background: var(--color-red);
  border-radius: var(--radius-btn-pill);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  height: 64px;
  padding: 0 40px 0 48px;
  background: var(--color-glass);
  border-radius: var(--radius-btn-pill);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
}

.hero__cta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Section Common ---------- */
.section {
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(32px, 3.375vw, 54px);
  line-height: clamp(40px, 4vw, 64px);
  color: var(--color-black);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.section__title--center {
  text-align: center;
  white-space: nowrap;
}

/* ---------- Reasons Section ---------- */
.reasons {
  padding-top: clamp(80px, 15vw, 240px);
  padding-bottom: var(--section-padding-y);
}

.reasons__inner {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.reasons__cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.reason-card {
  max-height: 540px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3vw, 48px);
  padding: clamp(24px, 3vw, 48px);
  background: var(--color-gray-bg);
  border-radius: var(--radius-card);
  min-width: 0;
}

.reason-card__top {
  display: flex;
  gap: 48px;
  flex-direction: column;
}


.reason-card__label-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reason-card__label {
  font-size: 16px;
  line-height: 20px;
  color: var(--color-gray-666);
}

.reason-card__heading {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  height:64px;
  color: var(--color-black);
}



.reason-card__illust {
  width: 160px;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.reason-card__illust-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.reason-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reason-card__item {
  display: flex;
  gap: 4px;
  align-items: flex-start;
}

.reason-card__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.reason-card__text {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-black);
}

/* ---------- Audience Section ---------- */
.audience {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.audience__inner {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.audience__feature-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* [IMAGE] BGMI hero banner */
.audience__hero {
  position: relative;
  height: clamp(360px, 45.75vw, 732px);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.audience__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience__hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
}

.audience__hero-blur {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: clamp(160px, 43.72%, 320px);
  pointer-events: none;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  mask-image: linear-gradient(
    180deg,
    rgba(217, 217, 217, 0) 0%,
    rgba(217, 217, 217, 0.8) 25%,
    #d9d9d9 60%,
    #d9d9d9 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(217, 217, 217, 0) 0%,
    rgba(217, 217, 217, 0.8) 25%,
    #d9d9d9 60%,
    #d9d9d9 100%
  );
}

.audience__hero-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: clamp(24px, 4.5vw, 72px);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
}

.audience__hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: clamp(24px, 4.6vw, 74px);
  width: 100%;
}

.audience__hero-stats-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--color-white);
  white-space: nowrap;
}

.audience__hero-stats-label {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
}

.audience__hero-stats-value {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 1;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.audience__cards {
  display: flex;
  gap: 24px;
}

.audience-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding: clamp(24px, 3vw, 48px);
  background: var(--color-gray-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.audience-card__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-black);
}

.audience-card__list {
  display: flex;
  flex-direction: column;
}

.audience-card__item {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  padding: 6px 0;
}

.audience-card__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.audience-card__text {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-gray-333);
}

/* ---------- Ad Formats Section ---------- */
.ad-formats {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.ad-formats__inner {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.ad-formats__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ad-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 360px;
  padding: clamp(24px, 3vw, 48px);
  background: var(--color-gray-bg);
  border-radius: var(--radius-card);
  width: 100%;
}

.ad-card__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.ad-card__heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ad-card__category {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-gray-888);
}

.ad-card__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  color: var(--color-black);
}

.ad-card__list {
  display: flex;
  flex-direction: column;
}

.ad-card__item {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  padding: 6px 0;
}

.ad-card__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.ad-card__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-gray-333);
  white-space: nowrap;
}

.ad-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 64px;
  padding: 0 48px;
  background: var(--color-black);
  border-radius: var(--radius-btn-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
}

/* [IMAGE] Ad format visual (single composite) */
.ad-card__visual {
  flex-shrink: 0;
  width: 509px;
  height: 260px;
}

.ad-card__visual-img {
  width: 509px;
  height: 260px;
  object-fit: contain;
  pointer-events: none;
}

/* ---------- Spec Modal ---------- */
html.modal-open {
  overflow: hidden;
  scrollbar-gutter: auto;
  background: rgba(0, 0, 0, 0.8);
}

body.modal-open {
  overflow: hidden;
  touch-action: manipulation;
}

.spec-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  padding: 20px;
  overflow: hidden;
  overscroll-behavior: none;
}

.spec-modal[hidden] {
  display: none;
}

.spec-modal--closing {
  pointer-events: none;
}

.spec-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.spec-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 840px;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  min-height: 0;
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-sizing: border-box;
}

.spec-modal__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 14px 2.5px 14px 0;
  padding: 48px;
  border-radius: var(--radius-card);
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gray-bbb) transparent;
}

.spec-modal__body::-webkit-scrollbar {
  width: 8px;
}

.spec-modal__body::-webkit-scrollbar-track {
  background: transparent;
}

.spec-modal__body::-webkit-scrollbar-thumb {
  background-color: var(--color-gray-bbb);
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}

.spec-modal__head {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.spec-modal__heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.spec-modal__category {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-gray-888);
}

.spec-modal__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  color: var(--color-black);
}

.spec-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px;
  box-sizing: border-box;
  background: var(--color-black);
  border-radius: 50%;
}

.spec-modal__close-icon {
  width: 16px;
  height: 16px;
}

.spec-modal__table {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
}

.spec-modal__row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-bg);
}

.spec-modal__row--head {
  align-items: center;
  border-top: 1px solid var(--color-gray-bg);
  font-weight: 500;
  color: var(--color-gray-333);
}

.spec-modal__cell {
  margin: 0;
}

.spec-modal__cell--category {
  flex-shrink: 0;
  width: 200px;
}

.spec-modal__cell--label {
  font-weight: 400;
  color: var(--color-red);
}

.spec-modal__cell--spec {
  flex: 1;
  min-width: 0;
  max-width: 520px;
  font-weight: 400;
  color: var(--color-gray-333);
}

.spec-modal__cell--spec p {
  margin: 0;
  line-height: 24px;
}

.spec-modal__row--options {
  align-items: center;
}

.spec-modal__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.spec-modal__option {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-modal__option-title {
  font-weight: 600;
  color: var(--color-gray-333);
}

.spec-modal__option-desc {
  margin: 0;
  line-height: 24px;
  color: var(--color-gray-333);
}

/* ---------- Technology Section ---------- */
.technology {
  padding-top: var(--section-padding-y);
  padding-bottom: clamp(120px, 15vw, 240px);
}

.technology__inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.technology__title {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(32px, 3.375vw, 54px);
  line-height: clamp(40px, 4vw, 64px);
  color: var(--color-black);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.technology__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tech-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: clamp(24px, 3vw, 48px);
  background: var(--color-gray-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  width: 100%;
}

.tech-card__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-black);
  white-space: nowrap;
}

.tech-card__list {
  display: flex;
  flex-direction: column;
}

.tech-card__item {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  padding: 6px 0;
}

.tech-card__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tech-card__text {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-gray-333);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  width: 100%;
  padding: var(--section-padding-y) 0;
  background: var(--color-red);
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(32px, 3.375vw, 54px);
  line-height: clamp(40px, 4vw, 64px);
  text-align: center;
  color: var(--color-white);
  white-space: nowrap;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.cta-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.cta-banner__desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: var(--color-white);
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 64px;
  padding: 0 72px;
  background: var(--color-black);
  border-radius: var(--radius-btn-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
}

/* ---------- Contact Section ---------- */
.contact {
  padding-top: clamp(80px, 15vw, 240px);
  padding-bottom: 72px;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact__header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact__title {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: clamp(40px, 4.5vw, 72px);
  color: var(--color-red);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.contact__desc {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: clamp(26px, 2vw, 32px);
  color: var(--color-black);
}

.contact__form-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.contact__form-columns {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

.contact__form-panel {
  flex: 1;
  min-width: 0;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: clamp(24px, 3vw, 48px);
  margin: 0;
  min-width: 0;
  border: none;
  background: var(--color-gray-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.contact__form-panel--required {
  align-self: stretch;
}

.contact__form-heading {
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  white-space: nowrap;
}

.contact__form-heading--required {
  color: var(--color-red);
}

.contact__form-heading--optional {
  color: var(--color-black);
  opacity: 0.4;
}

.contact__form-row {
  display: flex;
  gap: 24px;
  width: 100%;
}

.contact__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact__field--full {
  flex: 1;
  width: 100%;
}

.contact__field-label {
  display: flex;
  gap: 4px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-black);
  white-space: nowrap;
}

.contact__field-label-text {
  line-height: 26px;
}

.contact__field-required {
  position: relative;
  flex-shrink: 0;
  width: 8px;
  height: 26px;
  color: var(--color-red);
}

.contact__field-required-mark {
  position: absolute;
  top: 65%;
  left: 0;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-55%);
}

.contact__input {
  display: block;
  width: 100%;
  height: 46px;
  padding: 10px 12px;
  box-sizing: border-box;
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-input);
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-black);
}

.contact__input::placeholder {
  font-weight: 400;
  color: var(--color-gray-bbb);
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 64px;
  padding: 0 72px;
  background: var(--color-red);
  border-radius: var(--radius-btn-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.footer {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer__links {
  display: flex;
  gap: 48px;
  align-items: center;
  font-weight: 500;
  font-size: 16px;    
  line-height: 21px;
  color: var(--color-black);
  white-space: nowrap;
}

/* ========================================
   Desktop —  (≥1600px)
   clamp는 1600px 미만에서만 동작, 이상은 고정 px
   ======================================== */
@media (min-width: 1600px) {
  :root {
    --page-padding: 68px;
    --section-gap: 90px;
    --section-padding-y: 120px;
    --radius-card: 24px;
  }

  .hero__content {
    gap: 72px;
  }

  .hero__title {
    font-size: 72px;
    line-height: 84px;
  }

  .reasons {
    padding-top: 240px;
  }

  .technology {
    padding-bottom: 240px;
  }

  .contact {
    padding-top: 240px;
  }

  .reason-card {
    gap: 48px;
    padding: 48px;
  }

  .section__title--1,
  .section__title--2,
  .technology__title {
    font-size: 54px;
    line-height: 64px;
  }

  .audience__hero {
    height: 732px;
  }

  .audience__hero-blur {
    height: 320px;
  }

  .audience__hero-title {
    padding: 72px;
  }

  .audience__hero-stats {
    height: 250px;
    padding: 74px;
  }

  .audience__hero-stats-value {
    font-size: 72px;
    line-height: 72px;
  }

  .audience-card,
  .ad-card,
  .tech-card,
  .contact__form-panel {
    padding: 48px;
  }

  .ad-card {
    min-height: 360px;
  }

  .cta-banner__title {
    font-size: 54px;
    line-height: 64px;
  }

  .contact__title {
    font-size: 72px;
    line-height: 72px;
  }

  .contact__desc {
    font-size: 24px;
    line-height: 32px;
  }
}

@supports (text-box-trim: trim-both) {
  .audience__hero-stats-value {
    height: 0.722em;
  }

  .contact__title {
    height: 0.722em;
  }

  @media (min-width: 1600px) {
    .hero__title {
      height: 137px;
    }

    .section__title--1 {
      height: 40px;
    }

    .section__title--2,
    .technology__title {
      height: 104px;
    }

    .audience__hero-stats-value {
      height: 52px;
    }

    .cta-banner__title {
      height: 40px;
    }

    .cta-banner__desc {
      height: 56px;
    }

    .contact__title {
      height: 53px;
    }

    .contact__desc {
      height: 64px;
    }
  }
}

/* ========================================
   Responsive — Tablet (≤1199px)
   ======================================== */
@media (max-width: 1199px) {
  .hero__nav {
    padding: 32px var(--page-padding);
  }

  .ad-card__visual,
  .ad-card__visual-img {
    width: min(100%, 509px);
    height: auto;
    aspect-ratio: 509 / 260;
  }
  .reason-card__heading {
    height: 96px;
  }
  .ad-card {
    flex-direction: column;
    gap: 32px;
    min-height: auto;
  }
  .ad-card__visual {
    align-self: center;
    width: 100%;
    max-width: 509px;
  }
}

/* ========================================
   Responsive — Small Tablet (≤1023px)
   ======================================== */
@media (max-width: 1023px) {
  .reasons__cards {
    flex-direction: column;
  }

  .audience__cards {
    flex-direction: column;
  }

  .technology__inner {
    flex-direction: column;
  }





  .contact__header {
    flex-direction: column;
    gap: 20px;
  }

  .contact__form-columns {
    flex-direction: column;
  }

  .contact__form-panel {
    min-height: auto;
  }
}

/* ========================================
   Responsive — Mobile (≤767px)
   ======================================== */
@media (max-width: 767px) {
  .hero__nav {
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px var(--page-padding);
  }

  .hero__logo,
  .hero__nav-right {
    width: auto;
  }

  .hero__logo-img {
    width: 140px;
    height: 26px;
  }

  .hero__nav-center {
    order: 3;
    width: 100%;
  }

  .hero__nav-link {
    flex: 1;
    width: auto;
    min-width: 0;
    font-size: 14px;
  }

  .hero__content {
    flex: 1;
    padding: 0 var(--page-padding) 48px;
    gap: 40px;
  }

  .hero__inner {
    min-height: 100%;
  }

  .hero__title br {
    display: none;
  }

  .hero__subtitle {
    white-space: normal;
    padding: 0 8px;
  }

  .hero__cta-group {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .hero__cta-primary,
  .hero__cta-secondary {
    width: 100%;
    padding: 0 32px;
    font-size: 16px;
  }

  .section__title br {
    display: none;
  }

  .audience__hero-title {
    white-space: normal;
    font-size: 20px;
    line-height: 28px;
    padding: 24px;
  }

  .audience__hero-stats {
    height: auto;
    padding: 24px;
  }

  .audience__hero-stats-inner {
    white-space: normal;
  }

  .ad-card__text,
  .tech-card__title {
    white-space: normal;
  }

  .cta-banner__title {
    white-space: normal;
  }

  .technology__title br {
    display: none;
  }

  .contact__form-row {
    flex-direction: column;
  }

  .contact__field-label {
    white-space: normal;
  }

  .footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    white-space: normal;
  }

  .spec-modal__body {
    padding: 24px;
    gap: 32px;
  }

  .spec-modal__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .spec-modal__cell--category {
    width: 100%;
  }

  .spec-modal__cell--spec {
    max-width: none;
  }
}

/* ========================================
   Responsive — Small Mobile (≤479px)
   ======================================== */
@media (max-width: 479px) {
  .hero__nav-center {
    flex-direction: column;
  }

  .hero__nav-link {
    width: 100%;
  }

  .hero__cta-primary,
  .hero__cta-secondary,
  .ad-card__btn,
  .cta-banner__btn,
  .contact__submit {
    height: 56px;
    font-size: 16px;
  }

  .ad-card__btn,
  .contact__submit {
    padding: 0 32px;
  }

  .cta-banner__btn {
    padding: 0 48px;
  }
}
