:root {
  --bg: #07111c;
  --bg-soft: #0d1b2a;
  --panel: rgba(10, 18, 30, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f5f7fb;
  --muted: #9dadc3;
  --brand: #f2b55e;
  --brand-deep: #d89334;
  --mint: #7de0c3;
  --danger: #ff8d66;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --wrap: min(1260px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background-color: #07111c;
  background-image:
    radial-gradient(circle at 8% 10%, rgba(242, 181, 94, 0.18), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(125, 224, 195, 0.14), transparent 22%),
    radial-gradient(circle at 76% 84%, rgba(255, 141, 102, 0.12), transparent 20%),
    linear-gradient(155deg, #06101a 0%, #0a1725 48%, #07111c 100%);
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--text);
  font-family: "Urbanist", sans-serif;
  background-color: transparent;
  background:
    radial-gradient(circle at 8% 10%, rgba(242, 181, 94, 0.18), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(125, 224, 195, 0.14), transparent 22%),
    radial-gradient(circle at 76% 84%, rgba(255, 141, 102, 0.12), transparent 20%),
    linear-gradient(155deg, #06101a 0%, #0a1725 48%, #07111c 100%);
  overflow-x: hidden;
  padding-top: 100px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 0.7px, transparent 0.8px);
  background-size: 100% 100%, 18px 18px;
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

.shell {
  width: var(--wrap);
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--panel);
  box-shadow: var(--shadow);
  min-height: 80px;
  padding: 0 6vw;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--brand);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  user-select: none;
  text-shadow: 0 2px 18px rgba(242, 181, 94, 0.4);
}

.brand-icon {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  object-fit: cover;
  box-shadow: 0 0 32px rgba(242, 181, 94, 0.26);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 250;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger:hover span {
  background: var(--brand);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--brand);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: var(--brand);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--panel);
  z-index: 150;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px 40px;
  overflow-y: auto;
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-overlay.open {
  right: 0;
}

.mobile-main-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.nav-center {
  display: flex;
  gap: 2.5vw;
  align-items: center;
  flex-wrap: nowrap;
}

.more-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
  padding: 10px 0;
  white-space: nowrap;
}

.nav-center .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #ff9800 40%, #ffbc5e 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand);
}

.nav-center .nav-link:hover::after,
.nav-center .nav-link.active::after {
  width: 100%;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.more-btn svg {
  transition: transform 0.25s ease;
}

.more-btn:hover,
.more-btn.active,
.more-dropdown.open .more-btn {
  color: var(--brand);
  border-color: rgba(242, 181, 94, 0.34);
  background: rgba(242, 181, 94, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.more-dropdown.open .more-btn svg {
  transform: rotate(180deg);
}

.dropdown-content.more-dropdown-content {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 220px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(242, 181, 94, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(25, 30, 40, 0.98), rgba(15, 19, 27, 0.98));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 220;
}

.more-dropdown.open .dropdown-content.more-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.more-dropdown .dropdown-content a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.3;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.more-dropdown .dropdown-content a::after {
  display: none;
}

.more-dropdown .dropdown-content a:hover,
.more-dropdown .dropdown-content a.active {
  background: rgba(242, 181, 94, 0.1);
  color: #fff3dc;
  transform: translateX(2px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.header-cta:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.mobile-main-links .nav-link {
  font-size: 1.5rem;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-align: left;
}

.mobile-main-links .nav-link:hover,
.mobile-main-links .nav-link.active {
  color: var(--brand);
  background: rgba(242, 181, 94, 0.08);
  border-color: rgba(242, 181, 94, 0.24);
  transform: translateX(-5px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  color: #1c2430;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 18px 34px rgba(216, 147, 52, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

main {
  padding-bottom: 54px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 26px;
  margin: 22px 0 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(242, 181, 94, 0.24), transparent 32%),
    radial-gradient(circle at bottom right, rgba(125, 224, 195, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(18, 22, 29, 0.98), rgba(26, 31, 40, 0.95));
  box-shadow: var(--shadow);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.05), transparent 32%),
    linear-gradient(315deg, rgba(242, 181, 94, 0.08), transparent 45%);
}

.hero > *,
.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-spotlight,
.hero-stats-shell {
  min-width: 0;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff2da;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.hero-lead,
.page-lead,
.section-lead,
.card p,
.rich-text p,
.rich-text li {
  color: var(--muted);
  line-height: 1.74;
}

.hero-actions,
.pill-row,
.section-grid,
.cards-3,
.cards-2,
.stats-grid,
.faq-grid,
.legal-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.92rem;
}

.section {
  padding: 28px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-title {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

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

.cards-2,
.contact-grid,
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card,
.stat-card,
.faq-card,
.legal-card,
.contact-card,
.quote-card,
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 24px;
}

.card h2,
.card h3,
.stat-card h3,
.faq-card h3,
.legal-card h3,
.contact-card h3,
.quote-card h2,
.cta-band h3 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #092033;
  background: linear-gradient(135deg, var(--mint), #9cebd3);
  font-weight: 800;
  white-space: nowrap;
}

.list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 18px;
  color: #dce4ef;
  line-height: 1.6;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateY(-50%);
}

.card-top,
.footer-top,
.contact-line {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.28;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.72;
}

.rich-text {
  max-width: 980px;
}

.rich-text ul,
.rich-text ol {
  color: var(--muted);
  line-height: 1.72;
  padding-left: 20px;
}

.notice {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffe8bf;
}

.map-frame {
  min-height: 420px;
  width: 100%;
  border: 0;
  border-radius: 24px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer {
  padding: 6px 0 32px;
}

.footer-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(7, 14, 24, 0.82);
  padding: 22px;
  color: var(--muted);
}

.footer-top p,
.copyright {
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}

.legal-links a {
  color: #e6edf8;
  text-decoration: none;
}

.not-found {
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
}

@media (max-width: 1080px) {
  .hero,
  .page-hero,
  .cards-3,
  .cards-2,
  .stats-grid,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .cta-band,
  .footer-top {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .nav-center,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }

  .mobile-menu-overlay {
    display: none;
  }
}

@media (max-width: 860px) {
  .navbar {
    padding: 0 18px;
  }

  .brand {
    font-size: 1.7rem;
    gap: 12px;
  }

  .brand-icon {
    width: 52px;
    height: 52px;
    padding: 4px;
  }
}

@media (max-width: 760px) {
  .hero,
  .page-hero,
  .card,
  .stat-card,
  .faq-card,
  .legal-card,
  .contact-card,
  .quote-card,
  .cta-band,
  .footer-card {
    padding: 20px;
  }

  h1 {
    font-size: clamp(2.1rem, 12vw, 3.3rem);
  }
}
