/* ===================================================
   LM Ügyvédi Iroda — Light Theme Stylesheet
   White dominant · Navy blue · Minimal gold
   =================================================== */

/* ─── CSS Variables ─── */
:root {
  --bg:         #ffffff;
  --bg-alt:     #f5f7fb;
  --bg-card:    #ffffff;
  --bg-card2:   #eef2fb;
  --blue:       #1a3a8f;
  --blue-mid:   #2452b2;
  --blue-light: #e8eef9;
  --blue-xlight:#f0f4fc;
  --gold:       #C9A84C;
  --gold-dim:   rgba(201, 168, 76, 0.18);
  --gold-faint: rgba(201, 168, 76, 0.08);
  --white:      #ffffff;
  --text:       #0f1c3f;
  --text-muted: #4a5778;
  --text-dim:   #8a96b0;
  --border:     #dde3f0;
  --border-blue: rgba(26,58,143,0.25);
  --shadow-sm:  0 1px 3px rgba(15,28,63,0.07), 0 1px 2px rgba(15,28,63,0.05);
  --shadow-md:  0 4px 16px rgba(15,28,63,0.10), 0 2px 6px rgba(15,28,63,0.06);
  --shadow-lg:  0 8px 32px rgba(15,28,63,0.13), 0 3px 10px rgba(15,28,63,0.07);
  --radius:     6px;
  --nav-h:      80px;
  --max-w:      1200px;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 6.5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

em { font-style: italic; color: var(--blue-mid); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--blue);
  transition: background-color var(--transition), border-color var(--transition), transform 0.2s, box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background-color: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary svg { flex-shrink: 0; transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--blue); border-color: var(--border-blue); }

.btn-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ─── Navigation ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-img { height: 60px; width: auto; object-fit: contain; }
.nav-brand { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1.5px solid var(--border-blue);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background-color: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 110;
}
.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
  border-radius: 2px;
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .brand-name { display: none; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 100;
    padding-top: var(--nav-h);
    border-left: 4px solid var(--blue);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link, .nav-cta { font-size: 1.1rem; letter-spacing: 0.15em; }
  .nav-cta { padding: 0.8rem 2.5rem; }
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem, 5vw, 3rem) 5rem;
  overflow: hidden;
  background: linear-gradient(165deg, #f0f4fc 0%, #ffffff 45%, #f5f7fb 100%);
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(26,58,143,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,143,0.2) 0%, transparent 70%);
  animation: particleDrift linear infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-title {
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  animation: scrollBounce 2.5s ease-in-out infinite;
  color: var(--text-dim);
}
.scroll-indicator span { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--blue), transparent); }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--blue);
  padding: 2rem 0;
}
.stats-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 3rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stat-divider { display: none; }
  .stat-item { padding: 0.75rem 1.5rem; }
}

/* ─── Section Shared ─── */
.section { padding-block: clamp(4rem, 10vw, 7rem); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; }

/* ─── Services Section — Accordion ─── */
.services-section { background: var(--bg-alt); }

.accordion {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.acc-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  margin-bottom: 0.55rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.acc-item:last-child { margin-bottom: 0; }
.acc-item.is-open {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  color: var(--text);
  background: transparent;
  text-align: left;
  transition: background-color var(--transition);
}
.acc-header:hover { background-color: var(--blue-xlight); }
.acc-item.is-open .acc-header { background-color: var(--blue-light); }

.acc-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.acc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dim);
  flex-shrink: 0;
  width: 2rem;
  text-align: right;
  transition: color var(--transition);
}
.acc-item.is-open .acc-num { color: var(--blue); }

.acc-icon {
  color: var(--blue-mid);
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
}
.acc-item.is-open .acc-icon { opacity: 1; color: var(--blue); }

.acc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--transition);
}
.acc-item.is-open .acc-title { color: var(--blue); }

.acc-chevron {
  flex-shrink: 0;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  transition: transform var(--transition), color var(--transition);
}
.acc-item.is-open .acc-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.5rem;
}
.acc-body:not([hidden]) {
  max-height: 600px;
  padding: 0 1.5rem 1.5rem;
}

.acc-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ─── About Section ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
}
.about-img-inner {
  width: 100%;
  height: 100%;
  background: var(--blue-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  position: relative;
}
.about-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(var(--blue) 1px, transparent 1px);
  background-size: 28px 28px;
}
.about-logo-large img {
  width: 460px;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.about-frame-deco-1 {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  border: 2px solid var(--blue-light);
  border-radius: var(--radius);
  z-index: -1;
}
.about-frame-deco-2 {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  width: 80px; height: 80px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  z-index: -1;
}

.about-content .section-title { margin-bottom: 1.5rem; }
.about-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1.5px solid var(--border);
}
.about-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about-stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .about-stat-number { font-size: 1.5rem; }
}

/* ─── Contact Section ─── */
.contact-section { background: var(--bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.contact-info-title {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 2rem;
}
.contact-list { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.contact-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.contact-value { display: block; color: var(--text); font-size: 0.95rem; line-height: 1.55; }
.contact-link:hover { color: var(--blue-mid); }

.contact-hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid var(--border);
}
.hours-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.hours-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.required { color: var(--gold); }
.form-input {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus {
  border-color: var(--blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(26,58,143,0.08);
}
.form-input.error { border-color: #dc2626; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.78rem; color: #dc2626; min-height: 1.1em; }
.form-success {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius);
  color: #166534;
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  text-align: center;
}
.form-fail {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  border-radius: var(--radius);
  color: #dc2626;
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  text-align: center;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ─── Footer ─── */
.footer {
  background: var(--blue);
  padding: 2.5rem 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer-tagline {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; }
.footer-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--white); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 0.5rem;
}
@media (max-width: 640px) { .footer-inner { flex-direction: column; align-items: flex-start; } }

/* ─── Animations ─── */
@keyframes particleDrift {
  from { transform: translate(0, 0) scale(1); opacity: 0.06; }
  to   { transform: translate(2%, 3%) scale(1.06); opacity: 0.14; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Reveal animations */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up    { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.22s !important; }
.delay-3 { transition-delay: 0.32s !important; }

/* ─── Fixed § background decoration ─── */
.bg-paragraph {
  position: fixed;
  bottom: -4rem;
  right: -2rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32rem, 56vw, 56rem);
  font-weight: 700;
  color: var(--blue);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

/* ─── Online Konzultáció block ─── */
.online-konsult {
  background: var(--white);
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.online-konsult::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
  border-radius: var(--radius) 0 0 var(--radius);
}

.ok-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.ok-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.ok-text { flex: 1; min-width: 280px; }

.ok-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.ok-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.ok-desc:last-child { margin-bottom: 0; }

.ok-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
}

.ok-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-xlight);
  border: 1px solid var(--border);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}

.ok-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-faint);
  border: 1px solid rgba(201,168,76,0.25);
  color: #8a6e20;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}

@media (max-width: 640px) {
  .online-konsult { padding: 1.5rem; }
  .ok-platforms { margin-top: 1rem; }
}

/* ─── Utility ─── */
.hide-mobile { display: inline; }
@media (max-width: 640px) { .hide-mobile { display: none; } }
.gold { color: var(--gold); }
