:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --bg-muted: #eef2f9;
  --text: #0f172a;
  --text-muted: #475569;
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --accent: #f97316;
  --card: #ffffff;
  --border: rgba(148, 163, 184, 0.3);
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  --radius: 20px;
}

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

body {
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  background: radial-gradient(circle at top, #dbeafe 0%, var(--bg) 55%);
  padding: 32px 6vw 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 14px;
  padding: 8px;
  object-fit: contain;
}

.brand-text {
  display: grid;
}

.brand-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-links a.nav-cta {
  color: #fff;
}

.nav-links a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
  background: #111827;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 520px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
}


.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.section {
  padding: 80px 6vw;
}

.section.muted {
  background: var(--bg-muted);
}

.section-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin: 10px 0 14px;
}

.section-header p {
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-card {
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
}

#fast-turnaround {
  margin-top: 1rem;
}

.badge {
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.price-card ul {
  padding-left: 18px;
  color: var(--text-muted);
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.step {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 16px;
  font-weight: 700;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.reviews-summary strong {
  font-size: 2rem;
  display: block;
}

.reviews-summary span {
  color: var(--text-muted);
}

.review-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--text);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.review-name {
  font-weight: 600;
}

.review-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-stars {
  display: inline-flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 1rem;
}

.review-text {
  color: var(--text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.review-loading {
  text-align: center;
  color: var(--text-muted);
}

.faq {
  display: grid;
  gap: 16px;
}

.faq details {
  background: var(--card);
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.faq p {
  color: var(--text-muted);
  margin-top: 10px;
}

.contact {
  background: linear-gradient(120deg, #e0f2fe 0%, #f8fafc 100%);
}

.contact-card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  color: var(--text-muted);
}

.contact-details strong {
  display: block;
  color: var(--text);
}

.socials .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-link {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--text);
}

.social-link img {
  width: 22px;
  height: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text-muted);
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background-color: #5a97c4;
  border: none;
  color: white;
  height: 40px;
  text-transform: uppercase;
  font-family: 'Square Market', sans-serif;
  letter-spacing: 1px;
  line-height: 38px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
}

.btn.primary:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
}

.btn.secondary {
  background: var(--text);
  color: #fff;
}

.btn.secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
  height: 40px;
  text-transform: uppercase;
  font-family: 'Square Market', sans-serif;
  letter-spacing: 1px;
  line-height: 38px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer {
  padding: 40px 6vw;
  display: grid;
  gap: 16px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text);
}

.copyright {
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--card);
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: absolute;
    right: 0;
    top: 72px;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: relative;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    gap: 16px;
  }

  .hero-card {
    order: -1;
  }
}