:root {
  --bg: #07090d;
  --bg-2: #0d1117;
  --surface: rgba(255,255,255,0.05);
  --surface-2: rgba(255,255,255,0.07);
  --line: rgba(255,255,255,0.10);
  --text: #f3f6fb;
  --muted: rgba(243,246,251,0.72);
  --accent: #1f7a5a;
  --accent-soft: rgba(31,122,90,0.18);
  --gold: #c7a96b;
  --gold-soft: rgba(199,169,107,0.12);
  --shadow: 0 22px 60px rgba(0,0,0,0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(31,122,90,0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(199,169,107,0.08), transparent 24%),
    linear-gradient(180deg, #07090d 0%, #0b0f14 100%);
  color: var(--text);
  line-height: 1.65;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,9,13,0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
}

.logo strong {
  letter-spacing: 0.2em;
  font-size: 1.08rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: 0.2s ease;
}

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

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 600;
  border: 1px solid rgba(199,169,107,0.25);
  background: rgba(199,169,107,0.08);
  color: #f5e4c0;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(199,169,107,0.12);
}

.btn.primary {
  background: var(--gold);
  color: #111;
  border-color: transparent;
}

.btn.primary:hover {
  background: #d3b479;
}

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

.hero,
.page-hero {
  padding: 92px 0 56px;
}

.hero-grid,
.medical-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.74rem;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 920px;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.hero-sub,
.section p,
.footer p,
.legal-content p,
.contact-info p,
.cta-box p {
  color: var(--muted);
}

.hero-sub {
  margin-top: 22px;
  max-width: 760px;
  font-size: 1.04rem;
}


.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-card,
.card,
.service-block,
.contact-info,
.contact-form,
.cta-box,
.legal-content {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card ul,
.service-block ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-card li,
.service-block li {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.status {
  margin-top: 22px;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31,122,90,0.24);
  background: var(--accent-soft);
  color: #b9e8d8;
  font-size: 0.9rem;
}

.trust {
  padding: 8px 0 44px;
}

.trust-grid,
.cards,
.services,
.contact-details,
.footer-grid {
  display: grid;
  gap: 18px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div,
.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.trust-grid span {
  color: var(--muted);
}

.section {
  padding: 42px 0;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.services {
  grid-template-columns: repeat(2, 1fr);
}

.medical {
  padding: 24px 0 42px;
}

.medical-box {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(31,122,90,0.24);
  background: rgba(31,122,90,0.12);
  box-shadow: var(--shadow);
}

.medical-box ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.medical-box li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.region-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.contact-grid {
  align-items: start;
}

.contact-details div {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.contact-details strong {
  display: block;
  margin-bottom: 4px;
}

.contact-details span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(243,246,251,0.35);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(199,169,107,0.34);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.cta {
  padding: 18px 0 42px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content h2 {
  margin: 8px 0 0;
  font-size: 1.35rem;
}

.footer {
  margin-top: 28px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.footer-grid h4 {
  margin-bottom: 10px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .medical-grid,
  .contact-grid,
  .cards,
  .services,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .mobile-toggle {
    display: inline-flex;
  }

 nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 12px;
    right: 12px;
    padding: 18px;
    background: rgba(7,9,13,0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    z-index: 120;
  }

  nav.open {
    display: flex;
  }

  .nav > .btn {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 64px;
  }

  .hero-grid,
  .medical-grid,
  .contact-grid,
  .cards,
  .services,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .card,
  .service-block,
  .contact-info,
  .contact-form,
  .cta-box,
  .legal-content {
    padding: 22px;
  }
}
