:root {
  --ink: #22303c;
  --ink-soft: #4a5a68;
  --teal: #0d5c63;
  --teal-dark: #0a474d;
  --warm: #faf7f2;
  --warm-deep: #f1eae0;
  --accent: #b9713f;
  --white: #ffffff;
  --wa: #1fa855;
  --line: #e4dcd0;
  --radius: 14px;
  --shadow: 0 2px 24px rgba(34, 48, 60, .08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--warm);
  line-height: 1.65;
  font-size: 17px;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; line-height: 1.25; }
img { max-width: 100%; display: block; }
a { color: var(--teal); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }

/* ===== Header ===== */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, .95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: 1080px; margin: 0 auto; }
.logo { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700; color: var(--teal); text-decoration: none; }
.logo span { color: var(--accent); }
nav ul { display: flex; gap: 26px; list-style: none; align-items: center; }
nav a { text-decoration: none; color: var(--ink-soft); font-size: .95rem; }
nav a:hover { color: var(--teal); }
nav a.active { color: var(--teal); font-weight: 700; }
.btn-contact { background: var(--teal); color: var(--white) !important; padding: 9px 18px; border-radius: 999px; font-weight: 600; }
.btn-contact:hover { background: var(--teal-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--teal); cursor: pointer; }

/* ===== Hero (landing) ===== */
.hero { padding: 84px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 22px; }
.hero p.sub { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 30px; }
.cta-main {
  display: inline-block; background: var(--wa); color: var(--white); text-decoration: none;
  padding: 16px 28px; border-radius: 999px; font-weight: 700; font-size: 1.05rem;
  box-shadow: var(--shadow);
}
.cta-main:hover { filter: brightness(1.07); }
.cta-sec { display: block; margin-top: 16px; color: var(--teal); font-weight: 600; text-decoration: none; }
.cta-sec:hover { text-decoration: underline; }
.hero-photo, .about-photo, .photo-ph {
  aspect-ratio: 4/5; border-radius: var(--radius); background: var(--warm-deep);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--ink-soft); font-size: .9rem; padding: 20px; border: 2px dashed var(--line);
}

.hero-photo-real {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}
.about-photo-real {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
  position: sticky; top: 90px;
}

/* ===== Page hero (pagini interioare) ===== */
.page-hero { padding: 64px 0 40px; }
.page-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; max-width: 800px; }
.page-hero p.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 720px; }

/* ===== Prose (conținut lung) ===== */
.prose { max-width: 720px; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.prose p strong { color: var(--ink); }
.prose h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--ink); }
.prose ul { margin: 0 0 18px 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 8px; }

/* ===== Trust bar ===== */
.trust { background: var(--teal); color: var(--white); padding: 22px 0; }
.trust ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; list-style: none; font-size: .98rem; }
.trust li::before { content: "✓ "; color: #9fd8c9; font-weight: 700; }

/* ===== Funnel cards ===== */
.funnel h2 { text-align: center; font-size: 1.9rem; margin-bottom: 40px; }
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow); border-top: 4px solid var(--teal); display: flex; flex-direction: column;
}
.card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.card p { color: var(--ink-soft); flex: 1; }
.card a { display: inline-block; margin-top: 20px; font-weight: 700; text-decoration: none; }
.card a:hover { text-decoration: underline; }
.card.alt { border-top-color: var(--accent); }
.card.alt a { color: var(--accent); }

/* ===== Steps ===== */
.steps { background: var(--white); }
.steps h2 { font-size: 1.9rem; margin-bottom: 40px; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.steps-grid.two-col { grid-template-columns: 1fr 1fr; max-width: 820px; margin: 0 auto; }
.step { position: relative; padding-top: 14px; }
.step .num {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--warm-deep);
  -webkit-text-stroke: 1.5px var(--teal); position: absolute; top: -8px; left: 0;
}
.step h3 { font-size: 1.08rem; margin: 52px 0 10px; }
.step p { font-size: .95rem; color: var(--ink-soft); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.about-photo { position: sticky; top: 90px; }
.about h2 { font-size: 1.9rem; margin-bottom: 20px; }
.about p { margin-bottom: 18px; color: var(--ink-soft); }
.about p strong { color: var(--ink); }
.honest {
  background: var(--warm-deep); border-left: 4px solid var(--accent);
  padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic;
}

/* ===== Hospitals ===== */
.hospitals { background: var(--white); text-align: center; }
.hospitals h2 { font-size: 1.9rem; margin-bottom: 12px; }
.hospitals .lead { color: var(--ink-soft); margin-bottom: 36px; }
.hosp-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 30px; }
.hosp {
  background: var(--warm); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 22px; font-weight: 600; font-size: .95rem; color: var(--ink);
}
.strip { font-size: .95rem; color: var(--ink-soft); font-style: italic; }
.hospitals .more { display: inline-block; margin-top: 18px; font-weight: 600; }

/* ===== Hospital detail cards ===== */
.hosp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; text-align: left; }
.hosp-card { background: var(--white); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); }
.hosp-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.hosp-card .loc { font-size: .88rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.hosp-card p { font-size: .96rem; color: var(--ink-soft); }

/* ===== FAQ ===== */
.faq h2 { font-size: 1.9rem; text-align: center; margin-bottom: 36px; }
.faq details {
  background: var(--white); border-radius: var(--radius); margin-bottom: 12px;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 24px; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--teal); flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 24px 20px; color: var(--ink-soft); }

/* ===== Final CTA ===== */
.final { background: var(--teal); color: var(--white); text-align: center; }
.final h2 { font-size: 1.7rem; max-width: 760px; margin: 0 auto 30px; }
.final .cta-main { background: var(--white); color: var(--teal); }
.final .contact-line { margin-top: 26px; font-size: .98rem; opacity: .92; }
.final .contact-line a { color: var(--white); }

/* ===== Contact page ===== */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); text-align: center; }
.contact-card h3 { margin-bottom: 10px; }
.contact-card p { color: var(--ink-soft); margin-bottom: 16px; }

/* ===== Footer ===== */
footer { padding: 36px 0; font-size: .88rem; color: var(--ink-soft); }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
.foot ul { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; }
.foot a { color: var(--ink-soft); }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  background: var(--wa); color: var(--white); text-decoration: none;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.25); font-size: 1.9rem;
}
.wa-float svg { width: 32px; height: 32px; fill: var(--white); }

/* ===== Mobile ===== */
@media (max-width: 820px) {
  section { padding: 52px 0; }
  .hero { padding: 48px 0 40px; }
  .hero-grid, .cards, .about-grid, .hosp-cards, .contact-cards { grid-template-columns: 1fr; }
  .steps-grid, .steps-grid.two-col { grid-template-columns: 1fr 1fr; }
  .hero-photo { order: -1; aspect-ratio: 16/10; }
  .hero-photo-real { order: -1; }
  .about-photo-real { position: static; }
  .about-photo { position: static; aspect-ratio: 16/10; }
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--warm); padding: 20px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
}
@media (max-width: 520px) {
  .steps-grid, .steps-grid.two-col { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
