:root {
  --red: #e21b23;
  --red-dark: #b9151c;
  --yellow: #ffd400;
  --yellow-soft: #fff3b0;
  --navy: #111827;
  --navy-2: #1b2433;
  --cream: #fffdf7;
  --white: #ffffff;
  --text: #20242c;
  --muted: #687180;
  --border: #e7e9ed;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

body.modal-open {
  overflow: hidden;
}

button {
  font: inherit;
}

button:focus-visible {
  outline: 3px solid rgba(226, 27, 35, 0.35);
  outline-offset: 3px;
}


/* =========================
   HEADER
========================= */

.header {
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}

.header-inner {
  width: min(1160px, calc(100% - 44px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 64px;
  height: 54px;
  object-fit: contain;
}

.sponsored-label {
  color: #737b88;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 212, 0, 0.23),
      transparent 28%
    ),
    radial-gradient(
      circle at 0% 80%,
      rgba(226, 27, 35, 0.07),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #fffdf7 0%,
      #ffffff 55%,
      #fff9dd 100%
    );
}

.hero-inner {
  width: min(1160px, calc(100% - 44px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}

.hero-copy {
  max-width: 650px;
}

.offer-highlight {
  margin-bottom: 24px;
}

.offer-highlight span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.offer-highlight strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.offer-highlight small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.hero h1 {
  margin: 24px 0 20px;
  color: var(--navy);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 850;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-text {
  max-width: 600px;
  margin: 0;
  color: #5d6673;
  font-size: 19px;
  line-height: 1.65;
}

.offer-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.detail-icon {
  flex: 0 0 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}

.detail strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.detail small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.primary-button,
.final-button {
  min-height: 56px;
  padding: 0 23px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-size: 15px;
  font-weight: 850;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.primary-button {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(226, 27, 35, 0.22);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
}

.primary-button span,
.final-button span {
  font-size: 21px;
}

.button-note {
  margin: 10px 0 0;
  color: #858c97;
  font-size: 11px;
}


/* =========================
   GIFT CARD VISUAL
========================= */

.hero-card-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.offer-card {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  padding: 22px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

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

.card-top {
  margin-bottom: 16px;
}

.card-top span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.card-top strong {
  color: var(--navy);
  font-size: 23px;
}

.gift-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 315px;
  padding: 10px;
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    #fffef9,
    #f6f6f3
  );
}

.gift-image {
  display: block;
  width: auto;
  height: 285px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.card-bottom {
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
}

.verified {
  color: #69717d;
  font-size: 11px;
}

.decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.decor-one {
  width: 210px;
  height: 210px;
  top: 15px;
  right: 10px;
  background: var(--yellow);
  opacity: 0.24;
  filter: blur(50px);
}

.decor-two {
  width: 170px;
  height: 170px;
  bottom: 20px;
  left: 15px;
  background: var(--red);
  opacity: 0.10;
  filter: blur(55px);
}


/* =========================
   COMMON SECTIONS
========================= */

.section-inner {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.information,
.process {
  padding: 95px 0;
}

.information {
  background: white;
}

.section-title {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-title.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title > span,
.final-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-title h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}


/* =========================
   INFO CARDS
========================= */

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

.info-box {
  display: flex;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(17, 24, 39, 0.045);
}

.info-number {
  flex: 0 0 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}

.info-box h3 {
  margin: 2px 0 7px;
  color: var(--navy);
  font-size: 16px;
}

.info-box p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}


/* =========================
   PROCESS
========================= */

.process {
  background: #f6f7f5;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.process-item {
  text-align: center;
}

.process-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 900;
}

.process-item h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 16px;
}

.process-item p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-arrow {
  color: var(--red);
  font-size: 26px;
  font-weight: 700;
}


/* =========================
   FINAL CTA
========================= */

.final-section {
  padding: 75px 0;
  background: var(--navy);
}

.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px;
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 212, 0, 0.25),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #202938,
      #111827
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.final-kicker {
  color: var(--yellow);
}

.final-card h2 {
  max-width: 650px;
  margin: 0 0 10px;
  color: white;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.final-card p {
  max-width: 620px;
  margin: 0;
  color: #b9c1cc;
  font-size: 15px;
  line-height: 1.6;
}

.final-button {
  flex: 0 0 auto;
  color: var(--navy);
  background: var(--yellow);
}

.final-button:hover {
  transform: translateY(-2px);
  background: #ffe043;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: #0b111a;
  padding: 40px 0;
  color: #8f98a6;
  text-align: center;
  font-size: 11px;
  line-height: 1.7;
}

.footer-inner {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
}

.footer p {
  margin: 6px 0;
}

.footer .sponsor {
  color: #e1e4e8;
  font-weight: 750;
}

.footer .copyright {
  margin-top: 20px;
  opacity: 0.65;
}


/* =========================
   MODAL
========================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-background {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.74);
  backdrop-filter: blur(9px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(600px, 100%);
  max-height: 94vh;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
  transform: translateY(15px) scale(0.98);
  transition: transform 0.2s ease;
}

.modal.visible .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f0f1f2;
  color: var(--navy);
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.modal-title {
  padding: 28px 65px 18px 30px;
  border-bottom: 1px solid var(--border);
}

.modal-pill {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: #6a5600;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.modal-title h2 {
  margin: 12px 0 7px;
  color: var(--navy);
  font-size: 29px;
  letter-spacing: -0.035em;
}

.modal-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.tally-wrapper {
  height: 650px;
  background: white;
}

.tally-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 65px 0;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-card-area {
    min-height: auto;
    justify-content: flex-start;
  }

  .offer-card {
    width: min(350px, 100%);
  }

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .final-card {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .header-inner,
  .hero-inner,
  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    height: 68px;
  }

  .logo {
    width: 58px;
    height: 46px;
  }

  .sponsored-label {
    font-size: 9px;
  }

  .hero-inner {
    padding: 48px 0 58px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 59px);
  }

  .hero-text {
    font-size: 16px;
  }

  .offer-details {
    grid-template-columns: 1fr;
  }

  .detail {
    padding: 12px;
  }

  .primary-button {
    width: 100%;
  }

  .hero-card-area {
    min-height: auto;
  }

  .offer-card {
    width: min(310px, 100%);
    margin: 0 auto;
    padding: 18px;
  }

  .gift-image-wrap {
    min-height: 280px;
  }

  .gift-image {
    height: 250px;
  }

  .information,
  .process {
    padding: 65px 0;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .info-box {
    padding: 20px;
  }

  .final-section {
    padding: 45px 0;
  }

  .final-card {
    padding: 30px 23px;
    border-radius: 20px;
  }

  .final-button {
    width: 100%;
  }

  .modal {
    padding: 0;
    align-items: flex-end;
  }

  .modal-card {
    width: 100%;
    max-height: 96vh;
    border-radius: 22px 22px 0 0;
  }

  .modal-title {
    padding: 23px 55px 16px 21px;
  }

  .modal-title h2 {
    font-size: 25px;
  }

  .tally-wrapper {
    height: 650px;
  }

}


/* =========================================================
   NATIVE LEAD FORM
========================================================= */

.native-form-wrapper {
  position: relative;
  padding: 28px 30px 30px;
  background: #ffffff;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
}

.form-field input {
  width: 100%;
  box-sizing: border-box;
  height: 49px;
  padding: 0 14px;
  border: 1px solid #d8dce3;
  border-radius: 10px;
  background: #ffffff;
  color: #172033;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease,
              box-shadow 0.2s ease;
}

.form-field input::placeholder {
  color: #9aa1ad;
}

.form-field input:focus {
  border-color: #e21d2b;
  box-shadow: 0 0 0 3px rgba(226, 29, 43, 0.10);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: #596273;
  cursor: pointer;
}

.check-row input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 1px 0 0;
  accent-color: #e21d2b;
}

.form-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 11px;
  background: #e21d2b;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: transform 0.15s ease,
              box-shadow 0.15s ease,
              opacity 0.15s ease;
}

.form-submit span {
  margin-left: 5px;
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.form-note {
  margin: -2px 0 0;
  color: #7a818e;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.hidden-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  min-height: 390px;
  padding: 45px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #e9f8ed;
  color: #188038;
  font-size: 30px;
  font-weight: 800;
}

.form-success h3 {
  margin: 0 0 10px;
  color: #172033;
  font-size: 30px;
}

.form-success p {
  margin: 0;
  color: #667085;
  font-size: 15px;
}

.form-success .success-small {
  margin-top: 9px;
  font-size: 13px;
}

.success-close {
  margin-top: 28px;
  padding: 11px 24px;
  border: 1px solid #d7dbe2;
  border-radius: 9px;
  background: #ffffff;
  color: #333b49;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}


/* =========================================================
   MOBILE FORM
========================================================= */

@media (max-width: 600px) {

  .native-form-wrapper {
    padding: 22px 20px 24px;
  }

  .lead-form {
    gap: 15px;
  }

  .form-field input {
    height: 48px;
    font-size: 16px;
  }

  .form-submit {
    min-height: 51px;
  }

  .form-success {
    min-height: 330px;
    padding: 35px 15px;
  }

  .form-success h3 {
    font-size: 27px;
  }

}

