/* Elegance marketing site — standalone static pages */
:root {
  --bg: #f8f9fc;
  --bg-elevated: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --accent: #0f766e;
  --accent-hover: #115e57;
  --accent-soft: rgba(15, 118, 110, 0.08);
  --accent-strong: #0d9488;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --radius: 14px;
  --gold: #c5a065;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select {
  font-family: "Noto Sans Arabic", var(--font);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-strong);
}

a:hover {
  color: var(--accent-hover);
}

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell main {
  flex: 1;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(248, 249, 252, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  width: min(1180px, calc(100% - 2rem));
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

/* Header cluster: logo · nav · language + CTAs */
.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
}

.header-row > .logo {
  flex: 0 0 auto;
}

.header-cluster {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 0.4rem;
  min-height: 2.125rem;
  padding: 0.12rem 0.35rem 0.12rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

.lang-switcher:focus-within:not(:has(.lang-select:disabled)) {
  outline: 2px solid rgba(15, 118, 110, 0.45);
  outline-offset: 2px;
}

.lang-flag-img {
  flex: 0 0 auto;
  width: 1.4375rem;
  height: 1.066rem;
  max-width: none;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
}

.lang-select {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  min-width: 6.5rem;
  max-width: 10rem;
  padding: 0.32rem 1.75rem 0.32rem 0.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23475569' stroke-width='2' d='m1 1 5 5 5-5'/%3E%3C/svg%3E")
    right 0.15rem center / 10px no-repeat;
  color: var(--text);
  appearance: none;
  cursor: pointer;
  box-shadow: none;
}

.lang-select:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  color: var(--text-muted);
  background-image: none;
}

.lang-switcher:has(.lang-select:disabled) {
  cursor: default;
}

.lang-switcher .lang-select:focus-visible {
  outline: none;
}

.lang-select option {
  color: var(--text);
  background-color: var(--bg-elevated);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo-img {
  width: auto;
  height: 1.75rem;
  max-height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo-mark {
  color: var(--accent);
}

.logo:hover .logo-mark {
  color: var(--accent-hover);
}

@media (min-width: 881px) {
  .header-row > .logo {
    order: 0;
  }

  .header-row > .nav-desktop {
    order: 1;
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(0.25rem, 2.5vw, 1.75rem);
    flex-wrap: wrap;
  }

  .header-cluster {
    order: 2;
    flex: 0 0 auto;
  }
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.75rem;
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--text);
}

.nav-cta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.45rem;
  cursor: pointer;
  border-radius: 10px;
  color: var(--text);
  margin-inline-start: auto;
}

@media (min-width: 881px) {
  .nav-toggle {
    display: none !important;
  }
}

.is-rtl .nav-toggle {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

@media (max-width: 880px) {
  .logo {
    order: 0;
  }

  .header-cluster {
    order: 1;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
  }

  .header-cluster .nav-cta-row {
    display: none;
  }

  .nav-toggle {
    order: 2;
  }
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 880px) {
  .header-row > .nav-desktop {
    flex-basis: 100%;
    order: 5;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
  }

  .nav-desktop.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-desktop a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-desktop a:last-child {
    border-bottom: 0;
  }

  .nav-desktop .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
}

@media (min-width: 881px) {
  .nav-desktop .nav-mobile-cta {
    display: none;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.62rem 1.2rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(165deg, var(--accent-strong) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  color: var(--text);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* ----- Hero ----- */
.hero {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(1200px 520px at 80% -10%, rgba(15, 118, 110, 0.09), transparent 55%),
    radial-gradient(900px 400px at 10% 0%, rgba(37, 99, 235, 0.06), transparent 50%),
    var(--bg);
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 4.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text);
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-note strong {
  color: var(--text);
  font-weight: 600;
}

.hero-visual {
  border-radius: calc(var(--radius) + 4px);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual-inner {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-visual-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
}

/* ----- Sections ----- */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-tight {
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-kicker {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: rgba(15, 118, 110, 0.25);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- Steps ----- */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.8125rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.0625rem;
  font-weight: 800;
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ----- CTA banner ----- */
.cta-banner {
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 52%, #0f766e 100%);
  color: #fff;
  text-align: center;
}

.cta-banner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-banner p {
  margin: 0 auto 1.25rem;
  max-width: 520px;
  opacity: 0.92;
  font-size: 1.0625rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #0f172a;
  box-shadow: none;
}

.cta-banner .btn-primary:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* ----- Footer ----- */
.site-footer {
  position: relative;
  margin-top: auto;
  padding: clamp(2.75rem, 5vw, 3.85rem) 0 clamp(1.85rem, 3vw, 2.35rem);
  border-top: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 90% at 50% 115%, rgba(15, 118, 110, 0.07), transparent 52%),
    linear-gradient(180deg, rgba(248, 249, 252, 0.35) 0%, #eef2f8 58%, #e8ecf4 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(52rem, 88%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148, 163, 184, 0.25) 12%,
    rgba(197, 160, 101, 0.45) 50%,
    rgba(148, 163, 184, 0.25) 88%,
    transparent
  );
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.85rem, 3vw, 2.75rem);
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.footer-brand .logo {
  margin-bottom: 0.65rem;
  display: inline-block;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
}

.footer-copy {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 22rem;
  letter-spacing: 0.01em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 9.75rem));
  gap: clamp(1.35rem, 3vw, 2.25rem) clamp(2rem, 4vw, 3.25rem);
}

@media (max-width: 899px) {
  .footer-links > div:last-child {
    grid-column: 1 / -1;
    max-width: 22rem;
  }
}

@media (min-width: 900px) {
  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 9.75rem));
  }
}

.footer-links strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
  margin-bottom: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.footer-links a {
  position: relative;
  display: block;
  padding: 0.28rem 0;
  margin-bottom: 0.1rem;
  font-size: 0.9175rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.78);
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.12rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-strong), var(--gold));
  transition: width 0.22s ease;
}

.footer-links a:hover {
  color: var(--accent-hover);
  transform: translateX(3px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.4);
  outline-offset: 3px;
  border-radius: 4px;
  color: var(--accent-strong);
}

.footer-links a:focus-visible::after {
  width: 100%;
}

.is-rtl .footer-links a::after {
  left: auto;
  right: 0;
}

.is-rtl .footer-links a:hover {
  transform: translateX(-3px);
}

@media (min-width: 720px) {
  .is-rtl .footer-inner {
    flex-direction: row-reverse;
  }
}

.footer-links a:not(:hover) {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .footer-links a {
    transition: none;
  }

  .footer-links a::after {
    transition: none;
  }

  .footer-links a:hover {
    transform: none;
  }

  .is-rtl .footer-links a:hover {
    transform: none;
  }
}

.footer-legal {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.15rem, 4vw, 2.85rem);
  padding-top: 1.65rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  font-size: 0.7825rem;
  line-height: 1.6;
  color: rgba(71, 85, 105, 0.9);
}

/* ----- Inner pages ----- */
.page-header {
  padding: clamp(2rem, 4vw, 3rem) 0 1rem;
}

.page-header h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-header .lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.split-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  margin-bottom: 1rem;
}

.split-panel h2 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.split-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.split-panel li {
  margin-bottom: 0.4rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  background: var(--accent-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center / 65% no-repeat;
}

/* ----- Pricing cards ----- */
.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
}

.price-card.highlight {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 16px 48px rgba(15, 118, 110, 0.12);
}

.price-card .label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.price-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.price-card .amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.75rem 0;
}

.price-card .amount span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ----- Contact form ----- */
.form {
  max-width: 480px;
}

.form-group {
  margin-bottom: 1rem;
}

.form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid rgba(15, 118, 110, 0.35);
  outline-offset: 1px;
  border-color: var(--accent);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ----- Trust strip ----- */
.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1.25rem 0;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* ----- Homepage premium enhancements ----- */
.hero--premium {
  position: relative;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: -40% -20%;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 620px 480px at 15% 20%, rgba(197, 160, 101, 0.14), transparent 55%),
    radial-gradient(ellipse 520px 420px at 85% 0%, rgba(15, 118, 110, 0.11), transparent 50%),
    radial-gradient(ellipse 580px 500px at 60% 100%, rgba(37, 99, 235, 0.08), transparent 55%);
  pointer-events: none;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh {
    animation: none;
  }
}

@keyframes heroDrift {
  from {
    transform: translate3d(-1.5%, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(2%, -1%, 0) scale(1.05);
  }
}

.hero-grid-pad {
  position: relative;
  z-index: 1;
  padding-inline: 0;
}

.hero-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy .hero-lead {
  font-size: 1.2rem;
  line-height: 1.6;
}

.stats-row-outline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 650px) {
  .stats-row-outline {
    grid-template-columns: 1fr;
  }
}

.stat {
  padding: 0.75rem 0.6rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(6px);
}

.stat__value {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--accent), #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.35;
}

.stat-footnote {
  margin: 0.5rem 0 0;
  font-size: 0.71rem;
  color: var(--text-muted);
  font-style: italic;
}

.hero-glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  aspect-ratio: 5 / 4;
}

.hero-visual-inner {
  text-align: start;
}

.hero-visual-inner--stack {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  gap: 0.85rem;
}

.hero-visual-caption {
  color: var(--text);
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
}

.hero-visual-inner--stack .hero-visual-caption {
  margin-top: auto;
}

.hero-visual-caption strong {
  color: var(--accent);
}

/* Faux dashboard chrome inside hero */
.hero-mock {
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-mock-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, #f8fafc, #fff);
}

.hero-mock-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--border);
}

.hero-mock-dot:nth-child(1) {
  background: #f87171;
}
.hero-mock-dot:nth-child(2) {
  background: #fbbf24;
}
.hero-mock-dot:nth-child(3) {
  background: #34d399;
}

.hero-mock-win {
  margin-inline-start: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-mock-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.hero-mock-chip {
  padding: 0.45rem 0.42rem;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.12);
  text-align: center;
}

.hero-mock-chip small {
  display: block;
  font-size: 0.59375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.hero-mock-chip strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
}

.hero-mock-chip.warn {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.35);
}

.hero-mock-chip.warn strong {
  color: #b45309;
}

.hero-mock-rows {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-mock-line {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
}

.hero-mock-line.w-90 {
  width: 92%;
}
.hero-mock-line.w-80 {
  width: 80%;
}
.hero-mock-line.w-70 {
  width: 70%;
}

.hero-mock-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.35rem;
  height: 56px;
  padding-top: 0.25rem;
}

.hero-mock-bars i {
  flex: 1;
  min-width: 0;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--accent-strong), rgba(59, 130, 246, 0.55));
  align-self: flex-end;
  opacity: 0.88;
}

.hero-glass.tilt-hover {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-glass.tilt-hover:hover {
  transform: translateY(-4px) rotateZ(-0.3deg);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.trust-strip .trust-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.75rem;
}

.pill-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.07);
  font-size: 0.8375rem;
  font-weight: 700;
  color: var(--text);
}

.glow-edge {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.feature-card--accent {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 14px 40px rgba(15, 118, 110, 0.07);
}

.feature-icon svg {
  display: block;
}

.feature-icon-alt {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.section-pad-soft {
  padding-block: clamp(3.25rem, 7vw, 5rem);
}

.testimonial-shell {
  margin-top: clamp(2.25rem, 5vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #0f172a 0%, #134e48 92%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.testimonial-shell::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(197, 160, 101, 0.22), transparent 65%);
  pointer-events: none;
}

.testimonial-quote {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.62;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-meta {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  font-style: normal;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.step-glow {
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.12), 0 12px 32px rgba(15, 23, 42, 0.04);
}

.feature-card-tall .feat-more {
  font-weight: 800;
}

.feat-link-wrap {
  margin-top: auto;
}

.feature-card-tall {
  display: flex;
  flex-direction: column;
}

.cta-banner--shine {
  position: relative;
  overflow: hidden;
}

.cta-banner--shine::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -35%;
  width: min(540px, 90vw);
  height: min(540px, 90vw);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 66%);
}

.cta-banner--shine h2,
.cta-banner--shine p,
.cta-banner--shine .btn {
  position: relative;
  z-index: 1;
}

.pulse-btn {
  position: relative;
}

@media (prefers-reduced-motion: no-preference) {
  .pulse-btn:not(:disabled) {
    animation: ctaGlow 4.5s ease-in-out infinite;
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
  }

  50% {
    box-shadow: 0 6px 22px rgba(15, 118, 110, 0.55), 0 0 0 8px rgba(15, 118, 110, 0.08);
  }
}

.pb-mobile-cta-gap {
  padding-bottom: clamp(3.5rem, 10vw, 5rem);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 880px) {
  .mobile-sticky-cta {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 0.65rem calc(1rem + env(safe-area-inset-right)) calc(0.85rem + env(safe-area-inset-bottom))
      calc(1rem + env(safe-area-inset-left));
    background: linear-gradient(transparent, rgba(248, 249, 252, 0.95) 38%);
    pointer-events: none;
  }

  .mobile-sticky-cta .btn {
    pointer-events: auto;
    width: min(440px, 100%);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.2);
  }
}

.stretch-cards {
  align-items: stretch;
}

.price-intro {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.amount-hint.muted {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.check-list.spaced li {
  margin-bottom: 0.75rem;
}

.panel-gap {
  margin-top: 1.5rem;
}

.split-panel.flush {
  margin-bottom: 0;
  border: none;
  background: transparent;
  padding: 0;
}

.panel-form .split-panel {
  border: none;
  background: transparent;
  padding: 0;
}

.ttl-left {
  text-align: start;
}

.lead-narrow {
  max-width: 36rem !important;
}

.list-gap.check-list li {
  margin-bottom: 0.75rem;
}

.btn-block {
  width: 100%;
}

.form-hint.ok {
  color: var(--accent) !important;
}

.footer-links .footer-contact-addr {
  display: block;
  padding: 0.28rem 0;
  margin-bottom: 0.1rem;
  font-size: 0.9175rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.78);
}

.is-rtl .testimonial-quote,
.is-rtl .page-header .lead {
  text-align: right;
}

.is-rtl .check-list li {
  padding-left: 0;
  padding-right: 1.65rem;
}

.is-rtl .check-list li::before {
  left: auto;
  right: 0;
}

