:root {
  --pink-dark: #eb168c;
  --pink-light: #fa2993;
  --black: #05060a;
  --bg: #ffffff;
  --gray-50: #f7f7f9;
  --gray-100: #eeeef2;
  --gray-400: #8a8a97;
  --gray-600: #55555f;
  --radius: 14px;
  --container: 1160px;
  --shadow: 0 10px 30px rgba(5, 6, 10, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Odoo Unicode Support Noto", sans-serif;
  color: var(--black);
  background: var(--bg);
  line-height: 1.6;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.2; margin: 0; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-light), var(--pink-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(235, 22, 140, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(235, 22, 140, 0.36);
}

.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-100);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo img { height: 42px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a { position: relative; padding: 6px 0; }

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--pink-dark);
  transition: width 0.2s ease;
}

.main-nav a:hover::after { width: 100%; }

.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background: var(--gray-50);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-text p {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  height: 320px;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-dark));
  top: 10px;
  right: 60px;
  opacity: 0.9;
}

.shape-2 {
  width: 220px;
  height: 220px;
  border: 24px solid var(--black);
  border-radius: 50%;
  top: 60px;
  right: 190px;
  background: transparent;
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: var(--gray-100);
  bottom: 0;
  right: 0;
}

/* Sections */
.section { padding: 90px 0; }

.section-alt { background: var(--gray-50); }

.section-head { max-width: 640px; margin-bottom: 48px; }

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
}

.mission-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--black);
  border-left: 4px solid var(--pink-dark);
  padding: 6px 0 6px 24px;
  margin: 0 0 60px;
  max-width: 900px;
}

.history-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.history-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.history-text p {
  color: var(--gray-600);
  margin: 0 0 16px;
}

.history-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pink-dark);
}

.stat-label {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(5, 6, 10, 0.12);
}

.service-icon {
  display: inline-block;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--pink-dark);
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Values */
.values-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.values-list li {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px;
  font-weight: 600;
  text-align: center;
  border-bottom: 3px solid var(--pink-dark);
}

/* CTA */
.cta-section {
  background: var(--black);
  color: #fff;
  border-radius: 0;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
}

.cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-inner p {
  color: #cfcfd6;
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 24px 40px;
}

.footer-logo { height: 36px; width: auto; margin-bottom: 14px; }

.footer-brand p { color: var(--gray-600); max-width: 260px; }

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.footer-col a, .footer-col address {
  display: block;
  color: var(--gray-600);
  font-style: normal;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.footer-col a:hover { color: var(--pink-dark); }

.footer-bottom {
  border-top: 1px solid var(--gray-100);
  padding: 20px 0;
}

.footer-bottom p {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.85rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { display: none; }
  .history-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav a { padding: 12px 0; width: 100%; }

  .header-cta { display: none; }

  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
