/* PYRO IT — Shared Styles (design system matches index.html / services.html) */
:root {
  /* Core palette */
  --navy: #080e1a;
  --navy-2: #0c1628;
  --navy-3: #111f35;
  --navy-4: #162845;
  --teal: #00d4c8;
  --teal-2: #00b8ad;
  --teal-dim: rgba(0,212,200,0.12);
  --orange: #ff6b35;
  --orange-2: #e5531f;
  --white: #ffffff;
  --off: #e8f0f7;
  --muted: #7a9bb5;
  --dimmer: #3a5570;
  --sans: 'Inter', sans-serif;
  --r8: 8px;
  --r16: 16px;
  --r24: 24px;
  --ease: cubic-bezier(0.23,1,0.32,1);

  /* Backward-compat aliases */
  --navy-mid: #0c1628;
  --navy-light: #111f35;
  --text-light: #7a9bb5;
  --text-mid: #e8f0f7;
  --teal-glow: rgba(0,212,200,0.12);
  --font-head: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--muted);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ── SECTIONS ── */
.section { padding: 100px 2.5rem; }
.section-alt { background: var(--navy-2); }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.section-title,
.section-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -0.025em; line-height: 1.12;
  margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 560px; margin-top: 1rem; line-height: 1.7; }

/* ── DIVIDERS ── */
.teal-divider, .divider-teal {
  width: 48px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), #7ffffc);
  margin: 1.25rem 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.9rem;
  letter-spacing: 0.05em; padding: 15px 34px;
  border-radius: var(--r8); transition: all .35s var(--ease);
  border: none; cursor: pointer;
}
.btn-primary,
.btn.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--teal), var(--teal-2)); color: var(--navy);
  font-size: 0.9rem; font-weight: 800; letter-spacing: 0.05em; padding: 15px 34px;
  border-radius: var(--r8); transition: all .35s var(--ease);
  box-shadow: 0 4px 20px rgba(0,212,200,0.2); border: none; cursor: pointer;
}
.btn-primary:hover,
.btn.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(0,212,200,0.35); }
.btn-ghost,
.btn-outline,
.btn.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.03); color: var(--off);
  font-size: 0.9rem; font-weight: 700; padding: 15px 34px;
  border-radius: var(--r8); border: 1px solid rgba(255,255,255,0.14);
  transition: all .35s var(--ease); cursor: pointer;
}
.btn-ghost:hover,
.btn-outline:hover,
.btn.btn-outline:hover {
  border-color: rgba(0,212,200,0.5); color: var(--teal);
  transform: translateY(-3px); background: rgba(0,212,200,0.05);
}
.btn-orange {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white); font-size: 0.9rem; font-weight: 800;
  padding: 15px 34px; border-radius: var(--r8);
  transition: all .35s var(--ease); box-shadow: 0 4px 20px rgba(255,107,53,0.22);
  border: none; cursor: pointer;
}
.btn-orange:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(255,107,53,0.35); }

/* ── CARDS ── */
.card {
  background: var(--navy-3);
  border: 1px solid rgba(0,212,200,0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(0,212,200,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--teal-glow); border: 1px solid rgba(0,212,200,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; color: var(--muted); }

/* ── STATS STRIP ── */
.stats-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem; text-align: center;
}
.stat-num { font-family: 'Inter', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--teal); line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--navy-3); border: 1px solid rgba(0,212,200,0.08);
  border-radius: 12px; padding: 1.75rem; position: relative;
}
.testimonial::before { content: '"'; position: absolute; top: 12px; right: 20px; font-size: 5rem; line-height: 1; color: var(--teal); opacity: 0.07; font-family: Georgia; }
.stars { color: #f5c542; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 3px; }
.testimonial p { font-size: 0.93rem; color: var(--muted); line-height: 1.78; }
.testimonial-author { margin-top: 1rem; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--white); font-weight: 700; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy-3);
  border: 1px solid rgba(0,212,200,0.15);
  border-radius: 28px; padding: 5rem 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(0,212,200,0.1) 0%, transparent 65%); pointer-events: none; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: var(--white); letter-spacing: -0.03em; margin-bottom: 1rem; }
.cta-banner p { color: var(--muted); max-width: 500px; margin: 0 auto 2rem; line-height: 1.75; }

/* ── HERO TAG (page label above h1) ── */
.hero-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.25rem;
}

/* ── GRID UTILS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── BADGE ── */
.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,212,200,0.08); border: 1px solid rgba(0,212,200,0.2); color: var(--teal); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 14px; border-radius: 30px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 1.5rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Mobile-only nav contact link */
.nav-contact-mobile { display: none !important; }
@media (max-width: 900px) {
  .nav-contact-mobile { display: block !important; }
}

/* ── MOBILE OPTIMISATION (shared) — max-width: 768px ── */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  /* Section padding */
  .section { padding: 48px 1.25rem; }
  .container { padding: 0; }

  /* Typography */
  .section-title,
  .section-h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .section-sub { font-size: 0.9rem; }

  /* Grids: 1 col */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1rem; }

  /* Cards */
  .card { padding: 1.25rem; }

  /* CTA banner */
  .cta-banner { padding: 3rem 1.25rem; border-radius: 16px; }
  .cta-banner h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  /* Buttons */
  .btn,
  .btn-primary,
  .btn-ghost,
  .btn-outline,
  .btn-orange {
    min-height: 48px;
    padding: 14px 20px;
  }

  /* Footer: single column, centered */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-brand-logo { justify-content: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-col ul li a { justify-content: center; }
  .footer-contact-row { justify-content: center; }

  /* Stats strip: wrap 2 per row */
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .stat-num { font-size: 2.2rem; }

  /* WhatsApp float */
  .wa-float { bottom: 20px; right: 16px; width: 54px; height: 54px; }
}
