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

:root {
  --teal:   #1D5C5C;
  --teal-lt:#2E7D7D;
  --coral:  #E05D3A;
  --gold:   #F0B429;
  --cream:  #FDFAF5;
  --warm:   #FFF8EE;
  --ink:    #1A1A2E;
  --muted:  #3D3D55;
  --border: #E8E0D4;
  --radius: 14px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--ink); line-height: 1.6; }
h1,h2,h3 { font-family: 'Fraunces', serif; line-height: 1.2; }

/* ── NAV ── */
nav {
  background: rgba(253,250,245,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--teal);
  font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600;
  flex-shrink: 0;
}
.nav-brand img { height: 100px; border-radius: 8px; }
.nav-links {
  list-style: none; display: flex; gap: 4px; flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  padding: 7px 14px; border-radius: 100px;
  font-size: .9rem; font-weight: 500;
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--teal); color: #fff;
}
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.4rem; cursor: pointer; color: var(--teal);
}

/* ── CONTAINER ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ── SECTIONS ── */
section { padding: 72px 24px; }
section:nth-child(even) { background: var(--warm); }

.label {
  display: inline-block;
  background: #E8F5F5; color: var(--teal);
  border-radius: 100px; padding: 5px 16px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 14px;
}
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 14px; }
.subtitle { color: var(--muted); font-size: 1rem; max-width: 580px; margin: 0 auto 40px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1D5C5C 0%, #2E7D7D 60%, #3D9494 100%);
  color: #fff; text-align: center; padding: 80px 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px; padding: 6px 18px;
  font-size: .82rem; font-weight: 600; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { font-size: 1.05rem; max-width: 580px; margin: 0 auto 32px; opacity: .9; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--coral); color: #fff;
  padding: 13px 28px; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: all .2s; display: inline-block;
}
.btn-primary:hover { background: #c44d2c; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.55); color: #fff;
  padding: 11px 26px; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: all .2s; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-teal {
  background: var(--teal); color: #fff;
  padding: 13px 28px; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: all .2s; display: inline-block;
}
.btn-teal:hover { background: var(--teal-lt); transform: translateY(-2px); }

/* ── HIGHLIGHTS ── */
.highlights { background: var(--ink); padding: 32px 24px; }
.highlights-grid {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 40px;
  max-width: 1080px; margin: 0 auto;
}
.highlight { text-align: center; color: #fff; }
.highlight-num { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.highlight-label { font-size: .82rem; opacity: .9; margin-top: 2px; }

/* ── CARDS ── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px;
  text-align: left;
}
.card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .9rem; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--teal); color: #fff;
  padding: 56px 24px; text-align: center;
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.page-header p { opacity: 1; color: rgba(255,255,255,.9); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ── ECOSYSTEM (Despre noi) ── */
.ecosystem-hub {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-lt) 100%);
  color: #fff; border-radius: 20px;
  padding: 32px 40px; text-align: center;
  max-width: 480px; margin: 0 auto 16px;
  box-shadow: 0 8px 32px rgba(29,92,92,.22);
}
.ecosystem-hub .hub-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; opacity: .7; margin-bottom: 8px;
}
.ecosystem-hub h2 {
  font-size: 1.6rem; color: #fff; margin-bottom: 10px;
}
.ecosystem-hub .hub-divider {
  width: 36px; height: 2px; background: rgba(240,180,41,.6);
  margin: 10px auto; border-radius: 2px;
}
.ecosystem-hub p { font-size: .88rem; opacity: .85; }
.ecosystem-connector {
  text-align: center; color: #666; font-size: .82rem;
  font-style: italic; margin: 12px 0;
}
.ecosystem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; max-width: 780px; margin: 0 auto;
}
.ecosystem-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px 18px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.ecosystem-logo {
  width: 64px; height: 64px; border-radius: 12px;
  margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ecosystem-logo img { width: 100%; height: 100%; object-fit: contain; }
.ecosystem-card h3 { font-size: .9rem; margin-bottom: 6px; }
.ecosystem-badge {
  display: inline-block; border-radius: 100px;
  padding: 3px 12px; font-size: .72rem; font-weight: 600; margin-bottom: 8px;
}
.ecosystem-card p { color: var(--muted); font-size: .8rem; }
.ecosystem-tagline {
  background: var(--teal); color: #fff;
  border-radius: 100px; padding: 10px 28px;
  font-size: .85rem; font-weight: 500;
  display: inline-block; margin-top: 24px;
}

/* ── TEAM ── */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 22px;
}
.team-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px 20px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: .82rem; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px;
}
.testimonial {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial p { color: var(--muted); font-style: italic; font-size: .93rem; line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-name { font-weight: 600; font-size: .88rem; }
.testimonial-role { font-size: .78rem; color: var(--muted); }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px;
}
.service-card {
  background: #fff; border-radius: var(--radius);
  border: 2px solid var(--border); padding: 32px 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: relative;
}
.service-card.featured { border-color: var(--teal); }
.service-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  padding: 3px 16px; border-radius: 100px; font-size: .75rem; font-weight: 600; white-space: nowrap;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-price { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--teal); }
.service-period { color: var(--muted); font-size: .82rem; margin-bottom: 14px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-features li { font-size: .88rem; display: flex; gap: 8px; }
.service-features li::before { content: '✓'; color: var(--teal); font-weight: 700; }
.service-features:not(.program) li { font-size: .93rem; font-weight: 600; font-style: italic; }
.card-section-label { font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin: 14px 0 8px; padding-top: 14px; border-top: 1px solid var(--border); }
.service-features.program li::before { content: '·'; color: var(--muted); font-weight: 400; font-size: 1rem; line-height: 1; }

/* ── ACTIVITIES ── */
.activities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px;
}
.activity {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 20px 14px; text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: transform .2s;
}
.activity:hover { transform: translateY(-3px); }
.activity-icon { font-size: 2rem; margin-bottom: 8px; }
.activity h4 { font-size: .85rem; color: var(--teal); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { font-size: 1.4rem; }
.contact-item strong { display: block; font-size: .88rem; color: var(--muted); }
.contact-item span { font-size: 1rem; font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff;
  font-size: .93rem; color: var(--ink); width: 100%; outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.gdpr-line { font-size: .78rem; color: var(--muted); display: flex; gap: 8px; }
.gdpr-line input { width: auto; }
.form-submit {
  background: var(--coral); color: #fff; border: none;
  border-radius: 100px; padding: 14px; font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.form-submit:hover { background: #c44d2c; transform: translateY(-2px); }

/* ── TWO COL LAYOUT ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ── IMAGES ── */
.img-rounded { width: 100%; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,.12); display: block; }

/* ── TEAM PHOTO CARDS ── */
.team-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center;
  border-radius: 12px; margin-bottom: 16px; display: block;
}
.team-role { display: block; font-size: .78rem; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.team-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.team-org {
  display: inline-block; background: #E8F5F5; color: var(--teal);
  border-radius: 100px; padding: 3px 12px; font-size: .72rem; font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,.65);
  padding: 32px 24px; text-align: center; font-size: .85rem;
}
footer strong { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 12px 16px;
  }
  .nav-links.open { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .ecosystem-hub { padding: 24px 20px; }
}
