:root {
  --bg: #07111b;
  --panel: #101a24;
  --panel-2: #162330;
  --text: #edf3f2;
  --muted: #c8d2d4;
  --line: #22313d;
  --orange: #f5a23c;
  --teal: #4bb78a;
  --red: #c96b63;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(245, 162, 60, 0.06), transparent 18%),
    linear-gradient(135deg, #07111b 0%, #09131d 45%, #0b151e 100%);
  line-height: 1.6;
}
img { width: 100%; display: block; border-radius: 18px; }
.product-card img {
  height: 180px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 28px)); margin: 0 auto; }
.section { padding: 78px 0; }
.section-alt { background: rgba(255,255,255,0.03); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.topbar { position: sticky; top: 0; z-index: 20; background: rgba(7, 17, 27, 0.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,0.06); box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.brand { font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.nav-links, .cta-row, .social-links { display: flex; gap: 12px; align-items: center; }
.nav-links a, .footer a { color: var(--muted); }
.nav-links a:hover, .footer a:hover { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 18px; font-weight: 600; border: 1px solid transparent; transition: transform .15s ease, background .2s ease;
  animation: fadeInUp .45s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #f7b55e 0%, #ef9a37 100%); color: #18120c; box-shadow: 0 8px 18px rgba(245, 162, 60, 0.18); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,0.04); color: #fff; }
.hero { padding-top: 50px; }
.hero h1, .hero .lede, .hero .mini-points, .hero-card {
  animation: fadeInUp .55s ease both;
}
.hero h1 { animation-delay: 0.05s; }
.hero .lede { animation-delay: 0.12s; }
.hero .mini-points { animation-delay: 0.18s; }
.hero-card { animation-delay: 0.22s; }
.hero-grid, .two-col, .footer-grid { display: grid; gap: 26px; }
.hero-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.8rem; color: #ffbf7a; font-weight: 700; }
h1, h2, h3, h4 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); max-width: 13ch; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.lede, .section-heading p, .panel p, .contact-details, .product-card p { color: var(--muted); }
.mini-points { display: grid; gap: 8px; padding-left: 18px; color: var(--muted); }
.hero-card, .panel, .product-card, .feature-box {
  background: linear-gradient(180deg, rgba(16, 26, 36, 0.98), rgba(10, 18, 26, 0.98));
  border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 18px; box-shadow: 0 14px 24px rgba(0,0,0,0.24);
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.stat-grid article { background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 18px; padding: 12px; }
.stat-grid strong { display: block; font-size: 1.35rem; color: #fff; }
.stat-grid span { color: var(--muted); font-size: 0.95rem; }
.grid.two-col { grid-template-columns: 1fr 1fr; align-items: start; }
.section-heading { margin-bottom: 18px; }
.card-grid, .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.section-heading { max-width: 780px; }
.product-card:hover, .feature-box:hover, .panel:hover { transform: translateY(-2px); border-color: rgba(245,162,60,0.25); }
.product-card {
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  animation: cardFadeUp 0.45s ease both;
}

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-card ul { padding-left: 16px; color: var(--muted); }
.product-card h3 { margin-bottom: 6px; }
.map-panel { min-height: 100%; }
.market-list, .check-list { padding-left: 18px; color: var(--muted); }
.feature-box { min-height: 90px; display: flex; align-items: center; font-weight: 600; }
.contact-grid { align-items: start; }
.contact-form { display: grid; gap: 10px; }
.contact-form label { display: grid; gap: 6px; color: var(--muted); font-size: 0.95rem; }
.contact-form input, .contact-form textarea { background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px; color: #fff; font: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(255,159,67,0.35); border-color: var(--orange); }
.form-status { min-height: 1.2em; color: #9ef0c7; font-size: 0.95rem; }
.footer { padding: 28px 0 40px; border-top: 1px solid var(--line); }
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr .6fr; gap: 18px; }
.footer h3, .footer h4 { margin-bottom: 10px; }
.footer p, .footer a { color: var(--muted); font-size: 0.96rem; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); background: rgba(255,255,255,0.04); }

@media (max-width: 980px) {
  .hero-grid, .two-col, .card-grid, .feature-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; justify-content: space-between; flex-wrap: wrap; }
  .hero { padding-top: 28px; }
}

@media (max-width: 680px) {
  .nav-cta { width: 100%; }
  .section { padding: 58px 0; }
  .stat-grid { grid-template-columns: 1fr; }
  .cta-row { flex-wrap: wrap; }
  .btn { width: 100%; }
  h1 { max-width: 100%; }
}
