:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-muted: #f3f6fb;
  --text: #172033;
  --muted: #64748b;
  --primary: #e11d48;
  --primary-dark: #be123c;
  --accent: #0f766e;
  --border: #e2e8f0;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248,250,252,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 0;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-dark);
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 10px 24px rgba(225,29,72,0.2);
}
.nav {
  display: flex;
  gap: 1.25rem;
  font-weight: 600;
  color: var(--muted);
}
.nav a:hover { color: var(--primary); }
.topbar__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--primary); color: white; box-shadow: 0 10px 30px rgba(225,29,72,0.2); }
.btn--primary:hover { background: var(--primary-dark); }
.btn--ghost { background: white; color: var(--text); border-color: var(--border); }
.btn--secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.3); }
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top left, rgba(225,29,72,0.16), transparent 34%), linear-gradient(135deg, #0f172a 0%, #111827 60%, #1f2937 100%);
  color: white;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.12), transparent 50%);
  opacity: 0.8;
}
.hero__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.hero__copy { flex: 1 1 480px; }
.hero__slider { flex: 1 1 360px; }
.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: #f9a8d4;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .contact-card h2 { font-family: 'Poppins', Arial, sans-serif; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; margin: 0 0 1rem; }
.hero__copy p { color: rgba(255,255,255,0.82); max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.4rem 0 1.2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.75rem; font-weight: 600; color: #e2e8f0; }
.hero__badges span { padding: 0.45rem 0.7rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; background: rgba(255,255,255,0.08); }
.hero__slider { position: relative; overflow: hidden; border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(241,245,249,0.96)); box-shadow: var(--shadow); }
.slider__track { position: relative; min-height: 320px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; }
.slide.is-active { opacity: 1; }
.slide__content { padding: 2rem; height: 100%; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg, rgba(225,29,72,0.12), rgba(15,118,110,0.12)); }
.slide__tag { display: inline-block; width: fit-content; padding: 0.35rem 0.7rem; border-radius: 999px; background: rgba(225,29,72,0.1); color: var(--primary-dark); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.slide h2 { margin: 0.8rem 0 0.7rem; color: var(--text); font-size: 1.5rem; }
.slide p { margin: 0; color: var(--muted); font-size: 1rem; }
.slider__dots { position: absolute; bottom: 1rem; right: 1rem; display: flex; gap: 0.45rem; }
.dot { width: 11px; height: 11px; border: 0; border-radius: 50%; background: rgba(15,23,42,0.25); cursor: pointer; }
.dot.is-active { background: var(--primary); }
.section { padding: 4.5rem 0; }
.section--intro { padding-top: 3rem; }
.intro-grid, .about-grid, .services-grid, .contact-grid { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.intro-grid > *, .about-grid > *, .services-grid > *, .contact-grid > * { flex: 1 1 280px; }
.card, .about-card, .service-card, .contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 1.5rem; box-shadow: var(--shadow); width: 100%; }
.card--highlight { background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%); }
.card h3, .about-card h3, .service-card h3 { margin-top: 0; margin-bottom: 0.75rem; color: var(--primary-dark); }
.card a { color: var(--accent); font-weight: 700; }
.section-heading { text-align: center; max-width: 740px; margin: 0 auto 2rem; }
.section-heading h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); margin: 0 0 0.75rem; color: var(--text); }
.service-card ul { padding-left: 1.1rem; margin: 0; color: var(--muted); }
.service-card li + li { margin-top: 0.4rem; }
.contact-grid { align-items: flex-start; }
.contact-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.7rem; color: var(--muted); }
.contact-card--form form { display: grid; gap: 0.8rem; }
.contact-card--form label { display: grid; gap: 0.35rem; font-weight: 600; color: var(--text); }
.contact-card--form input, .contact-card--form textarea { border: 1px solid var(--border); border-radius: 14px; padding: 0.8rem 0.95rem; font: inherit; background: var(--surface-muted); font-size: 16px; width: 100%; }
.contact-card--form button { border: 0; cursor: pointer; }
.footer { padding: 1.5rem 0 2rem; background: #0f172a; color: rgba(255,255,255,0.75); }
.footer__inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 900px) {
  .topbar__inner { flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .topbar__actions { width: 100%; justify-content: center; }
  .hero { padding-top: 3rem; }
  .slider__track { min-height: 280px; }
  .footer__inner { flex-direction: column; }
}
