:root {
  --navy: #062a63;
  --navy-dark: #031b47;
  --navy-deep: #041b43;
  --navy-soft: #0b356f;
  --orange: #f76b08;
  --orange-strong: #ff6d00;
  --white: #ffffff;
  --bg: #f5f5f5;
  --text: #16315a;
  --muted: #26374f;
  --border: rgba(6, 42, 99, 0.18);
  --shadow: 0 10px 28px rgba(9, 26, 56, 0.12);
  --radius: 18px;
  --radius-lg: 22px;
  --gutter: 50px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  overflow-x: hidden;
}

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

.page-wrapper {
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0;
  padding: 0 var(--gutter);
}

.hero {
  position: relative;
  background-image: url('header-sponsor.jpg');
  background-image: linear-gradient(90deg, rgba(2, 28, 69, 0.94) 0%, rgba(3, 35, 88, 0.88) 32%, rgba(6, 38, 89, 0.52) 70%, rgba(9, 35, 82, 0.16) 100%), url('header-sponsor.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.08));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: center;
  padding: 50px var(--gutter);
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: .2s ease;
}

.btn-home:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(4.8rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.hero-title span {
  display: block;
}

.title-light {
  color: #f3f5f8;
}

.title-accent {
  color: var(--orange);
}

.hero-line {
  width: 320px;
  max-width: 64%;
  height: 5px;
  margin: 18px 0 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(247, 107, 8, 0.12));
}

.hero-desc {
  margin: 0;
  max-width: 610px;
  color: rgba(255,255,255,0.95);
  font-size: clamp(1.18rem, 2vw, 1.9rem);
  line-height: 1.45;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px solid rgba(247, 107, 8, 0.86);
}

.info-item:first-child {
  padding-top: 0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  width: 52px;
  min-width: 52px;
  color: var(--orange);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-text {
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.1rem, 3vw, 3.55rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.btn-sponsor-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 26px;
  padding: 18px 24px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange-strong), var(--orange));
  box-shadow: 0 10px 26px rgba(247, 107, 8, 0.4);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: .2s ease;
}

.btn-sponsor-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(247, 107, 8, 0.5);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 14, 34, 0.72);
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 38px 34px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(6, 42, 99, 0.08);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}

.modal-close:hover {
  background: rgba(6, 42, 99, 0.16);
}

.modal-box h2 {
  margin: 0 0 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.02em;
  color: var(--navy);
}

.modal-sub {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.4;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.modal-form input,
.modal-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: #f9fbff;
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}

.modal-form textarea {
  resize: vertical;
  min-height: 80px;
}

.modal-turnstile {
  display: flex;
  justify-content: center;
}

.modal-submit {
  margin-top: 8px;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-strong), var(--orange));
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: .2s ease;
}

.modal-submit:hover {
  transform: translateY(-1px);
}

.modal-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.modal-status {
  margin: 4px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.modal-status-success {
  color: #1a7f4b;
}

.modal-status-error {
  color: #d1352b;
}

.section-space {
  padding: 42px 0 32px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 34px;
}

.section-line {
  width: min(160px, 18vw);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.section-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 4vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-align: center;
}

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

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.package-head {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-soft) 100%);
  padding: 22px 24px 20px;
  text-align: center;
}

.package-head h3 {
  margin: 0;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.package-price {
  background: linear-gradient(135deg, var(--orange-strong), var(--orange));
  color: var(--white);
  padding: 16px 24px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 4.8vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.package-body {
  padding: 30px 28px 32px;
}

.package-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.package-item i {
  color: var(--orange);
  font-size: 1.65rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.package-item p {
  margin: 0;
  font-size: clamp(1rem, 1.65vw, 1.3rem);
  line-height: 1.6;
  color: #1c3051;
}

.package-divider {
  height: 1px;
  background: rgba(12, 37, 79, 0.22);
  margin: 24px 0;
}

.benefits-section {
  padding: 18px 0 28px;
}

.benefits-banner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  background: linear-gradient(90deg, var(--navy-dark) 0%, #062d63 33%, #001f4b 100%);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.benefits-col {
  padding: 30px 28px;
  color: var(--white);
  position: relative;
}

.benefits-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: rgba(247, 107, 8, 0.9);
}

.benefits-intro {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.benefits-icon {
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  padding-top: 8px;
}

.benefits-copy h2 {
  margin: 0 0 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.3rem, 3.15vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}

.benefits-copy h2 span {
  color: var(--orange);
}

.benefits-copy p,
.feature-box p {
  margin: 0;
  color: rgba(255,255,255,0.96);
  font-size: clamp(0.96rem, 1.2vw, 1.22rem);
  line-height: 1.65;
}

.feature-box {
  text-align: center;
}

.feature-box i {
  display: inline-block;
  color: var(--orange);
  font-size: 3rem;
  margin-bottom: 16px;
}

.feature-box h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.85rem, 2.4vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.cta-section {
  padding: 0 0 26px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--orange-strong), #ff7c0b);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-icon {
  width: 110px;
  height: 110px;
  min-width: 110px;
  border: 5px solid rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.8rem;
}

.cta-content h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.cta-content p {
  margin: 0;
  color: rgba(255,255,255,0.97);
  font-size: clamp(1rem, 1.6vw, 1.55rem);
  line-height: 1.45;
}

.contact-section {
  padding: 2px 0 44px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-icon {
  width: 88px;
  height: 88px;
  min-width: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-soft));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  box-shadow: var(--shadow);
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.contact-label {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.contact-email {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--orange);
  text-decoration: none;
  word-break: break-word;
}

.contact-email:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  :root { --gutter: 34px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: unset;
  }

  .hero-right {
    max-width: 620px;
  }

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

  .benefits-col:not(:last-child)::after {
    right: 28px;
    left: 28px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 2px;
  }

  .benefits-intro {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  :root { --gutter: 24px; }

  .hero {
    background-position: center center;
  }

  .hero-grid {
    padding: 34px var(--gutter) 36px;
    gap: 28px;
  }

  .hero-right {
    max-width: 100%;
  }

  .hero-line {
    width: 220px;
    margin: 14px 0 18px;
  }

  .info-item {
    gap: 12px;
    padding: 14px 0;
  }

  .info-icon {
    width: 40px;
    min-width: 40px;
    font-size: 1.45rem;
  }

  .btn-sponsor-cta {
    margin-top: 20px;
    padding: 16px 20px;
  }

  .modal-box {
    padding: 30px 22px;
  }

  .section-space {
    padding-top: 32px;
  }

  .section-title-wrap {
    gap: 10px;
    margin-bottom: 22px;
  }

  .package-grid {
    gap: 20px;
  }

  .package-body {
    padding: 22px 18px 24px;
  }

  .benefits-col {
    padding: 24px 20px;
  }

  .benefits-intro {
    flex-direction: column;
    text-align: left;
  }

  .feature-box {
    text-align: center;
  }

  .cta-banner,
  .contact-row {
    flex-direction: column;
    text-align: center;
  }

  .cta-icon {
    width: 82px;
    height: 82px;
    min-width: 82px;
    font-size: 2rem;
    border-width: 4px;
  }

  .contact-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    font-size: 1.8rem;
  }

  .contact-content {
    align-items: center;
  }

  .contact-label,
  .contact-email {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root { --gutter: 16px; }
}
