:root {
  --bg: #0f1a1c;
  --bg-alt: #152327;
  --card: #1f2d33;
  --accent: #f4a261;
  --accent-2: #2a9d8f;
  --text: #f4f7f8;
  --muted: #c0cbd1;
  --shadow: 0 20px 50px rgba(7, 12, 14, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: radial-gradient(circle at top left, #1f2d33, #0f1a1c 50%, #0b1417 100%);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 26, 28, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 0.84rem;
  overflow: hidden;
}

.nav a {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
}

.nav a:hover {
  background: rgba(244, 162, 97, 0.2);
  color: var(--accent);
}

.nav a.active {
  background: rgba(42, 157, 143, 0.2);
  color: var(--accent-2);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.btn-outline {
  border-color: rgba(244, 162, 97, 0.45);
  color: var(--accent);
  background: transparent;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b1417;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 23, 0.97);
  display: none;
  flex-direction: column;
  padding: 24px;
  z-index: 999;
}

.mobile-menu.active { display: flex; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.close-menu {
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--text);
}

.mobile-menu nav a {
  display: block;
  padding: 12px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu nav a.active {
  color: var(--accent-2);
  font-weight: 700;
}

main { padding-top: 110px; }

.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(244, 162, 97, 0.08), rgba(42, 157, 143, 0.1));
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-title { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 16px; }
.hero-text { color: var(--muted); margin-bottom: 20px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-media img {
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.section { padding: 60px 0; }
.section.alt { background: var(--bg-alt); }
.section-title { font-size: 1.8rem; margin-bottom: 24px; }

.pill-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.pill-card {
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pill-card h4 { margin-bottom: 8px; }

.media-stack {
  display: grid;
  gap: 20px;
}

.media-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.media-panel img { border-radius: 16px; }
.media-caption { font-weight: 600; margin-top: 10px; }
.media-note { color: var(--muted); font-size: 0.95rem; margin-top: 6px; }
.media-text h3 { margin-bottom: 10px; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}

.stat-card {
  background: rgba(42, 157, 143, 0.15);
  padding: 18px;
  border-radius: 14px;
  text-align: center;
}

.stat-card strong { font-size: 1.5rem; display: block; }

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  background: var(--card);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(244, 162, 97, 0.25);
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.quote-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-panel {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.footer {
  background: #0b1417;
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-logo { width: 60px; margin-bottom: 12px; }
.footer-bottom { margin-top: 30px; text-align: center; color: var(--muted); font-size: 0.9rem; }

.bottom-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, #f4a261, #2a9d8f);
  color: #0b1417;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 14px 12px;
  z-index: 1000;
}

.banner-btn {
  background: rgba(11, 20, 23, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
}

@media (max-width: 960px) {
  .nav { display: none; }
  .mobile-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .header-actions .btn { padding: 6px 10px; font-size: 0.8rem; }
  main { padding-top: 100px; }
  .hero { padding: 60px 0 40px; }
}
