/* ============================================================
   Complete AI Services - Main Stylesheet
   Colours: Navy Dark #0d1b2a | Navy Mid #112240 | Orange #f08c00 | Blue Accent #1e6fd9
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --navy-darkest: #080f1a;
  --navy-dark: #0d1b2a;
  --navy-mid: #112240;
  --navy-light: #1a3a5c;
  --orange: #f08c00;
  --orange-light: #ffaa33;
  --orange-dark: #c97400;
  --blue-accent: #1e6fd9;
  --blue-light: #4a9eff;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-light: #e2e8f0;
  --gray-mid: #94a3b8;
  --gray-dark: #475569;
  --text-dark: #1e293b;
  --gradient-orange: linear-gradient(135deg, #f08c00, #ffaa33);
  --gradient-blue: linear-gradient(135deg, #1e6fd9, #4a9eff);
  --gradient-dark: linear-gradient(135deg, #0d1b2a, #112240);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-orange: 0 8px 32px rgba(240, 140, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 88px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }

p { font-size: clamp(1rem, 1.5vw, 1.125rem); }

.text-orange { color: var(--orange); }
.text-blue { color: var(--blue-accent); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-mid); }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide { max-width: 1400px; }
.container--narrow { max-width: 800px; }

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(240, 140, 0, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(240, 140, 0, 0.2);
}

.section-label--light {
  color: var(--orange-light);
  background: rgba(255, 170, 51, 0.15);
  border-color: rgba(255, 170, 51, 0.3);
}

.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }

.section-header h2 { margin-bottom: 20px; }
.section-header p {
  color: var(--gray-dark);
  max-width: 640px;
  font-size: 1.125rem;
}

.section-header--center p { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: rgba(240, 140, 0, 0.12);
  color: var(--orange-light);
  border: 1.5px solid rgba(240, 140, 0, 0.40);
  box-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: rgba(240, 140, 0, 0.22);
  border-color: rgba(240, 140, 0, 0.65);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(240, 140, 0, 0.18);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-dark {
  background: var(--navy-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 44px; font-size: 1.0625rem; }
.btn--sm { padding: 10px 24px; font-size: 0.875rem; }

.btn svg, .btn i { font-size: 0.9em; flex-shrink: 0; }

.btn-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0;
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.navbar--scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
  height: 64px;
}

.navbar--light {
  background: transparent;
}

.navbar--solid {
  background: var(--navy-dark);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  width: 200px;
  height: 72px;
  position: relative;
}

.nav-logo img {
  max-width: none !important;
  width: 315px;
  height: auto;
  flex-shrink: 0;
  position: absolute;
  left: -58px;
  top: -60px;
}

.nav-logo-text {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active { color: var(--orange-light); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero Sections
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero--inner {
  min-height: 480px;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 111, 217, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 111, 217, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(64px, 64px); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(240, 140, 0, 0.12);
  top: -200px;
  right: -100px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(30, 111, 217, 0.15);
  bottom: -150px;
  left: -100px;
  animation-delay: -3s;
}

@keyframes glowPulse {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 1; transform: scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 140, 0, 0.12);
  border: 1px solid rgba(240, 140, 0, 0.25);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 44px;
}

.hero-cta-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(240, 140, 0, 0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 24px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.4;
  max-width: 180px;
  margin: 0 auto;
}

.stat-source {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  margin-top: 6px;
  font-style: italic;
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 140, 0, 0.2);
}

.card--dark {
  background: var(--navy-mid);
  border-color: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.card--dark:hover {
  border-color: rgba(240, 140, 0, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(240, 140, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: rgba(240, 140, 0, 0.2);
  transform: scale(1.05);
}

.card h3 { margin-bottom: 12px; }

.card p {
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.7;
}

.card--dark p { color: rgba(255, 255, 255, 0.65); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 20px;
  transition: var(--transition);
}

.card-link:hover { gap: 10px; }

/* ============================================================
   Section Backgrounds
   ============================================================ */
.bg-dark { background: var(--navy-dark); color: var(--white); }
.bg-darker { background: var(--navy-darkest); color: var(--white); }
.bg-mid { background: var(--navy-mid); color: var(--white); }
.bg-light { background: var(--off-white); }
.bg-white { background: var(--white); }

.bg-dark h2, .bg-darker h2, .bg-mid h2 { color: var(--white); }
.bg-dark p, .bg-darker p, .bg-mid p { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   Process Steps
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-light);
}

.step:last-child { border-bottom: none; }

.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  padding-top: 4px;
}

.step-content h4 { margin-bottom: 8px; }
.step-content p { font-size: 1rem; color: var(--gray-dark); }

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(240, 140, 0, 0.12), transparent);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 44px;
}

/* ============================================================
   Tags / Pills
   ============================================================ */
.tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(240, 140, 0, 0.1);
  color: var(--orange-dark);
  border: 1px solid rgba(240, 140, 0, 0.2);
}

.tag--blue {
  background: rgba(30, 111, 217, 0.1);
  color: var(--blue-accent);
  border-color: rgba(30, 111, 217, 0.2);
}

/* ============================================================
   Contact Form
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.label--light { color: rgba(255, 255, 255, 0.85); }

input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 140, 0, 0.12);
}

textarea { resize: vertical; min-height: 140px; }

.form--dark input, .form--dark textarea, .form--dark select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.form--dark input::placeholder,
.form--dark textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form--dark input:focus, .form--dark textarea:focus, .form--dark select:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 { margin-bottom: 12px; color: var(--white); }
.form-success p { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   Modal
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 26, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 36px 40px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.modal-header h3 { color: var(--white); margin-bottom: 6px; }
.modal-header p { color: rgba(255, 255, 255, 0.6); font-size: 0.9375rem; }

.modal-close {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  padding: 4px;
  line-height: 1;
}

.modal-close:hover { color: var(--white); }

.modal-body { padding: 32px 40px 40px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-darkest);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .footer-logo span { color: var(--orange); }

.footer-brand .footer-tagline {
  font-size: 0.8rem;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.875rem;
}

.footer-social { display: flex; gap: 12px; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  font-size: 0.875rem;
}

.social-link:hover {
  background: rgba(240, 140, 0, 0.15);
  border-color: rgba(240, 140, 0, 0.3);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ============================================================
   Dividers & Decorative
   ============================================================ */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
  margin: 20px 0;
}

.divider--center { margin: 20px auto; }

.orange-underline {
  position: relative;
  display: inline-block;
}

.orange-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
}

/* ============================================================
   Check Lists
   ============================================================ */
.check-list { display: flex; flex-direction: column; gap: 12px; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(240, 140, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--orange);
  margin-top: 2px;
}

/* ============================================================
   Animations (Scroll Reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Page-Specific: Homepage
   ============================================================ */
.home-hero { min-height: 100vh; }

.home-hero .hero-content {
  max-width: 720px;
}

.trust-logos {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-logos p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.problem-section .content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-section .big-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.problem-section .big-quote span { color: var(--orange); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  display: flex;
  gap: 20px;
}

.why-card:hover {
  border-color: rgba(240, 140, 0, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: 0.9375rem; color: var(--gray-dark); }

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

.process-teaser::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue-accent));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  margin: 0 auto 20px;
}

.process-step h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================================
   Page-Specific: About
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  height: 280px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-photo-placeholder {
  font-size: 5rem;
  opacity: 0.2;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-info { padding: 28px; }

.team-info h3 { margin-bottom: 4px; font-size: 1.25rem; }

.team-role {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.team-info p { font-size: 0.9375rem; color: var(--gray-dark); }

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

.value-card {
  padding: 36px 28px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 140, 0, 0.2);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 0.9375rem; color: var(--gray-dark); }

/* ============================================================
   Page-Specific: Services
   ============================================================ */
.service-category {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-light);
}

.service-category:last-child { border-bottom: none; }

.service-category-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-category-inner.reverse { direction: rtl; }
.service-category-inner.reverse > * { direction: ltr; }

.service-visual {
  border-radius: var(--radius-md);
  background: var(--navy-mid);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(240, 140, 0, 0.15), transparent 70%);
}

.service-visual-icon {
  font-size: 5rem;
  position: relative;
  z-index: 1;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.service-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.service-content p { margin-bottom: 24px; color: var(--gray-dark); }

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--gray-dark);
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   Page-Specific: Process
   ============================================================ */
.process-full { counter-reset: step-counter; }

.process-full-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: flex-start;
}

.process-full-step:last-child { border-bottom: none; }

.process-step-left {
  text-align: center;
  position: sticky;
  top: 100px;
}

.step-num-large {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(240, 140, 0, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.step-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.process-step-content h3 { margin-bottom: 16px; }
.process-step-content p { margin-bottom: 20px; color: var(--gray-dark); }

.timeline-dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.timeline-dot {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-dark);
}

.timeline-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   Page-Specific: Contact
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; color: var(--white); }
.contact-info > p { color: rgba(255, 255, 255, 0.65); margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(240, 140, 0, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail-text strong {
  display: block;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 3px;
}

.contact-detail-text span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
}

.what-happens {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px;
}

.what-happens h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.next-steps { display: flex; flex-direction: column; gap: 14px; }

.next-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.next-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.next-step p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.contact-form-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, 0.07); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-category-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-category-inner.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-full-step { grid-template-columns: 80px 1fr; gap: 32px; }
  .problem-section .content-split { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 80px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-cta { width: 100%; justify-content: center; margin: 8px 0 0; }
  .nav-toggle { display: flex; }

  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .process-teaser { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-teaser::before { display: none; }

  .service-features { grid-template-columns: 1fr; }

  .modal-header { padding: 28px 24px 20px; }
  .modal-body { padding: 24px 24px 32px; }

  .contact-form-card { padding: 32px 24px; }

  .hero-scroll { display: none; }

  .process-full-step { grid-template-columns: 1fr; gap: 20px; }
  .process-step-left { text-align: left; position: static; display: flex; align-items: center; gap: 16px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .stat-item:last-child { border-bottom: none; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .process-teaser { grid-template-columns: 1fr; }
}

/* ============================================================
   Neural Canvas
   ============================================================ */
.neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero { pointer-events: auto; }
.hero .neural-canvas { pointer-events: auto; }

/* ============================================================
   Premium Hero Stat Cards
   ============================================================ */
.hero-stats-visual {
  position: relative;
  z-index: 1;
}

.hero-main-card {
  background: rgba(17, 34, 64, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

.hero-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4ade80;
}

.hero-card-status .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 2s ease-in-out infinite;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.metric-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px 18px;
  transition: var(--transition);
}

.metric-tile:hover {
  border-color: rgba(240, 140, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.metric-tile-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.metric-tile-icon.orange {
  background: rgba(240, 140, 0, 0.15);
  color: var(--orange);
}

.metric-tile-icon.blue {
  background: rgba(30, 111, 217, 0.15);
  color: var(--blue-light);
}

.metric-tile-icon.green {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}

.metric-tile-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-tile-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}

.metric-tile-wide {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.metric-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.metric-bar-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.metric-bar-label i { color: var(--orange); font-size: 0.75rem; }

.metric-bar-value {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--orange);
}

.metric-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), #ffaa33);
  animation: barGrow 2s ease-out forwards;
}

@keyframes barGrow { from { width: 0; } }

.hero-tag-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 4px;
}

.hero-chip {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(240, 140, 0, 0.25);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(240, 140, 0, 0.06);
}

.hero-float-badge {
  position: absolute;
  background: rgba(17, 34, 64, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 4s ease-in-out infinite alternate;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-float-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero-float-badge .badge-icon.orange {
  background: rgba(240, 140, 0, 0.2);
  color: var(--orange);
}

.hero-float-badge .badge-icon.green {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.badge-text-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

.badge-text-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.fb-tl { top: -24px; right: -24px; animation-delay: 0s; }
.fb-bl { bottom: 20px; left: -24px; animation-delay: -2s; }

@keyframes floatBadge {
  from { transform: translateY(0px); }
  to { transform: translateY(-12px); }
}

/* ============================================================
   Premium FA Icon Containers
   ============================================================ */
.fa-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.fa-icon-box.orange {
  background: rgba(240, 140, 0, 0.1);
  color: var(--orange);
  border: 1px solid rgba(240, 140, 0, 0.15);
}

.fa-icon-box.blue {
  background: rgba(30, 111, 217, 0.1);
  color: var(--blue-light);
  border: 1px solid rgba(30, 111, 217, 0.15);
}

.card:hover .fa-icon-box.orange,
.why-card:hover .fa-icon-box.orange {
  background: rgba(240, 140, 0, 0.2);
  transform: scale(1.08) rotate(-4deg);
}

/* Premium service visual using FA icons */
.service-visual-fa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.svc-icon-main {
  font-size: 4.5rem;
  color: rgba(240, 140, 0, 0.9);
  filter: drop-shadow(0 0 32px rgba(240, 140, 0, 0.4));
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-visual-box:hover .svc-icon-main {
  transform: scale(1.08);
  filter: drop-shadow(0 0 48px rgba(240, 140, 0, 0.6));
}

.svc-icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 140, 0, 0.12);
  animation: ringPulse 3s ease-in-out infinite;
}

.svc-icon-ring:nth-child(1) { width: 120px; height: 120px; }
.svc-icon-ring:nth-child(2) { width: 180px; height: 180px; animation-delay: 0.5s; }
.svc-icon-ring:nth-child(3) { width: 240px; height: 240px; animation-delay: 1s; }

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.15; transform: scale(1.03); }
}

/* Premium problem section icons */
.problem-fa-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(240, 140, 0, 0.1);
  border: 1px solid rgba(240, 140, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
}

.problem-item:hover .problem-fa-icon {
  background: rgba(240, 140, 0, 0.18);
  transform: scale(1.05);
}

/* Premium value/stone card icon */
.card-fa-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(240, 140, 0, 0.08);
  border: 1px solid rgba(240, 140, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--orange);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.value-card:hover .card-fa-icon,
.stone-card:hover .card-fa-icon {
  background: rgba(240, 140, 0, 0.16);
  transform: scale(1.08) rotate(-4deg);
}

/* Premium gradient border card hover */
.service-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--gray-light);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(240,140,0,0.6), rgba(30,111,217,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover::after { opacity: 1; }

.service-card-fa-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(240, 140, 0, 0.08);
  border: 1px solid rgba(240, 140, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card-fa-icon {
  background: rgba(240, 140, 0, 0.16);
  transform: scale(1.06) rotate(-4deg);
}

/* Logo image sizing — controlled above */

/* Ensure logo image shows; only show text fallback when image fails */
.nav-logo img.hidden { display: none; }

@media (max-width: 768px) {
  .metric-row { grid-template-columns: 1fr 1fr; }
  .hero-float-badge { display: none; }
}
