:root {
  --primary: #1e3a5f;
  --primary-dark: #142940;
  --accent: #f5b942;
  --accent-soft: #fff4d6;
  --background: #f8fafc;
  --surface: #ffffff;
  --soft: #eef5fb;
  --text: #1f2937;
  --muted: #64748b;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.navbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  border-radius: 14px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 90px 24px 80px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  color: var(--primary);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #1f2937;
  box-shadow: 0 12px 25px rgba(245, 185, 66, 0.35);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--border);
}

.hero-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-highlights span {
  display: inline-flex;
  padding: 9px 13px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.hero-card {
  padding: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-label {
  margin: 0 0 18px;
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}

.mini-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  margin-bottom: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.mini-card span {
  font-size: 28px;
}

.mini-card h3 {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 18px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.availability {
  margin-top: 20px;
  padding: 20px;
  background: var(--accent-soft);
  border-radius: 18px;
}

.availability strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

.availability p {
  margin: 0;
  color: var(--muted);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-soft {
  max-width: none;
  background: var(--soft);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading h2,
.price-box h2,
.contact-box h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-heading p:not(.eyebrow),
.price-box p,
.contact-box p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.two-columns,
.three-columns,
.cards-grid,
.steps {
  grid-template-columns: 1fr;
}

.two-columns {
  grid-template-columns: repeat(2, 1fr);
}

.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid,
.steps {
  grid-template-columns: repeat(3, 1fr);
}

.profile-card,
.service-card,
.step,
.testimonial,
.price-box,
.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-card,
.service-card,
.step,
.testimonial {
  padding: 30px;
}

.profile-avatar {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 18px;
  font-size: 24px;
  font-weight: 800;
}

.profile-card h3,
.service-card h3,
.step h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 23px;
}

.profile-card p,
.service-card p,
.step p,
.testimonial p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 36px;
}

.step span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 800;
}

.price-box,
.contact-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
}

.price-box h2 {
  font-size: clamp(46px, 8vw, 78px);
}

.price-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.price-tags span {
  padding: 10px 15px;
  background: var(--accent-soft);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.testimonial p {
  font-size: 18px;
  margin-bottom: 18px;
}

.testimonial strong {
  color: var(--primary);
}

.contact-section {
  padding-top: 40px;
}

.contact-actions {
  justify-content: center;
}

.small-text {
  margin-top: 18px !important;
  color: var(--muted);
  font-size: 14px !important;
}

.service-area {
  max-width: 720px;
  margin: 22px auto 0 !important;
  padding: 14px 18px;
  background: var(--accent-soft) !important;
  color: var(--primary) !important;
  border-radius: 18px;
  font-weight: 700;
}

.footer {
  padding: 28px 24px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  .two-columns,
  .cards-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 24px;
  }

  .price-box,
  .contact-box {
    padding: 34px 24px;
  }
}

@media (max-width: 520px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .hero-highlights span {
    width: 100%;
  }
}
