/* ================================================================
   XPETO TECHNOLOGIES — Premium UI/UX v6.0
   White Primary Theme | Rich Animations | Mobile-First
   hello@xpeto.in | +91 9989986695
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────── */
:root {
  /* Colors */
  --c-bg:        #FFFFFF;
  --c-bg2:       #F7F9FC;
  --c-bg3:       #EEF2F8;
  --c-card:      #FFFFFF;
  --c-border:    #E4EAF3;
  --c-text:      #0B1426;
  --c-muted:     #4B5A72;
  --c-subtle:    #8795A8;

  /* Brand */
  --c-blue:      #1565C0;
  --c-blue-lt:   #1E88E5;
  --c-indigo:    #3949AB;
  --c-cyan:      #00ACC1;
  --c-green:     #00897B;
  --c-orange:    #E65100;
  --c-red:       #C62828;
  --c-purple:    #6A1B9A;

  /* Gradients */
  --g-primary:   linear-gradient(135deg, #1565C0 0%, #3949AB 100%);
  --g-hero:      linear-gradient(135deg, #0B1426 0%, #1A237E 60%, #0B1426 100%);
  --g-green:     linear-gradient(135deg, #00897B 0%, #00695C 100%);
  --g-orange:    linear-gradient(135deg, #E65100 0%, #BF360C 100%);
  --g-light:     linear-gradient(180deg, #F7F9FC 0%, #EEF2F8 100%);

  /* Typography */
  --f-body:      'Plus Jakarta Sans', system-ui, sans-serif;
  --f-head:      'Space Grotesk', 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --sp-xs:  8px;  --sp-sm: 16px;  --sp-md: 24px;
  --sp-lg: 40px;  --sp-xl: 64px;  --sp-2xl:100px;

  /* Radii */
  --r-sm:  8px;   --r-md: 16px;   --r-lg: 24px;   --r-xl: 36px;

  /* Shadows */
  --s-sm:  0 2px 8px rgba(21,101,192,.08);
  --s-md:  0 8px 32px rgba(21,101,192,.12);
  --s-lg:  0 24px 60px rgba(21,101,192,.16);
  --s-card:0 4px 20px rgba(11,20,38,.07);

  /* Animation */
  --ease:  cubic-bezier(.4,0,.2,1);
  --dur:   .3s;
}

/* DARK THEME */
[data-theme="dark"] {
  --c-bg:        #070D1C;
  --c-bg2:       #0C1530;
  --c-bg3:       #112044;
  --c-card:      #0F1B36;
  --c-border:    rgba(30,136,229,.2);
  --c-text:      #EEF2F8;
  --c-muted:     #8795A8;
  --c-subtle:    #4B5A72;
  --s-sm:  0 2px 8px rgba(0,0,0,.3);
  --s-md:  0 8px 32px rgba(0,0,0,.4);
  --s-lg:  0 24px 60px rgba(30,136,229,.2);
  --s-card:0 4px 20px rgba(0,0,0,.35);
}

/* ─── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .3s, color .3s;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--f-head); color: var(--c-text); line-height: 1.2; letter-spacing: -.025em; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: all var(--dur) var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--f-body); background: none; }
input, select, textarea { font-family: var(--f-body); }

/* ─── PRELOADER ─────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; background: var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .5s, visibility .5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.xp-spin {
  width: 44px; height: 44px; border: 3px solid var(--c-border);
  border-top-color: var(--c-blue); border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── LAYOUT ────────────────────────────────────── */
.container {
  width: 100%; max-width: 1240px;
  margin: 0 auto; padding-left: 24px; padding-right: 24px;
  box-sizing: border-box;
}
@media(min-width:640px)  { .container { padding-left: 32px; padding-right: 32px; } }
@media(min-width:1024px) { .container { padding-left: 40px; padding-right: 40px; } }

.section       { padding: 72px 0; }
.section-sm    { padding: 48px 0; }
.section-lg    { padding: 100px 0; }
@media(max-width:767px) {
  .section    { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .section-lg { padding: 64px 0; }
}

/* ─── SCROLL ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale-in   { transform: scale(.92); }
.reveal.active     { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.stagger.active > *:nth-child(1) { transition-delay: .05s; }
.stagger.active > *:nth-child(2) { transition-delay: .12s; }
.stagger.active > *:nth-child(3) { transition-delay: .19s; }
.stagger.active > *:nth-child(4) { transition-delay: .26s; }
.stagger.active > *:nth-child(5) { transition-delay: .33s; }
.stagger.active > *:nth-child(6) { transition-delay: .40s; }
.stagger.active > * { opacity: 1; transform: none; }

/* ─── TYPOGRAPHY HELPERS ────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--c-blue);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--g-primary); border-radius: 2px;
}
.heading-xl { font-size: clamp(2rem, 5.5vw, 4rem); font-weight: 900; }
.heading-lg { font-size: clamp(1.7rem, 4vw,  3rem); font-weight: 800; }
.heading-md { font-size: clamp(1.4rem, 3vw,  2.2rem); font-weight: 700; }
.heading-sm { font-size: clamp(1.1rem, 2vw,  1.4rem); font-weight: 700; }
.lead       { font-size: clamp(15px, 2vw, 17px); color: var(--c-muted); line-height: 1.75; }

.gradient-text {
  background: var(--g-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-green {
  background: var(--g-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section center */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .lead { margin-top: 12px; }
@media(max-width:767px) { .section-head { margin-bottom: 36px; } }

/* ─── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--f-body); font-weight: 700;
  border-radius: 50px; cursor: pointer; white-space: nowrap;
  transition: all var(--dur) var(--ease); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0; transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

/* Primary */
.btn-primary {
  background: var(--g-primary); color: #fff;
  padding: 13px 28px; font-size: 14.5px;
  box-shadow: 0 4px 20px rgba(21,101,192,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(21,101,192,.45); }

/* Outline */
.btn-outline {
  background: transparent; color: var(--c-blue);
  border: 2px solid rgba(21,101,192,.4);
  padding: 11px 26px; font-size: 14.5px;
}
.btn-outline:hover { background: var(--c-blue); color: #fff; border-color: var(--c-blue); transform: translateY(-2px); }

/* White */
.btn-white {
  background: #fff; color: var(--c-blue);
  padding: 13px 28px; font-size: 14.5px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }

/* Ghost */
.btn-ghost {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff; padding: 11px 26px; font-size: 14.5px;
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

/* Green */
.btn-green {
  background: var(--g-green); color: #fff;
  padding: 13px 28px; font-size: 14.5px;
  box-shadow: 0 4px 20px rgba(0,137,123,.35);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,137,123,.45); }

.btn-sm  { padding: 9px 20px !important; font-size: 13px !important; }
.btn-lg  { padding: 15px 36px !important; font-size: 16px !important; }
.btn-full{ width: 100%; justify-content: center; }

/* ─── HEADER ────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: all var(--dur);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  background: rgba(11,20,38,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 60px; gap: 16px;
}
@media(min-width:768px) { .header-inner { height: 68px; } }

/* Logo */
.site-logo {
  display: flex; flex-direction: column;
  line-height: 1.1; flex-shrink: 0;
}
.logo-name {
  font-family: var(--f-head); font-size: 19px; font-weight: 900;
  color: #fff; letter-spacing: -.5px;
}
.logo-tag {
  font-size: 9px; color: #38BDF8; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
}

/* Desktop Nav */
.main-nav { display: none; align-items: center; gap: 4px; }
@media(min-width:1024px) { .main-nav { display: flex; } }

.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,.8); border-radius: 8px;
  transition: all var(--dur);
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-link svg { width: 12px; height: 12px; transition: transform .3s; flex-shrink: 0; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-drop {
  position: absolute; top: calc(100% + 10px);
  left: 50%; transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #0F1B36; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 8px;
  opacity: 0; visibility: hidden;
  transition: all .25s var(--ease);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.nav-item:hover .nav-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  color: rgba(255,255,255,.75); font-size: 13.5px;
  transition: all var(--dur);
}
.nav-drop-item:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-drop-item .drop-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.nav-drop-item strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.nav-drop-item span { font-size: 11.5px; color: rgba(255,255,255,.55); }
.drop-divider { height: 1px; background: rgba(255,255,255,.08); margin: 4px 0; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
@media(min-width:640px) { .header-actions { gap: 10px; } }

.theme-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: all var(--dur);
}
.theme-btn:hover { background: rgba(255,255,255,.2); transform: scale(1.05); }

.call-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; border-radius: 50px;
  padding: 6px 14px; font-size: 12.5px; font-weight: 700;
  transition: all var(--dur); text-decoration: none;
}
.call-btn:hover { background: var(--c-blue); border-color: var(--c-blue); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer; transition: all var(--dur);
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media(min-width:1024px) { .hamburger { display: none; } }

/* ─── MOBILE DRAWER ─────────────────────────────── */
.mobile-drawer { position: fixed; inset: 0; z-index: 950; pointer-events: none; }
.drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.78); opacity: 0;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: opacity .35s;
}
.drawer-panel {
  position: absolute; top: 0; right: -100%;
  width: min(320px, 90vw); height: 100vh;
  background: #0B1426; border-left: 1px solid rgba(255,255,255,.1);
  transition: right .35s var(--ease); overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-drawer.open { pointer-events: all; }
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.mobile-drawer.open .drawer-panel { right: 0; }

.drawer-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.drawer-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; color: #fff; cursor: pointer;
  border: 1px solid rgba(255,255,255,.18);
}
.drawer-body { padding: 16px; flex: 1; overflow-y: auto; }
.drawer-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  padding: 10px 12px 4px;
}
.drawer-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600;
  transition: all var(--dur); margin-bottom: 2px;
}
.drawer-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.drawer-sep { height: 1px; background: rgba(255,255,255,.08); margin: 8px 0; }
.drawer-footer { padding: 16px; border-top: 1px solid rgba(255,255,255,.08); flex-shrink: 0; }

/* ─── HERO SECTION ──────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  background: var(--g-hero);
  display: flex; align-items: center;
  overflow: hidden; padding-top: 68px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: gridFloat 20s ease-in-out infinite;
}
@keyframes gridFloat {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(4px); }
}
.hero-glow {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(21,101,192,.35) 0%, transparent 65%);
  top: -10%; right: -10%; border-radius: 50%;
  animation: glowPulse 8s ease-in-out infinite;
}
.hero-glow2 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(57,73,171,.3) 0%, transparent 65%);
  bottom: -10%; left: -5%; border-radius: 50%;
  animation: glowPulse 10s ease-in-out infinite reverse;
}
@keyframes glowPulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particles span {
  position: absolute; width: 2px; height: 2px;
  background: rgba(255,255,255,.7); border-radius: 50%;
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20px); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
@media(min-width:1024px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 72px; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 6px 16px;
  font-size: 11.5px; font-weight: 700; color: #38BDF8;
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(1.6); }
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
  letter-spacing: -.04em;
}
.hero-title .hl {
  background: linear-gradient(135deg, #38BDF8 0%, #818CF8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(15px, 2.2vw, 17.5px);
  color: rgba(255,255,255,.7); line-height: 1.75;
  margin-bottom: 32px; max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
@media(max-width:479px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
.hero-stats {
  display: flex; gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
@media(max-width:479px) { .hero-stats { gap: 20px; } }
.hero-stat-num {
  font-family: var(--f-head); font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900; color: #fff; line-height: 1;
  background: linear-gradient(135deg,#38BDF8,#818CF8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-lbl { font-size: 11.5px; color: rgba(255,255,255,.55); font-weight: 600; margin-top: 4px; }

/* Hero right panel — floating cards */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all .35s var(--ease);
  animation: cardFloat ease-in-out infinite alternate;
}
.hero-card:nth-child(1) { animation-duration: 4.5s; animation-delay: 0s; }
.hero-card:nth-child(2) { animation-duration: 5s;   animation-delay: .8s; }
.hero-card:nth-child(3) { animation-duration: 4.2s; animation-delay: 1.5s; }
.hero-card:nth-child(4) { animation-duration: 5.5s; animation-delay: .3s; }
@keyframes cardFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-7px); }
}
.hero-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-4px) !important;
  animation-play-state: paused;
}
.hcard-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.hcard-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.hcard-desc  { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.4; }

/* ─── MARQUEE STRIP ─────────────────────────────── */
.marquee-strip {
  background: var(--c-bg2); border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--c-muted);
  white-space: nowrap;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-blue); }

/* ─── PRODUCT CARDS ─────────────────────────────── */
.products-grid { display: grid; gap: 24px; }
@media(min-width:768px) { .products-grid { grid-template-columns: repeat(2,1fr); } }

.product-card {
  background: var(--c-card); border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .35s var(--ease); box-shadow: var(--s-card);
}
.product-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 16px 48px rgba(21,101,192,.15);
  transform: translateY(-6px);
}
.pc-thumb {
  position: relative; height: 220px; overflow: hidden;
  background: var(--c-bg2);
}
@media(min-width:640px) { .pc-thumb { height: 260px; } }
.pc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .pc-thumb img { transform: scale(1.04); }
.pc-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-live   { background: #14532D; color: #4ADE80; }
.badge-app    { background: #1E3A5F; color: #60A5FA; }
.badge-ai     { background: #3B1764; color: #C084FC; }
.badge-new    { background: #7C2D12; color: #FB923C; }

.pc-body { padding: 24px; }
.pc-top  { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.pc-info-tag { font-size: 10.5px; font-weight: 700; color: var(--c-blue); text-transform: uppercase; letter-spacing: 1px; }
.pc-name { font-size: 1.2rem; font-weight: 800; color: var(--c-text); margin-top: 2px; }
.pc-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(21,101,192,.1); display: flex; align-items: center;
  justify-content: center; color: var(--c-blue);
  font-size: 14px; flex-shrink: 0; transition: all var(--dur);
}
.product-card:hover .pc-arrow { background: var(--c-blue); color: #fff; transform: rotate(45deg); }
.pc-desc { font-size: 13.5px; color: var(--c-muted); line-height: 1.7; margin-bottom: 16px; }
.pc-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.pc-feat {
  font-size: 11.5px; font-weight: 600; color: var(--c-blue);
  background: rgba(21,101,192,.07); border: 1px solid rgba(21,101,192,.18);
  border-radius: 50px; padding: 3px 10px;
  display: flex; align-items: center; gap: 4px;
}
.pc-feat::before { content: '✓'; font-size: 9px; }
.pc-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ─── SERVICE / TEMPLATE CARDS ──────────────────── */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media(min-width:640px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  background: var(--c-card); border: 1.5px solid var(--c-border);
  border-radius: var(--r-md); padding: 28px 24px;
  transition: all .35s var(--ease); box-shadow: var(--s-card);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 0;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  right: 0; height: 3px; background: var(--g-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover { border-color: var(--c-blue); box-shadow: var(--s-md); transform: translateY(-5px); }
.service-card:hover::after { transform: scaleX(1); }
.sc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; flex-shrink: 0;
}
.sc-icon.blue   { background: rgba(21,101,192,.1); }
.sc-icon.green  { background: rgba(0,137,123,.1); }
.sc-icon.orange { background: rgba(230,81,0,.1); }
.sc-icon.purple { background: rgba(106,27,154,.1); }
.sc-icon.cyan   { background: rgba(0,172,193,.1); }
.sc-icon.red    { background: rgba(198,40,40,.1); }

.sc-title { font-size: 1.05rem; font-weight: 800; color: var(--c-text); margin-bottom: 8px; }
.sc-desc  { font-size: 13px; color: var(--c-muted); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.sc-tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.sc-tag   {
  font-size: 10.5px; font-weight: 600; color: var(--c-muted);
  background: var(--c-bg2); border: 1px solid var(--c-border);
  border-radius: 50px; padding: 2px 9px;
}
.sc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: var(--c-blue);
  transition: gap .2s;
}
.sc-link:hover { gap: 8px; }

/* ─── TEMPLATE SHOWCASE CARDS ───────────────────── */
.templates-grid {
  display: grid; gap: 22px; grid-template-columns: 1fr;
}
@media(min-width:640px) { .templates-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .templates-grid { grid-template-columns: repeat(3,1fr); } }

.tpl-card {
  background: var(--c-card); border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .35s var(--ease); box-shadow: var(--s-card);
}
.tpl-card:hover { border-color: var(--c-blue); box-shadow: var(--s-lg); transform: translateY(-6px); }
.tpl-thumb {
  position: relative; height: 200px; overflow: hidden;
  background: var(--c-bg2);
}
.tpl-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tpl-card:hover .tpl-thumb img { transform: scale(1.05); }
.tpl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,20,38,.75) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; padding: 16px;
}
.tpl-card:hover .tpl-overlay { opacity: 1; }
.tpl-overlay-label {
  font-size: 13px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 6px;
}
.tpl-sector {
  position: absolute; top: 12px; left: 12px;
  background: rgba(11,20,38,.85); color: #fff;
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; backdrop-filter: blur(4px);
  letter-spacing: .5px; text-transform: uppercase;
}
.tpl-body { padding: 20px; }
.tpl-name { font-size: 1rem; font-weight: 800; color: var(--c-text); margin-bottom: 6px; }
.tpl-desc { font-size: 12.5px; color: var(--c-muted); line-height: 1.65; margin-bottom: 14px; }
.tpl-features { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.tpl-feat {
  font-size: 10.5px; font-weight: 600;
  color: var(--c-blue); background: rgba(21,101,192,.08);
  border: 1px solid rgba(21,101,192,.18); border-radius: 50px; padding: 2px 9px;
}

/* ─── STATS BAND ────────────────────────────────── */
.stats-band { background: var(--g-primary); padding: 52px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
@media(min-width:768px) { .stats-inner { grid-template-columns: repeat(4,1fr); } }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--f-head); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; color: #fff; line-height: 1;
  display: block; margin-bottom: 6px;
}
.stat-lbl { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 600; }

/* ─── WHY CHOOSE XPETO ──────────────────────────── */
.why-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media(min-width:640px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .why-grid { grid-template-columns: repeat(4,1fr); } }

.why-card {
  background: var(--c-card); border: 1.5px solid var(--c-border);
  border-radius: var(--r-md); padding: 26px 22px;
  box-shadow: var(--s-card); transition: all .35s var(--ease);
  text-align: center;
}
.why-card:hover { border-color: var(--c-blue); box-shadow: var(--s-md); transform: translateY(-4px); }
.why-icon {
  width: 56px; height: 56px; background: rgba(21,101,192,.1);
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin: 0 auto 14px;
}
.why-title { font-size: 1rem; font-weight: 800; color: var(--c-text); margin-bottom: 8px; }
.why-desc  { font-size: 13px; color: var(--c-muted); line-height: 1.65; }

/* ─── CTA BANNER ────────────────────────────────── */
.cta-banner {
  background: var(--g-hero);
  border-radius: var(--r-xl);
  padding: 64px 40px; text-align: center;
  position: relative; overflow: hidden;
}
@media(max-width:639px) { .cta-banner { padding: 44px 20px; border-radius: var(--r-lg); } }
.cta-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21,101,192,.45) 0%, transparent 65%);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(57,73,171,.35) 0%, transparent 65%);
}
.cta-banner .cta-content { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); color: #fff; margin-bottom: 12px; }
.cta-banner p  { font-size: clamp(14px, 2vw, 16px); color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto 28px; }
.cta-actions   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media(max-width:479px) { .cta-actions { flex-direction: column; align-items: center; } }
.cta-phone {
  font-size: 1.1rem; font-weight: 900; color: #38BDF8;
  display: block; margin-bottom: 24px;
}

/* ─── CONTACT SECTION ───────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media(min-width:1024px) { .contact-grid { grid-template-columns: 1fr 1.5fr; gap: 36px; } }
.contact-info-card {
  background: var(--c-card); border: 1.5px solid var(--c-border);
  border-radius: var(--r-md); padding: 22px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--s-card); transition: all .3s;
}
.contact-info-card:hover { border-color: var(--c-blue); box-shadow: var(--s-md); }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--g-primary); display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; color: #fff;
}
.ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-subtle); margin-bottom: 4px; }
.ci-value { font-size: 14.5px; font-weight: 700; color: var(--c-text); }
.ci-sub   { font-size: 12.5px; color: var(--c-muted); margin-top: 2px; }

.form-card {
  background: var(--c-card); border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg); padding: 32px; box-shadow: var(--s-md);
}
@media(max-width:639px) { .form-card { padding: 20px; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media(min-width:480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 0; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--c-muted); text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 6px;
}
.form-input {
  width: 100%; background: var(--c-bg2); border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm); padding: 12px 16px;
  color: var(--c-text); font-size: 14px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(21,101,192,.12); }
.form-input::placeholder { color: var(--c-subtle); }
textarea.form-input { resize: vertical; min-height: 110px; }
select.form-input { cursor: pointer; }

/* ─── PAGE HERO ─────────────────────────────────── */
.page-hero {
  background: var(--g-hero); padding: 120px 0 60px;
  text-align: center; position: relative; overflow: hidden;
}
@media(min-width:768px) { .page-hero { padding: 150px 0 80px; } }
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 16px;
  font-size: 12px; color: rgba(255,255,255,.5);
}
.breadcrumb a { color: #38BDF8; font-weight: 600; }
.breadcrumb-sep { font-size: 10px; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 14px; }
.page-hero .lead { color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto; }

/* ─── DASHBOARD ─────────────────────────────────── */
.dash-layout { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 20px 0 48px; }
@media(min-width:1024px) { .dash-layout { grid-template-columns: 240px 1fr; } }
.dash-sidebar {
  background: var(--c-card); border: 1.5px solid var(--c-border);
  border-radius: var(--r-md); padding: 20px; box-shadow: var(--s-card);
  height: fit-content;
}
.dash-user { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--c-border); margin-bottom: 16px; }
.dash-avatar { width: 40px; height: 40px; background: var(--g-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; color: #fff; flex-shrink: 0; }
.dash-name { font-size: 13.5px; font-weight: 800; color: var(--c-text); }
.dash-role { font-size: 11px; color: var(--c-blue); font-weight: 600; }
.dash-nav-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-subtle); padding: 10px 8px 4px; }
.dash-nav-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 10px; border-radius: 8px; font-size: 13px;
  font-weight: 600; color: var(--c-muted); margin-bottom: 2px;
  transition: all var(--dur);
}
.dash-nav-link:hover, .dash-nav-link.active { color: var(--c-blue); background: rgba(21,101,192,.08); }
.dash-nav-link.active { border-left: 2px solid var(--c-blue); padding-left: 8px; }
.dash-sep { height: 1px; background: var(--c-border); margin: 8px 0; }
.dash-main { display: flex; flex-direction: column; gap: 20px; }
.kpi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media(min-width:768px) { .kpi-grid { grid-template-columns: repeat(4,1fr); } }
.kpi-card {
  background: var(--c-card); border: 1.5px solid var(--c-border);
  border-radius: var(--r-md); padding: 18px; box-shadow: var(--s-card);
  transition: all .3s;
}
.kpi-card:hover { border-color: var(--c-blue); box-shadow: var(--s-md); transform: translateY(-3px); }
.kpi-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.kpi-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.kpi-badge { padding: 2px 9px; border-radius: 50px; font-size: 10.5px; font-weight: 700; }
.kpi-up   { background: rgba(0,137,123,.12); color: var(--c-green); }
.kpi-val  { font-family: var(--f-head); font-size: clamp(1.3rem,3vw,1.75rem); font-weight: 900; color: var(--c-text); line-height: 1; }
.kpi-label{ font-size: 11.5px; color: var(--c-muted); margin-top: 5px; font-weight: 600; }
.chart-card {
  background: var(--c-card); border: 1.5px solid var(--c-border);
  border-radius: var(--r-md); padding: 22px; box-shadow: var(--s-card);
}
.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.chart-title  { font-size: 14.5px; font-weight: 800; color: var(--c-text); }
.chart-sub    { font-size: 12px; color: var(--c-muted); margin-top: 2px; }
.chart-tabs   { display: flex; gap: 4px; }
.ctab { padding: 4px 14px; border-radius: 50px; font-size: 11.5px; font-weight: 700; border: 1.5px solid var(--c-border); color: var(--c-muted); background: transparent; cursor: pointer; transition: all var(--dur); }
.ctab.active { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }
.bar-chart   { display: flex; align-items: flex-end; gap: 8px; height: 150px; padding-bottom: 16px; }
.bar-wrap    { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.bar-col     { width: 100%; border-radius: 6px 6px 0 0; min-height: 6px; transition: height .7s var(--ease); }
.bar-lbl     { font-size: 9.5px; color: var(--c-muted); text-align: center; }
.status-table{ width: 100%; border-collapse: collapse; }
.status-table th { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--c-muted); font-weight: 700; padding: 8px 14px; border-bottom: 1px solid var(--c-border); text-align: left; }
.status-table td { padding: 12px 14px; border-bottom: 1px solid var(--c-border); font-size: 13px; color: var(--c-text); }
.status-table tr:last-child td { border-bottom: none; }
.status-badge{ display: inline-flex; align-items: center; gap: 4px; padding: 2px 10px; border-radius: 50px; font-size: 10.5px; font-weight: 700; }
.s-live { background: rgba(0,137,123,.12); color: var(--c-green); }
.s-beta { background: rgba(230,81,0,.12); color: var(--c-orange); }
.s-plan { background: rgba(106,27,154,.12); color: var(--c-purple); }

/* ─── FOOTER ────────────────────────────────────── */
.site-footer { background: #070D1C; color: #8795A8; }
.footer-top { padding: 64px 0 48px; }
@media(max-width:767px) { .footer-top { padding: 40px 0 32px; } }
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media(min-width:540px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; } }

.footer-brand-desc { font-size: 13px; line-height: 1.75; margin: 16px 0; }
.footer-cin { font-size: 11.5px; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #8795A8;
  transition: all var(--dur);
}
.footer-social:hover { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }
.footer-col h4 {
  font-size: 13.5px; font-weight: 800; color: #fff;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: #8795A8; transition: all var(--dur); }
.footer-links a:hover { color: #38BDF8; padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.fc-item { display: flex; align-items: flex-start; gap: 10px; }
.fc-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(21,101,192,.2); display: flex;
  align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; margin-top: 1px;
}
.fc-text { font-size: 12.5px; line-height: 1.55; }
.fc-text strong { color: #fff; display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.fc-text a { color: #38BDF8; font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom-inner p,
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: #38BDF8; }

/* ─── UTILS ─────────────────────────────────────── */
.bg-white { background: var(--c-bg); }
.bg-soft  { background: var(--c-bg2); }
.bg-dark  { background: var(--g-hero); }
.text-center { text-align: center; }

/* ─── FUTURISTIC COMPUTER / TERMINAL CONSOLE WIDGET ────────── */
.hero-computer-window {
  background: rgba(11, 20, 38, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(21, 101, 192, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-family: 'Space Grotesk', monospace, sans-serif;
  transition: all 0.35s ease;
}
.hero-computer-window:hover {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(56, 189, 248, 0.3);
}

.terminal-header {
  background: rgba(7, 13, 28, 0.95);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.terminal-dots {
  display: flex;
  gap: 7px;
}
.terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-red   { background: #FF5F56; }
.dot-yellow{ background: #FFBD2E; }
.dot-green { background: #27C93F; }

.terminal-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}
.terminal-status {
  font-size: 10.5px;
  color: #38BDF8;
  background: rgba(56, 189, 248, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

/* Tabs */
.terminal-tabs {
  display: flex;
  background: rgba(15, 27, 54, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
}
.ttab {
  padding: 10px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ttab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.ttab.active {
  color: #38BDF8;
  background: rgba(11, 20, 38, 0.95);
  border-bottom: 2px solid #38BDF8;
}

/* Console Body */
.terminal-body {
  padding: 20px;
  min-height: 280px;
  font-family: 'Space Grotesk', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.t-prompt {
  color: #38BDF8;
  font-weight: 700;
}
.t-cmd {
  color: #F472B6;
  font-weight: 700;
}
.t-string {
  color: #4ADE80;
}
.t-keyword {
  color: #FBBF24;
}
.t-comment {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}
.t-out {
  margin: 10px 0 16px;
  padding-left: 12px;
  border-left: 2px solid rgba(56, 189, 248, 0.3);
}

.t-panel {
  display: none;
}
.t-panel.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.terminal-footer {
  background: rgba(7, 13, 28, 0.85);
  padding: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.tf-badge {
  color: #4ADE80;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
}
.tf-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
}

/* Blinking Terminal Cursor */
.t-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #38BDF8;
  vertical-align: middle;
  margin-left: 2px;
  animation: blinkCursor 0.7s infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


