nav {
  background: var(--deep);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo b {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: .82rem;
  font-weight: 700;
  color: #9cc8e8;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition: .15s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 20px !important;
  padding: 7px 18px !important;
}

.nav-cta:hover {
  background: var(--red) !important;
  color: #fff !important;
}

.hero {
  background: var(--sky);
  border-bottom: 4px solid var(--water);
  position: relative;
  overflow: hidden;
  padding: 48px 0 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 180px;
  width: 220px;
  height: 220px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .22;
}

.hero-in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.hero-text {
  padding-bottom: 48px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: var(--deep);
  color: var(--gold);
  font-family: 'Bangers';
  letter-spacing: 1.5px;
  font-size: .85rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 2px solid var(--gold);
}

h1 {
  font-size: 3.4rem;
  color: #fff;
  text-shadow: 3px 3px 0 var(--deep);
  margin-bottom: 14px;
}

h1 .hl {
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: #d8f0ff;
  font-weight: 700;
  margin-bottom: 28px;
  text-shadow: 1px 1px 0 var(--deep);
}

.hero-char {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
}

.wave {
  background: var(--sky);
  display: block;
  line-height: 0;
}

.wave svg {
  display: block;
  width: 100%;
  height: 50px;
}

.stats-bar {
  background: var(--deep);
  border-bottom: 3px solid var(--water);
}

.stats-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat {
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}

.stat:last-child {
  border-right: none;
}

.stat-n {
  font-family: 'Bangers';
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: .5px;
  line-height: 1;
}

.stat-l {
  font-size: .68rem;
  color: #7ab8d8;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 3px;
}

.stat-tag {
  font-size: .62rem;
  color: var(--orange);
  margin-top: 2px;
  font-weight: 700;
}

.trust-bar {
  background: var(--deep);
  padding: 16px 0;
  border-top: 2px solid var(--water);
}

.trust-in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.ti {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: #7ab8d8;
  font-weight: 600;
}

.ti-dot {
  color: var(--gold);
}

footer {
  background: var(--deep);
  padding: 44px 0 24px;
  border-top: 3px solid var(--water);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.foot-logo {
  font-family: 'Bangers';
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.foot-logo b {
  color: var(--gold);
}

.foot-brand p {
  font-size: .8rem;
  color: #7ab8d8;
  line-height: 1.6;
}

.foot-col h4 {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
}

.foot-col a {
  display: block;
  font-size: .82rem;
  color: #7ab8d8;
  text-decoration: none;
  margin-bottom: 7px;
}

.foot-col a:hover {
  color: #fff;
}

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.foot-legal {
  font-size: .7rem;
  color: #5a8898;
  line-height: 1.6;
  max-width: 700px;
}

.foot-legal a {
  color: #7ab8d8;
}

.badge18 {
  background: #2a1800;
  border: 2px solid var(--gold-dk);
  color: var(--gold);
  font-family: 'Bangers';
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-hero {
  background: var(--sky);
  border-bottom: 4px solid var(--water);
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: 100px;
  width: 160px;
  height: 160px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .18;
}

.page-hero-in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 2.6rem;
  color: #fff;
  text-shadow: 2px 2px 0 var(--deep);
  margin-bottom: 10px;
}

.page-hero .hero-sub {
  margin-bottom: 0;
}

.breadcrumb {
  font-size: .8rem;
  color: #9cc8e8;
  margin-bottom: 14px;
}

.breadcrumb a {
  color: #9cc8e8;
}

.breadcrumb a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  .hero-in {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }

  .hero-char { justify-content: center; padding: 0 20px 32px; }

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

  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-bottom { flex-direction: column; }

  .nav-links a:not(.nav-cta) { display: none; }

  .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(5) { border-right: none; }
}
