:root {
  --primary: #0f766e;
  --primary-dark: #115e59;
  --accent: #f59e0b;
  --ink: #102a43;
  --muted: #64748b;
  --light: #f8fafc;
  --card: #ffffff;
  --line: #dbeafe;
  --shadow: 0 24px 70px rgba(15, 118, 110, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--light);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 800;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1478c8;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #334155;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(1120px, calc(100% - 40px));
  margin: 42px auto 0;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
  padding: 62px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(9, 83, 76, 0.94), rgba(15, 118, 110, 0.78)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") center/cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: rgba(245, 158, 11, 0.26);
  border-radius: 50%;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.3);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-card {
  justify-self: end;
  width: min(360px, 100%);
}

.ticket-card {
  padding: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.24);
}

.ticket-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  color: var(--primary-dark);
  background: #ccfbf1;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.ticket-card strong {
  display: block;
  font-size: 32px;
  line-height: 1.2;
}

.ticket-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.stats {
  width: min(1000px, calc(100% - 40px));
  margin: -44px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(15, 118, 110, 0.16);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.1);
}

.stats div {
  padding: 28px 22px;
  text-align: center;
  background: #fff;
}

.stats strong {
  display: block;
  color: var(--primary-dark);
  font-size: 34px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 110px auto 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.section h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.section-copy {
  color: #475569;
  font-size: 17px;
}

.section-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 36px;
}

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

.section-heading p:last-child {
  color: var(--muted);
}

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

.service-card {
  padding: 30px;
  background: var(--card);
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

.service-card span {
  color: var(--accent);
  font-weight: 900;
}

.service-card h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.partners-section {
  padding: 52px;
  background: #ecfeff;
  border-radius: 32px;
}

.partners-card {
  overflow: hidden;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.partners-section h2 {
  background: linear-gradient(90deg, #4f6699, #c36a56);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.partners-card img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card,
.message-form {
  padding: 38px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.contact-card > p:not(.section-kicker) {
  color: var(--muted);
}

.contact-list {
  margin-top: 26px;
}

.contact-list p {
  margin: 12px 0;
}

.contact-list a {
  color: var(--primary-dark);
  font-weight: 700;
}

.message-form {
  display: grid;
  gap: 16px;
}

.message-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 700;
}

.message-form input,
.message-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  color: var(--ink);
  background: #f8fafc;
  font: inherit;
  outline: none;
}

.message-form input:focus,
.message-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.13);
}

.message-form .button {
  width: fit-content;
}

.site-footer {
  margin-top: 90px;
  padding: 28px 20px;
  color: #e2e8f0;
  background: #0f172a;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .two-column,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 42px 28px;
    min-height: auto;
  }

  .hero-card {
    justify-self: stretch;
  }

  .stats,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 22px;
  }

  .partners-section {
    padding: 28px;
  }

  .partners-card {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .navbar,
  .hero,
  .section,
  .stats {
    width: min(100% - 28px, 1120px);
  }

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .contact-card,
  .message-form {
    padding: 26px;
  }
}
