:root {
  color-scheme: light;
  --bg: #fff7f7;
  --surface: #ffffff;
  --text: #1b1b1b;
  --muted: #6b6b6b;
  --accent: #d93030;
  --accent-soft: #ffe5e5;
  --border: #f0e5e5;
  --shadow: 0 18px 48px rgba(217, 48, 48, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  background: linear-gradient(135deg, #ff4b4b 0%, #bd1010 100%);
  color: #ffffff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 4vw, 4.5rem);
  margin: 0;
}

.hero__text {
  max-width: 720px;
  margin: 1.25rem auto 1.8rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.hero__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-weight: 500;
}

.hero__contact div {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0.95rem 1.15rem;
  border-radius: 18px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.intro-card,
.contact-card,
.testimonial-card,
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.intro-card {
  margin-bottom: 2rem;
}

.intro-card h2,
.contact-card h2,
.testimonial-card h2 {
  margin-top: 0;
  color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  min-height: 220px;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.testimonial-card {
  margin-bottom: 2rem;
}

.contact-section {
  display: grid;
  gap: 2rem;
}

.contact-card form {
  display: grid;
  gap: 1rem;
}

.contact-card label {
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  font-family: inherit;
  font-size: 0.98rem;
  background: #fff;
}

.contact-card textarea {
  resize: vertical;
}

.contact-card button {
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-card button:hover {
  background: #a71d1d;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  text-align: center;
  padding: 1.5rem 1.5rem 2rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .hero__contact {
    flex-direction: column;
    align-items: center;
  }

  .container {
    padding: 2rem 1rem 3rem;
  }
}
