/* ============================================================
   LilTech Solutions – styles.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0A1628;
  --navy2:  #0F1E36;
  --slate:  #1C2E4A;
  --blue:   #1A7FE8;
  --cyan:   #00C8FF;
  --steel:  #E4EDF7;
  --muted:  #8FA3BE;
  --white:  #FFFFFF;
  --text:   #C9D8EA;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,200,255,0.08);
}

.nav-logo img {
  height: 38px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: var(--cyan);
  padding: 9px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 65% 50%, rgba(26,127,232,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(0,200,255,0.10) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cyan);
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: #1568c8; transform: translateY(-1px); }

.btn-ghost {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  color: var(--cyan);
  border: 1.5px solid rgba(0,200,255,0.4);
  border-radius: 5px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(0,200,255,0.06);
}

/* ─── HERO STATS ───────────────────────────────────────── */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: auto;
  padding-left: 60px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,200,255,0.12);
  border-radius: 10px;
  padding: 20px 28px;
  min-width: 190px;
  backdrop-filter: blur(8px);
}

.stat-card .num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card .label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ─── TICKER ───────────────────────────────────────────── */
.ticker-wrap {
  background: var(--slate);
  border-top: 1px solid rgba(0,200,255,0.1);
  border-bottom: 1px solid rgba(0,200,255,0.1);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 60px;
}

.ticker-track span strong {
  color: var(--cyan);
  margin-right: 8px;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTIONS SHARED ──────────────────────────────────── */
section { padding: 90px 5%; }

.section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}

/* ─── SERVICES ─────────────────────────────────────────── */
.services-bg { background: var(--navy2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.2s, background 0.25s;
  cursor: default;
}

.service-card:hover {
  border-color: rgba(0,200,255,0.3);
  background: rgba(0,200,255,0.04);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(26,127,232,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

.service-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  text-decoration: none;
  text-transform: uppercase;
}

.service-card .learn svg {
  width: 14px; height: 14px;
  stroke: var(--blue); fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}

.service-card:hover .learn svg { transform: translateX(3px); }

/* ─── WHY US ───────────────────────────────────────────── */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-visual { position: relative; }

.why-map-box {
  background: var(--slate);
  border: 1px solid rgba(0,200,255,0.1);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}

.why-map-box svg {
  width: 100%;
  max-width: 340px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-check svg {
  width: 18px; height: 18px;
  stroke: var(--cyan); fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}

.why-list h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-list p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── PROCESS ──────────────────────────────────────────── */
.process-bg { background: var(--navy2); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.3), transparent);
}

.process-step {
  padding: 0 24px;
  text-align: center;
}

.step-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--navy);
  background: var(--cyan);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

.process-step h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── INDUSTRIES ───────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.industry-pill {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.industry-pill:hover {
  border-color: rgba(0,200,255,0.25);
  background: rgba(0,200,255,0.04);
}

.industry-pill svg {
  width: 22px; height: 22px;
  stroke: var(--blue); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.industry-pill span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ─── CTA BANNER ───────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0d2444 0%, #0a1628 100%);
  border-top: 1px solid rgba(0,200,255,0.1);
  border-bottom: 1px solid rgba(0,200,255,0.1);
  padding: 80px 5%;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta-section h2 span { color: var(--cyan); }

.cta-section p {
  color: var(--text);
  font-size: 0.97rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ───────────────────────────────────────────── */
footer {
  background: #07101e;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 34px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cyan); }

.footer-contact p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-contact p strong { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--cyan);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}

/* ─── MOBILE MENU ──────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy2);
  border-bottom: 1px solid rgba(0,200,255,0.1);
  padding: 20px 5%;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps    { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-steps::before { display: none; }
  .industries-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .hero-stats       { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger        { display: flex; }
  .hero             { padding-top: 100px; }
  .why-inner        { grid-template-columns: 1fr; }
  .why-visual       { display: none; }
  .services-grid    { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; }
  .industries-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
}
