/* ===== RESET ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

/* ===== GENERAL ===== */

a {
  text-decoration: none;
}

ul {
  padding-left: 20px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 20px;
}

h1, h2, h3 {
  color: #0f172a;
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

p {
  margin-bottom: 16px;
}

/* ===== HEADER ===== */

.header {
  width: 100%;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo strong {
  font-size: 1.1rem;
  color: #0f172a;
}

.logo span {
  font-size: 0.85rem;
  color: #6b7280;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: #1f2937;
  font-size: 0.95rem;
}

.btn-small {
  padding: 10px 18px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 6px;
}

/* ===== HERO ===== */

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 20px 90px;
}

.hero-text {
  max-width: 760px;
}

.eyebrow {
  font-size: 0.9rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.lead {
  font-size: 1.15rem;
  color: #334155;
}

.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-primary {
  background: #0f172a;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid #0f172a;
  color: #0f172a;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
}

/* ===== SERVICES ===== */

.section-intro {
  color: #475569;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 30px;
  background: #ffffff;
}

.card ul li {
  margin-bottom: 10px;
}

/* ===== SPLIT ===== */

.split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

/* ===== PROCESS ===== */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.steps span {
  display: inline-block;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 10px;
}

/* ===== CONSULTATION ===== */

.consultation {
  background: #f8fafc;
  border-radius: 12px;
}

.consult-box {
  margin-top: 30px;
  padding: 35px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.consult-box ul {
  margin-bottom: 30px;
}

.email-link {
  display: block;
  margin-top: 20px;
  color: #0f172a;
  font-weight: 600;
}

/* ===== FOOTER ===== */

.footer {
  padding: 50px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 8px;
  color: #475569;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .header {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .actions {
    flex-direction: column;
    align-items: flex-start;
  }
}