body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #1a1a1a;
}

h1, h2 {
  font-family: Georgia, serif;
  margin-top: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 60px 0;
}

/* HERO */
.hero {
  background: #0B1D38;
  color: white;
  padding: 60px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 520px;
}

.badge {
  color: #FFCD06;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 72px;
  line-height: 0.95;
  margin: 0 0 24px;
  color: #f5f2eb;
}

.hero-copy {
  font-size: 22px;
  line-height: 1.5;
  color: #d8deea;
  max-width: 760px;
  margin-bottom: 0;
}

.btns {
  margin: 28px 0 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
}

.btn-primary {
  background: #FFCD06;
  color: #0B1D38;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
}

.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stats div {
  color: white;
  font-size: 16px;
  font-weight: 700;
}

.stats span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #FFCD06;
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-img {
  flex: 1 1 420px;
}

.hero-img img {
  width: 100%;
  max-width: 560px;
  display: block;
  border-radius: 26px;
  margin-left: auto;
}

/* VIDEO */
.video-wrapper {
  margin-top: 20px;
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 24px;
  background: #000;
}

/* ABOUT */
.about {
  max-width: 1100px;
}

.about h2 {
  font-size: 50px;
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
  margin-bottom: 28px;
}

.about p {
  font-family: Arial, sans-serif;
  font-size: 19px;
  line-height: 1.8;
  font-weight: 400;
  color: #222222;
  margin: 0 0 22px;
}

.about-lead {
  font-size: 25px;
  line-height: 1.45;
  font-weight: 700;
  color: #111111;
}

.about-highlight {
  font-size: 21px;
  line-height: 1.55;
  font-weight: 700;
  color: #111111;
  margin-top: 10px;
}

/* FEATURES */
.feature-box {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 2px solid #d8d8d8;
  max-width: 900px;
  margin: 0 auto;
}

.feature-box h3 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 30px;
  color: #0B1D38;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: #222222;
}

.feature-list li::before {
  content: "✔";
  background: #0B1D38;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  display: block;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 24px;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 50px;
  }

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

  .hero-copy {
    font-size: 18px;
  }

  .stats {
    gap: 24px;
  }

  .about h2 {
    font-size: 38px;
  }

  .about p {
    font-size: 17px;
  }

  .about-lead {
    font-size: 21px;
  }

  .about-highlight {
    font-size: 18px;
  }

  .feature-box {
    padding: 28px 22px;
  }

  .feature-box h3 {
    font-size: 30px;
  }

  .feature-list li {
    font-size: 17px;
  }
}