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

body {
  background: #050505;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 115px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  transform: scale(1.35);
}

.menu-btn {
  position: absolute;
  left: 24px;
  top: 34px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -500px;
  width: 500px;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  z-index: 200;
  transition: left 0.3s ease;
}

.side-menu.open {
  left: 0;
}

.close-btn {
  position: absolute;
  right: 24px;
  top: 20px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.side-menu ul {
  list-style: none;
  padding: 80px 24px 24px;
}

.side-menu li {
  margin-bottom: 18px;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: block;
  padding: 12px;
  border-radius: 10px;
}

.side-menu a:hover {
  background: #8a4af3;
}

.offers-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(138, 74, 243, 0.32), transparent 35%),
    linear-gradient(135deg, #050505, #111);
  padding: 145px 24px 85px;
}

.breadcrumb {
  max-width: 1320px;
  margin: 0 auto 28px;
  color: #aaa;
  font-size: 14px;
}

.breadcrumb a {
  color: #ddd;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 8px;
  color: #777;
}

.offers-hero {
  max-width: 1080px;
  margin: 0 auto 42px;
  text-align: center;
}

.page-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #d6d6d6;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.offers-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 900;
}

.offers-hero p {
  max-width: 830px;
  margin: 0 auto 28px;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: #fff;
  color: #000;
  transition: all 0.25s ease;
}

.hero-actions a:hover {
  background: #8a4af3;
  color: #fff;
}

.offer-highlight,
.steps-section,
.guidance-section,
.notice-section,
.form-section {
  max-width: 1320px;
  margin: 28px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.offer-highlight {
  border-color: rgba(138,74,243,0.55);
}

.offer-highlight h2,
.section-heading h2,
.guidance-section h2,
.notice-section h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.offer-highlight p,
.section-heading p,
.steps-grid p,
.guidance-section li,
.notice-section p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 16px;
}

.section-heading {
  text-align: center;
  margin-bottom: 26px;
}

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

.steps-grid article {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 22px;
}

.steps-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 900;
  margin-bottom: 14px;
}

.steps-grid h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.guidance-section ul {
  padding-left: 20px;
}

.guidance-section li {
  margin-bottom: 12px;
}

.notice-section {
  border-color: rgba(220,38,38,0.45);
  background:
    linear-gradient(135deg, rgba(220,38,38,0.12), rgba(255,255,255,0.05));
}

.google-form-wrapper {
  max-width: 850px;
  height: 980px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #fff;
}

.google-form-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 22px 16px;
  font-size: 14px;
}

@media (max-width: 1050px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 105px;
  }

  .logo img {
    width: 155px;
    height: 90px;
  }

  .menu-btn {
    top: 32px;
    left: 18px;
    font-size: 34px;
  }

  .side-menu {
    width: 100%;
  }

  .offers-page {
    padding: 130px 16px 70px;
  }

  .offers-hero h1 {
    font-size: 38px;
  }

  .offers-hero p {
    font-size: 16px;
  }

  .offer-highlight,
  .steps-section,
  .guidance-section,
  .notice-section,
  .form-section {
    padding: 22px;
  }

  .hero-actions a {
    width: 100%;
  }

  .google-form-wrapper {
    height: 760px;
  }
}