/* =============================================
   lior-ai Dark Theme — פילו נדל"ן
       ============================================= */

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

:root {
    --bg: #0a0a0f;
    --bg-card: #111118;
    --bg-card-hover: #18182a;
    --bg-nav: #0d0d15;
    --bg-footer: #0d0d15;
    --accent: #00e5a0;
    --accent-glow: rgba(0,229,160,0.15);
    --accent-hover: #00ffb3;
    --text: #e0e0e0;
    --text-muted: rgba(255,255,255,0.55);
    --text-heading: #ffffff;
    --border: rgba(255,255,255,0.08);
    --border-accent: rgba(0,229,160,0.3);
    --gold: #c8a951;
}

body {
  font-family: 'Heebo', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
}

a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--border-accent); text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }
a:focus { outline: 3px solid var(--accent); outline-offset: 2px; }

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

/* =============================================
   Top Bar (brand strip above nav)
   ============================================= */
.top-bar {
  background: #060609;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.top-bar a {
  color: var(--accent);
  text-decoration: none;
  margin-inline-start: 1rem;
}
.top-bar a:hover { text-decoration: underline; }

/* =============================================
   Navigation
   ============================================= */
.site-nav {
  background: var(--bg-nav);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 9000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.nav-brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.85rem 0;
  white-space: nowrap;
}
.nav-brand span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
  display: block;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-glow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #fff;
}

.nav-toggle svg { width: 28px; height: 28px; fill: currentColor; }

/* =============================================
   Hero Section
   ============================================= */
.hero {
  background: linear-gradient(135deg, #0d0d15 0%, #111118 50%, #0a0a0f 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,229,160,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--text-heading);
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero .tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00e5a0, #00b8d4);
  color: #00120d;
  padding: 0.9rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,229,160,0.3);
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,229,160,0.45);
  color: #00120d;
}

/* Sub-page hero (smaller) */
.hero-sub {
  padding: 3rem 1.5rem 2.5rem;
}
.hero-sub h1 { font-size: 2.2rem; }

/* =============================================
   Stats Bar
   ============================================= */
.stats-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1.5rem;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* =============================================
   Container / Sections
   ============================================= */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.section-title {
  font-size: 1.6rem;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.75rem auto 2rem;
  border: none;
}

/* =============================================
   Cards
   ============================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-align: center;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,229,160,0.1);
  border-color: var(--border-accent);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(0,229,160,0.1), rgba(0,184,212,0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.card h3 {
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.card-link {
  display: inline-block;
  background: linear-gradient(135deg, #00e5a0, #00b8d4);
  color: #00120d;
  padding: 0.55rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,229,160,0.3);
  color: #00120d;
}

/* =============================================
   Content Box (for sub-pages)
   ============================================= */
.content-box {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.content-box h2 {
  font-size: 1.35rem;
  color: var(--text-heading);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.content-box h2:first-child { margin-top: 0; }

.content-box p {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  color: var(--text);
}

.content-box ul {
  padding-right: 1.5rem;
  margin: 0.5rem 0 1.2rem;
}

.content-box li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
  color: var(--text);
}

.content-box li strong {
  color: var(--accent);
}

.content-box table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.content-box th,
.content-box td {
  border: 1px solid var(--border);
  padding: 0.75rem;
  text-align: right;
}

.content-box th {
  background: var(--bg-nav);
  color: var(--text-heading);
  font-weight: 700;
}

.content-box tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}

.content-box .contact-info {
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.content-box .contact-info p {
  margin-bottom: 0.4rem;
}

/* =============================================
   About Box (homepage)
   ============================================= */
.about-section {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  display: flex;
  gap: 2rem;
  align-items: center;
}

.about-text { flex: 1; }

.about-text h2 {
  font-size: 1.5rem;
  color: var(--text-heading);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.3rem;
  display: inline-block;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

/* =============================================
   Process / Steps
   ============================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5a0, #00b8d4);
  color: #00120d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: var(--text-heading);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   Testimonials
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial::before {
  content: '\201D';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  color: rgba(0,229,160,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-heading);
  font-size: 0.9rem;
  font-style: normal;
}

.testimonial-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* =============================================
   Lead Form
   ============================================= */
.lead-section {
  background: linear-gradient(135deg, #111118, #0d0d15);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
  border: 1px solid var(--border);
}

.lead-section h2 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lead-section > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.lead-form-row {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.lead-form-row input {
  flex: 1;
  min-width: 180px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  text-align: right;
}
.lead-form-row input::placeholder { color: rgba(255,255,255,0.35); }
.lead-form-row input:focus { outline: 2px solid var(--accent); border-color: transparent; }

.lead-btn {
  padding: 0.8rem 2.5rem;
  background: linear-gradient(135deg, #00e5a0, #00b8d4);
  color: #00120d;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lead-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,229,160,0.3); }

#lead-status { margin-top: 0.75rem; font-size: 0.95rem; }

/* =============================================
   Contact Info Section
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.25s;
}
.contact-card:hover {
  border-color: var(--border-accent);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,229,160,0.1), rgba(0,184,212,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card .contact-detail { flex: 1; }
.contact-detail strong { display: block; color: var(--text-heading); font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact-detail a { font-size: 0.9rem; color: var(--text-muted); }
.contact-detail span { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================
   CTA Buttons
   ============================================= */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00e5a0, #00b8d4);
  color: #00120d;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,229,160,0.3); color: #00120d; }

.cta-whatsapp {
  background: #25d366;
  color: #fff;
}
.cta-whatsapp:hover { background: #1ebe57; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }

.cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* =============================================
   Chatbot
   ============================================= */
#chat-toggle {
  position: fixed;
  bottom: 100px;
  left: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5a0, #00b8d4);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,229,160,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: transform 0.25s;
}
#chat-toggle:hover { transform: scale(1.1); }
#chat-toggle svg { width: 28px; height: 28px; fill: #00120d; }

#chat-window {
  display: none;
  position: fixed;
  bottom: 170px;
  left: 24px;
  width: 370px;
  max-height: 500px;
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.6);
  z-index: 10001;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
}
#chat-window.open { display: flex; }

#chat-header {
  background: var(--bg-nav);
  color: var(--accent);
  padding: 1rem 1.25rem;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 200px;
  max-height: 320px;
  background: var(--bg);
}

.msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.93rem;
  line-height: 1.6;
  word-break: break-word;
}
.msg.bot {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  align-self: flex-start;
  border-bottom-right-radius: 4px;
}
.msg.user {
  background: linear-gradient(135deg, #00e5a0, #00b8d4);
  color: #00120d;
  align-self: flex-end;
  border-bottom-left-radius: 4px;
}

#chat-input-area {
  display: flex;
  border-top: 1px solid var(--border);
}
#chat-input {
  flex: 1;
  border: none;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  background: var(--bg-card);
  color: var(--text);
}
#chat-send {
  background: var(--bg-nav);
  color: var(--accent);
  border: none;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
#chat-send:hover { background: #111118; }

/* =============================================
   Footer
   ============================================= */
.site-footer {
  background: var(--bg-footer);
  color: var(--text);
  padding: 2.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-col h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-col p,
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
  text-decoration: none;
  display: block;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--accent); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* =============================================
   Background sections
   ============================================= */
.bg-white { background: var(--bg); }
.bg-light { background: #08080d; }
.bg-dark { background: var(--bg-nav); color: #fff; }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero .subtitle { font-size: 1.05rem; }
  .hero .tagline { font-size: 1rem; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero-sub { padding: 2.5rem 1.25rem 2rem; }
  .hero-sub h1 { font-size: 1.7rem; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item .stat-number { font-size: 1.8rem; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1.5rem; border-radius: 0; }
  .site-nav .nav-inner { position: relative; }

  .container { padding: 2rem 1rem; }
  .container-narrow { padding: 2rem 1rem; }

  .about-section { flex-direction: column; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }

  .content-box { padding: 1.5rem; }

  #chat-window { left: 10px; right: 10px; width: auto; bottom: 140px; }
  #chat-toggle { bottom: 80px; left: 16px; }

  .lead-form-row { flex-direction: column; }
  .lead-form-row input { min-width: auto; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .top-bar { font-size: 0.78rem; justify-content: center; text-align: center; }
}

/* =============================================
   Hero Sub-tagline
   ============================================= */
.hero .sub-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  margin: -1rem auto 2rem;
  line-height: 1.6;
  font-style: italic;
}

/* =============================================
   Animated Counters (Stats Bar)
   ============================================= */
.stat-item .stat-number[data-counter] {
  transition: color 0.3s;
}

/* =============================================
   Useful Links Section
   ============================================= */
.useful-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.useful-link-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: var(--text);
}
.useful-link-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  color: var(--accent);
}
.useful-link-item .link-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.useful-link-item span {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

/* =============================================
   About Noam — Achievements & Credentials
   ============================================= */
.about-noam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .about-noam-grid { grid-template-columns: 1fr; }
}

.about-noam-box {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
}

.about-noam-box h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.about-noam-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-noam-box ul li {
  padding: 0.4rem 0;
  padding-right: 1.4rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.about-noam-box ul li:last-child { border-bottom: none; }

.about-noam-box ul li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  top: 0.45rem;
}

.credentials-box ul li::before {
  content: '★';
  font-size: 0.75rem;
  top: 0.5rem;
}

.hall-of-fame-badge {
  background: linear-gradient(135deg, rgba(200,169,81,0.15), rgba(200,169,81,0.05));
  border: 1px solid rgba(200,169,81,0.3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: var(--gold);
  line-height: 1.5;
}

.about-intro-box {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.about-intro-box p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}
.about-intro-box p:last-child { margin-bottom: 0; }

.about-closing {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0,229,160,0.06), rgba(0,184,212,0.04));
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.05rem;
}

/* =============================================
   Nav Logo Image
   ============================================= */
.nav-brand-logo {
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  padding: 4px 8px;
}

/* =============================================
   Noam Profile Photo (About section)
   ============================================= */
.about-intro-with-photo {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.about-photo-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.noam-profile-img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 0 24px rgba(0,229,160,0.22), 0 4px 16px rgba(0,0,0,0.4);
  display: block;
}

.noam-profile-name {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.about-bio-col {
  flex: 1;
}

@media (max-width: 600px) {
  .about-intro-with-photo {
    flex-direction: column;
    align-items: center;
  }
  .about-bio-col {
    text-align: center;
  }
}

/* =============================================
   YouTube Section
   ============================================= */
.youtube-grid {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.youtube-embed-wrapper {
  flex: 0 1 460px;
  min-width: 260px;
}

.youtube-embed-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
}

.youtube-embed-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.youtube-card {
  flex: 1;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.youtube-card:hover {
  border-color: #ff3333;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,0,0,0.13);
  color: var(--text);
}

.youtube-play {
  width: 54px;
  height: 54px;
  background: #ff0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,0,0,0.35);
  transition: transform 0.2s;
}

.youtube-card:hover .youtube-play {
  transform: scale(1.08);
}

.youtube-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.youtube-label {
  color: var(--text-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.youtube-sublabel {
  color: var(--text-muted);
  font-size: 0.87rem;
}
