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

body {
  background: #f4f6f9;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

/* HEADER */

header {
  background: #021226;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #d6b46a;
}

/* HERO */

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 18, 38, 0.97) 0%, rgba(5, 24, 48, 0.86) 45%, rgba(9, 32, 61, 0.62) 100%),
    url("idm1.JPG");
  background-size: cover;
  background-position: center center;
  color: #ffffff;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 180, 106, 0.10), transparent 24%),
    radial-gradient(circle at 75% 25%, rgba(255,255,255,0.05), transparent 18%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 55px 0 45px;
  max-width: 760px;
}

.kicker,
.eyebrow {
  color: #d6b46a;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #d6b46a;
}

.hero-subtitle {
  max-width: 680px;
  color: #e5e7eb;
  font-size: 19px;
  margin-bottom: 22px;
}

/* BUTTONS */

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn,
.btn-primary,
.btn-glass,
.btn-dark,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: 0.3s ease;
}

.btn-primary {
  background: #d6b46a;
  color: #07111f;
  border: 1px solid #d6b46a;
}

.btn-primary:hover {
  background: #e3c57f;
  border-color: #e3c57f;
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-dark {
  background: #07111f;
  color: #ffffff;
  border: 1px solid #07111f;
}

.btn-dark:hover {
  background: #d6b46a;
  border-color: #d6b46a;
  color: #07111f;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: #07111f;
  border: 1px solid #07111f;
}

.btn-outline-dark:hover {
  background: #07111f;
  color: #ffffff;
  transform: translateY(-2px);
}

/* HERO STATS */

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

.stat-box {
  min-width: 150px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(214, 180, 106, 0.18);
  border-radius: 15px;
  padding: 13px 16px;
  backdrop-filter: blur(4px);
}

.stat-box strong {
  display: block;
  color: #d6b46a;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 7px;
}

.stat-box span {
  color: #dbe3ef;
  font-size: 13px;
  font-weight: 700;
}

/* IDENTITY */

.identity-section {
  margin-top: 0;
  padding: 55px 0 20px;
  position: relative;
  z-index: 5;
}

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

.identity-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: 0 15px 40px rgba(7, 17, 31, 0.1);
  border-top: 5px solid #d6b46a;
}

.identity-card.featured {
  background: linear-gradient(135deg, #07111f, #10243d);
  color: #ffffff;
}

.identity-icon {
  font-size: 34px;
  display: block;
  margin-bottom: 12px;
}

.identity-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #07111f;
}

.identity-card.featured h2 {
  color: #ffffff;
}

.identity-card p {
  color: #4b5563;
}

.identity-card.featured p {
  color: #e5e7eb;
}

/* SECTIONS */

.section {
  padding: 90px 0;
}

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

.section-heading h2 {
  font-size: 38px;
  color: #07111f;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.15;
}

.section-heading.light h2 {
  color: #ffffff;
}

.section-subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: #d1d5db;
  font-size: 17px;
}

/* FEATURED GRID */

.featured-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, 260px);
  gap: 22px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.14);
}

.featured-card.large {
  grid-row: span 2;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.featured-card:hover img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  color: #ffffff;
  background: linear-gradient(transparent, rgba(7, 17, 31, 0.92));
}

.featured-overlay h3 {
  font-size: 26px;
  margin: 12px 0 8px;
}

.featured-card.large .featured-overlay h3 {
  font-size: 36px;
}

.featured-overlay p {
  color: #e5e7eb;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.tag.international {
  background: rgba(59, 130, 246, 0.9);
}

.tag.gold {
  background: rgba(214, 180, 106, 0.95);
  color: #07111f;
}

.center-action {
  text-align: center;
  margin-top: 38px;
}

/* QUOTE */

.quote-section {
  background: #07111f;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.quote-section blockquote {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.12;
  font-weight: 900;
  color: #ffffff;
}

.quote-section p {
  color: #d6b46a;
  font-weight: 800;
}

/* SUPPORT */

.support-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 180, 106, 0.1), transparent 28%),
    linear-gradient(135deg, #07111f, #10243d);
  padding: 90px 0;
  color: #ffffff;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 35px;
}

.brand-logo {
  background: #ffffff;
  min-height: 120px;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.brand-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.22);
}

.brand-logo img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

/* FINAL CTA */

.final-cta {
  padding: 85px 0;
  background: #f4f6f9;
  text-align: center;
}

.final-cta h2 {
  font-size: 40px;
  color: #07111f;
  margin-bottom: 18px;
}

.final-cta p {
  max-width: 780px;
  margin: 0 auto 30px;
  color: #4b5563;
  font-size: 18px;
}

.final-cta .cta-actions {
  justify-content: center;
}

/* FOOTER */

footer {
  background: #050b13;
  color: #cbd5e1;
  text-align: center;
  padding: 22px 0;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .hero {
    min-height: auto;
    background-position: center center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .featured-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .featured-card,
  .featured-card.large {
    height: 360px;
    grid-row: auto;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  nav ul {
    gap: 14px;
  }

  nav a {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(2, 18, 38, 0.97) 0%, rgba(5, 24, 48, 0.9) 55%, rgba(9, 32, 61, 0.84) 100%),
      url("idm1.JPG");
    background-size: cover;
    background-position: center center;
  }

  .hero-content {
    padding: 50px 0 55px;
  }

  .kicker,
  .eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-box {
    min-width: 0;
  }

  .identity-section {
    margin-top: 0;
    padding: 45px 0 20px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .featured-card,
  .featured-card.large {
    height: 300px;
  }

  .featured-card.large .featured-overlay h3,
  .featured-overlay h3 {
    font-size: 24px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-logo {
    min-height: 100px;
  }

  .btn,
  .btn-primary,
  .btn-glass,
  .btn-dark,
  .btn-outline-dark {
    width: 100%;
  }
}

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