:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --accent: #f03a8c;
  --accent-dark: #c8246f;
  --text: #1f1a1e;
  --muted: #6d5a65;
  --border: #f3d7e4;
  --shadow: 0 18px 40px rgba(31, 26, 30, 0.12);
  --radius: 22px;
  --max-width: 1160px;
  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 26px;
  background: transparent;
}

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

.brand-tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}

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

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

.hero {
  padding: 4rem 0 3rem;
}

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

.hero-copy h1 {
  font-size: clamp(2.2rem, 2.5vw + 1.8rem, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

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

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.hero-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.section {
  padding: 4rem 0;
}

.section-header {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 1.5vw + 1.4rem, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  background: var(--surface);
}

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

.card {
  background: var(--bg);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
}

.testimonials {
  background: var(--bg);
}

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

.testimonial {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--muted);
  margin-top: 1rem;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.placeholder {
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  background: #fff;
}

.feature {
  background: var(--surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.feature-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.cta {
  background: linear-gradient(120deg, #fbe7f0, #ffffff);
}

.cta-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
}

.site-footer {
  background: var(--text);
  color: #fff;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.footer-text {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a {
  color: #fff;
  font-weight: 600;
}

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }
}
