:root {
  --bg-dark: #081a33;
  --bg-darker: #041120;
  --brand: #d9ab5f;
  --brand-2: #f0c277;
  --text: #122033;
  --muted: #687588;
  --card: #ffffff;
  --line: rgba(255,255,255,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #f5f7fb;
}

.site-header {
  background: rgba(4, 17, 32, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar { padding: 1rem 0; }
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus { color: #fff; }

.brand-mark {
  display: inline-flex;
  gap: 3px;
  align-items: end;
}
.brand-mark span {
  display: block;
  width: 8px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--brand-2), #8b6732);
  box-shadow: 0 0 16px rgba(217, 171, 95, .35);
}
.brand-mark span:nth-child(1) { height: 20px; }
.brand-mark span:nth-child(2) { height: 28px; }
.brand-mark span:nth-child(3) { height: 36px; }
.brand-title { color: #fff; font-size: .92rem; letter-spacing: .08em; }
.brand-subtitle { color: rgba(255,255,255,.62); }

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(217,171,95,.18), transparent 20%),
    radial-gradient(circle at 15% 10%, rgba(62,119,206,.20), transparent 25%),
    linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: white;
}
.hero-section {
  padding: 5rem 0 4rem;
}
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--brand-2);
}
.hero-section .lead { color: rgba(255,255,255,.72) !important; }

.btn-brand {
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #1c2230;
  border: 0;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(217,171,95,.28);
}
.btn-brand:hover { color: #111; transform: translateY(-1px); }

.hero-visual img,
.stats-strip img,
.object-image {
  width: 100%;
  object-fit: cover;
}
.hero-visual img { min-height: 360px; }
.card-glow {
  position: relative;
}
.card-glow::after {
  content: "";
  position: absolute;
  inset: auto 10% -20px 10%;
  height: 40px;
  background: rgba(217,171,95,.28);
  filter: blur(30px);
  z-index: 0;
}
.card-glow img { position: relative; z-index: 1; border: 1px solid rgba(255,255,255,.14); }

.metric-card,
.feature-card,
.step-card,
.object-card,
.cta-box {
  border-radius: 1.25rem;
}
.metric-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1rem;
  height: 100%;
}
.metric-card strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
}
.metric-card span {
  display: block;
  margin-top: .35rem;
  color: rgba(255,255,255,.66);
  font-size: .92rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
}

.feature-card {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #e7ebf3;
  box-shadow: 0 12px 28px rgba(10, 26, 54, .05);
}
.feature-card i {
  font-size: 1.7rem;
  color: #0f3767;
  margin-bottom: 1rem;
}
.feature-card h3,
.step-card h3,
.object-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.feature-card p,
.step-card p,
.object-card p,
.plain-stat span { color: var(--muted); margin: 0; }

.stats-strip {
  background: #fff;
  padding: 2rem 0 3rem;
}
.plain-stat {
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: #f6f8fc;
  border: 1px solid #e7ebf3;
  height: 100%;
}
.plain-stat strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: .35rem;
  color: #0c274b;
}

.step-card {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #e5ebf5;
  box-shadow: 0 10px 24px rgba(10, 26, 54, .04);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #1e1f23;
  font-weight: 800;
  margin-bottom: 1rem;
}

.objects-section {
  background: linear-gradient(180deg, #081a33, #05111f);
}
.object-card {
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  height: 100%;
}
.object-image {
  height: 220px;
}
.object-body {
  padding: 1.25rem;
}
.object-body p { color: rgba(255,255,255,.72); }
.object-badge {
  display: inline-block;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(217,171,95,.14);
  border: 1px solid rgba(217,171,95,.28);
  color: var(--brand-2);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .9rem;
}
.object-meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-size: .92rem;
}

.faq-accordion .accordion-item {
  border: 1px solid #e5ebf5;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #fff;
}
.faq-accordion .accordion-button {
  font-weight: 700;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: #0a2548;
  background: #f6f9fd;
}

.cta-section {
  background: linear-gradient(180deg, #09182e, #06111f);
}
.cta-box {
  padding: 2rem;
  background:
    linear-gradient(120deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    radial-gradient(circle at right bottom, rgba(217,171,95,.15), transparent 28%);
  border: 1px solid rgba(255,255,255,.08);
}

.site-footer {
  background: #040d18;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #fff;
}

@media (max-width: 991.98px) {
  .hero-section { padding-top: 3.5rem; }
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }
}

@media (max-width: 575.98px) {
  .hero-section { padding-bottom: 3rem; }
  .cta-box,
  .feature-card,
  .step-card,
  .plain-stat,
  .metric-card { padding: 1.15rem; }
}
