/* LogiTrack — Dark tech dashboard + neon grid */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f1419;
  --bg-card: #161b22;
  --bg-elevated: #1c2128;
  --yellow: #f5c518;
  --yellow-dim: rgba(245, 197, 24, 0.15);
  --text: #e6edf3;
  --text-muted: #8b949e;
  --neon: rgba(245, 197, 24, 0.6);
  --border: rgba(245, 197, 24, 0.25);
  --mono: 'Consolas', 'Courier New', monospace;
  --font: 'Segoe UI', system-ui, sans-serif;
  --max: 1180px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  background-image:
    linear-gradient(rgba(245,197,24,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--yellow); color: #0f1419; padding: .75rem 1rem; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,20,25,.92); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header.is-scrolled { box-shadow: 0 0 24px rgba(245,197,24,.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-weight: 700; font-size: 1.1rem; color: var(--text); text-decoration: none;
}
.logo__icon {
  width: 38px; height: 38px; border: 2px solid var(--yellow);
  color: var(--yellow); display: flex; align-items: center; justify-content: center;
  font-size: .7rem; box-shadow: 0 0 12px var(--neon);
}
.nav__list { display: flex; gap: 1.5rem; list-style: none; }
.nav__link { color: var(--text-muted); font-family: var(--mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; }
.nav__link:hover { color: var(--yellow); text-decoration: none; }
.header__actions { display: flex; align-items: center; gap: .75rem; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.menu-toggle__bar { width: 24px; height: 2px; background: var(--yellow); }
.mobile-nav { display: none; position: fixed; inset: 72px 0 0; background: var(--bg); padding: 1.5rem; overflow-y: auto; z-index: 99; border-top: 1px solid var(--border); }
.mobile-nav.is-open { display: block; }
.mobile-nav__list { list-style: none; }
.mobile-nav__link { display: block; padding: .85rem 0; font-family: var(--mono); color: var(--text); border-bottom: 1px solid var(--border); text-decoration: none; }
.mobile-nav__actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .65rem 1.25rem; font-family: var(--mono); font-size: .8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  border: 2px solid var(--yellow); cursor: pointer; text-decoration: none; transition: all .15s;
}
.btn:hover { text-decoration: none; box-shadow: 0 0 20px var(--neon); }
.btn--primary { background: var(--yellow); color: #0f1419; }
.btn--outline { background: transparent; color: var(--yellow); }
.btn--lg { padding: .85rem 1.75rem; }

/* Hero dashboard style */
.hero {
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(245,197,24,.04));
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero__badge {
  font-family: var(--mono); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .15em; color: var(--yellow); border: 1px solid var(--border);
  padding: .4rem .85rem; display: inline-block; margin-bottom: 1.25rem;
  box-shadow: inset 0 0 20px var(--yellow-dim);
}
.hero h1 { font-size: clamp(1.85rem, 4vw, 2.65rem); line-height: 1.15; margin-bottom: 1rem; font-weight: 800; }
.hero__subtitle { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero__trust-item { display: flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: .75rem; color: var(--text-muted); }
.hero__trust-icon { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; }
.hero__visual { position: relative; }
.hero__figure {
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 0 40px rgba(245,197,24,.12), inset 0 0 0 1px rgba(245,197,24,.1);
}
.hero__caption { font-family: var(--mono); font-size: .65rem; color: var(--text-muted); margin-top: .5rem; text-transform: uppercase; letter-spacing: .1em; }

/* Dashboard metrics strip */
.hero__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: 1rem;
}
.metric-box {
  padding: .75rem; background: var(--bg-card); border: 1px solid var(--border);
  font-family: var(--mono); font-size: .7rem;
}
.metric-box__val { color: var(--yellow); font-size: 1.1rem; font-weight: 700; }

.section { padding: 5rem 0; }
.section--alt { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section__label {
  font-family: var(--mono); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .2em; color: var(--yellow); margin-bottom: .75rem; display: block;
}
.section__header h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .75rem; }
.section__desc { color: var(--text-muted); }

.trust__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; }
.trust__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.trust__stat {
  padding: 1.25rem; background: var(--bg-elevated); border: 1px solid var(--border);
  text-align: center; box-shadow: 0 0 16px rgba(245,197,24,.05);
}
.trust__stat-value { font-family: var(--mono); font-size: 1.75rem; font-weight: 700; color: var(--yellow); }
.trust__stat-label { font-size: .85rem; color: var(--text-muted); margin-top: .25rem; }
.trust__placeholder { font-family: var(--mono); font-size: .65rem; color: #484f58; margin-top: .35rem; }
.usecase-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.usecase-card { border: 1px solid var(--border); overflow: hidden; background: var(--bg-elevated); }
.usecase-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; filter: saturate(.85); }
.usecase-card figcaption { padding: .65rem .85rem; font-family: var(--mono); font-size: .75rem; color: var(--yellow); text-transform: uppercase; letter-spacing: .08em; }
.trust__reviews { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.trust__review { padding: 1.25rem; border: 1px solid var(--border); background: var(--bg); }
.trust__review-text { font-style: italic; margin-bottom: .5rem; color: var(--text-muted); }
.trust__review-meta { font-family: var(--mono); font-size: .7rem; color: #484f58; }

/* Neon grid features */
.features__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feature-card {
  padding: 1.75rem; background: var(--bg-card);
  transition: background .2s, box-shadow .2s;
}
.feature-card:hover { background: var(--bg-elevated); box-shadow: inset 0 0 30px var(--yellow-dim); }
.feature-card__icon { font-size: 1.5rem; margin-bottom: .75rem; }
.feature-card__title { font-size: 1rem; margin-bottom: .5rem; color: var(--yellow); font-family: var(--mono); font-weight: 600; }
.feature-card__desc { font-size: .875rem; color: var(--text-muted); }

/* Horizontal timeline */
.timeline {
  display: flex; gap: 0; overflow-x: auto; padding-bottom: 1rem;
  border: 1px solid var(--border); background: var(--bg-card);
}
.timeline__step {
  flex: 1; min-width: 200px; padding: 2rem 1.5rem; position: relative;
  border-right: 1px solid var(--border);
}
.timeline__step:last-child { border-right: none; }
.timeline__step::before {
  content: attr(data-step); position: absolute; top: 1rem; left: 1.5rem;
  font-family: var(--mono); font-size: .65rem; color: var(--yellow);
  letter-spacing: .15em;
}
.timeline__step::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  opacity: 0; transition: opacity .2s;
}
.timeline__step:hover::after { opacity: 1; }
.timeline__title { font-size: 1rem; margin: 1.5rem 0 .5rem; font-weight: 700; }
.timeline__desc { font-size: .875rem; color: var(--text-muted); }

.benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.benefit-item {
  display: flex; gap: 1rem; padding: 1.25rem;
  border: 1px solid var(--border); background: var(--bg-card);
}
.benefit-item__check { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; margin-top: .15rem; }
.benefit-item__title { font-family: var(--mono); font-size: .9rem; margin-bottom: .35rem; color: var(--yellow); }
.benefit-item__desc { font-size: .875rem; color: var(--text-muted); }

.comparison-table-wrapper { overflow-x: auto; border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .925rem; }
.comparison-table th, .comparison-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); }
.comparison-table th { background: var(--bg-elevated); font-family: var(--mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--yellow); }
.comparison-table td { background: var(--bg-card); }
.comparison-table .col-highlight { background: rgba(245,197,24,.08); border-left: 2px solid var(--yellow); }
.comparison-note { font-family: var(--mono); font-size: .75rem; color: var(--text-muted); margin-top: 1rem; }

.faq__list { max-width: 760px; margin: 0 auto; border: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); background: var(--bg-card); }
.faq__item:last-child { border-bottom: none; }
.faq__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem 1.25rem; background: none; border: none; cursor: pointer;
  font-size: .95rem; font-weight: 600; text-align: left; color: var(--text); gap: 1rem;
}
.faq__icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--yellow); transition: transform .25s; }
.faq__item.is-open .faq__icon { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .3s; }
.faq__item.is-open .faq__answer { max-height: 600px; }
.faq__answer p { padding: 0 1.25rem 1.15rem; color: var(--text-muted); font-size: .9rem; }

.about__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; }
.about__figure { border: 1px solid var(--border); overflow: hidden; margin-bottom: 1.25rem; }
.about__caption { font-family: var(--mono); font-size: .65rem; color: var(--text-muted); margin-top: .5rem; text-transform: uppercase; letter-spacing: .1em; }
.about__content p { margin-bottom: 1rem; color: var(--text-muted); }
.about__values { display: flex; flex-direction: column; gap: 1rem; }
.about__value { padding: 1.25rem; border: 1px solid var(--border); background: var(--bg-card); }
.about__value h3 { font-family: var(--mono); font-size: .85rem; color: var(--yellow); margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .08em; }

.cta-banner {
  padding: 4rem 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-card), var(--bg));
  box-shadow: inset 0 0 60px var(--yellow-dim);
}
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .75rem; }
.cta-banner__desc { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; }
.contact__item { margin-bottom: 1.5rem; }
.contact__item h3 { font-family: var(--mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--yellow); margin-bottom: .35rem; }
.contact-form { padding: 2rem; border: 1px solid var(--border); background: var(--bg-card); }
.form-group { margin-bottom: 1.15rem; }
.form-group label { display: block; font-family: var(--mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem; background: var(--bg); border: 1px solid var(--border);
  color: var(--text); font-family: inherit; font-size: .925rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--yellow); box-shadow: 0 0 12px var(--yellow-dim);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--text-muted); margin-bottom: 1rem; }
.form-success {
  display: none; padding: 1rem; margin-bottom: 1rem;
  border: 1px solid var(--yellow); background: var(--yellow-dim); color: var(--text);
}
.form-success.is-visible { display: block; }

.footer { background: #0a0e12; border-top: 1px solid var(--border); padding: 3.5rem 0 2rem; }
.footer .logo { color: var(--text); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer__brand p { font-size: .875rem; margin-top: .75rem; color: var(--text-muted); }
.footer__col h4 { font-family: var(--mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--yellow); margin-bottom: .85rem; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: .5rem; }
.footer__links a { color: var(--text-muted); font-size: .875rem; text-decoration: none; }
.footer__links a:hover { color: var(--yellow); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.footer__bottom p { font-size: .8rem; color: var(--text-muted); margin-bottom: .5rem; }
.footer__legal { font-family: var(--mono); font-size: .7rem; color: #484f58; line-height: 1.6; }

.legal-page { padding: 120px 0 4rem; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-size: 2rem; margin-bottom: .5rem; }
.legal-updated { font-family: var(--mono); color: var(--text-muted); font-size: .875rem; margin-bottom: 2rem; }
.legal-page h2 { font-family: var(--mono); font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--yellow); margin: 2rem 0 .75rem; }
.legal-page p, .legal-page li { color: var(--text-muted); margin-bottom: .75rem; }
.legal-page ul { padding-left: 1.25rem; }

@media (max-width: 960px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .hero__grid, .trust__grid, .about__grid, .contact__grid, .benefits__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .timeline { flex-direction: column; }
  .timeline__step { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .trust__stats, .usecase-gallery, .hero__metrics { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .header__actions .btn--outline { display: none; }
}
