:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --card: #ffffff;
  --text: #132238;
  --muted: #5e6b7d;
  --line: #dfe6f0;
  --shadow: 0 24px 60px rgba(13, 35, 67, 0.08);
  --shadow-soft: 0 14px 30px rgba(13, 35, 67, 0.06);
  --blue: #204f8c;
  --blue-dark: #153966;
  --pink: #ddb6ca;
  --pink-strong: #d894b7;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(216, 148, 183, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(32, 79, 140, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #ffffff);
  z-index: -1;
}

.container { width: var(--container); margin: 0 auto; }
.section { padding: 84px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(223, 230, 240, 0.9);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  background: linear-gradient(135deg, rgba(221, 182, 202, 0.8), rgba(32, 79, 140, 0.12));
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong { font-size: 0.98rem; }
.brand-text small { color: var(--muted); font-size: 0.78rem; margin-top: 5px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--blue); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero { padding-top: 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 42px;
}
.hero-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 4.7rem);
  line-height: 0.98;
  margin: 0;
  letter-spacing: -0.05em;
}
.hero-copy h1 span { color: var(--pink-strong); }
.hero-lead {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin: 22px 0 10px;
}
.hero-text {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}
.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-strong), var(--blue));
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(246,248,252,0.95));
  border: 1px solid rgba(223, 230, 240, 0.95);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card img {
  aspect-ratio: 0.84 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
}
.hero-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 16px 18px;
}
.hero-badge strong { display: block; font-size: 1rem; }
.hero-badge span { color: var(--muted); font-size: 0.94rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 18px 35px rgba(32, 79, 140, 0.22);
}
.btn-secondary {
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-strip { padding-top: 18px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-grid article,
.service-card,
.profile-card,
.price-card,
.location-card,
.location-panel,
.contact-card,
.contact-info,
.institutional-card,
.compliance-list article {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.trust-grid article {
  padding: 24px;
  border-radius: var(--radius-lg);
}
.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
}
.trust-grid p { margin: 0; color: var(--muted); }

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.section-heading p { margin: 0; color: var(--muted); }

.services-grid,
.pricing-grid,
.compliance-list {
  display: grid;
  gap: 18px;
}
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}
.service-card p { margin: 0; color: var(--muted); }

.professionals-section { background: linear-gradient(180deg, rgba(246, 248, 252, 0.6), rgba(255, 255, 255, 0)); }
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.profile-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.profile-photo {
  background: linear-gradient(135deg, rgba(221, 182, 202, 0.3), rgba(32,79,140,0.1));
  min-height: 320px;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-photo-placeholder {
  display: grid;
  place-items: center;
}
.profile-photo-placeholder span {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-dark);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.profile-content {
  padding: 28px;
}
.profile-content h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
}
.profile-content ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.institutional-card {
  border-radius: var(--radius-xl);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,1), rgba(246,248,252,0.95)),
    linear-gradient(135deg, rgba(221,182,202,0.22), rgba(32,79,140,0.1));
}
.institutional-card h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.pricing-grid { grid-template-columns: repeat(4, 1fr); }
.price-card {
  border-radius: var(--radius-lg);
  padding: 30px 24px;
}
.price-label {
  display: block;
  color: var(--muted);
  min-height: 52px;
}
.price-card strong {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.location-card,
.location-panel,
.contact-card,
.contact-info {
  border-radius: var(--radius-xl);
  padding: 30px;
}
.location-card address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 22px;
}
.map-card {
  height: 100%;
  min-height: 340px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(32,79,140,0.92), rgba(21,57,102,0.95)),
    radial-gradient(circle at top right, rgba(221,182,202,0.25), transparent 40%);
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.map-card-inner {
  padding: 28px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(0,0,0,0.08));
}
.map-pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 18px;
}
.map-card h3 { margin: 0 0 6px; font-size: 1.5rem; }
.map-card p { margin: 0; color: rgba(255,255,255,0.85); }

.compliance-list { grid-template-columns: repeat(2, 1fr); }
.compliance-list article {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.contact-card p { color: var(--muted); }
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.contact-block + .contact-block { margin-top: 28px; }
.contact-block h3 { margin: 0 0 10px; }
.contact-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.site-footer {
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 20px;
}
.footer-grid p,
.footer-grid strong { margin: 0 0 8px; }
.footer-grid p { color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

@media (max-width: 1024px) {
  .hero-grid,
  .location-grid,
  .contact-grid,
  .pricing-grid,
  .trust-grid,
  .services-grid,
  .profiles-grid,
  .compliance-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .main-nav.is-open { display: flex; }
  .hero-grid,
  .location-grid,
  .contact-grid,
  .trust-grid,
  .services-grid,
  .profiles-grid,
  .compliance-list,
  .footer-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .institutional-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 34px; }
  .brand-text strong { font-size: 0.9rem; }
  .brand-text small { font-size: 0.72rem; }
  .hero-card { padding: 12px; }
  .hero-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .service-card,
  .price-card,
  .location-card,
  .location-panel,
  .contact-card,
  .contact-info,
  .profile-content,
  .institutional-card,
  .trust-grid article,
  .compliance-list article {
    padding: 22px;
  }
  .profile-photo { min-height: 250px; }
}
