/* ========================================
   SHARED STYLES — Cyberium Group
   ======================================== */

/* === RESET & CUSTOM PROPERTIES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #FAFBFC;
  --bg-white: #FFFFFF;
  --bg-warm: #F6F5F2;
  --bg-accent: #F0F7FF;
  --border: #E8EAED;
  --border-light: #F0F1F3;
  --text-primary: #0F1A2A;
  --text-secondary: #4A5568;
  --text-muted: #8C95A6;
  --accent: #1B6AC9;
  --accent-deep: #0F4C8A;
  --accent-light: #E8F2FF;
  --accent-warm: #D4940A;
  --accent-warm-bg: #FFF8E7;
  --success: #16794A;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'DM Serif Display', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #C4C9D4; border-radius: 3px; }

/* === SKIP LINK (accessibility) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* === FOCUS STYLES (accessibility) === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ========================================
   NAVIGATION
   ======================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-mark {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.logo-text { display: none; }
.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(0,0,0,0.03); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 10px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px; min-width: 240px;
  box-shadow: var(--shadow-lg); z-index: 100; margin-top: 4px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 13px; color: var(--text-secondary); font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--text-primary); }

.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
}
.nav-cta:hover { background: var(--accent-deep); }

/* === Mobile Toggle === */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1100;
}
.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s ease;
  transform-origin: center;
}
/* Hamburger → X animation */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === Mobile Nav Drawer === */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
  }
  .nav-links.show {
    right: 0;
  }
  .nav-links a {
    width: 100%;
    font-size: 15px;
    padding: 12px 14px;
  }
  /* Mobile dropdowns expand on tap */
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    margin-top: 0;
    padding: 0 0 0 16px;
    min-width: 0;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }
  .nav-dropdown.open:hover .nav-dropdown-menu {
    display: block;
  }
  /* Overlay behind drawer */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(27,106,201,0.2);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,106,201,0.25); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-outline:hover { border-color: #C4C9D4; background: rgba(0,0,0,0.01); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

/* ========================================
   SECTION STYLING
   ======================================== */
section { padding: 100px 0; }
.section-header { margin-bottom: 56px; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* ========================================
   SERVICES
   ======================================== */
.services { background: var(--bg-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.2s ease;
  cursor: default;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.service-card:hover::after { opacity: 1; }
.service-icon-wrap {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.service-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 3px 9px;
  border-radius: 100px;
}

/* ========================================
   ABOUT / WHY US
   ======================================== */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-text { padding-top: 8px; }
.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.about-highlight:last-child { border-bottom: none; }
.highlight-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 2px;
}
.highlight-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.highlight-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Approach cards */
.approach-cards { display: flex; flex-direction: column; gap: 14px; }
.approach-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.approach-card:hover { transform: translateX(6px); box-shadow: var(--shadow-card); }
.approach-number {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  min-width: 32px;
}
.approach-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.approach-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========================================
   TEAM
   ======================================== */
.team { background: var(--bg-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--accent-light);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-body {
  padding: 28px;
}
.team-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-body .role {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.team-interests {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.team-interests strong {
  color: var(--text-secondary);
}

/* Homepage compact team cards */
.team-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 0;
}
.team-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.team-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.team-info .role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}
.team-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-linkedin {
  margin-left: auto;
  color: var(--text-muted);
  transition: color 0.2s;
  flex-shrink: 0;
}
.team-linkedin:hover {
  color: #0a66c2;
}
.team-card .team-bio {
  padding: 16px 24px 24px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials { background: var(--bg-warm); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.4;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ========================================
   CAREERS
   ======================================== */
.careers { background: var(--bg-white); }
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.career-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.2s ease;
}
.career-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.career-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.35;
}
.career-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.career-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.career-meta-icon {
  font-size: 14px;
  width: 18px;
  text-align: center;
}
.career-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.career-link:hover { gap: 8px; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
}
.cta-box {
  background: linear-gradient(135deg, #0F1A2A 0%, #1B3A5C 50%, #0F4C8A 100%);
  border-radius: 20px;
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,106,201,0.2), transparent 60%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,148,10,0.08), transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 600px; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 14px; align-items: center; }

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--text-secondary); }

/* ========================================
   PAGE HERO (sub-pages)
   ======================================== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,106,201,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .section-eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 18px;
}
.page-hero p {
  font-size: 18px; color: var(--text-secondary); line-height: 1.7; max-width: 640px;
}

/* ========================================
   SERVICES OVERVIEW GRID
   ======================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.svc-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: 14px; padding: 32px 28px; transition: all 0.2s ease;
  text-decoration: none; display: block; position: relative;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px;
  height: 2px; background: var(--accent); border-radius: 0 0 2px 2px;
  opacity: 0; transition: opacity 0.2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 48px; height: 48px; background: var(--accent-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.svc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.svc-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.svc-tag {
  font-size: 11px; font-weight: 500; color: var(--text-muted);
  background: var(--bg); border: 1px solid var(--border-light);
  padding: 3px 9px; border-radius: 100px;
}
.svc-link {
  font-size: 13px; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px; margin-top: 12px;
}

/* ========================================
   SERVICE DETAIL — FEATURE GRID
   ======================================== */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px;
}
.feature-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: 14px; padding: 32px 28px; transition: all 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.feature-icon {
  width: 48px; height: 48px; background: var(--accent-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ========================================
   SERVICE DETAIL — SUB-SERVICES
   ======================================== */
.sub-services { margin-top: 56px; }
.sub-service {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border-light);
}
.sub-service:last-child { border-bottom: none; }
.sub-number {
  font-family: var(--font-display); font-size: 32px; color: var(--accent);
  min-width: 48px; line-height: 1;
}
.sub-service h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sub-service p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ========================================
   SERVICE DETAIL — RELATED SERVICES
   ======================================== */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.related-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: 12px; padding: 18px 20px; transition: all 0.2s ease; text-decoration: none;
}
.related-card:hover { border-color: var(--border); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related-icon { font-size: 20px; }
.related-name { font-size: 14px; font-weight: 600; color: var(--text-primary); flex: 1; }
.related-arrow { color: var(--accent); font-size: 14px; }

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-info-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.contact-info-card a:hover {
  text-decoration: underline;
}
.contact-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 36px 32px;
}
.contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-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(27,106,201,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-status.success {
  display: block;
  background: #ECFDF5;
  color: var(--success);
  border: 1px solid #A7F3D0;
}
.form-status.error {
  display: block;
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

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

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 56px 48px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-phone { display: none; }
  .mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 64px; }
  .svc-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 28px; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  section { padding: 72px 0; }
}
