/* ============================================================
   VironixAutomation — Main Stylesheet
   File: css/style.css
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #050F1E;
  --navy2:      #0A1929;
  --navy3:      #0D1F35;
  --electric:   #00D4FF;
  --electric2:  #00A8CC;
  --accent:     #FF6B35;
  --accent2:    #E55A25;
  --green:      #00C864;
  --steel:      #8FA3B1;
  --steel2:     #B8CDD8;
  --white:      #F5F9FF;
  --card-bg:    #0D1F35;
  --card-border: rgba(0, 212, 255, 0.13);
  --text-muted: rgba(143, 163, 177, 0.9);
  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --gutter:     clamp(1.25rem, 5vw, 6rem);
  --max:        1300px;
  --radius:     12px;
  --radius-lg:  20px;
  --tr:         0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad { padding: clamp(4rem, 9vw, 9rem) 0; }
.section-pad-sm { padding: clamp(2.5rem, 5vw, 5rem) 0; }

/* ── TYPOGRAPHY ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--electric);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  border-left: 3px solid var(--electric);
  padding-left: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  font-weight: 300;
  line-height: 1.75;
}

.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

.text-electric { color: var(--electric); }
.text-accent   { color: var(--accent); }
.text-green    { color: var(--green); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
}
.btn-primary  { background: var(--electric); color: var(--navy); }
.btn-primary:hover  { background: var(--electric2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,0.3); }
.btn-accent   { background: var(--accent); color: #fff; }
.btn-accent:hover   { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.3); }
.btn-outline  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover  { border-color: var(--electric); color: var(--electric); }
.btn-sm { padding: 0.6rem 1.35rem; font-size: 0.88rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.14), transparent);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(5, 15, 30, 0.88);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  transition: var(--tr);
}
#navbar.scrolled {
  background: rgba(5, 15, 30, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,212,255,0.25));
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--white);
}
.logo-name span { color: var(--electric); }
.logo-tag {
  font-size: 0.63rem;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--steel2);
  transition: color var(--tr);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--electric);
  transform: scaleX(0);
  transition: transform var(--tr);
}
.nav-links a:hover { color: var(--electric); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--electric) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.35rem;
  border-radius: 7px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--electric2) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(5, 15, 30, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem var(--gutter);
  z-index: 999;
  border-bottom: 1px solid rgba(0,212,255,0.1);
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--tr);
}
.mob-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mob-menu ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mob-menu a { font-size: 1.05rem; color: var(--steel2); font-weight: 500; }
.mob-menu .mob-cta {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--electric);
  color: var(--navy);
  padding: 0.75rem 1.75rem;
  border-radius: 7px;
  font-weight: 700;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 60% 40%, rgba(0,168,204,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(255,107,53,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.22);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--electric);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--electric);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.startup-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.22);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.15);
  position: relative;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.88) saturate(1.2);
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.07) 0%, transparent 60%);
}
.hero-stamp {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(5,15,30,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,212,255,0.22);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-stamp img { height: 28px; width: auto; }
.hero-stamp span { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; }
.hero-stamp span b { color: var(--electric); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--electric);
  line-height: 1;
}
.stat-label { font-size: 0.73rem; color: var(--text-muted); margin-top: 4px; }

/* ── MARQUEE ── */
.marquee-section {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,212,255,0.07);
  border-bottom: 1px solid rgba(0,212,255,0.07);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--steel);
  padding: 0 0.5rem;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--electric); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STARTUP BAND ── */
.startup-band {
  background: linear-gradient(135deg, rgba(255,107,53,0.06), rgba(0,212,255,0.04));
  border-top: 1px solid rgba(255,107,53,0.1);
  border-bottom: 1px solid rgba(255,107,53,0.1);
}
.startup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.startup-left h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 0.4rem; }
.startup-left p  { color: var(--text-muted); font-size: 0.9rem; max-width: 540px; font-weight: 300; }
.startup-pills   { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.pill {
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  padding: 0.28rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--tr);
}
.why-card:hover { border-color: rgba(0,212,255,0.32); transform: translateY(-4px); }
.why-icon {
  width: 50px; height: 50px;
  background: rgba(0,212,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.why-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── RACKING PRODUCTS ── */
.racking-bg { background: var(--navy2); }

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.75rem; }

.rack-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--tr);
  position: relative;
  box-shadow: var(--shadow-card);
}
.rack-card:hover { border-color: rgba(0,212,255,0.38); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.45), var(--shadow-glow); }

/* 3D image container */
.rack-img-3d {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0d1f35, #071525);
  perspective: 1200px;
  cursor: pointer;
}
.rack-img-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.06) 0%, transparent 70%);
  z-index: 1;
}
.rack-img-3d img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(1.15) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  display: block;
}
.rack-card:hover .rack-img-3d img {
  transform: scale(1.08) rotateY(-3deg) rotateX(2deg);
  filter: brightness(0.95) saturate(1.25) contrast(1.08);
}
.rack-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,15,30,0.95) 0%, rgba(5,15,30,0.3) 45%, transparent 70%);
  z-index: 2;
}
.rack-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,212,255,0.14);
  border: 1px solid rgba(0,212,255,0.35);
  border-radius: 6px;
  padding: 4px 11px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--electric);
  z-index: 3;
}
.rack-3d-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 5px;
  padding: 3px 9px;
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--electric);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rack-body { padding: 1.6rem; }
.rack-name { font-family: var(--font-head); font-size: 1.22rem; font-weight: 700; margin-bottom: 0.5rem; }
.rack-desc { font-size: 0.89rem; color: var(--text-muted); margin-bottom: 1.1rem; line-height: 1.68; }
.rack-specs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.25rem; }
.rack-spec {
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 0.73rem;
  color: var(--steel2);
}
.rack-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--electric);
  transition: gap var(--tr);
}
.rack-cta-link:hover { gap: 10px; }

/* ── SOFTWARE SECTION ── */
.software-bg { background: var(--navy2); }

.software-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.sw-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.sw-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.08);
  border-radius: 10px;
  transition: var(--tr);
}
.sw-feat:hover { border-color: rgba(0,212,255,0.2); }
.sw-feat-icon {
  width: 28px; height: 28px;
  background: rgba(0,212,255,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--electric);
  flex-shrink: 0;
  margin-top: 2px;
}
.sw-feat h4 { font-size: 0.93rem; font-weight: 600; margin-bottom: 2px; }
.sw-feat p  { font-size: 0.83rem; color: var(--text-muted); }

.sw-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,107,53,0.15);
  box-shadow: var(--shadow-card);
}
.sw-visual img { width: 100%; height: 400px; object-fit: cover; filter: brightness(0.88); display: block; }

.sw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.sw-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.sw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--electric));
  opacity: 0;
  transition: var(--tr);
}
.sw-card:hover { border-color: rgba(0,212,255,0.28); transform: translateY(-5px); }
.sw-card:hover::before { opacity: 1; }
.sw-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.sw-icon.o { background: rgba(255,107,53,0.1); }
.sw-icon.b { background: rgba(0,212,255,0.1); }
.sw-icon.g { background: rgba(0,200,100,0.1); }
.sw-card h3 { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; margin-bottom: 0.6rem; }
.sw-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.67; margin-bottom: 1.25rem; }
.sw-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.sw-tag {
  font-size: 0.71rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 5px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.13);
  color: var(--steel2);
}

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 0; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
}
.step { text-align: center; padding: 1.5rem 0.75rem; }
.step-num {
  width: 56px; height: 56px;
  background: rgba(0,212,255,0.09);
  border: 1px solid rgba(0,212,255,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--electric);
  margin: 0 auto 1.1rem;
}
.step h4 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.45rem; }
.step p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--navy2); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem; right: 1.25rem;
  font-size: 4.5rem;
  font-family: serif;
  color: rgba(0,212,255,0.09);
  line-height: 1;
}
.stars { color: #FFB800; font-size: 0.82rem; margin-bottom: 0.85rem; letter-spacing: 2px; }
.testi-text { font-size: 0.91rem; color: var(--steel2); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,212,255,0.28), rgba(255,107,53,0.28));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-role { font-size: 0.76rem; color: var(--text-muted); }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.contact-info p  { color: var(--text-muted); margin-bottom: 2rem; font-weight: 300; }
.contact-items { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  transition: var(--tr);
}
.contact-item:hover { border-color: rgba(0,212,255,0.28); }
.c-icon {
  width: 40px; height: 40px;
  background: rgba(0,212,255,0.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.contact-item p  { font-size: 0.81rem; color: var(--text-muted); margin: 0; }
.contact-item a  { font-size: 0.81rem; color: var(--electric); }

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}
.contact-form h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.81rem; font-weight: 500; color: var(--steel2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.13);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--tr);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(0,212,255,0.45); background: rgba(0,212,255,0.03); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(143,163,177,0.5); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy2); }
.form-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--electric);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--font-head);
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--electric2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,0.3); }

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--tr);
  font-size: 1.6rem;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, rgba(0,212,255,0.09), rgba(255,107,53,0.06));
  border-top: 1px solid rgba(0,212,255,0.1);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  text-align: center;
}
.cta-logo { display: flex; justify-content: center; margin-bottom: 2rem; }
.cta-logo img { height: 64px; width: auto; filter: drop-shadow(0 0 18px rgba(0,212,255,0.35)); }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.cta-band p  { color: var(--text-muted); max-width: 520px; margin: 0 auto 2.5rem; font-weight: 300; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--navy2);
  border-top: 1px solid rgba(0,212,255,0.07);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.87rem; color: var(--text-muted); max-width: 290px; font-weight: 300; line-height: 1.75; margin-top: 1rem; }
.footer-logo    { height: 46px; width: auto; filter: drop-shadow(0 0 8px rgba(0,212,255,0.2)); }
.footer-name    { font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; color: var(--white); margin-top: 6px; }
.footer-name span { color: var(--electric); }
.footer-col h4  { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; margin-bottom: 1.3rem; color: var(--white); }
.footer-col ul  { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a { font-size: 0.84rem; color: var(--text-muted); transition: color var(--tr); }
.footer-col li a:hover { color: var(--electric); }
.footer-bottom {
  border-top: 1px solid rgba(0,212,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.81rem; color: var(--text-muted); }
.footer-copy a { color: var(--electric); }
.footer-socials { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--steel2);
  transition: var(--tr);
  text-decoration: none;
}
.social-btn:hover { border-color: rgba(0,212,255,0.4); color: var(--electric); background: rgba(0,212,255,0.06); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .software-intro { gap: 3rem; }
}

@media (max-width: 900px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }
  .software-intro  { grid-template-columns: 1fr; }
  .contact-wrap    { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .logo-tag  { display: none; }
  .hero h1   { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .startup-inner { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .sw-grid   { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .stat-num { font-size: 1.3rem; }
}
