/* ============================================
   תור-Q — Landing Page Styles
   Premium barbershop aesthetic: charcoal + gold
   ============================================ */

:root {
  --bg-dark: #15161c;
  --bg-darker: #0d0e12;
  --gold: #d4af37;
  --gold-light: #f0d27a;
  --cream: #faf6ee;
  --cream-deep: #f1e9da;
  --text-dark: #1c1d22;
  --text-muted: #6b6d78;
  --text-on-dark: #f5f1e8;
  --text-on-dark-muted: #b8b6c2;
  --border-light: #e8e2d4;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(20, 20, 30, 0.08);
  --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.35);
  --max-width: 1160px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Heebo', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
}

h1, h2 {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  font-size: 18px;
}

.section { padding: 88px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-darker);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45); }

.btn-secondary {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.hero .btn-secondary, .final-cta .btn-secondary { color: var(--gold-light); border-color: var(--gold-light); }
.btn-secondary:hover { background: rgba(212, 175, 55, 0.12); }

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  padding: 10px 18px;
}
.btn-ghost:hover { color: var(--gold-light); }

.btn-small { padding: 10px 22px; font-size: 14px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 14, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-on-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo span { color: var(--gold-light); }

.logo-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-on-dark) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 8px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--gold-light); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== Hero ===== */
.hero {
  background: radial-gradient(ellipse at top right, #23252e 0%, var(--bg-dark) 45%, var(--bg-darker) 100%);
  color: var(--text-on-dark);
  padding: 90px 0 110px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-size: 14px;
  color: var(--text-on-dark-muted);
}
.trust-badges li::marker { content: ''; }

/* ----- Hero visual / phone mockup ----- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-phone-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.35));
}

/* ===== Problem ===== */
.problem { background: var(--cream); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.problem-icon { font-size: 36px; display: block; margin-bottom: 14px; }
.problem-card p { margin: 0; font-weight: 500; }

.problem-transition {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin: 48px 0 0;
}

/* ===== Features ===== */
.features { background: var(--cream-deep); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20,20,30,0.12);
}

.feature-icon {
  font-size: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  margin-bottom: 18px;
}

.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { margin: 0; color: var(--text-muted); font-size: 15px; }

/* ===== How it works ===== */
.how-it-works { background: var(--cream); }

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.hiw-col {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.hiw-col h3 { font-size: 22px; margin-bottom: 24px; }

.hiw-col ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hiw-col li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
}

.hiw-col li span {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-darker);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Video ===== */
.video-section { background: var(--cream-deep); }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.video-card-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-on-dark-muted);
  box-shadow: var(--shadow-strong);
}

.video-placeholder .play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.video-frame.video-frame-portrait iframe {
  aspect-ratio: 9 / 16;
  max-width: 320px;
  display: block;
  margin: 0 auto;
}

/* ===== Contact ===== */
.contact-section { background: var(--cream); }

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition);
  direction: rtl;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-result {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.form-success { background: #e8f5e9; color: #2e7d32; }
.form-error   { background: #ffebee; color: #c62828; }

.form-privacy {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* ===== Pricing Toggle ===== */
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border: 2px solid var(--border-light);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.toggle-btn {
  padding: 10px 28px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}

.toggle-btn.active {
  background: var(--bg-dark);
  color: var(--gold);
}

/* ===== Pricing ===== */
.pricing-section { background: var(--cream-deep); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-strong);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 32px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-darker);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
}

.pricing-name { font-size: 22px; margin-bottom: 8px; }

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 12px;
}

.pricing-period { font-size: 16px; font-weight: 500; color: var(--text-muted); }

.pricing-desc { color: var(--text-muted); margin: 0 0 24px; font-size: 15px; }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  flex: 1;
}

.pricing-card .btn { align-self: stretch; text-align: center; }

.pricing-promo {
  margin-top: 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: var(--radius);
  padding: 28px;
  color: var(--bg-darker);
}

.pricing-promo-title { font-size: 20px; font-weight: 800; margin: 0 0 8px; }
.pricing-promo p:last-child { margin: 0; font-weight: 500; }

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin: 24px auto 0;
  max-width: 620px;
}

.pricing-draft-badge {
  display: table;
  margin: 20px auto 0;
  background: #fff;
  border: 1px dashed var(--gold);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
}

/* ===== Multi-barber section ===== */
.multi-barber {
  background: radial-gradient(ellipse at top left, #23252e 0%, var(--bg-dark) 45%, var(--bg-darker) 100%);
  color: var(--text-on-dark);
}

.multi-barber h2 { color: var(--text-on-dark); }
.multi-barber .section-sub { color: var(--text-on-dark-muted); }
.multi-barber .eyebrow {
  background: rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.65);
  color: #fff;
}

.multi-barber-eyebrow {
  text-align: center;
  margin-bottom: 20px;
}

.mb-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  margin-bottom: 48px;
}

.mb-pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}

.mb-pillar:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
}

.mb-pillar-icon {
  font-size: 36px;
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(240, 210, 122, 0.15), rgba(212, 175, 55, 0.08));
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mb-pillar h3 {
  font-size: 19px;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}

.mb-pillar p {
  color: var(--text-on-dark-muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.mb-video-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.mb-video-label {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: 16px;
}

.mb-coming-soon {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  text-align: center;
  margin: 0;
}

/* ===== Testimonials ===== */
.testimonials { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.stars { color: var(--gold); font-size: 18px; margin: 0 0 12px; letter-spacing: 2px; }
.quote { font-size: 15px; color: var(--text-dark); margin: 0 0 16px; }
.author { font-size: 14px; color: var(--text-muted); margin: 0; font-weight: 700; }

/* ===== FAQ ===== */
.faq { background: var(--cream-deep); }

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: right;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  padding: 0 22px;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 22px 20px;
}

.faq-answer p { margin: 0; }

/* ===== Final CTA ===== */
.final-cta {
  background: radial-gradient(ellipse at bottom left, #23252e 0%, var(--bg-dark) 45%, var(--bg-darker) 100%);
  color: var(--text-on-dark);
  text-align: center;
}

.final-cta-inner h2 { color: var(--text-on-dark); }
.final-cta-inner p {
  color: var(--text-on-dark-muted);
  font-size: 18px;
  margin-bottom: 32px;
}
.final-cta .hero-actions { justify-content: center; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-darker);
  color: var(--text-on-dark-muted);
  padding: 48px 0;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-tagline { margin: 0; font-size: 14px; }

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}
.footer-nav a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-copy { font-size: 13px; margin: 8px 0 0; opacity: 0.7; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Mobile (CSS-only, desktop layout untouched)
   ============================================ */
@media (max-width: 900px) {
  .logo-tagline { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .trust-badges { grid-template-columns: 1fr; justify-items: center; }
  .hero-visual { order: -1; margin-bottom: 24px; }
  .hero-phone-image { width: 260px; }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid { grid-template-columns: 1fr; }
  .mb-pillars { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta .btn-ghost { display: none; }

  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    background: var(--bg-darker);
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
  }

  .section { padding: 64px 0; }
}

@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .header-cta .btn-primary { padding: 8px 16px; font-size: 13px; }
}
