@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/heebo-hebrew-400-900.woff2") format("woff2");
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/heebo-latin-400-900.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #111827;
  --muted: #667085;
  --line: #d8dee8;
  --canvas: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef7f6;
  --brand: #0f766e;
  --brand-2: #155e75;
  --accent: #b7791f;
  --rose: #be4565;
  --danger: #b42318;
  --success: #087443;
  --warning: #b54708;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.09);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  direction: rtl;
  min-height: 100vh;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Heebo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.landing-page .text-secondary {
  color: #5b6472 !important;
}

a {
  color: var(--brand);
}

.app-navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 222, 232, 0.9);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: #f7fafa;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-mark > .icon-sm {
  color: var(--brand);
}

.brand-title {
  font-weight: 800;
  color: var(--ink);
}

.btn-brand {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: #0b5f59;
  --bs-btn-hover-border-color: #0b5f59;
  --bs-btn-active-bg: #0a514c;
  --bs-btn-active-border-color: #0a514c;
  color: #fff;
}

.btn-outline-brand {
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
  --bs-btn-hover-color: #fff;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-xs {
  width: 14px;
  height: 14px;
}

.section-band {
  padding: 64px 0;
}

.section-band.alt {
  background: #fff;
}

.section-title {
  max-width: 740px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 82vh;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(5, 22, 27, 0.72), rgba(5, 22, 27, 0.36)), url("/assets/img/wedding-hero-20260723.jpg");
  background-position: center;
  background-size: cover;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 8vw, 5.4rem);
  font-weight: 900;
  line-height: 1.02;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.hero-kpi {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.hero-kpi strong {
  display: block;
  font-size: 1.4rem;
}

.feature-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.05);
}

.feature-card,
.panel {
  padding: 18px;
}

.feature-card .feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--brand);
  background: var(--surface-2);
}

.product-preview {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.preview-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.preview-row:last-child {
  border-bottom: 0;
}

/* SEO content additions */
.eyebrow {
  margin-bottom: 0.45rem;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
}

.seo-benefit-grid,
.seo-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.seo-benefit-card {
  display: grid;
  gap: 8px;
  min-height: 156px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.05);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.seo-benefit-card:hover,
.seo-benefit-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.36);
  box-shadow: 0 18px 42px rgba(16, 42, 92, 0.11);
}

.seo-benefit-card i {
  color: var(--brand);
}

.seo-benefit-card span {
  color: var(--muted);
}

.seo-step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.seo-audience-grid .feature-card {
  min-height: 144px;
}

.seo-testimonial {
  display: grid;
  gap: 14px;
  margin: 0;
}

.seo-testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.7;
}

.seo-testimonial figcaption {
  color: var(--muted);
  font-size: 0.92rem;
}

.seo-faq .accordion-item {
  border-color: var(--line);
  background: #fff;
}

.seo-faq .accordion-button {
  color: var(--ink);
  font-weight: 800;
}

.seo-faq .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: var(--surface-2);
}

/* Wedding SEO Landing Pages */
.seo-page {
  background: #f7fafa;
}

.seo-page .app-navbar {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.seo-hero {
  overflow: hidden;
  padding: 80px 0 56px;
  background:
    radial-gradient(circle at 12% 18%, rgba(32, 207, 192, 0.2), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #eef7f6 100%);
}

.seo-hero h1 {
  max-width: 940px;
  color: #06142f;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
}

.seo-hero p {
  color: #475467;
  font-size: 1.08rem;
  line-height: 1.9;
}

.seo-hero-card {
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 54px rgba(6, 20, 47, 0.1);
}

.seo-hero-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #f7fafa;
}

.seo-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.seo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: #0f766e;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.seo-content {
  padding: 56px 0;
}

.seo-article {
  color: #1f2937;
  font-size: 1.03rem;
  line-height: 1.95;
}

.seo-article h2 {
  margin: 2rem 0 0.85rem;
  color: #06142f;
  font-weight: 900;
}

.seo-article h3 {
  margin: 1.4rem 0 0.65rem;
  color: #102a5c;
  font-weight: 850;
}

.seo-article p {
  margin-bottom: 1rem;
}

.seo-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  color: #526173;
  font-size: 0.92rem;
}

.seo-byline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seo-answer-box,
.seo-note {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(15, 118, 110, 0.17);
  border-radius: 8px;
  padding: 18px;
  background: #eef7f6;
}

.seo-answer-box strong,
.seo-note strong {
  display: block;
  margin-bottom: 6px;
  color: #0b5f59;
}

.seo-answer-box p:last-child,
.seo-note p:last-child {
  margin-bottom: 0;
}

.seo-table-wrap {
  margin: 1rem 0 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.seo-table {
  width: 100%;
  min-width: 620px;
  margin: 0;
  border-collapse: collapse;
}

.seo-table th,
.seo-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: top;
}

.seo-table th {
  color: #102a5c;
  background: #f4f8f8;
  font-weight: 800;
}

.seo-table tr:last-child td {
  border-bottom: 0;
}

.seo-checklist {
  display: grid;
  gap: 8px;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.seo-checklist li {
  position: relative;
  padding-inline-start: 26px;
}

.seo-checklist li::before {
  position: absolute;
  top: 0.08em;
  inset-inline-start: 0;
  color: var(--brand);
  content: "✓";
  font-weight: 900;
}

.seo-article a,
.legal-footer__links a {
  color: var(--brand);
  text-decoration: none;
}

.seo-article a:hover,
.seo-article a:focus-visible,
.legal-footer__links a:hover,
.legal-footer__links a:focus-visible {
  color: #0b5f59;
  text-decoration: underline;
}

.seo-toc,
.seo-side-card,
.seo-guide-card {
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.seo-toc,
.seo-side-card {
  position: sticky;
  top: 92px;
  padding: 18px;
}

.seo-toc nav,
.seo-side-card nav {
  display: grid;
  gap: 8px;
}

.seo-toc a,
.seo-side-card a {
  border-radius: 12px;
  padding: 9px 10px;
  color: #102a5c;
  background: #f8fafc;
  text-decoration: none;
  font-weight: 750;
}

.seo-toc a:hover,
.seo-side-card a:hover {
  color: #0f766e;
  background: #eef7f6;
}

.seo-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-guide-card {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 18px;
  color: #06142f;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.seo-guide-card:hover,
.seo-guide-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 20px 48px rgba(6, 20, 47, 0.1);
}

.seo-guide-card span {
  color: #64748b;
}

.seo-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.seo-stat {
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
}

.seo-stat strong {
  display: block;
  color: #06142f;
  font-size: 1.55rem;
  font-weight: 900;
}

.seo-stat span {
  color: #64748b;
}

.seo-cta-band {
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 26px;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background:
    radial-gradient(circle at left top, rgba(32, 207, 192, 0.28), transparent 36%),
    linear-gradient(135deg, #06142f 0%, #0f766e 100%);
  box-shadow: 0 24px 62px rgba(6, 20, 47, 0.18);
}

.seo-cta-band p {
  color: rgba(255, 255, 255, 0.84);
}

.seo-faq-list {
  display: grid;
  gap: 12px;
}

.seo-faq-item {
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
}

.seo-faq-item h3 {
  margin-top: 0;
}

@keyframes admin-leads-badge-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 8px 18px rgba(225, 29, 72, 0.22),
      0 0 0 4px rgba(225, 29, 72, 0.08);
  }

  50% {
    transform: translateY(-1px);
    box-shadow:
      0 10px 24px rgba(225, 29, 72, 0.3),
      0 0 0 6px rgba(225, 29, 72, 0.06);
  }
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  background: #eef2f7;
  color: #344054;
  white-space: nowrap;
}

.status-success {
  color: var(--success);
  background: #e7f8ef;
}

.table {
  vertical-align: middle;
}

.table th {
  color: #344054;
  font-size: 0.86rem;
  white-space: nowrap;
}

.table td {
  font-size: 0.92rem;
}

.form-control,
.form-select {
  border-radius: 8px;
}

.modal-content {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sms-preview {
  border-radius: 8px;
  padding: 18px;
  background: #eef2f7;
}

.sms-bubble {
  max-width: 92%;
  border-radius: 8px 8px 8px 2px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  white-space: pre-wrap;
}

@media (max-width: 767px) {
  .hero {
    min-height: 86vh;
    align-items: end;
    padding-bottom: 72px;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .section-band {
    padding: 44px 0;
  }
}

/* Legal, Cookies & Accessibility Additions */
.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  right: 10px;
  transform: translateY(-140%);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow);
  font-weight: 800;
  transition: transform 0.16s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.legal-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.96);
}

.legal-footer__top,
.legal-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.legal-footer__bottom {
  margin-top: 10px;
  font-size: 0.88rem;
}

.legal-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.legal-footer__links button,
.legal-form-disclosure button,
.form-check-label button[data-legal-open] {
  border: 0;
  padding: 0;
  color: var(--brand);
  background: transparent;
  font: inherit;
  text-decoration: none;
}

.legal-footer__links button:hover,
.legal-form-disclosure button:hover,
.form-check-label button[data-legal-open]:hover {
  color: #0b5f59;
  text-decoration: underline;
}


.legal-form-disclosure {
  color: #7a8494;
  font-size: 0.84rem;
}

.legal-modal .modal-content {
  border: 1px solid rgba(216, 222, 232, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.legal-modal__body {
  color: #344054;
  line-height: 1.75;
}

.legal-modal__body .legal-section-title {
  margin: 1.75rem 0 0.35rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 850;
}

.legal-modal__body .legal-section-divider {
  margin: 1.5rem 0;
  border-color: rgba(216, 222, 232, 0.9);
  opacity: 1;
}

.legal-modal__body h3 {
  margin-top: 1.25rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.legal-modal__body h4 {
  margin-top: 1rem;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 750;
}

.legal-modal__body ul {
  display: grid;
  gap: 0.45rem;
  padding-right: 1.1rem;
}

.legal-policy-table-wrap {
  width: 100%;
  margin: 1rem 0 1.25rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-policy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.55;
}

.legal-policy-table th,
.legal-policy-table td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: top;
}

.legal-policy-table th {
  color: var(--ink);
  background: #f5f8fa;
  font-weight: 800;
}

.legal-policy-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfe;
}

.legal-pref-row + .legal-pref-row {
  margin-top: 10px;
}

.legal-pref-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  z-index: 1085;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  max-width: 980px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  border: 1px solid rgba(216, 222, 232, 0.95);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.18);
}

body.modal-open .cookie-banner {
  z-index: 1040;
  pointer-events: none;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.accessibility-widget {
  position: fixed;
  z-index: 1075;
  left: 16px;
  bottom: 92px;
}

.accessibility-widget__toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow);
}

.accessibility-widget__menu {
  position: absolute;
  left: 0;
  bottom: 54px;
  display: grid;
  width: min(260px, calc(100vw - 32px));
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.accessibility-widget__menu button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--ink);
  background: #fbfcfe;
  text-align: right;
}

.accessibility-widget__menu button[aria-pressed="true"] {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--surface-2);
}

body.accessibility-large-text {
  font-size: 112%;
}

body.accessibility-small-text {
  font-size: 94%;
}

body.accessibility-high-contrast {
  --ink: #000;
  --muted: #1f2937;
  --line: #111827;
  --canvas: #fff;
  --surface: #fff;
  --brand: #004f47;
  color: #000;
}

body.accessibility-readable-font {
  font-family: Arial, "Heebo", sans-serif;
}

body.accessibility-underline-links a,
body.accessibility-underline-links button[data-legal-open] {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

body.accessibility-reduce-motion *,
body.accessibility-reduce-motion *::before,
body.accessibility-reduce-motion *::after {
  scroll-behavior: auto !important;
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 767px) {
  .seo-hero {
    padding: 52px 0 34px;
  }

  .seo-benefit-grid,
  .seo-audience-grid,
  .seo-guide-grid,
  .seo-stat-grid {
    grid-template-columns: 1fr;
  }

  .seo-benefit-card {
    min-height: auto;
  }

  .seo-toc,
  .seo-side-card {
    position: static;
  }

  .legal-footer__top,
  .legal-footer__bottom,
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-footer__links,
  .cookie-banner__actions {
    flex-direction: column;
  }

  .legal-pref-row {
    align-items: flex-start;
  }

  .accessibility-widget {
    bottom: 118px;
  }
}

/* Employee Workspace */

/* Admin Message Style Manager */

/* Work Agreement Additions */

/* WhatsApp Template Management */

/* Employee live view */

@keyframes employee-live-pulse {
  50% { opacity: 0.45; }
}

/* Client received messages */

/* Client Budget */
