:root {
  --bg: #f5f5f3;
  --surface: #ffffff;
  --surface-alt: #f4f4f7;
  --text: #1f2937;
  --text-muted: #6b7280;
  --primary: #ff6f3c;
  --primary-dark: #d35400;
  --secondary: #0f766e;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #f8b195 0%, #f67280 48%, #c06c84 100%);
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.16), transparent 26%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
}

.hero p {
  margin: 1.5rem auto 2rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 18px 40px rgba(255, 111, 60, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.section {
  padding: 5rem 1.5rem;
}

.section-light {
  background: var(--bg);
}

.section-dark {
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: white;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.white-text h2,
.white-text .section-label {
  color: white;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
}

.feature-grid,
.area-grid,
.image-grid,
.review-grid,
.contact-grid,
.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid,
.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.image-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card,
.area-card,
.review-card,
.contact-info,
.contact-form {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.section-dark .feature-card,
.section-dark .area-card,
.section-dark .review-card,
.section-dark .contact-info,
.section-dark .contact-form {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.feature-card h3,
.area-card h4,
.contact-info h3 {
  margin-top: 0;
}

.feature-card p,
.area-card p,
.review-card p,
.contact-info p,
.contact-form label,
.contact-form input,
.contact-form textarea {
  color: var(--text-muted);
}

.section-dark .feature-card p,
.section-dark .area-card p,
.section-dark .review-card p,
.section-dark .contact-info p,
.section-dark .contact-form label,
.section-dark .contact-form input,
.section-dark .contact-form textarea {
  color: rgba(255, 255, 255, 0.78);
}

.area-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.review-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-card {
  min-height: 180px;
}

.review-card span {
  display: block;
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.section-dark .review-card span {
  color: white;
}

.image-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-copy {
  padding: 1.5rem;
}

.card-copy h3 {
  margin: 0 0 0.75rem;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  border-radius: 24px;
  padding: 2rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step-number {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-section .contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: white;
  color: var(--text);
  font: inherit;
}

.section-dark .contact-form input,
.section-dark .contact-form textarea {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-form button {
  margin-top: 0.5rem;
  width: fit-content;
}

.form-response {
  margin: 0;
  min-height: 1.5rem;
  font-size: 0.95rem;
}

.footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--text-muted);
  background: #ffffff;
}

@media (max-width: 850px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  header.hero {
    padding: 3rem 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .feature-card,
  .area-card,
  .review-card {
    padding: 1.5rem;
  }
}
