.latin { font-family: 'DM Sans', sans-serif; direction: ltr; unicode-bidi: isolate; display: inline-block; }
[dir="rtl"] .fv-pay-row > div[style*="text-align:right"] { text-align: left !important; }
:root {
  --blue: #0069FF; --blue-dark: #0050CC; --blue-light: #EEF4FF;
  --blue-mid: #4D9BFF; --text: #1a1a2e; --muted: #6B7280;
  --border: #E5E7EB; --bg: #FFFFFF; --bg-soft: #F9FAFB; --green: #12B76A;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg); color: var(--text);
  overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 64px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 48px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s;
}
nav.scrolled { border-color: var(--border); box-shadow: 0 1px 12px rgba(0,0,0,0.05); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; margin-inline-start: 48px; flex: 1; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-login { font-size: 14px; font-weight: 500; color: var(--text); text-decoration: none; transition: color 0.15s; }
.nav-login:hover { color: var(--blue); }
.btn-blue {
  background: var(--blue); color: white; padding: 9px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer; text-decoration: none;
  transition: background 0.15s, transform 0.15s; display: inline-block;
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}
.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 198;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 199;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
[dir="rtl"] .mobile-menu {
  right: auto;
  left: -100%;
  transition: left 0.3s ease;
}
.mobile-menu.active {
  right: 0;
}
[dir="rtl"] .mobile-menu.active {
  left: 0;
  right: auto;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px 24px;
  flex-shrink: 0;
}
.mobile-menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}
.mobile-menu-links {
  list-style: none;
  padding: 24px 0;
}
.mobile-menu-links li {
  margin-bottom: 4px;
}
.mobile-menu-links a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-menu-links a:hover {
  color: var(--blue);
}
.mobile-menu-footer {
  padding: 20px 24px;
  background: white;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 6px #673de61a;
}
.mobile-footer-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-footer-btn:hover {
  color: var(--blue);
}
.mobile-footer-icon {
  font-size: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-footer-btn svg {
  color: var(--muted);
  transition: color 0.15s;
}
.mobile-footer-btn:hover svg {
  color: var(--blue);
}

.hero { padding: 128px 48px 0; text-align: center; position: relative; overflow: hidden; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: var(--blue-light);
  color: var(--blue); font-size: 13px; font-weight: 600;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  flex-shrink: 0; animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(40px, 5vw, 68px); font-weight: 700; line-height: 1.06;
  letter-spacing: -2.5px; color: var(--text);
  max-width: 820px; margin: 0 auto 20px;
}
.hero h1 .accent { color: var(--blue); }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 36px; line-height: 1.65; font-weight: 400; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.btn-blue-lg {
  background: var(--blue); color: white; padding: 14px 28px; border-radius: 10px;
  font-size: 16px; font-weight: 600; border: none; cursor: pointer; text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s; display: inline-block;
  box-shadow: 0 4px 16px rgba(0,105,255,0.25);
}
.btn-blue-lg:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,105,255,0.3); }
.btn-ghost-lg {
  background: transparent; color: var(--text); padding: 14px 28px; border-radius: 10px;
  font-size: 16px; font-weight: 600; border: 1.5px solid var(--border); cursor: pointer;
  text-decoration: none; transition: all 0.15s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost-lg:hover { border-color: var(--blue); color: var(--blue); }
.hero-trust { font-size: 13px; color: var(--muted); margin-bottom: 64px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.hero-mockup-wrapper { max-width: 1000px; margin: 0 auto; position: relative; }
.hero-mockup { background: white; border: 1px solid var(--border); border-radius: 16px 16px 0 0; box-shadow: 0 -2px 0 0 var(--border), 0 32px 80px rgba(0,0,0,0.1); overflow: hidden; }
.mockup-topbar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.tb-dot { width: 10px; height: 10px; border-radius: 50%; }
.tb-red { background: #FF5F57; } .tb-yellow { background: #FFBD2E; } .tb-green { background: #28C840; }
.tb-url { flex: 1; background: white; border: 1px solid var(--border); border-radius: 6px; padding: 5px 12px; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; max-width: 320px; margin: 0 auto; direction: ltr; }
.tb-lock { color: var(--green); font-size: 11px; }
.mockup-body { display: grid; grid-template-columns: 280px 1fr; min-height: 420px; }
.mockup-sidebar { border-inline-end: 1px solid var(--border); padding: 28px 24px; }
.sidebar-avatar { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--blue), #4D9BFF); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 22px; margin-bottom: 14px; }
.sidebar-name { font-weight: 700; font-size: 17px; color: var(--text); margin-bottom: 3px; }
.sidebar-role { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.sidebar-link { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--blue); font-weight: 500; background: var(--blue-light); padding: 3px 10px; border-radius: 5px; margin-bottom: 20px; }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.sidebar-service-label { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 10px; }
.sidebar-services { display: flex; flex-direction: column; gap: 8px; }
.sidebar-service { padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--border); cursor: pointer; transition: all 0.15s; display: flex; justify-content: space-between; align-items: center; }
.sidebar-service.active { border-color: var(--blue); background: var(--blue-light); }
.sidebar-service-name { font-size: 13px; font-weight: 600; color: var(--text); }
.sidebar-service-dur { font-size: 11px; color: var(--muted); margin-top: 1px; }
.sidebar-service-price { font-size: 14px; font-weight: 700; color: var(--blue); }
.mockup-main { padding: 28px 32px; }
.mockup-month { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; direction: ltr; }
.mockup-month-nav { margin-inline-start: auto; display: flex; gap: 4px; }
.month-btn { width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--border); background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--muted); transition: all 0.15s; }
.month-btn:hover { border-color: var(--blue); color: var(--blue); }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; direction: ltr; }
.dow { text-align: center; font-size: 11px; font-weight: 600; color: var(--muted); padding: 4px 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 24px; direction: ltr; }
.cal-d { aspect-ratio: 1; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; cursor: default; color: var(--muted); }
.cal-d.avail { color: var(--text); cursor: pointer; transition: all 0.12s; }
.cal-d.avail:hover { background: var(--blue-light); color: var(--blue); }
.cal-d.selected { background: var(--blue); color: white; font-weight: 700; }
.cal-d.past { opacity: 0.3; }
.cal-d.today { border: 1.5px solid var(--blue); color: var(--blue); font-weight: 700; }
.time-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; direction: ltr; }
.time-slot { padding: 9px 18px; border-radius: 8px; border: 1.5px solid var(--border); font-size: 13px; font-weight: 500; color: var(--text); cursor: pointer; transition: all 0.12s; background: white; }
.time-slot:hover { border-color: var(--blue); color: var(--blue); }
.time-slot.selected { background: var(--blue); border-color: var(--blue); color: white; font-weight: 600; }
.mockup-confirm { margin-top: 20px; display: flex; justify-content: flex-end; }
.confirm-btn { background: var(--blue); color: white; padding: 11px 24px; border-radius: 9px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.15s; display: flex; align-items: center; gap: 8px; direction: ltr; }
.confirm-btn:hover { background: var(--blue-dark); }
.stats-strip { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 48px; display: flex; justify-content: center; gap: 0; }
.stat-item { flex: 1; max-width: 220px; text-align: center; padding: 0 32px; border-inline-end: 1px solid var(--border); }
.stat-item:last-child { border-inline-end: none; }
.stat-n { font-size: 32px; font-weight: 700; color: var(--text); letter-spacing: -1px; line-height: 1; }
.stat-l { font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 400; }
.section { padding: 96px 48px; }
.section-centered { text-align: center; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.section-title { font-size: clamp(28px, 3vw, 44px); font-weight: 700; line-height: 1.12; letter-spacing: -1.5px; color: var(--text); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.65; max-width: 520px; font-weight: 400; }
.section-centered .section-sub { margin-inline-start: auto; margin-inline-end: auto; }
.pain-section { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.pain-card { background: white; border-radius: 14px; padding: 28px; border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s; }
.pain-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }
.pain-icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: #FEF3C7; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.pain-icon-wrap.red { background: #FEE2E2; } .pain-icon-wrap.purple { background: #EDE9FE; }
.pain-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px; }
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding: 80px 80px; max-width: 1200px; margin: 0 auto; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
[dir="rtl"] .feature-row.reverse { direction: ltr; }
[dir="rtl"] .feature-row.reverse > * { direction: rtl; }
.feature-row + .feature-row { border-top: 1px solid var(--border); }
.feature-text .section-label { margin-bottom: 12px; }
.feature-text .section-title { font-size: clamp(24px, 2.5vw, 36px); margin-bottom: 14px; }
.feature-text .section-sub { font-size: 16px; max-width: 420px; }
.feature-checks { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.fcheck { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.fcheck-icon { width: 20px; height: 20px; border-radius: 50%; background: #DCFCE7; color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.feature-visual { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; position: relative; }
.fv-calendar { padding: 24px; }
.fv-cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.fv-cal-title { font-weight: 700; font-size: 15px; color: var(--text); }
.fv-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; direction: ltr; }
.fv-dow { text-align: center; font-size: 10px; color: var(--muted); font-weight: 600; padding: 4px 0; }
.fv-day { aspect-ratio: 1; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: var(--muted); }
.fv-day.has-booking { background: var(--blue-light); color: var(--blue); font-weight: 700; position: relative; cursor: default; }
.fv-day.has-booking::after { content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); }
.fv-day.today-d { border: 1.5px solid var(--blue); color: var(--blue); }
.fv-day.past-d { opacity: 0.3; }
.fv-upcoming { margin-top: 16px; }
.fv-event { display: flex; align-items: center; gap: 10px; padding: 10px; background: white; border-radius: 8px; border: 1px solid var(--border); margin-bottom: 6px; }
.fv-event-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.fv-event-name { font-size: 13px; font-weight: 600; color: var(--text); }
.fv-event-time { font-size: 11px; color: var(--muted); margin-inline-start: auto; direction: ltr; }
.fv-payment { padding: 24px; }
.fv-pay-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
.fv-pay-name { font-size: 13px; font-weight: 500; color: var(--text); }
.fv-pay-time { font-size: 11px; color: var(--muted); margin-top: 2px; }
.fv-pay-amount { font-size: 14px; font-weight: 700; color: var(--green); direction: ltr; }
.fv-pay-status { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 5px; background: #DCFCE7; color: var(--green); }
.fv-services { padding: 24px; }
.fv-service-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 14px; margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
.fv-service-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.fv-service-name { font-size: 14px; font-weight: 600; color: var(--text); }
.fv-service-meta { font-size: 12px; color: var(--muted); }
.fv-service-price { margin-inline-start: auto; font-size: 15px; font-weight: 700; color: var(--blue); direction: ltr; }
.trust-section { background: var(--text); padding: 64px 48px; text-align: center; }
.trust-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 36px; }
.trust-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.trust-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 16px 22px; display: flex; align-items: center; gap: 10px; transition: background 0.2s; }
.trust-badge:hover { background: rgba(255,255,255,0.11); }
.trust-badge-icon { font-size: 22px; }
.trust-badge-text { font-size: 13px; font-weight: 600; color: white; }
.trust-badge-sub { font-size: 11px; color: rgba(255,255,255,0.5); }
.pricing-section { background: var(--bg-soft); border-top: 1px solid var(--border); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; max-width: 1040px; margin-inline-start: auto; margin-inline-end: auto; }
.pricing-price-unit { font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 4px; }
.pricing-card.featured .pricing-price-unit { color: rgba(255,255,255,0.55); }
.pricing-features li.section-sep { padding-top: 10px; margin-top: 6px; border-top: 1px dashed var(--border); font-size: 10.5px; font-weight: 700; color: var(--muted); letter-spacing: 0.6px; }
.pricing-card.featured .pricing-features li.section-sep { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.15); }
.pricing-card { flex: 1; background: white; border: 1.5px solid var(--border); border-radius: 16px; padding: 32px; position: relative; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.pricing-card.featured { border-color: var(--blue); background: var(--text); }
.pricing-pill { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 4px 14px; border-radius: 100px; }
.pricing-tier { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; color: var(--muted); }
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.5); }
.pricing-price { font-size: 36px; font-weight: 700; letter-spacing: -1.5px; color: var(--text); margin-bottom: 4px; }
.pricing-card.featured .pricing-price { color: white; }
.pricing-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.12); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.pricing-features li { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 9px; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pf-check { color: var(--blue); font-size: 15px; font-weight: 700; }
.pricing-card.featured .pf-check { color: #4D9BFF; }
.pricing-cta { width: 100%; padding: 13px; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border); transition: all 0.15s; background: var(--bg-soft); color: var(--text); text-align: center; text-decoration: none; display: block; }
.pricing-cta:hover { background: var(--border); }
.pricing-card.featured .pricing-cta { background: var(--blue); color: white; border: none; box-shadow: 0 4px 16px rgba(0,105,255,0.35); }
.pricing-card.featured .pricing-cta:hover { background: var(--blue-dark); }
.testimonials-section { padding: 96px 48px; background: white; border-top: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.tcard { border: 1px solid var(--border); border-radius: 14px; padding: 28px; background: var(--bg-soft); transition: box-shadow 0.2s, transform 0.2s; }
.tcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }
.tcard-stars { color: #F59E0B; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.tcard-text { font-size: 16px; color: var(--text); font-weight: 500; line-height: 1.55; margin-bottom: 20px; letter-spacing: -0.2px; }
.tcard-result { background: #DCFCE7; border-radius: 7px; padding: 8px 12px; font-size: 12px; font-weight: 600; color: #15803D; margin-bottom: 20px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: white; flex-shrink: 0; }
.tcard-name { font-weight: 700; font-size: 14px; color: var(--text); }
.tcard-role { font-size: 12px; color: var(--muted); }
.faq-section { padding: 96px 48px; background: var(--bg-soft); border-top: 1px solid var(--border); }
.faq-inner { max-width: 680px; margin: 0 auto; }
.faq-list { margin-top: 44px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 16px; font-weight: 600; color: var(--text); text-align: left; gap: 20px; transition: color 0.15s; }
.faq-q:hover { color: var(--blue); }
.faq-chevron { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; color: var(--muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding-bottom 0.3s; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.final-cta { padding: 96px 48px; text-align: center; background: white; border-top: 1px solid var(--border); }
.final-cta .section-title { max-width: 560px; margin: 0 auto 14px; }
.final-cta-sub { font-size: 17px; color: var(--muted); max-width: 440px; margin: 0 auto 36px; }
.final-cta-trust { font-size: 13px; color: var(--muted); margin-top: 16px; }
footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 24px; width: auto; display: block; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 13px; color: var(--muted); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; } .reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; } .reveal-d4 { transition-delay: 0.4s; }
#tweaks-panel { display: none !important; }
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero { padding: 100px 20px 0; }
  .section, .pricing-section, .testimonials-section, .faq-section, .final-cta { padding: 60px 20px; }
  .stats-strip { padding: 24px 20px; flex-wrap: wrap; }
  .pain-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
  .feature-row.reverse { direction: ltr; }
  [dir="rtl"] .feature-row.reverse { direction: rtl; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 360px; }
  footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
  .trust-badges { gap: 10px; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { border-inline-end: none; border-bottom: 1px solid var(--border); }
}
/* Force animation replay */
.reveal, .feature-row {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.reveal.visible, .feature-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure elements are visible when animated */
.feature-text, .feature-visual {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-row.visible .feature-text,
.feature-row.visible .feature-visual {
  opacity: 1;
  transform: translateY(0);
}

/* Card animations */
.fv-service-card, .fv-event, .fv-pay-row {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-row.visible .fv-service-card,
.feature-row.visible .fv-event,
.feature-row.visible .fv-pay-row {
  opacity: 1;
  transform: translateX(0);
}
