/* ═══════════════════════════════════════════
   TECHNOLINE — SHARED STYLES
   Used by all pages
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --purple:        #8b00d4;
  --purple-light:  #bf30ff;
  --magenta:       #cc00bb;
  --lime:          #7ec800;
  --lime-light:    #a8e000;
  --dark:          #08000f;
  --dark2:         #0d0018;
  --panel:         rgba(139,0,212,0.07);
  --panel-border:  rgba(139,0,212,0.18);
  --text:          #e8d8ff;
  --dim:           #9070b0;
  --white:         #f5eeff;
  --red:           #ff4444;
  --green:         #00dd88;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── CIRCUIT CANVAS ── */
#circuit-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none; opacity: 0.45;
}

/* ── NAV ── */
.t-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 5vw, 4rem);
  background: rgba(8,0,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139,0,212,0.25);
}
.t-nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; }
.t-nav-logo img { height: 36px; filter: drop-shadow(0 0 8px rgba(139,0,212,0.5)); }
.t-nav-links { display:flex; align-items:center; gap:clamp(.8rem,2vw,2rem); list-style:none; }
.t-nav-links a {
  color: var(--dim); text-decoration:none;
  font-size: clamp(.68rem,.9vw,.82rem); font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  transition: color .2s;
  white-space: nowrap;
}
.t-nav-links a:hover, .t-nav-links a.active { color: var(--lime-light); }
.t-nav-links a.active { border-bottom: 2px solid var(--lime); padding-bottom: 2px; }
.t-nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #fff; padding: .4rem 1.1rem; border-radius: 4px;
  font-family: 'Orbitron', sans-serif; font-weight: 600;
  font-size: clamp(.65rem,.8vw,.76rem); letter-spacing:.07em;
  text-decoration:none; white-space:nowrap;
  box-shadow: 0 0 12px rgba(139,0,212,0.4);
  transition: box-shadow .2s, transform .15s;
}
.t-nav-cta:hover { box-shadow: 0 0 22px rgba(139,0,212,0.7); transform: translateY(-1px); }

/* Hamburger for mobile */
.t-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.t-hamburger span { display:block; width:24px; height:2px; background:var(--dim); border-radius:2px; transition: all .3s; }
.t-mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(8,0,15,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139,0,212,0.2);
  padding: 1.5rem clamp(1rem,5vw,4rem);
  z-index: 499; flex-direction: column; gap: 1rem;
}
.t-mobile-menu.open { display: flex; }
.t-mobile-menu a {
  color: var(--dim); text-decoration:none; font-size: .9rem;
  font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding: .5rem 0; border-bottom: 1px solid rgba(139,0,212,0.1);
  transition: color .2s;
}
.t-mobile-menu a:hover { color: var(--lime-light); }

/* ── PAGE WRAPPER ── */
.t-page { padding-top: 64px; position: relative; z-index: 1; }

/* ── SECTION ── */
.t-section { position: relative; z-index: 1; }
.t-container {
  max-width: min(1200px, 92vw);
  margin: 0 auto;
  padding: clamp(3rem,7vw,5.5rem) 0;
}
.t-container-wide {
  max-width: min(1400px, 95vw);
  margin: 0 auto;
  padding: clamp(3rem,7vw,5.5rem) 0;
}

/* ── SECTION LABELS & TITLES ── */
.t-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--lime);
  margin-bottom: .7rem;
}
.t-label::before { content:''; display:block; width:20px; height:2px; background:var(--lime); }
.t-title {
  font-family: 'Orbitron', sans-serif; font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.1; margin-bottom: .9rem;
}
.t-title .acc-p { color: var(--purple-light); }
.t-title .acc-l { color: var(--lime-light); }
.t-desc { color: var(--dim); line-height: 1.8; font-size: clamp(.88rem,1.2vw,1rem); max-width: 600px; }

/* ── DIVIDER ── */
.t-divider {
  height: 1px; position: relative; z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(139,0,212,.35), rgba(126,200,0,.25), transparent);
}

/* ── BUTTONS ── */
.btn-purple {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #fff; padding: .75rem 1.8rem; border-radius: 6px;
  font-family: 'Orbitron', sans-serif; font-weight: 700;
  font-size: clamp(.72rem,.9vw,.84rem); letter-spacing:.07em;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 18px rgba(139,0,212,.4);
  transition: box-shadow .2s, transform .15s;
}
.btn-purple:hover { box-shadow: 0 0 30px rgba(139,0,212,.75); transform: translateY(-2px); }
.btn-lime {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--lime), var(--lime-light));
  color: #0a0010; padding: .75rem 1.8rem; border-radius: 6px;
  font-family: 'Orbitron', sans-serif; font-weight: 800;
  font-size: clamp(.72rem,.9vw,.84rem); letter-spacing:.07em;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 18px rgba(126,200,0,.35);
  transition: box-shadow .2s, transform .15s;
}
.btn-lime:hover { box-shadow: 0 0 30px rgba(126,200,0,.65); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--purple-light);
  border: 1.5px solid rgba(139,0,212,.4);
  padding: .72rem 1.7rem; border-radius: 6px;
  font-family: 'Orbitron', sans-serif; font-weight: 700;
  font-size: clamp(.72rem,.9vw,.84rem); letter-spacing:.07em;
  text-decoration: none; white-space: nowrap;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime-light); transform: translateY(-2px); }

/* ── SERVICE BOX CARDS (used on home + service pages) ── */
.t-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px; padding: 1.8rem;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .2s, box-shadow .25s;
  cursor: pointer;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: .6rem;
}
.t-card::after {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--purple), var(--lime));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.t-card:hover { border-color: rgba(139,0,212,.5); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(139,0,212,.18); }
.t-card:hover::after { transform: scaleX(1); }
.t-card .card-icon { font-size: 2.4rem; line-height: 1; }
.t-card .card-title { font-family:'Orbitron',sans-serif; font-weight:700; font-size:clamp(.9rem,1.2vw,1.05rem); color:var(--white); }
.t-card .card-desc { font-size:clamp(.8rem,1vw,.9rem); color:var(--dim); line-height:1.6; }
.t-card .card-price { font-family:'Orbitron',sans-serif; font-weight:800; font-size:clamp(.85rem,1.1vw,1rem); color:var(--lime-light); margin-top:auto; }
.t-card .card-arrow { position:absolute; bottom:1.4rem; right:1.4rem; font-size:1.1rem; color:var(--purple-light); opacity:0; transition:opacity .2s, transform .2s; }
.t-card:hover .card-arrow { opacity:1; transform:translateX(4px); }
.t-card-tag { display:inline-block; background:rgba(126,200,0,.1); border:1px solid rgba(126,200,0,.3); color:var(--lime-light); font-size:.65rem; font-weight:800; padding:.18rem .65rem; border-radius:20px; letter-spacing:.08em; }

/* ── BADGE ── */
.t-badge { display:inline-flex; align-items:center; gap:.4rem; font-size:.7rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; background:rgba(245,137,10,.1); border:1px solid rgba(245,137,10,.35); color:#ffaa35; padding:.3rem .9rem; border-radius:20px; }

/* ── INFO ROWS (contact, specs etc.) ── */
.t-info-row { display:flex; align-items:flex-start; gap:1rem; background:var(--panel); border:1px solid var(--panel-border); border-radius:10px; padding:1.1rem 1.3rem; transition:border-color .2s; }
.t-info-row:hover { border-color:rgba(139,0,212,.4); }
.t-info-row .ir-icon { font-size:1.5rem; flex-shrink:0; }
.t-info-row h4 { font-size:.68rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--dim); }
.t-info-row p, .t-info-row a { color:var(--white); font-size:.92rem; margin-top:.2rem; text-decoration:none; }
.t-info-row a:hover { color:var(--lime-light); }

/* ── FLOATING CONTACT BUTTONS ── */
.t-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 900; display: flex; flex-direction: column; gap: .7rem;
  align-items: flex-end;
}
.t-float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.t-float-btn:hover { transform: scale(1.12); }
.t-float-wa  { background: #25D366; }
.t-float-fb  { background: #0866FF; }
.t-float-gm  { background: #EA4335; }

/* ── FOOTER ── */
.t-footer {
  position: relative; z-index: 1;
  background: #040008;
  border-top: 1px solid rgba(139,0,212,.2);
  padding: clamp(1.5rem,4vw,2.5rem) clamp(1rem,5vw,4rem);
}
.t-footer-inner {
  max-width: min(1200px,92vw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.t-footer-brand { display:flex; align-items:center; gap:.75rem; }
.t-footer-brand img { height:26px; filter:drop-shadow(0 0 6px rgba(139,0,212,.4)); }
.t-footer-brand span { font-family:'Orbitron',sans-serif; font-weight:700; font-size:.78rem; color:var(--dim); }
.t-footer-links { display:flex; gap:clamp(.8rem,2vw,1.5rem); flex-wrap:wrap; }
.t-footer-links a { color:var(--dim); text-decoration:none; font-size:.76rem; transition:color .2s; }
.t-footer-links a:hover { color:var(--lime-light); }
.t-footer-copy { color:#4a3060; font-size:.72rem; width:100%; text-align:center; margin-top:.5rem; padding-top:.8rem; border-top:1px solid rgba(139,0,212,.1); }

/* ── HIGHLIGHT STRIP (Win10 alert style) ── */
.t-strip {
  position:relative; z-index:1;
  background: linear-gradient(90deg, rgba(139,0,212,.2), rgba(204,0,187,.12));
  border-top: 2px solid var(--magenta);
  border-bottom: 2px solid var(--magenta);
  padding: clamp(1.5rem,4vw,2.5rem) clamp(1rem,5vw,4rem);
  display:flex; align-items:center; gap:2rem; flex-wrap:wrap; justify-content:space-between;
}
.t-strip .strip-left { display:flex; align-items:center; gap:1.5rem; flex:1; min-width:280px; }
.t-strip .strip-ico { font-size:2.8rem; flex-shrink:0; }
.t-strip h2 { font-family:'Orbitron',sans-serif; font-weight:700; font-size:clamp(.95rem,1.5vw,1.2rem); color:var(--white); margin-bottom:.4rem; }
.t-strip p { color:var(--dim); font-size:clamp(.8rem,1.1vw,.92rem); line-height:1.7; }
.t-strip .hl { color:var(--lime-light); font-weight:800; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.anim-up { animation: fadeUp .7s ease both; }
.anim-up-2 { animation: fadeUp .7s .15s ease both; }
.anim-up-3 { animation: fadeUp .7s .3s ease both; }
.anim-up-4 { animation: fadeUp .7s .45s ease both; }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .t-nav-links { display:none; }
  .t-hamburger { display:flex; }
  .t-nav-cta { display:none; }
}
@media(max-width:600px) {
  .t-nav { height:56px; }
  .t-page { padding-top:56px; }
  .t-mobile-menu { top:56px; }
  .t-float-btn { width:46px; height:46px; font-size:1.2rem; }
  .t-float { bottom:1rem; right:1rem; gap:.5rem; }
}
