/* ============================================================
   T-800 Company — Shared Design System
   Include in all pages: <link rel="stylesheet" href="t800-shared.css">
   ============================================================ */

:root {
  --bg:       #0d0f14;
  --surface:  #151820;
  --surface2: #1e2130;
  --card:     #1e2130;
  --accent:   #6c63ff;
  --accent2:  #00d4ff;
  --text:     #e8eaf0;
  --muted:    #8b8fa8;
  --radius:   16px;
  --shadow:   0 8px 32px rgba(0,0,0,.45);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ── Shared Navbar ── */
.t800-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(13,15,20,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(108,99,255,.18);
}
.t800-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.t800-nav-logo {
  width: 54px;
  height: 42px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 8px;
  border: 1px solid rgba(108,99,255,.3);
  background: #0a0d14;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0,212,255,.35));
}
.t800-nav-title {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: .15em;
  line-height: 1;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(0,212,255,.3));
}
.t800-nav-tag {
  font-size: .6rem;
  color: var(--muted);
  letter-spacing: .3em;
  font-weight: 600;
  margin-top: 3px;
}
.t800-nav-group { display: flex; flex-direction: column; }

.t800-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  transition: color .2s, border-color .2s, background .2s;
}
.t800-nav-back:hover {
  color: var(--text);
  border-color: rgba(108,99,255,.35);
  background: rgba(108,99,255,.08);
}

/* ── Shared Footer ── */
.t800-footer {
  text-align: center;
  padding: 40px 5%;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.8;
}
.t800-footer span { color: var(--accent); font-weight: 700; }

/* ── Shared Contact Cards ── */
.t800-contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 5%;
  text-align: center;
}
.t800-contact-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.t800-contact-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 32px;
}
.t800-contact-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.t800-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: var(--radius);
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  min-width: 220px;
}
.t800-contact-card:hover {
  border-color: rgba(108,99,255,.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(108,99,255,.15);
}
.t800-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.t800-contact-label {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
}
.t800-contact-value {
  font-size: .95rem;
  font-weight: 600;
}

/* ── Section helpers ── */
.t800-section { padding: 80px 5%; }
.t800-section-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 16px;
  border-radius: 999px;
  background: rgba(108,99,255,.12);
  border: 1px solid rgba(108,99,255,.3);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.t800-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}
.t800-section-sub { color: var(--muted); font-size: .98rem; max-width: 560px; margin: 0 auto; }

/* ── Buttons ── */
.t800-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.t800-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
}
.t800-btn-primary:hover { opacity: .88; transform: translateY(-2px); }
.t800-btn-outline {
  background: transparent;
  border: 1px solid rgba(108,99,255,.45);
  color: var(--text);
}
.t800-btn-outline:hover { background: rgba(108,99,255,.12); transform: translateY(-2px); }

/* ── WhatsApp link style ── */
a.t800-wa-link {
  color: #25d366;
  font-weight: 700;
  text-decoration: none;
}
a.t800-wa-link:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .t800-contact-cards { flex-direction: column; align-items: stretch; }
  .t800-contact-card  { min-width: unset; }
  .t800-nav { padding: 0 4%; }
}
