/* RESET & BASE */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 35%, #020617 90%);
  color: #e5e7eb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #facc15;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* LAYOUT */

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 0 auto;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* TOP INFO STRIP */

.top-strip {
  background: #facc15;
  color: #111827;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.top-strip__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.top-strip a {
  color: #111827;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.96)
  );
  border-bottom: 1px solid rgba(55, 65, 81, 0.8);
}

.header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: conic-gradient(
    from 160deg,
    #facc15,
    #f97316,
    #facc15,
    #22c55e,
    #facc15
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.brand__title {
  font-weight: 700;
  font-size: 18px;
}

.brand__subtitle {
  font-size: 12px;
  color: #9ca3af;
}

/* NAVIGATION */

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nav a {
  font-size: 13px;
  padding: 6px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  color: #e5e7eb;
}

.nav a:hover {
  border-color: #facc15;
  background: rgba(250, 204, 21, 0.08);
  text-decoration: none;
}

/* HERO (HOME) */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, #facc15 0, transparent 55%),
    radial-gradient(circle at 100% 0, #38bdf8 0, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 1) 0, #020617 70%);
  opacity: 0.14;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 16px 34px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 3.1fr) minmax(0, 2.2fr);
  gap: 28px;
  align-items: center;
}

.hero__kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #facc15;
  margin-bottom: 4px;
}

.hero__title {
  font-size: clamp(28px, 3.1vw, 34px);
  margin: 0 0 10px;
}

.hero__title span {
  color: #facc15;
}

.hero__subtitle {
  font-size: 15px;
  color: #9ca3af;
  max-width: 520px;
  margin: 0 0 16px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-badge {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 12px;
  color: #e5e7eb;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__aside {
  display: grid;
  gap: 10px;
}

.hero-card {
  background: radial-gradient(circle at top, #111827, #020617);
  border-radius: 18px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 14px 14px 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.hero-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.hero-card__value {
  font-size: 22px;
  font-weight: 700;
  color: #facc15;
}

.hero-card__sub {
  font-size: 13px;
  color: #9ca3af;
}

.hero-image-wrap {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.hero-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

/* BUTTONS */

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

/* SECTIONS */

.section {
  padding: 28px 0;
}

.section--dark {
  background: radial-gradient(circle at top, #020617, #020617 55%, #020617);
}

.section--panel {
  background: #020617;
}

.section-header {
  margin-bottom: 18px;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.section-title {
  font-size: 22px;
  margin: 4px 0;
}

.section-lead {
  font-size: 14px;
  color: #9ca3af;
  max-width: 660px;
}

/* GRID */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 22px;
}

/* CARDS */

.panel {
  border-radius: 16px;
  background: linear-gradient(145deg, #020617, #020617 45%, #020617);
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 14px 14px 16px;
}

.panel--soft {
  background: radial-gradient(circle at 0 0, #111827, #020617);
}

.panel-label {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.1);
  color: #facc15;
  margin-bottom: 6px;
}

.panel h2,
.panel h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.panel p {
  font-size: 14px;
  color: #9ca3af;
  margin: 0 0 8px;
}

/* LISTS */

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  margin-bottom: 6px;
  color: #e5e7eb;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 2px solid #facc15;
}

/* BREADCRUMBS */

.breadcrumbs {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
}

.breadcrumbs a {
  color: #9ca3af;
}

/* CONTENT IMAGES */

.content-image {
  width: 100%;
  max-height: 260px;
  border-radius: 18px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  object-fit: cover;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.8);
  margin-bottom: 16px;
}

/* TABLES */

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 7px 9px;
}

.table th {
  background: rgba(24, 35, 55, 0.9);
  text-align: left;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.6fr) minmax(0, 2.4fr);
  gap: 22px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

input,
textarea {
  width: 100%;
  padding: 8px 9px;
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: #020617;
  color: #e5e7eb;
  font-size: 14px;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #facc15;
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.35);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-meta {
  font-size: 14px;
  color: #9ca3af;
}

.map-shell {
  margin-top: 10px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.8);
}

.map-shell iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* FOOTER */

.footer {
  background: #020617;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 14px 16px 18px;
  margin-top: 24px;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #9ca3af;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__links a {
  color: #e5e7eb;
}

/* UTILITIES */

.text-muted {
  color: #9ca3af;
}

.mt-xs {
  margin-top: 6px;
}

.mt-sm {
  margin-top: 10px;
}

.mt-md {
  margin-top: 16px;
}

.mt-lg {
  margin-top: 24px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero__layout,
  .grid-3,
  .grid-2,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .top-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card__value {
    font-size: 19px;
  }
}


/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 -14px 30px rgba(0, 0, 0, 0.7);
  font-size: 13px;
}

.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__text {
  color: #e5e7eb;
  max-width: 720px;
}

.cookie-banner__text a {
  color: #facc15;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.cookie-banner__btn--primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
}

.cookie-banner__btn--primary:hover {
  filter: brightness(1.05);
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.cookie-banner__btn--ghost:hover {
  background: rgba(15, 23, 42, 0.95);
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    align-items: flex-start;
  }
}
