/* ==========================================================================
   יש תור — Marketing site (static build of the approved shell design)
   RTL-first · CSS logical properties · terracotta brand system
   ========================================================================== */

:root {
  --terra-500: #e28140;
  --terra-600: #cc6e30;
  --terra-700: #a85724;
  --terra-300: #e9ab78;
  --terra-200: #f0c8a6;
  --terra-100: #f8e4d4;
  --terra-50: #fcf4ed;

  --ink-900: #1c1a18;
  --ink-700: #4a4641;
  --ink-600: #6b6660;

  --neutral-50: #f6f4f2;
  --neutral-100: #efedea;
  --neutral-200: #e4e1dd;
  --white: #ffffff;

  --success: #2fa56a;
  --warning: #e2a23a;
  --error: #d6453f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--neutral-50);
  font-family: Rubik, system-ui, -apple-system, sans-serif;
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

input,
textarea,
button {
  font-family: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--terra-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Numbers/times/prices always read left-to-right */
[dir="ltr"],
.ltr {
  unicode-bidi: embed;
}

.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 300;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  overflow: visible;
  clip: auto;
  background: var(--white);
  border: 2px solid var(--terra-500);
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink-900);
  text-decoration: none;
}

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-block-end: 1px solid var(--neutral-200);
}

.header-bar {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(12px, 3vw, 20px);
  padding-block: clamp(14px, 2.2vw, 18px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 32px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-900);
  flex-shrink: 0;
  min-width: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand span {
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
  margin-inline: auto;
  min-width: 0;
  padding: 5px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
}

.main-nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: clamp(14.5px, 1.55vw, 17px);
  text-decoration: none;
  padding: 9px clamp(12px, 1.4vw, 17px);
  white-space: nowrap;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid transparent;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.main-nav a:hover {
  color: var(--terra-700);
  background: rgb(255 255 255 / 0.75);
  border-color: var(--terra-200);
}

.main-nav a.is-active,
.main-nav a.active {
  color: var(--terra-700);
  font-weight: 700;
  background: var(--white);
  border-color: var(--terra-200);
  box-shadow: 0 1px 4px rgb(28 26 24 / 0.08);
}

.btn-login {
  flex-shrink: 0;
  background: var(--terra-500);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 15px);
  padding: 11px clamp(12px, 2vw, 20px);
  border-radius: 12px;
  line-height: 1.2;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.btn-login:hover {
  background: var(--terra-600);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nav-toggle:hover {
  background: var(--neutral-50);
  border-color: var(--neutral-300, #d5d1cc);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px clamp(12px, 3vw, 20px) 16px;
  border-top: 1px solid var(--neutral-100);
  background: var(--white);
  max-height: min(70dvh, 520px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 12px 24px rgb(28 26 24 / 0.08);
}

.mobile-nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid var(--neutral-100);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a.is-active {
  color: var(--terra-700);
  font-weight: 700;
}

.mobile-nav.is-open {
  display: flex;
}

body.menu-open {
  overflow: hidden;
}

.site-header.is-menu-open {
  box-shadow: 0 8px 24px rgb(28 26 24 / 0.06);
}

/* ------------------------------------------------------------------ hero */
.hero {
  padding-block: clamp(56px, 8vw, 96px) clamp(56px, 8vw, 88px);
  padding-inline: 20px;
}

.hero-copy {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.hero-copy p {
  margin: 0 auto 30px;
  max-width: 580px;
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.7;
  color: var(--ink-600);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--terra-500);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  padding: 15px 30px;
  border-radius: 14px;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--terra-600);
}

.btn-outline {
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid var(--neutral-200);
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  padding: 14px 30px;
  border-radius: 14px;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--neutral-100);
}

/* Floating widget cards */
.hero-widgets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  max-width: 920px;
  margin-inline: auto;
  margin-top: clamp(44px, 6vw, 72px);
}

.widget {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgb(28 26 24 / 0.09);
  padding: 18px;
}

.widget-cal {
  transform: rotate(1.5deg);
}

.cal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cal-top strong {
  font-weight: 700;
  font-size: 14px;
}

.cal-top .cal-arrows {
  color: var(--ink-600);
  font-size: 13px;
  letter-spacing: 4px;
}

.cal-daynames,
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 28px);
  gap: 2px;
  justify-items: center;
}

.cal-daynames {
  color: var(--ink-600);
  font-size: 10.5px;
  margin-bottom: 4px;
}

.cal-days span {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11.5px;
  color: var(--ink-700);
}

.cal-days .sel {
  background: var(--terra-500);
  color: #ffffff;
  font-weight: 700;
}

.widget-slots-wrap {
  margin-inline-start: -30px;
  margin-top: 52px;
  transform: rotate(-2deg);
  z-index: 2;
  position: relative;
}

.widget-slots {
  min-width: 216px;
}

.widget-slots .w-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

.widget-slots .w-sub {
  color: var(--ink-600);
  font-size: 12.5px;
  margin-bottom: 14px;
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid var(--neutral-200);
  color: var(--ink-700);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 500;
}

.chip.sel {
  background: var(--terra-500);
  color: #ffffff;
  border-color: var(--terra-500);
  font-weight: 700;
}

.widget-confirm-wrap {
  margin-inline-end: -18px;
  margin-top: 20px;
  transform: rotate(1deg);
}

.widget-confirm {
  min-width: 248px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirm-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.confirm-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--success);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}

.confirm-head .t {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.confirm-head .t strong {
  font-weight: 700;
  font-size: 14.5px;
}

.confirm-head .t span {
  color: var(--ink-600);
  font-size: 12.5px;
}

.confirm-when {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink-700);
  font-size: 12.5px;
  background: var(--neutral-50);
  border-radius: 10px;
  padding: 9px 12px;
}

.confirm-when strong {
  font-weight: 700;
}

.confirm-note {
  color: var(--success);
  font-size: 12px;
  font-weight: 500;
}

/* Hero widget entrance */
@keyframes hero-widget-cal-in {
  from {
    opacity: 0;
    transform: rotate(1.5deg) translate3d(52px, 12px, 0);
  }

  to {
    opacity: 1;
    transform: rotate(1.5deg) translate3d(0, 0, 0);
  }
}

@keyframes hero-widget-slots-in {
  from {
    opacity: 0;
    transform: rotate(-2deg) translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    transform: rotate(-2deg) translate3d(0, 0, 0);
  }
}

@keyframes hero-widget-confirm-in {
  from {
    opacity: 0;
    transform: rotate(1deg) translate3d(-52px, 12px, 0);
  }

  to {
    opacity: 1;
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
}

@keyframes hero-widget-rise-in {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-widgets .widget-cal,
.hero-widgets .widget-slots-wrap,
.hero-widgets .widget-confirm-wrap {
  opacity: 0;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
  will-change: transform, opacity;
}

.hero-widgets .widget-cal {
  animation-name: hero-widget-cal-in;
  animation-delay: 0.12s;
}

.hero-widgets .widget-slots-wrap {
  animation-name: hero-widget-slots-in;
  animation-delay: 0.32s;
}

.hero-widgets .widget-confirm-wrap {
  animation-name: hero-widget-confirm-in;
  animation-delay: 0.52s;
}

/* -------------------------------------------------------------- sections */
.section {
  padding: clamp(56px, 8vw, 88px) 20px;
}

.section-white {
  background: var(--white);
  border-block: 1px solid var(--neutral-200);
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head .eyebrow {
  color: var(--terra-700);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.section-head .sub {
  margin: 10px 0 0;
  color: var(--ink-600);
  font-size: 16px;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 28px;
}

.why-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  margin-bottom: 16px;
  padding: 9px;
}

.why-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.why-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.7;
}

/* Features */
.features-grid {
  display: grid;
  /* Fixed column counts (3/2/1) keep the 9 cards in full rows with no orphans */
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 899px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--terra-100);
  border-radius: 10px;
  flex-shrink: 0;
}

.feature-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.6;
}

/* Ease strip */
.ease {
  background: var(--terra-50);
  border-block: 1px solid var(--terra-100);
  padding: clamp(40px, 6vw, 64px) 20px;
}

.ease-inner {
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.ease h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--ink-900);
}

.ease ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.ease li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-700);
}

.ease .tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--success);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* --------------------------------------------------------------- pricing */
.pricing-wrap {
  max-width: 1060px;
  margin-inline: auto;
  padding-inline: clamp(0px, 2vw, 8px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 272px), 1fr));
  gap: 20px;
  align-items: start;
  padding-top: 16px;
  width: 100%;
}

#pricing,
#how,
#features,
#faq,
#contact {
  scroll-margin-top: 76px;
}

#pricing-plan-basic {
  scroll-margin-block: clamp(48px, 12vh, 120px);
}

.price-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  border: 2px solid var(--terra-500);
  box-shadow: 0 16px 40px rgb(226 129 64 / 0.16);
}

.price-card .badge {
  align-self: center;
  margin-top: -44px;
  margin-bottom: 14px;
  background: var(--terra-500);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.price-card h3 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 700;
}

.price-card .for {
  margin: 0 0 18px;
  color: var(--ink-600);
  font-size: 14px;
}

.price-card .amount {
  margin-bottom: 12px;
}

.price-card .amount b {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.price-card .amount i {
  color: var(--ink-600);
  font-size: 15px;
  font-style: normal;
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.price-card-preview {
  margin-block: 0 28px;
}

.price-card-preview li {
  font-size: 14px;
}

.price-card-details {
  margin-block: 0 14px;
  padding: 14px 14px 4px;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  background: var(--neutral-50, #faf9f7);
}

.price-card-details[hidden] {
  display: none;
}

.price-card-details-list {
  margin-block-end: 10px !important;
}

.price-details-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-block: 8px 16px;
  padding: 10px 14px;
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--terra-700);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.price-details-toggle:hover {
  background: rgb(226 129 64 / 0.06);
  border-color: var(--terra-300, #e8b48a);
}

.price-details-toggle[aria-expanded="true"] {
  background: rgb(226 129 64 / 0.08);
  border-color: var(--terra-400, #de9a5f);
}

.price-details-toggle__chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-inline-end: 2px solid currentColor;
  border-block-end: 2px solid currentColor;
  transform: rotate(45deg);
  margin-block-start: -3px;
  transition: transform 0.2s ease;
}

.price-details-toggle[aria-expanded="true"] .price-details-toggle__chevron {
  transform: rotate(-135deg);
  margin-block-start: 3px;
}

.price-card li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 15px;
  color: var(--ink-700);
}

.price-card li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

.price-trial-note {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terra-700);
}

.price-was {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-400, #9ca3af);
  text-decoration: line-through;
  margin-inline-end: 8px;
}

.price-intro {
  color: var(--terra-700);
}

.price-intro-note {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--ink-600);
}

.price-card-trust {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.price-card-trust--free {
  color: var(--terra-700);
}

.price-card-trust--card {
  color: var(--ink-600);
}

.price-includes-prefix {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
}

.price-includes-prefix--detail {
  margin-block-end: 16px;
}

.free-plan-grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-inline: auto;
}

.free-plan-grid--single .free-plan-list {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
}

.price-details-link {
  display: block;
  margin-block-end: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--terra-700);
  text-decoration: none;
}

.price-details-link:hover {
  text-decoration: underline;
}

.price-cta-outline {
  text-align: center;
  background: var(--white);
  color: var(--terra-700);
  border: 1px solid var(--terra-300);
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
  padding: 13px 20px;
  border-radius: 12px;
}

.price-cta-outline:hover {
  background: var(--terra-50);
}

.price-cta-solid {
  text-align: center;
  background: var(--terra-500);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
  padding: 13px 20px;
  border-radius: 12px;
}

.price-cta-solid:hover {
  background: var(--terra-600);
}

.vat-note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--ink-600);
  font-size: 13.5px;
}

/* ------------------------------------------------------------------- FAQ */
#faq {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 10% 18%, rgb(226 129 64 / 0.07), transparent 32%),
    radial-gradient(circle at 92% 80%, rgb(226 129 64 / 0.06), transparent 30%);
}

#faq::before {
  content: "?" / "";
  position: absolute;
  top: clamp(24px, 6vw, 72px);
  inset-inline-start: clamp(-20px, 4vw, 110px);
  font-size: clamp(140px, 16vw, 280px);
  font-weight: 900;
  line-height: 1;
  color: var(--terra-100);
  transform: rotate(-12deg);
  pointer-events: none;
  user-select: none;
}

#faq::after {
  content: "?" / "";
  position: absolute;
  bottom: clamp(16px, 4vw, 56px);
  inset-inline-end: clamp(-14px, 4vw, 100px);
  font-size: clamp(90px, 10vw, 180px);
  font-weight: 900;
  line-height: 1;
  color: var(--neutral-100);
  transform: rotate(14deg);
  pointer-events: none;
  user-select: none;
}

.faq-wrap {
  max-width: 740px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.faq-wrap h2 {
  margin: 0 0 36px;
  text-align: center;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.faq-wrap details {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding-inline: 20px;
  margin-bottom: 12px;
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 16.5px;
  padding-block: 17px;
}

.faq-wrap details p {
  margin: 0;
  padding-bottom: 18px;
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.7;
}

/* --------------------------------------------------------------- contact */
#contact {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 6% 78%, rgb(226 129 64 / 0.08), transparent 30%),
    radial-gradient(circle at 94% 16%, rgb(226 129 64 / 0.06), transparent 28%);
}

#contact::before {
  content: "✉" / "";
  position: absolute;
  top: clamp(40px, 9vw, 110px);
  inset-inline-end: clamp(-16px, 3vw, 80px);
  font-size: clamp(110px, 12vw, 210px);
  line-height: 1;
  color: var(--terra-100);
  transform: rotate(10deg);
  pointer-events: none;
  user-select: none;
}

#contact::after {
  content: "@" / "";
  position: absolute;
  bottom: clamp(20px, 5vw, 70px);
  inset-inline-start: clamp(-20px, 3vw, 76px);
  font-size: clamp(120px, 13vw, 230px);
  font-weight: 900;
  line-height: 1;
  color: rgb(226 129 64 / 0.1);
  transform: rotate(-10deg);
  pointer-events: none;
  user-select: none;
}

.contact-wrap {
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.contact-wrap h2 {
  margin: 0 0 36px;
  text-align: center;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item .k {
  color: var(--ink-600);
  font-size: 13.5px;
}

.contact-item .v {
  font-weight: 500;
  font-size: 16px;
}

.contact-item a {
  font-weight: 500;
  font-size: 16px;
  color: var(--terra-700);
  text-decoration: none;
  text-align: end;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  background: var(--neutral-50);
  color: var(--ink-900);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--terra-500);
  background: var(--white);
}

.contact-form input[dir="ltr"] {
  text-align: end;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: var(--terra-500);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--terra-600);
}

/* ------------------------------------------------------------ blog teaser */
.blog-teaser-wrap {
  max-width: 1060px;
  margin-inline: auto;
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.blog-teaser-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 26px;
  text-decoration: none;
  color: var(--ink-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.blog-teaser-card:hover {
  border-color: var(--terra-300, #e9ab78);
  box-shadow: 0 10px 28px rgb(28 26 24 / 0.08);
  transform: translateY(-2px);
}

.blog-teaser-tag {
  align-self: flex-start;
  background: var(--terra-50);
  color: var(--terra-700);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 12.5px;
  font-weight: 500;
}

.blog-teaser-card h3 {
  margin: 0;
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-teaser-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 14.5px;
  line-height: 1.7;
  flex: 1;
}

.blog-teaser-meta {
  color: var(--ink-600);
  font-size: 12.5px;
}

.blog-teaser-cta {
  margin-top: 28px;
  text-align: center;
}

/* -------------------------------------------------------- PLG sections */
.announce-bar {
  background: var(--terra-50);
  border-bottom: 1px solid var(--terra-200);
  padding: 8px 16px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--terra-700);
}

.hero-trust {
  margin: 16px auto 0;
  color: var(--ink-600);
  font-size: 14px;
  text-align: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 12px auto 0;
  font-size: 13.5px;
  color: var(--ink-600);
}

.hero-proof-stars {
  color: var(--terra-500);
  letter-spacing: 1px;
  font-size: 15px;
}

.proof-strip {
  background: var(--white);
  border-block: 1px solid var(--neutral-200);
  padding: 20px;
}

.proof-strip-inner {
  max-width: 1060px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
}

.proof-strip-lead {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-700);
}

.proof-strip-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.proof-strip-tags li {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13.5px;
  color: var(--ink-700);
  white-space: nowrap;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 20px;
  max-width: 1000px;
  margin-inline: auto;
}

.ps-col {
  border-radius: 18px;
  padding: clamp(24px, 4vw, 36px);
}

.ps-problem {
  background: var(--white);
  border: 1px solid var(--neutral-200);
}

.ps-solution {
  background: var(--terra-50);
  border: 1px solid var(--terra-200);
}

.ps-col h2 {
  margin: 6px 0 18px;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 900;
  line-height: 1.35;
}

.ps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.6;
}

.ps-x {
  color: var(--error);
  font-weight: 700;
  flex-shrink: 0;
}

.ps-v {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 20px;
  max-width: 1000px;
  margin-inline: auto;
}

.how-step {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
}

.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terra-500);
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 14px;
}

.how-step h3 {
  margin: 0 0 8px;
  font-size: 17.5px;
  font-weight: 700;
}

.how-step p {
  margin: 0;
  color: var(--ink-600);
  font-size: 14.5px;
  line-height: 1.7;
}

.how-cta {
  margin-top: 36px;
  text-align: center;
}

.cta-microcopy {
  margin: 12px 0 0;
  color: var(--ink-600);
  font-size: 13.5px;
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-card--value {
  background: var(--terra-50);
  border-color: var(--terra-200);
  box-shadow: 0 12px 32px rgb(226 129 64 / 0.1);
}

.pillar-label {
  align-self: flex-start;
  background: var(--terra-100);
  color: var(--terra-700);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12.5px;
  font-weight: 700;
}

.pillar-card h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
  line-height: 1.35;
}

.pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-list li {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-700);
}

.pillar-list strong {
  color: var(--ink-900);
}

@media (max-width: 899px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card--value {
    order: -1;
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  max-width: 1060px;
  margin-inline: auto;
}

.testimonial-card {
  margin: 0;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.7;
  flex: 1;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terra-100);
  color: var(--terra-700);
  font-weight: 900;
  font-size: 17px;
  flex-shrink: 0;
}

.testimonial-who {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-who strong {
  font-size: 15px;
  font-weight: 700;
}

.testimonial-who span {
  color: var(--ink-600);
  font-size: 13px;
}

.pricing-microcopy {
  margin: 10px 0 0;
  text-align: center;
  color: var(--ink-600);
  font-size: 13.5px;
}

.final-cta {
  background: var(--ink-900);
  color: #ffffff;
  padding: clamp(56px, 8vw, 80px) 20px;
  text-align: center;
}

.final-cta-inner {
  max-width: 640px;
  margin-inline: auto;
}

.final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.final-cta p {
  margin: 0 0 26px;
  color: #b9b4ae;
  font-size: 16px;
  line-height: 1.7;
}

.btn-final-cta {
  display: inline-block;
  background: var(--terra-500);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 38px;
  border-radius: 14px;
}

.btn-final-cta:hover {
  background: var(--terra-600);
}

.final-cta .cta-microcopy {
  color: #b9b4ae;
}

.footer-whatsapp {
  color: #b9b4ae;
  text-decoration: none;
  font-size: 14.5px;
}

.footer-whatsapp:hover {
  color: #ffffff;
}

/* Sticky mobile signup bar */
.sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 90;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgb(255 255 255 / 0.92);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--neutral-200);
  }

  .sticky-cta[hidden] {
    display: none;
  }

  .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    background: var(--terra-500);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16.5px;
    border-radius: 14px;
  }

  .sticky-cta a:active {
    background: var(--terra-600);
  }

  /* keep the bar from covering the last content on the page */
  body.has-sticky-cta {
    padding-bottom: 76px;
  }
}

/* ----------------------------------------------------------- free plan */
.free-plan-page .section-head h1 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.free-plan-hero {
  padding-block-end: clamp(64px, 10vw, 96px);
}

.free-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .free-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .free-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.free-plan-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  min-width: 0;
}

.free-plan-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 992px) {
  .free-plan-card--wide {
    grid-column: span 1;
  }
}

.free-plan-card__title {
  margin: 0 0 16px;
  padding-block-end: 14px;
  border-block-end: 1px solid var(--neutral-200);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
}

.free-plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.free-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
}

.free-plan-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-block-start: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--terra-100);
  color: var(--terra-700);
  font-size: 13px;
  font-weight: 700;
}

.free-plan-upsell {
  margin: 40px 0 0;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-600);
}

.free-plan-upsell a {
  color: var(--terra-700);
  font-weight: 700;
  text-decoration: none;
}

.free-plan-upsell a:hover {
  text-decoration: underline;
}

.free-plan-pricing-note {
  margin: -20px auto 32px;
  max-width: 640px;
  padding: 16px 20px;
  background: var(--terra-50);
  border: 1px solid var(--terra-100);
  border-radius: 14px;
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
}

.free-plan-pricing-note__hint {
  display: block;
  margin-block-start: 6px;
  font-size: 13.5px;
  color: var(--ink-600);
}

.free-plan-muted {
  color: var(--ink-600);
  font-size: 14.5px;
}

.free-plan-check--muted {
  background: var(--neutral-100);
  color: var(--ink-600);
}

.free-plan-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-block-start: 28px;
}

@media (max-width: 480px) {
  .free-plan-cta a {
    width: 100%;
    text-align: center;
  }
}

/* ---------------------------------------------------------------- footer */
.site-footer {
  background: var(--ink-900);
  color: #efedea;
}

.footer-grid {
  max-width: 1160px;
  margin-inline: auto;
  padding: 56px 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .brand-row img {
  width: 30px;
  height: 30px;
}

.footer-brand .brand-row span {
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
}

.footer-brand p {
  margin: 0;
  color: #b9b4ae;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col .head {
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-col a,
.footer-col span.muted {
  color: #b9b4ae;
  text-decoration: none;
  font-size: 14.5px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-col a[dir="ltr"] {
  text-align: end;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.12);
  margin-top: 48px;
}

.footer-bottom p {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px;
  font-size: 13.5px;
  color: #b9b4ae;
  text-align: center;
}

.footer-trust {
  list-style: none;
  margin: 0 auto;
  padding: 20px 20px 0;
  max-width: 1160px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  font-size: 13px;
  color: #b9b4ae;
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
    padding-inline: clamp(16px, 4vw, 24px);
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
    max-width: 320px;
  }

  .footer-brand .brand-row {
    justify-content: center;
  }

  .footer-col {
    align-items: center;
    width: 100%;
    max-width: 320px;
  }

  .footer-col a[dir="ltr"] {
    text-align: center;
  }
}

/* ------------------------------------------------------------ responsive */
@media (max-width: 1199px) and (min-width: 1024px) {
  .main-nav {
    gap: 4px;
    padding: 4px;
  }

  .main-nav a {
    font-size: 14px;
    padding: 8px 11px;
  }
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* RTL mobile: hamburger + brand on the right, login on the left */
  .btn-login {
    margin-inline-start: auto;
  }

  .header-bar {
    gap: 16px;
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  #faq::before,
  #faq::after,
  #contact::before,
  #contact::after {
    display: none;
  }

  .hero-widgets {
    flex-direction: column;
    align-items: center;
  }

  .widget-slots-wrap,
  .widget-confirm-wrap {
    margin: 0;
    transform: none;
  }

  .widget-cal {
    transform: none;
  }

  .hero-widgets .widget-cal,
  .hero-widgets .widget-slots-wrap,
  .hero-widgets .widget-confirm-wrap {
    animation-name: hero-widget-rise-in;
  }

  .hero-widgets .widget-cal {
    animation-delay: 0.1s;
  }

  .hero-widgets .widget-slots-wrap {
    animation-delay: 0.22s;
  }

  .hero-widgets .widget-confirm-wrap {
    animation-delay: 0.34s;
  }

  /* popular plan first on mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-card {
    width: 100%;
    min-width: 0;
  }

  .price-card.popular {
    order: -1;
  }

  .price-card .badge {
    margin-top: -42px;
  }
}

@media (max-width: 480px) {
  .btn-login {
    padding: 10px 12px;
    font-size: 13px;
  }

  .brand span {
    font-size: 16px;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
  }

  .widget {
    width: 100%;
    max-width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-widgets .widget-cal,
  .hero-widgets .widget-slots-wrap,
  .hero-widgets .widget-confirm-wrap {
    opacity: 1;
    animation: none;
    transform: none;
  }
}
