:root {
  --bg: #f6f7fb;
  --bg-alt: #eef1ff;
  --card: #ffffff;
  --accent: #ff6b35;
  --accent-2: #2a6df4;
  --text: #1d2230;
  --muted: #5b667a;
  --shadow: 0 18px 40px rgba(30, 40, 80, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: var(--bg);
  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(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(30, 40, 80, 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(30, 40, 80, 0.05);
  transition: all 0.25s ease;
}

.nav a:hover {
  background: rgba(42, 109, 244, 0.12);
  color: var(--accent-2);
}

.nav a.active {
  background: rgba(255, 107, 53, 0.16);
  color: var(--accent);
}

.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(42, 109, 244, 0.45);
  color: var(--accent-2);
  background: transparent;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #ffffff;
}

.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(246, 247, 251, 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(30, 40, 80, 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-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(42, 109, 244, 0.08), rgba(255, 107, 53, 0.08));
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  z-index: -1;
}

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

.hero-panel {
  background: var(--card);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 40, 80, 0.08);
}

.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;
}

.chip {
  display: inline-block;
  background: rgba(255, 107, 53, 0.12);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.section { padding: 60px 0; }
.section.alt { background: var(--bg-alt); }
.section-title { font-size: 1.8rem; margin-bottom: 24px; }

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

.strip-card {
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.strip-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent-2);
  background: rgba(42, 109, 244, 0.1);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

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

.image-card {
  background: var(--card);
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(30, 40, 80, 0.08);
  box-shadow: var(--shadow);
}

.image-card img { border-radius: 16px; }
.image-caption { font-weight: 600; margin-top: 10px; }
.image-note { color: var(--muted); font-size: 0.95rem; margin-top: 6px; }
.image-body h3 { margin: 12px 0 8px; }

.metric-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.metric {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.metric strong { display: block; font-size: 1.5rem; }

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

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.2);
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-stack {
  display: grid;
  gap: 12px;
}

.faq-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.pill {
  background: rgba(42, 109, 244, 0.08);
  padding: 12px 14px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.info-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.muted { color: var(--muted); }

.footer {
  background: #12162a;
  color: #f5f6ff;
  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: #b8bddb; font-size: 0.9rem; }

.bottom-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, #ff6b35, #2a6df4);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 14px 12px;
  z-index: 1000;
}

.banner-btn {
  background: rgba(255, 255, 255, 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; }
}
