:root {
  --charcoal: #0B0F14;
  --steel: #1F2937;
  --ember: #FF5A1F;
  --gold: #FBBF24;
  --cyan: #22D3EE;
  --off-white: #F8FAFC;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--charcoal);
  color: var(--off-white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--steel);
}

.hero {
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero-sub {
  padding: 80px 0 60px;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  color: rgba(248, 250, 252, 0.85);
}

.section-alt p {
  color: rgba(248, 250, 252, 0.9);
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: rgba(11, 15, 20, 0.6);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-alt .card {
  background: rgba(11, 15, 20, 0.4);
}

.list {
  list-style: none;
}

.list li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

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

.btn {
  background: var(--ember);
  color: var(--off-white);
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  display: inline-block;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--off-white);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 20, 0.95);
  backdrop-filter: blur(6px);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}

.logo {
  max-height: 50px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-weight: 600;
  color: var(--off-white);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 32px;
  height: 24px;
  cursor: pointer;
  position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  background: var(--off-white);
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
}

.nav-toggle-label span {
  top: 50%;
}

.nav-toggle-label span::before {
  top: -8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  display: none;
  flex-direction: column;
  padding: 24px;
  z-index: 20;
}

.mobile-close {
  align-self: flex-end;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  font-size: 1.2rem;
}

.nav-toggle:checked ~ .mobile-menu {
  display: flex;
}

.site-footer {
  background: #0a0d12;
  padding: 60px 0 20px;
  color: var(--off-white);
}

.footer-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.footer-logo {
  max-height: 100px;
  margin-bottom: 16px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu h4 {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 30px;
}

.contact-list {
  list-style: none;
  margin-top: 10px;
}

.contact-list li {
  margin-bottom: 8px;
  color: rgba(248, 250, 252, 0.8);
}

.contact-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(11, 15, 20, 0.6);
  color: var(--off-white);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  padding: 18px;
  border-left: 3px solid var(--ember);
  background: rgba(11, 15, 20, 0.5);
}

.faq details {
  margin-bottom: 12px;
  background: rgba(11, 15, 20, 0.6);
  padding: 14px;
  border-radius: 6px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--steel);
  color: var(--off-white);
  padding: 20px;
  display: none;
  z-index: 100;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.text-link {
  color: var(--cyan);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle-label {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }

  .section {
    padding: 60px 0;
  }
}