/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0F172A;
  background: #F8FAFC;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0F172A;
  --secondary: #334155;
  --accent: #0369A1;
  --accent-light: #0EA5E9;
  --accent-dark: #0c5282;
  --spoed: #DC2626;
  --spoed-dark: #b91c1c;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --muted: #E8ECF1;
  --border: #E2E8F0;
  --text-muted: #64748B;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(3,105,161,0.4);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3,105,161,0.5);
}
.btn-spoed {
  background: var(--spoed);
  color: white;
  box-shadow: 0 4px 14px rgba(220,38,38,0.4);
}
.btn-spoed:hover {
  background: var(--spoed-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,38,38,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== SPOED BANNER ===== */
.spoed-banner {
  background: var(--spoed);
  color: white;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 200;
}
.spoed-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.spoed-dot {
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.spoed-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-weight: 600;
  transition: background var(--transition);
}
.spoed-btn:hover { background: rgba(255,255,255,0.35); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { display: flex; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 1.125rem; font-weight: 700; color: var(--primary); }
.logo-sub { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--accent); background: rgba(3,105,161,0.06); }
.nav-links .nav-cta {
  background: var(--accent);
  color: white;
  margin-left: 0.5rem;
  box-shadow: 0 2px 8px rgba(3,105,161,0.3);
}
.nav-links .nav-cta:hover { background: var(--accent-dark); color: white; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(3,105,161,0.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-accent {
  background: linear-gradient(135deg, #38BDF8, #7DD3FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-dark {
  background: var(--primary);
  color: white;
}
.section-accent { background: #EFF6FF; }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(3,105,161,0.1);
  color: var(--accent);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.875rem;
}
.section-badge.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
  color: white;
  border: none;
}
.service-card.featured::before { background: var(--accent-light); }
.service-card.featured p { color: rgba(255,255,255,0.75); }
.service-card.featured .service-list li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.15); }
.service-card.featured .service-list li::before { color: #38BDF8; }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(3,105,161,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-card.featured .service-icon {
  background: rgba(255,255,255,0.15);
  color: #38BDF8;
}
.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-list { display: flex; flex-direction: column; gap: 0.4rem; }
.service-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-list li::before {
  content: '→';
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.service-list li:last-child { border-bottom: none; }

/* SPOED CARD */
.spoed-card {
  background: linear-gradient(135deg, #7F1D1D 0%, var(--spoed) 100%);
  color: white;
  border: none;
}
.spoed-card h3 { color: white; }
.spoed-card p { color: rgba(255,255,255,0.85); }
.spoed-icon { background: rgba(255,255,255,0.2); color: white; }
.spoed-pulse {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 12px; height: 12px;
  background: #FCA5A5;
  border-radius: 50%;
  animation: spoed-anim 1.5s ease-in-out infinite;
}
@keyframes spoed-anim {
  0% { box-shadow: 0 0 0 0 rgba(252,165,165,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(252,165,165,0); }
  100% { box-shadow: 0 0 0 0 rgba(252,165,165,0); }
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.process-step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}
.process-step:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.625rem;
}
.step-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.process-connector {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin-top: 3rem;
  align-self: flex-start;
}

/* ===== SECTORS ===== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.sector-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sector-card:hover img { transform: scale(1.05); }
.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background var(--transition);
}
.sector-card:hover .sector-overlay {
  background: linear-gradient(to top, rgba(3,105,161,0.85) 0%, rgba(15,23,42,0.3) 60%);
}
.sector-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
.sector-overlay p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.3s ease;
}
.sector-card:hover .sector-overlay p { opacity: 1; transform: translateY(0); }

/* ===== USP ===== */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.usp-left h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.usp-left p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7; }
.usp-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.usp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.usp-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(3,105,161,0.2);
  transform: translateY(-2px);
}
.usp-icon {
  width: 44px; height: 44px;
  background: rgba(3,105,161,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.usp-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.usp-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

/* ===== EQUIPMENT ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.equipment-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.equipment-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.equipment-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.equipment-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.equipment-item:hover .equipment-img-wrap img { transform: scale(1.06); }
.equipment-item h4 {
  font-size: 1rem;
  font-weight: 700;
  padding: 1.25rem 1.25rem 0.5rem;
}
.equipment-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0 1.25rem 1.25rem;
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-card {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.about-card-icon {
  width: 40px; height: 40px;
  background: rgba(3,105,161,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.about-card strong { display: block; font-size: 0.9375rem; font-weight: 700; }
.about-card span { font-size: 0.8125rem; color: var(--text-muted); }
.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.about-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.value-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.company-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.info-row svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-spoed {
  background: linear-gradient(135deg, #7F1D1D 0%, var(--spoed) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.contact-spoed h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.contact-spoed p { color: rgba(255,255,255,0.85); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.spoed-pulse-lg {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 16px; height: 16px;
  background: #FCA5A5;
  border-radius: 50%;
  animation: spoed-anim 1.5s ease-in-out infinite;
}
.contact-details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-detail-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-detail-item:first-child { padding-top: 0; }
.contact-detail-item strong { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-detail-item a, .contact-detail-item span { font-size: 0.9375rem; color: var(--primary); line-height: 1.5; }
.contact-detail-item a:hover { color: var(--accent); }

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  color: var(--primary);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--primary);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(3,105,161,0.15);
  background: white;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94A3B8; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 0.625rem !important;
  margin-bottom: 1.25rem !important;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent);
}
.form-check label { font-size: 0.875rem; color: var(--text-muted); cursor: pointer; }
.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.875rem;
  line-height: 1.5;
}
.form-note a { color: var(--accent); font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: white;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-col li svg { flex-shrink: 0; margin-top: 3px; opacity: 0.5; }
.footer-col a, .footer-col span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }

/* ===== FLOATING SPOED ===== */
.floating-spoed {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--spoed);
  color: white;
  padding: 0.875rem 1.375rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(220,38,38,0.5);
  transition: all var(--transition);
  text-decoration: none;
}
.floating-spoed:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(220,38,38,0.6);
}
.floating-spoed-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  animation: float-pulse 2s ease-in-out infinite;
}
@keyframes float-pulse {
  0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

/* ===== FAQ PAGE ===== */
.faq-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  color: white;
}
.faq-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.faq-hero p { font-size: 1.125rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }
.faq-section { padding: 5rem 0; }
.faq-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.faq-cat-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--secondary);
  background: white;
  transition: all var(--transition);
  cursor: pointer;
}
.faq-cat-btn.active, .faq-cat-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { border-color: var(--accent); box-shadow: 0 4px 16px rgba(3,105,161,0.1); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--primary);
  gap: 1rem;
  user-select: none;
}
.faq-question:hover { background: rgba(3,105,161,0.03); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--accent); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
}
.faq-cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.faq-cta p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.0625rem; }
.faq-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .process-connector { display: none; }
  .usp-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.125rem; padding: 0.75rem 2rem; }
  .menu-toggle { display: flex; z-index: 1000; position: relative; }
  .hero-stats { gap: 0.5rem; }
  .stat-divider { display: none; }
  .stat { flex: 1; min-width: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .usp-right { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-spoed span { display: none; }
  .floating-spoed { padding: 1rem; border-radius: 50%; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .trust-items { gap: 0.75rem 1.5rem; }
}

@media (max-width: 480px) {
  .equipment-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .section { padding: 3.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
