:root {
  --primary: #3b82f6;
  --primary-dark: #1d4ed8;
  --dark: #0f172a;
  --slate: #334155;
  --gray: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
}

body {
  background: var(--white);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: var(--dark);
}

/* --- GLOBAL UTILS --- */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-center {
  text-align: center;
}
.section-header {
  margin-bottom: 60px;
}
.kicker {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}
h2 {
  font-size: 2.2rem;
  color: var(--dark);
  font-weight: 700;
}

/* --- HERO SECTION (CSS Pattern) --- */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: -70px;
  padding-top: 70px;
  overflow: hidden;
}

/* Abstract Grid Pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(#334155 1px, transparent 1px),
    linear-gradient(90deg, #334155 1px, transparent 1px);
  background-size: 40px 40px;
}
/* Vignette Overlay */
.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 20%, var(--dark) 90%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #bae6fd;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}
.hero-content p {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn-hero-primary {
  background: var(--primary);
  color: white;
  padding: 15px 35px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1rem;
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-hero-text {
  color: white;
  padding: 15px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-text:hover {
  color: var(--primary);
}

/* --- STATS STRIP --- */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- INTRO SECTION --- */
.section-intro {
  padding: 100px 0;
  background: var(--white);
}
.intro-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.lead-text {
  font-size: 1.2rem;
  color: var(--slate);
  margin-bottom: 20px;
  font-weight: 500;
}
.intro-text p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.intro-card {
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.intro-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.intro-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.intro-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- SERVICES GRID --- */
.section-services {
  padding: 100px 0;
  background: #fafafa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.svc-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}
.svc-card.highlight {
  border-top: 4px solid var(--primary);
}

.svc-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
}
.svc-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark);
}
.svc-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}
.svc-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--border);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: 0.2s;
}
.svc-card:hover .svc-link {
  border-color: var(--primary);
  color: var(--primary);
}

/* --- PROCESS --- */
.section-process {
  padding: 100px 0;
  background: var(--white);
}
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 50px;
}
.process-step {
  text-align: center;
  flex: 1;
  padding: 0 10px;
}
.step-icon {
  width: 70px;
  height: 70px;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 25px;
}
.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}
.process-line {
  height: 2px;
  background: var(--border);
  flex: 0.5;
  margin-top: 35px;
}

/* --- FEATURES GRID --- */
.section-features {
  padding: 100px 0;
  background: var(--dark);
  color: white;
}
.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-text h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.feature-text p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #e2e8f0;
}
.feature-list i {
  color: var(--primary);
}

.feature-grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.f-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.f-box i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.f-box h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.f-box p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
}

/* --- FAQ --- */
.section-faq {
  padding: 100px 0;
  background: var(--light);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.faq-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.faq-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--dark);
}
.faq-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* --- FINAL CTA --- */
.section-final {
  padding: 80px 0;
  background: var(--white);
}
.final-box {
  background: var(--white);
  border: 2px solid var(--dark);
  border-radius: 12px;
  padding: 60px;
  text-align: center;
}
.final-box h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.final-box p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
}
.btn-final {
  background: var(--dark);
  color: white;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}
.btn-final:hover {
  background: var(--primary);
  border-color: transparent;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
  .intro-layout,
  .feature-layout,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-flow {
    flex-direction: column;
    gap: 30px;
  }
  .process-line {
    display: none;
  }
}
