:root {
  color-scheme: dark;
  --bg: #04100c;
  --bg-2: #071913;
  --surface: rgba(10, 26, 20, 0.78);
  --surface-strong: rgba(13, 35, 27, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --text: #f4fbf7;
  --muted: #b8c9c1;
  --faint: #8aa097;
  --line: rgba(218, 243, 232, 0.16);
  --line-strong: rgba(54, 225, 137, 0.38);
  --brand: #12b86d;
  --brand-2: #69e6a5;
  --brand-3: #0a6b3f;
  --cyan: #66d9e8;
  --silver: #d9e1df;
  --gold: #e1c879;
  --danger: #ffca7a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --soft-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --radius-lg: 8px;
  --max: 1180px;
  --header: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Arabic", Arial, sans-serif;
  letter-spacing: 0;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f6fbf8;
  --bg-2: #edf7f2;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(7, 89, 54, 0.065);
  --text: #0c1d17;
  --muted: #49645a;
  --faint: #627a70;
  --line: rgba(5, 78, 48, 0.14);
  --line-strong: rgba(15, 148, 87, 0.32);
  --brand: #0b8f55;
  --brand-2: #14b76c;
  --brand-3: #08613b;
  --cyan: #087d92;
  --silver: #384844;
  --gold: #967123;
  --danger: #8b5a06;
  --shadow: 0 22px 56px rgba(7, 52, 35, 0.16);
  --soft-shadow: 0 16px 42px rgba(7, 52, 35, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(125deg, rgba(18, 184, 109, 0.18), transparent 30%),
    linear-gradient(215deg, rgba(102, 217, 232, 0.11), transparent 34%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 48%, var(--bg));
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-align: start;
  transition: background-color 220ms ease, color 220ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.045) 48%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(255, 255, 255, 0.018) 87px, transparent 88px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 88%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(18, 184, 109, 0.12), transparent 42%),
    linear-gradient(290deg, rgba(225, 200, 121, 0.08), transparent 52%);
  filter: blur(38px);
  opacity: 0.75;
  pointer-events: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--brand-2);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 2000;
  padding: 0.65rem 0.9rem;
  background: var(--surface-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

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

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(58px, 8vw, 112px);
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header);
  padding: 0.9rem max(18px, calc((100vw - var(--max)) / 2));
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line), 0 14px 32px rgba(18, 184, 109, 0.22);
}

.brand-copy {
  display: grid;
  gap: 0.02rem;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.02rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.45rem, 1.1vw, 1rem);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  padding: 0.55rem 0.62rem;
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: var(--surface-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.62rem;
}

.lang-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.18rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.lang-switch button,
.theme-toggle,
.nav-toggle {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.lang-switch button {
  min-width: 2.45rem;
  padding: 0.42rem 0.48rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}

.lang-switch button[aria-pressed="true"] {
  color: var(--text);
  background: linear-gradient(135deg, rgba(18, 184, 109, 0.92), rgba(102, 217, 232, 0.72));
  box-shadow: 0 7px 18px rgba(18, 184, 109, 0.22);
}

.theme-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.theme-glyph {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand-2);
  box-shadow: inset -6px -5px 0 var(--bg), 0 0 20px rgba(105, 230, 165, 0.45);
}

html[data-theme="light"] .theme-glyph {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(150, 113, 35, 0.13), 0 0 20px rgba(225, 200, 121, 0.34);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.btn-small {
  min-height: 40px;
  padding: 0.58rem 0.82rem;
  font-size: 0.88rem;
}

.btn-primary,
.btn-whatsapp {
  color: #03110b;
  background: linear-gradient(135deg, var(--brand-2), var(--brand) 62%, #e1c879);
  box-shadow: 0 18px 42px rgba(18, 184, 109, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: var(--surface);
  border-color: var(--line-strong);
}

.btn-ghost {
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  min-height: calc(100svh - var(--header));
  padding-block: clamp(62px, 8vw, 118px);
}

.landing-hero {
  min-height: min(760px, calc(100svh - var(--header)));
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1 {
  max-width: 11.5ch;
  margin-block: 1rem 1.15rem;
  font-size: clamp(2.6rem, 7vw, 6.45rem);
  line-height: 0.95;
  font-weight: 900;
}

.landing-hero h1 {
  max-width: 13.5ch;
  font-size: clamp(2.35rem, 5.9vw, 5.5rem);
}

h2 {
  margin-block: 0.75rem 0.85rem;
  font-size: clamp(2rem, 4.4vw, 4.35rem);
  line-height: 1.03;
  font-weight: 900;
}

h3 {
  margin-block-end: 0.52rem;
  font-size: 1.02rem;
  line-height: 1.25;
}

.hero-subtitle,
.section-heading p,
.split-section p,
.reception-copy p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-block-start: 1.55rem;
}

.hero-actions.center {
  justify-content: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-block-start: 1.35rem;
}

.hero-badges span {
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.48rem 0.65rem;
  font-size: 0.83rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.compact-visual {
  min-height: 490px;
}

.brand-glow {
  position: absolute;
  inset-inline: 0;
  inset-block-start: -5%;
  z-index: -1;
  opacity: 0.52;
  filter: saturate(1.08) contrast(1.05);
}

.brand-glow img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  border-radius: var(--radius);
  mask-image: linear-gradient(to bottom, black 48%, transparent 100%);
}

.dashboard-mockup,
.panel,
.info-card,
.feature-card,
.quote-card,
.audience-grid article,
.process-list article,
.lead-form,
.final-cta,
.stats-strip,
.reception-section,
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-strong), color-mix(in srgb, var(--surface) 86%, transparent));
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}

.dashboard-mockup {
  position: absolute;
  inset-inline-start: 3%;
  inset-block-start: 19%;
  width: min(580px, 96%);
  padding: 1rem;
  overflow: hidden;
}

.compact-visual .dashboard-mockup,
.mini-dashboard {
  position: relative;
  inset: auto;
  width: 100%;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-end: 1rem;
  color: var(--muted);
}

.mockup-topbar strong {
  margin-inline-start: 0.35rem;
  color: var(--text);
  font-size: 0.9rem;
}

.window-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 99px;
  background: var(--line-strong);
}

.window-dot:nth-child(1) {
  background: var(--danger);
}

.window-dot:nth-child(2) {
  background: var(--gold);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-block-end: 0.9rem;
}

.metric-grid div,
.benefit-grid div,
.stats-strip div {
  padding: 0.85rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-grid span,
.benefit-grid span,
.stats-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-grid strong,
.benefit-grid strong,
.stats-strip strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.appointment-list,
.schedule-board {
  display: grid;
  gap: 0.65rem;
}

.appointment-row,
.schedule-board div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 66px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.appointment-row div {
  min-width: 0;
}

.appointment-row strong,
.appointment-row small,
.schedule-board span {
  display: block;
}

.appointment-row small {
  color: var(--muted);
}

.appointment-row time {
  margin-inline-start: auto;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.status {
  width: 0.74rem;
  height: 0.74rem;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 18px currentColor;
}

.status-pending {
  color: var(--gold);
  background: var(--gold);
}

.status-confirmed {
  color: var(--brand-2);
  background: var(--brand-2);
}

.status-reminder {
  color: var(--cyan);
  background: var(--cyan);
}

.phone-mockup {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: 2%;
  width: min(314px, 74vw);
  min-height: 520px;
  padding: 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(180deg, #101b18, #07110e);
  box-shadow: var(--shadow), inset 0 0 0 8px rgba(255, 255, 255, 0.035);
  transform: rotate(2deg);
}

.large-phone {
  position: relative;
  inset: auto;
  width: min(380px, 92vw);
  min-height: 560px;
  margin-inline: auto;
}

.whatsapp-visual {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.phone-header {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  color: #e9f7ef;
  padding: 0.5rem 0.5rem 0.8rem;
}

.phone-camera {
  width: 74px;
  height: 19px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.chat-flow {
  display: grid;
  gap: 0.7rem;
  padding: 0.6rem;
}

.bubble {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 0.72rem 0.82rem;
  border-radius: 14px;
  color: #f7fff9;
  font-size: 0.9rem;
  line-height: 1.42;
}

.bubble.patient {
  justify-self: start;
  background: rgba(255, 255, 255, 0.11);
}

.bubble.assistant {
  justify-self: end;
  color: #03110b;
  background: linear-gradient(135deg, #69e6a5, #12b86d);
}

.bubble.typing {
  display: inline-flex;
  gap: 0.25rem;
  justify-self: end;
  background: rgba(105, 230, 165, 0.15);
}

.bubble.typing span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 99px;
  background: var(--brand-2);
  animation: pulse 1.2s infinite ease-in-out;
}

.bubble.typing span:nth-child(2) {
  animation-delay: 140ms;
}

.bubble.typing span:nth-child(3) {
  animation-delay: 280ms;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
  margin-block-end: 1.5rem;
}

.section-heading {
  max-width: 840px;
  margin-block-end: 2rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.feature-card,
.quote-card,
.audience-grid article,
.process-list article {
  padding: 1.1rem;
  min-height: 100%;
}

.info-card p,
.feature-card p,
.quote-card blockquote,
.audience-grid p,
.process-list p {
  color: var(--muted);
  margin: 0;
}

.card-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-block-end: 0.9rem;
  border-radius: var(--radius);
  color: #06150f;
  background: linear-gradient(135deg, var(--brand-2), var(--gold));
  font-size: 0.75rem;
  font-weight: 900;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--cyan), var(--gold));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
}

.check-list,
.strong-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 2rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.2rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  box-shadow: 0 0 18px rgba(18, 184, 109, 0.25);
}

.check-list li::after {
  content: "";
  position: absolute;
  inset-inline-start: 0.38rem;
  inset-block-start: 0.51rem;
  width: 0.38rem;
  height: 0.62rem;
  border: solid #06150f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.before-after {
  display: grid;
  gap: 1rem;
}

.panel {
  padding: 1.2rem;
}

.panel.accent {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(18, 184, 109, 0.16), var(--surface-strong));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: timeline;
}

.timeline li {
  position: relative;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  counter-increment: timeline;
}

.timeline li::before {
  content: counter(timeline);
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-block-end: 1rem;
  border-radius: var(--radius);
  color: #06150f;
  background: linear-gradient(135deg, var(--brand-2), var(--gold));
  font-weight: 900;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  color: var(--muted);
  margin-block-start: 0.35rem;
  font-size: 0.93rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.benefits-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.benefit-grid.stacked {
  grid-template-columns: 1fr;
}

.reception-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.quote-card {
  margin: 0;
}

.quote-card blockquote {
  min-height: 108px;
}

.quote-card figcaption {
  color: var(--brand-2);
  font-weight: 800;
  margin-block-start: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.faq-list summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  color: var(--muted);
  margin: 0.8rem 0 0;
}

.lead-section {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 2rem;
  align-items: start;
}

.lead-form {
  padding: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-grid label {
  display: grid;
  gap: 0.38rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.82rem 0.9rem;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--faint);
}

.form-submit {
  width: 100%;
  margin-block-start: 0.9rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.8rem 0 0;
}

.final-cta {
  margin-block: 2rem clamp(58px, 8vw, 112px);
  padding: clamp(1.35rem, 4vw, 3rem);
  text-align: center;
  overflow: hidden;
}

.final-cta h2,
.final-cta p {
  max-width: 820px;
  margin-inline: auto;
}

.table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: start;
  vertical-align: top;
}

.compare-table th {
  color: var(--brand-2);
  font-size: 0.88rem;
  text-transform: uppercase;
}

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

.schedule-board time {
  color: var(--brand-2);
  font-weight: 900;
  min-width: 3.4rem;
}

.conversation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: 1.3rem;
  align-items: center;
}

.conversation-layout .phone-mockup {
  position: relative;
  inset: auto;
  margin-inline: auto;
}

.process-list {
  display: grid;
  gap: 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 1.5rem;
  padding-block: 2.4rem;
}

.site-footer h2 {
  margin-block: 0 0.7rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin-block: 0.36rem;
}

.footer-brand {
  margin-block-end: 1rem;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-block-start: 1rem;
}

.partner-logos img {
  width: 92px;
  height: 54px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 0.35rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom p {
  max-width: 760px;
  margin: 0;
}

.float-soft {
  animation: floatSoft 6.5s ease-in-out infinite;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

html[dir="rtl"] {
  font-family: "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .eyebrow::before {
  order: 2;
}

html[dir="rtl"] .phone-mockup {
  transform: rotate(-2deg);
}

html[dir="rtl"] .conversation-layout .phone-mockup,
html[dir="rtl"] .large-phone {
  transform: rotate(0deg);
}

html[dir="rtl"] .check-list li::after {
  transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .nav-links {
    position: fixed;
    inset-block-start: var(--header);
    inset-inline: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .header-actions {
    order: 3;
  }
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .benefits-section,
  .lead-section,
  .conversation-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-block-start: 48px;
  }

  h1,
  .landing-hero h1 {
    max-width: 13ch;
  }

  .hero-visual {
    min-height: 560px;
  }

  .card-grid,
  .card-grid.five,
  .card-grid.four,
  .audience-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .reception-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 72px;
  }

  .site-header {
    gap: 0.5rem;
    padding-inline: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions {
    gap: 0.42rem;
  }

  .header-actions .btn-small {
    display: none;
  }

  .lang-switch button {
    min-width: 2.05rem;
    padding-inline: 0.35rem;
  }

  .section-shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    gap: 1.5rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual,
  .compact-visual,
  .whatsapp-visual {
    min-height: 500px;
  }

  .dashboard-mockup {
    inset-inline-start: 0;
    width: 100%;
  }

  .phone-mockup {
    inset-inline-end: 3%;
    width: min(295px, 88vw);
    min-height: 480px;
  }

  .metric-grid,
  .benefit-grid,
  .card-grid,
  .card-grid.five,
  .card-grid.four,
  .card-grid.three,
  .audience-grid,
  .timeline,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .hero-visual,
  .compact-visual {
    min-height: 440px;
  }

  .dashboard-mockup {
    inset-block-start: 26%;
  }

  .phone-mockup {
    min-height: 430px;
    padding: 0.65rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .theme-toggle,
  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

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