:root {
  --bg: #070b11;
  --bg-soft: #0b1018;
  --panel: rgba(14, 20, 31, 0.94);
  --panel-strong: #121a27;
  --panel-alt: #162131;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #eef4ff;
  --muted: #98a7bc;
  --muted-strong: #bcc8d8;
  --accent: #d3a261;
  --accent-strong: #f1c37f;
  --teal: #43baa5;
  --teal-strong: #60d2c0;
  --danger: #ff9589;
  --shadow-lg: 0 34px 100px rgba(0, 0, 0, 0.4);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --font-sans: "Trebuchet MS", "Lucida Sans Unicode", "Segoe UI", Tahoma, Verdana, sans-serif;
  --font-display: Georgia, Cambria, "Times New Roman", Times, serif;
  --font-ar-display: Tahoma, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 0%, rgba(211, 162, 97, 0.18), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(67, 186, 165, 0.16), transparent 24%),
    linear-gradient(180deg, #05070b 0%, #0b1018 48%, #070b11 100%);
  color: var(--text);
  font-family: var(--font-sans);
  text-align: start;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 36px
    );
  pointer-events: none;
  z-index: -1;
}

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

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

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.section-intro h2,
.faq-panel h2,
.contact-panel h2,
.cta-copy h2,
.showcase-head h2 {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.8vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.section-intro p,
.hero-lead,
.faq-panel p,
.contact-panel p,
.cta-copy p,
.footer-copy,
.footer-note {
  color: var(--muted);
  line-height: 1.88;
}

.eyebrow,
.card-kicker {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.03);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

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

.button-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #09111a;
  box-shadow: 0 18px 30px rgba(211, 162, 97, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.button-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 16px;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(9, 13, 20, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(211, 162, 97, 0.16), rgba(67, 186, 165, 0.16));
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline-start: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-button {
  min-width: 46px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.lang-button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #09111a;
  box-shadow: 0 10px 18px rgba(211, 162, 97, 0.22);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-shell.is-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-shell.is-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  padding-top: 34px;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 30px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(13, 19, 29, 0.96), rgba(8, 12, 19, 0.96) 58%, rgba(16, 23, 35, 0.96));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.urgency-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(211, 162, 97, 0.2);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(211, 162, 97, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.urgency-strip p {
  margin: 0;
  color: var(--muted-strong);
  font-weight: 600;
  line-height: 1.75;
}

.urgency-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(211, 162, 97, 0.16);
  font-size: 1rem;
}

.hero-shell::before,
.hero-shell::after,
.contact-panel-dark::before,
.contact-panel-dark::after,
.proof-shell::before,
.proof-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-shell::before {
  inset-inline-start: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(67, 186, 165, 0.18), transparent 70%);
}

.hero-shell::after {
  inset-inline-end: -80px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(211, 162, 97, 0.22), transparent 70%);
}

.hero-copy,
.hero-stage,
.proof-shell > *,
.contact-panel-dark > * {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 16px 0 20px;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3.05rem, 6.2vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-brand {
  color: var(--accent-strong);
}

.hero-lead {
  margin: 0;
  max-width: 640px;
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 26px;
}

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

.metric-card {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
}

.metric-card strong,
.social-stat strong,
.metrics-band strong,
.contact-points strong,
.proof-meta strong {
  display: block;
}

.metric-card strong {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.metric-card span,
.metrics-band span,
.social-stat span,
.contact-points span,
.proof-meta span {
  color: var(--muted);
}

.metric-card span,
.social-stat span {
  line-height: 1.68;
  font-size: 0.88rem;
}

.hero-stage {
  position: relative;
}

.showcase-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(18, 26, 39, 0.96), rgba(12, 18, 28, 0.96));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.showcase-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.showcase-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  line-height: 1.02;
}

.status-pill,
.stage-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(67, 186, 165, 0.25);
  border-radius: 999px;
  background: rgba(67, 186, 165, 0.12);
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.showcase-list {
  display: grid;
  gap: 14px;
}

.showcase-list article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.025));
}

.showcase-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.showcase-list span,
.showcase-rail strong {
  color: var(--muted-strong);
  line-height: 1.72;
}

.showcase-rail {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(211, 162, 97, 0.22);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(211, 162, 97, 0.08), rgba(67, 186, 165, 0.06));
}

.showcase-rail span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-float {
  position: absolute;
  max-width: 214px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 12, 18, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.showcase-float span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-float strong {
  color: var(--muted-strong);
  line-height: 1.64;
}

.showcase-float-top {
  top: 16px;
  inset-inline-end: -18px;
}

.showcase-float-bottom {
  bottom: 18px;
  inset-inline-start: -18px;
}

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

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid rgba(211, 162, 97, 0.16);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(211, 162, 97, 0.08), rgba(67, 186, 165, 0.05), rgba(12, 18, 27, 0.92));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.inline-cta-dark {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(211, 162, 97, 0.1), rgba(9, 14, 22, 0.96) 52%, rgba(15, 22, 32, 0.96));
}

.inline-cta-copy {
  display: grid;
  gap: 8px;
}

.inline-cta-copy strong {
  font-size: 1.08rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.bento-card,
.note-card,
.process-card,
.proof-card,
.faq-item,
.social-stat {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 23, 35, 0.94), rgba(11, 16, 24, 0.94));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.bento-card:hover,
.note-card:hover,
.process-card:hover,
.proof-card:hover,
.faq-item:hover,
.social-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(211, 162, 97, 0.24);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.bento-card {
  padding: 24px;
  min-height: 220px;
}

.bento-card::before,
.proof-card::before {
  content: "";
  position: absolute;
  inset-inline-end: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(211, 162, 97, 0.12), transparent 70%);
}

.bento-card-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(155deg, rgba(211, 162, 97, 0.12), rgba(15, 22, 33, 0.96) 52%, rgba(10, 14, 21, 0.96));
}

.bento-card-dark {
  grid-column: span 2;
  background: linear-gradient(155deg, rgba(67, 186, 165, 0.14), rgba(13, 19, 29, 0.96));
}

.bento-card-tall {
  grid-row: span 2;
}

.card-index,
.note-number,
.process-step {
  display: inline-grid;
  place-items: center;
  font-weight: 700;
}

.card-index {
  min-width: 46px;
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.bento-card h3,
.note-card h3,
.process-card h3,
.form-head h3 {
  margin: 18px 0 12px;
  letter-spacing: -0.03em;
}

.bento-card h3 {
  font-size: 1.42rem;
}

.bento-card p,
.note-card p,
.process-card p,
.faq-answer p,
.form-head p,
.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.card-pills,
.social-strip,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-pills {
  margin-top: 18px;
}

.card-pills span,
.social-strip span {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.why-layout,
.faq-layout,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
}

.why-panel,
.faq-panel,
.contact-panel,
.social-shell,
.cta-band,
.proof-shell,
.footer-shell {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(14, 20, 31, 0.96), rgba(10, 15, 23, 0.96));
  box-shadow: var(--shadow-lg);
}

.why-panel,
.faq-panel,
.contact-panel,
.social-shell,
.footer-shell {
  padding: 30px;
}

.why-panel h2,
.faq-panel h2,
.contact-panel h2,
.cta-copy h2 {
  margin: 12px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  line-height: 0.96;
}

.why-panel p {
  color: var(--muted);
}

.why-proof {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.why-proof article,
.contact-points article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.025));
}

.why-proof strong,
.contact-points strong {
  margin-bottom: 6px;
}

.why-proof span,
.contact-points span {
  line-height: 1.72;
}

.why-notes {
  display: grid;
  gap: 16px;
}

.note-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
}

.note-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(211, 162, 97, 0.18), rgba(67, 186, 165, 0.14));
}

.note-card h3 {
  font-size: 1.18rem;
}

.metrics-band,
.social-stats,
.process-track {
  display: grid;
  gap: 14px;
}

.metrics-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 18px;
  border: 1px solid rgba(67, 186, 165, 0.18);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(67, 186, 165, 0.08), rgba(211, 162, 97, 0.08));
}

.process-track {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-track::before {
  content: "";
  position: absolute;
  top: 24px;
  inset-inline: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(211, 162, 97, 0.12),
    rgba(211, 162, 97, 0.45),
    rgba(67, 186, 165, 0.45),
    rgba(211, 162, 97, 0.12)
  );
}

.process-card {
  z-index: 1;
  padding: 24px;
}

.process-step {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(211, 162, 97, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-strong);
}

.process-card h3 {
  font-size: 1.2rem;
}

.section-dark .proof-shell {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: linear-gradient(160deg, rgba(13, 19, 29, 0.98), rgba(7, 10, 16, 0.98));
}

.proof-shell::before {
  top: -90px;
  inset-inline-end: -60px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(211, 162, 97, 0.16), transparent 72%);
}

.proof-shell::after {
  bottom: -90px;
  inset-inline-start: -80px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(67, 186, 165, 0.14), transparent 72%);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.proof-card {
  padding: 26px;
}

.proof-card-featured {
  grid-row: span 2;
}

.quote-mark {
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 0.7;
}

.proof-card p {
  margin: 8px 0 22px;
  color: var(--muted-strong);
  line-height: 1.9;
}

.proof-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.social-shell {
  display: grid;
  gap: 22px;
}

.social-copy h2 {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.social-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

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

.social-stat {
  padding: 18px;
}

.social-stat strong {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

#pricing.section {
  padding-bottom: 34px;
}

.section-addons {
  padding-top: 0;
}

.section-addons .section-intro {
  margin-bottom: 24px;
}

.pricing-grid,
.addons-grid {
  display: grid;
  gap: 18px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card,
.addon-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(16, 23, 35, 0.96), rgba(10, 15, 23, 0.96));
  box-shadow: var(--shadow-lg);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pricing-card:hover,
.addon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(211, 162, 97, 0.26);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}

.pricing-card::before,
.addon-card::before {
  content: "";
  position: absolute;
  inset-inline-end: -46px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(211, 162, 97, 0.12), transparent 72%);
  pointer-events: none;
}

.pricing-card-featured {
  padding-top: 58px;
  border-color: rgba(211, 162, 97, 0.36);
  background: linear-gradient(160deg, rgba(211, 162, 97, 0.12), rgba(13, 19, 29, 0.98) 46%, rgba(9, 14, 22, 0.98));
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(211, 162, 97, 0.06);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(211, 162, 97, 0.26);
  border-radius: 999px;
  background: rgba(211, 162, 97, 0.12);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
}

.pricing-label {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-head h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.pricing-price {
  display: inline-grid;
  gap: 4px;
  flex-shrink: 0;
  min-width: 104px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.pricing-price strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.pricing-price span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-list {
  display: grid;
  gap: 12px;
  flex: 1;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-inline-start: 26px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 0 4px rgba(67, 186, 165, 0.08);
  transform: translateY(-50%);
}

.pricing-note {
  margin: -6px 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

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

.addon-card {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
}

.addon-card strong {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.addon-card span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.78;
}

.faq-panel {
  position: sticky;
  top: 96px;
}

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

.faq-item {
  padding: 22px 24px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: start;
}

.faq-question-text {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.6;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding-top: 0;
  transition:
    grid-template-rows 220ms ease,
    padding-top 220ms ease;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-top: 14px;
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.contact-panel-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(18, 25, 37, 0.98), rgba(9, 14, 22, 0.98));
}

.contact-panel-dark::before {
  top: -90px;
  inset-inline-end: -60px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(211, 162, 97, 0.18), transparent 72%);
}

.contact-panel-dark::after {
  bottom: -90px;
  inset-inline-start: -70px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(67, 186, 165, 0.16), transparent 72%);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.form-panel {
  background: linear-gradient(180deg, rgba(14, 20, 31, 0.98), rgba(10, 15, 23, 0.98));
}

.form-head h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.85rem;
}

.form-head p {
  margin: 0 0 18px;
}

.lead-form {
  display: grid;
  gap: 16px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-field textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(238, 244, 255, 0.34);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(67, 186, 165, 0.34);
  box-shadow: 0 0 0 4px rgba(67, 186, 165, 0.12);
}

.field-ltr {
  direction: ltr;
  text-align: left;
}

.form-actions {
  display: grid;
  gap: 10px;
}

.form-note {
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 600;
  color: var(--teal-strong);
}

.form-status.is-error {
  color: var(--danger);
}

.cta-section {
  padding-top: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  border: 1px solid rgba(211, 162, 97, 0.18);
  background: linear-gradient(135deg, rgba(211, 162, 97, 0.1), rgba(67, 186, 165, 0.08), rgba(11, 16, 24, 0.96));
}

.cta-copy p {
  max-width: 58ch;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 20px 0 116px;
}

.footer-shell {
  padding: 24px 26px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy,
.footer-note {
  margin: 0;
}

.footer-note {
  margin-top: 6px;
}

.whatsapp-float {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 22px;
  z-index: 50;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(67, 186, 165, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(67, 186, 165, 0.28), rgba(9, 18, 27, 0.96) 62%, rgba(12, 18, 27, 0.96));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(67, 186, 165, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(67, 186, 165, 0.16);
  opacity: 0;
  pointer-events: none;
  animation: whatsapp-pulse 2.6s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.42);
}

.whatsapp-float-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(67, 186, 165, 0.3);
  border-radius: 999px;
  background: rgba(67, 186, 165, 0.18);
  font-weight: 700;
}

.whatsapp-float-text {
  font-weight: 600;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.94);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.08);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[dir="rtl"] {
  direction: rtl;
}

body[dir="rtl"] .hero-copy h1,
body[dir="rtl"] .section-intro h2,
body[dir="rtl"] .faq-panel h2,
body[dir="rtl"] .contact-panel h2,
body[dir="rtl"] .cta-copy h2,
body[dir="rtl"] .showcase-head h2 {
  font-family: var(--font-ar-display);
  letter-spacing: 0;
  line-height: 1.08;
}

body[dir="rtl"] .hero-copy h1 {
  max-width: 560px;
  font-size: clamp(2.15rem, 4.2vw, 3.9rem);
  line-height: 1.12;
  font-weight: 700;
}

body[dir="rtl"] .hero-lead,
body[dir="rtl"] .showcase-list span,
body[dir="rtl"] .metric-card span,
body[dir="rtl"] .why-proof span,
body[dir="rtl"] .contact-points span,
body[dir="rtl"] .proof-card p,
body[dir="rtl"] .faq-answer p {
  line-height: 1.95;
}

body[dir="rtl"] .eyebrow,
body[dir="rtl"] .card-kicker,
body[dir="rtl"] .showcase-rail span {
  letter-spacing: 0;
}

body[dir="rtl"] .nav-actions,
body[dir="rtl"] .hero-actions,
body[dir="rtl"] .card-pills,
body[dir="rtl"] .footer-links,
body[dir="rtl"] .social-strip,
body[dir="rtl"] .cta-actions {
  flex-direction: row-reverse;
}

body[dir="rtl"] .urgency-strip,
body[dir="rtl"] .inline-cta,
body[dir="rtl"] .pricing-head,
body[dir="rtl"] .whatsapp-float {
  flex-direction: row-reverse;
}

body[dir="rtl"] .pricing-label,
body[dir="rtl"] .pricing-badge {
  letter-spacing: 0;
}

body[dir="rtl"] .faq-question {
  text-align: right;
}

body[dir="rtl"] .showcase-float-top {
  inset-inline-start: -18px;
  inset-inline-end: auto;
}

body[dir="rtl"] .showcase-float-bottom {
  inset-inline-end: -18px;
  inset-inline-start: auto;
}

body[dir="rtl"] .field-ltr {
  direction: ltr;
  text-align: left;
}

@media (max-width: 1100px) {
  .hero-shell,
  .why-layout,
  .faq-layout,
  .contact-shell,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-card-large,
  .bento-card-dark,
  .bento-card-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .pricing-card-featured {
    grid-column: 1 / -1;
  }

  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track::before {
    display: none;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero-meta,
  .social-stats,
  .metrics-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-panel {
    position: static;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-top: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    inset-inline: 0;
    display: grid;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(9, 13, 20, 0.96);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      max-height 220ms ease;
  }

  .nav-shell.is-open .nav-panel {
    opacity: 1;
    max-height: 440px;
    pointer-events: auto;
  }

  .site-nav,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body[dir="rtl"] .nav-actions {
    flex-direction: column;
  }

  .site-nav a {
    padding: 6px 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1180px, calc(100% - 16px));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-shell,
  .proof-shell,
  .why-panel,
  .faq-panel,
  .contact-panel,
  .social-shell,
  .cta-band,
  .footer-shell {
    padding: 22px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .hero-meta,
  .social-stats,
  .metrics-band,
  .bento-grid,
  .process-track,
  .proof-grid,
  .form-grid,
  .pricing-grid,
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .urgency-strip,
  .inline-cta,
  .pricing-head {
    flex-direction: column;
    align-items: stretch;
  }

  .showcase-float {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  body[dir="rtl"] .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9.4vw, 3.2rem);
    line-height: 1.16;
  }

  .showcase-float-bottom {
    margin-top: 14px;
  }

  .note-card {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .addon-card {
    padding: 22px;
  }

  .pricing-card-featured {
    padding-top: 22px;
  }

  .pricing-badge {
    position: static;
    inset: auto;
    align-self: flex-start;
    margin-bottom: 14px;
  }

  .pricing-price {
    min-width: 0;
  }

  .footer-top,
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body[dir="rtl"] .hero-actions,
  body[dir="rtl"] .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    font-size: 1.2rem;
  }

  .brand-copy small,
  .whatsapp-float-text {
    display: none;
  }

  .whatsapp-float {
    inset-inline-end: 12px;
    bottom: 14px;
    padding-inline-end: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
