/* ============================================================
   Rólunk aloldal – saját elrendezés (bemutatkozás, alapértékek).
   Hero, gombok, kapcsolat-sáv: lásd css/style.css.
   ============================================================ */

/* ---------- Szekció-fejek (cím + arany elválasztó) ---------- */
.ro-section { background: var(--white); padding: clamp(28px, 4vw, 48px) 0 clamp(20px, 3vw, 36px); }
.ro-section-title { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: 20px; }
.ro-divider {
  width: 80px;
  border: 0;
  border-top: 2px solid var(--sand);
  border-radius: 2px;
  margin: 0 0 clamp(24px, 3vw, 40px);
}

/* ---------- A SZEGLETHÁZ BEMUTATÁSA ---------- */
.ro-bemutatas-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(26px, 5.5vw, 60px);
  align-items: start;
}
.ro-bemutatas-text p { color: var(--muted); line-height: 1.6; margin-bottom: 0.8em; font-size: clamp(0.9rem, 1.1vw, 1rem); }
.ro-bemutatas-text p:last-child { margin-bottom: 0; }
.ro-bemutatas-text strong { font-weight: 700; color: var(--ink); }

/* ---------- ALAPÉRTÉKEK – kártyarács ---------- */
.ro-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 26px);
  margin-top: clamp(20px, 3vw, 32px);
}
.ro-value-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 2.6vw, 30px);
}
.ro-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(59, 157, 157, 0.12);
  color: var(--teal);
  margin-bottom: 14px;
}
.ro-value-icon svg { width: 22px; height: 22px; }
.ro-value-card h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; }
.ro-value-card p { color: var(--muted); line-height: 1.7; margin: 0; font-size: 0.95rem; }

@media (max-width: 720px) {
  .ro-values-grid { grid-template-columns: 1fr; }
}

.ro-figure { margin: 0; }
.ro-figure .ro-figure-frame {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.ro-figure img { width: 100%; height: auto; display: block; }
.ro-figure figcaption { text-align: center; color: var(--muted); line-height: 1.9; padding-top: 14px; }

/* ---------- ALAPÉRTÉKEK ÉS KÜLDETÉS ---------- */
.ro-ertekek-text { max-width: 1080px; }
.ro-ertekek-text p { color: var(--muted); line-height: 1.6; margin-bottom: 0.8em; font-size: clamp(0.9rem, 1.1vw, 1rem); }
.ro-ertekek-text h4 { font-size: 1.1rem; color: var(--teal); margin: 1.4em 0 0.6em; }

/* ---------- KAPCSOLAT / IDŐPONT ---------- */
.ro-idopont {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--teal) 100%);
  padding: clamp(48px, 7vw, 90px) 0;
  scroll-margin-top: var(--header-h);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
}
.ro-idopont-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.ro-cta {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px) clamp(26px, 4vw, 60px);
}
.ro-cta h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: 14px; }
.ro-cta p { color: var(--muted); line-height: 1.8; margin-bottom: 26px; }

/* ---------- Sötét elérhetőség-sáv ---------- */
.ro-strip { padding: clamp(36px, 4vw, 54px) 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .ro-bemutatas-grid { grid-template-columns: 1fr; }
  .ro-idopont-inner { grid-template-columns: 1fr; }
}
