* {
  box-sizing: border-box;
}

:root {
  --bg: #f8fafc;
  --bg-alt: #eef2f7;
  --text: #0f172a;
  --muted: #475569;
  --white: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.14);
  --dark-1: #0f172a;
  --dark-2: #1e293b;
  --accent: #d4a5ae;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 100%);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  background: linear-gradient(135deg, var(--dark-1), var(--dark-2));
  color: var(--white);
  padding: 18px 0 56px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.topbar-spacer {
  flex: 1;
}

.language-switcher {
  display: flex;
  justify-content: flex-end;
}

.language-switcher select {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher select option {
  color: var(--text);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px;
}

.hero h1 {
  margin: 0;
  font-size: 3.3rem;
  line-height: 1.05;
}

.headline {
  margin: 18px 0 14px;
  font-size: 1.35rem;
  max-width: 700px;
}

.hero-text {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--white);
  color: var(--dark-1);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.hero-points {
  margin: 24px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.14);
}

.section-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 14px 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

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

.section {
  padding: 80px 0;
}

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

.section h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 2.2rem;
  line-height: 1.15;
}

.cards-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.services-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.content-card,
.service-card,
.contact-card,
.faq-item {
  background: var(--white);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.featured {
  border: 1px solid rgba(212, 165, 174, 0.45);
  box-shadow: 0 14px 34px rgba(212, 165, 174, 0.18);
}

.service-intro {
  color: var(--muted);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.contact-section {
  padding-top: 72px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.footer {
  padding: 28px 0 36px;
  background: var(--dark-1);
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .cards-grid,
  .services-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .headline {
    font-size: 1.15rem;
  }

  .section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }

  .content-card,
  .service-card,
  .contact-card,
  .faq-item {
    padding: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .language-switcher select {
    width: 100%;
  }
}