*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f9fafb;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.logo span {
  color: #2563eb;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.1rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #2563eb;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.btn.primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.35);
}

.btn.ghost {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.btn.ghost:hover {
  background: #dbeafe;
}

.btn.full {
  width: 100%;
}

/* Hero */

.hero {
  padding: 5rem 0 3.5rem;
  background: radial-gradient(circle at top left, #dbeafe 0, #eff6ff 40%, #f9fafb 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: #2563eb;
}

.hero-text p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.hero-highlights span {
  background: #e5e7eb;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}

/* Hero Card */

.hero-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-gray {
  background: #f3f4f6;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.center {
  text-align: center;
}

.section-subtitle {
  margin-top: 0.4rem;
  max-width: 640px;
  margin-inline: auto;
  color: #6b7280;
}

/* Stats */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.9rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2563eb;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Services */

.service-group {
  margin-top: 2.5rem;
}

.service-group h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  position: relative;
}

.pricing-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.pricing-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.pricing-card ul li + li {
  margin-top: 0.4rem;
}

.pricing-card.featured {
  border-color: #2563eb;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
}

.badge {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: #2563eb;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

/* FAQ */

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

details {
  background: #ffffff;
  border-radius: 0.9rem;
  margin-bottom: 0.7rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

details summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

details[open] {
  border-color: #2563eb;
}

details p {
  margin-top: 0.5rem;
  color: #4b5563;
}

/* Contact */

.contact-wrap {
  align-items: stretch;
}

.contact-info {
  list-style: none;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.contact-info li + li {
  margin-top: 0.3rem;
}

/* Forms */

.simple-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.simple-form input,
.simple-form select,
.simple-form textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.1s ease, box-shadow 0.1s ease;
  background-color: #ffffff;
}

.simple-form input:focus,
.simple-form select:focus,
.simple-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-note {
  font-size: 0.75rem;
  color: #6b7280;
}

.form-note.small {
  margin-top: -0.4rem;
}

/* Footer */

.footer {
  background: #111827;
  color: #9ca3af;
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #e5e7eb;
  font-size: 0.85rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none;
  }

  .nav-inner {
    gap: 0.75rem;
  }

  .btn-sm {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4.2rem;
  }

  .hero-card {
    order: -1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
