/* Clear Facts Solutions - Professional Background Investigation Services
   Theme: Light professional with Blue (#1245a8) and Green accents
   Extracted patterns from Players Congress, adapted for professional services
*/

/* ========== CSS Variables ========== */
:root {
  /* Background Colors */
  --bg: #ffffff;
  --bg-dark: hsl(215, 35%, 8%);
  --bg-card: #f8fafc;
  --bg-elevated: #f1f5f9;

  /* Text Colors */
  --text: hsl(215, 25%, 15%);
  --text-light: #ffffff;
  --text-muted: hsl(215, 15%, 45%);

  /* Brand Colors */
  --primary: #1245a8;
  --primary-hover: #0d3580;
  --primary-light: #e8f0fe;
  --secondary: #10b981;
  --secondary-hover: #059669;
  --secondary-light: #d1fae5;

  /* Utility */
  --border: rgba(18, 69, 168, 0.1);
  --border-strong: rgba(18, 69, 168, 0.2);
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --transition: 0.3s ease;

  /* Spacing */
  --container: 1200px;
  --gap: 2rem;
}

/* ========== Reset ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ========== Accessibility ========== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--text-light);
  padding: 1rem 2rem;
  z-index: 9999;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-light {
  background: var(--bg-card);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }

.label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
}

.btn-outline-light {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--primary);
}

.btn-ghost {
  color: var(--primary);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--primary-hover);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(18, 69, 168, 0.1);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--primary);
}

.logo-svg {
  flex-shrink: 0;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile Menu */
@media (max-width: 968px) {
  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav-main.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: 80px;
}

/* Video Background */
.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 25, 60, 0.85) 0%,
    rgba(18, 69, 168, 0.75) 50%,
    rgba(8, 25, 60, 0.9) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231245a8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  color: var(--text-light);
}

.hero-text .label {
  color: var(--secondary);
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--secondary);
}

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-card-header h3 {
  font-size: 1rem;
  color: var(--text);
}

.hero-card-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.hero-stat {
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
}

.hero-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.trust-badge svg {
  color: var(--secondary);
}

@media (max-width: 968px) {
  .hero {
    min-height: 100vh;
    padding: 160px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .trust-badges {
    display: none;
  }
}

/* Trust badges section for mobile - below fold */
.trust-badges-mobile {
  display: none;
  background: var(--bg-dark);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges-mobile .trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 968px) {
  .trust-badges-mobile {
    display: block;
  }

  .trust-badges-mobile .trust-badges {
    display: flex;
  }
}

/* ========== Services Grid ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(18, 69, 168, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Why Choose Us ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-content h2 {
  margin-bottom: 1.5rem;
}

.why-content > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
}

.why-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-number span {
  color: var(--secondary);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-stats {
    order: -1;
  }
}

/* ========== Process Section ========== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border-strong);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--bg);
  box-shadow: 0 4px 15px rgba(18, 69, 168, 0.3);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-steps::before {
    display: none;
  }
}

/* ========== Industries Section ========== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary);
  transform: translateY(-4px);
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CTA Section ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
}

/* ========== Forms ========== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========== Footer ========== */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0;
  max-width: 300px;
}

.footer-logo {
  color: #fff;
}

.footer-logo span {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--secondary);
}

.footer-contact svg {
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
}

.footer-column h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--text-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--secondary);
}

.site-credit {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.site-credit a {
  color: var(--secondary);
  font-weight: 500;
}

.site-credit a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ========== Notifications ========== */
.notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  transform: translateY(150%);
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.notification.show {
  transform: translateY(0);
}

.notification.success {
  border-color: var(--secondary);
}

.notification.error {
  border-color: #ef4444;
}

/* ========== Utility Classes ========== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.hidden { display: none; }
.visible { display: block; }

/* ========== Page Hero ========== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, hsl(215, 40%, 15%) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--text-light);
}

.page-hero .label {
  color: var(--secondary);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========== Service Detail ========== */
.service-detail {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail-content {
  text-align: center;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.service-detail h2 {
  margin-bottom: 1rem;
}

.service-detail > .service-detail-content > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: left;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.service-features svg {
  flex-shrink: 0;
  color: var(--secondary);
}

.section-light .service-features li {
  background: var(--bg);
}

@media (max-width: 600px) {
  .service-features {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 60px;
  }
}

/* ========== Contact Page ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper h2 {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.btn-full {
  width: 100%;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

.form-disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  margin-bottom: 0.5rem;
}

.contact-info-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.contact-info-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border: none;
}

.contact-info-dark h3 {
  color: var(--text-light);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-method:hover {
  background: var(--primary-light);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-method-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-method-value {
  display: block;
  font-weight: 600;
  color: var(--text);
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-features svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: -1;
  }
}

@media (max-width: 600px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* ========== About Page ========== */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-content h2 {
  margin-bottom: 1.5rem;
}

.about-intro-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-stat {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-stat-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.about-stat h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.about-stat p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(18, 69, 168, 0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About Features */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-features-content h2 {
  margin-bottom: 1rem;
}

.about-features-content > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 1.25rem;
}

.about-feature-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.about-feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-features-image {
  display: flex;
  justify-content: center;
}

.about-image-card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, hsl(215, 40%, 15%) 100%);
  color: var(--text-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 400px;
}

.about-image-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--secondary);
}

.about-image-card h3 {
  margin-bottom: 0.75rem;
}

.about-image-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.about-image-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Commitment Section */
.commitment-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.commitment-content h2 {
  margin-bottom: 1rem;
}

.commitment-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.commitment-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.commitment-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.commitment-feature svg {
  color: var(--secondary);
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-intro-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-features-image {
    order: -1;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .commitment-features {
    flex-direction: column;
    align-items: center;
  }
}

/* ========== Industries Page ========== */
.industries-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.industry-detail-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.industry-detail-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(18, 69, 168, 0.1);
}

.industry-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.industry-detail-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.industry-detail-header h2 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.industry-detail-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.industry-detail-content {
  padding: 1.5rem;
}

.industry-detail-content > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.industry-detail-content h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.industry-services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.industry-services li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.industry-services svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* Industry CTA Box */
.industry-cta-box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.industry-cta-content h2 {
  margin-bottom: 1rem;
}

.industry-cta-content > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.industry-cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.industry-cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.industry-cta-feature svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.industry-cta-action {
  text-align: center;
  padding: 2rem;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
}

.industry-cta-action .btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.industry-cta-action p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.industry-cta-action p a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 968px) {
  .industries-detail-grid {
    grid-template-columns: 1fr;
  }

  .industry-cta-box {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .industry-cta-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .industry-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .industry-cta-box {
    padding: 1.5rem;
  }
}

/* ========== Blog Page ========== */
.blog-categories-section {
  background: var(--bg);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.blog-category {
  padding: 0.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.blog-category:hover,
.blog-category.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}

/* Featured Post */
.featured-post {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border);
}

.featured-post-content .blog-tag {
  background: var(--secondary);
  color: var(--text-light);
}

.featured-post-content h2 {
  margin: 1rem 0;
}

.featured-post-content h2 a {
  color: var(--text);
  transition: var(--transition);
}

.featured-post-content h2 a:hover {
  color: var(--primary);
}

.featured-post-content > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.featured-post-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-image-placeholder {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(18, 69, 168, 0.1);
}

.blog-card-image {
  position: relative;
  height: 180px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image-placeholder {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--text-light);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-content h3 a {
  color: var(--text);
  transition: var(--transition);
}

.blog-card-content h3 a:hover {
  color: var(--primary);
}

.blog-card-content > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-link,
.pagination-current {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
}

.pagination-link {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
}

.pagination-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}

.pagination-current {
  background: var(--primary);
  color: var(--text-light);
}

.pagination-next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  margin-left: 0.5rem;
  transition: var(--transition);
}

.pagination-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}

/* Newsletter Box */
.newsletter-box {
  background: linear-gradient(135deg, var(--bg-dark) 0%, hsl(215, 40%, 15%) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  color: var(--text-light);
}

.newsletter-content h2 {
  margin-bottom: 0.75rem;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--secondary);
}

/* Blog Post Page */
.blog-post-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, hsl(215, 40%, 15%) 100%);
  padding: 140px 0 80px;
  color: var(--text-light);
}

.blog-post-hero .blog-tag {
  position: static;
  display: inline-block;
  margin-bottom: 1rem;
}

.blog-post-hero h1 {
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.blog-post-meta .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-light);
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.blog-post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.blog-post-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.blog-post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.blog-post-content ul li {
  list-style: disc;
}

.blog-post-content ol li {
  list-style: decimal;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text);
}

.blog-post-content strong {
  color: var(--text);
  font-weight: 600;
}

.blog-cta-box {
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.blog-cta-box h3 {
  margin-bottom: 0.75rem;
}

.blog-cta-box p {
  margin-bottom: 1rem;
}

@media (max-width: 968px) {
  .featured-post {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .featured-post-image {
    order: -1;
  }

  .featured-image-placeholder {
    width: 150px;
    height: 150px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-categories {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }

  .blog-category {
    flex-shrink: 0;
  }
}
