:root {
  --bg: #f4efe7;
  --bg-deep: #0c292b;
  --panel: #ffffff;
  --panel-soft: #fbf7f1;
  --panel-tint: rgba(255, 255, 255, 0.78);
  --ink: #162326;
  --muted: #5f6d71;
  --muted-strong: #475357;
  --line: rgba(16, 40, 42, 0.12);
  --line-strong: rgba(16, 40, 42, 0.2);
  --brand: #0f4a4c;
  --brand-strong: #0a3739;
  --brand-soft: rgba(15, 74, 76, 0.09);
  --accent: #b88b4a;
  --accent-soft: rgba(184, 139, 74, 0.14);
  --sage: #dfe8dd;
  --success: #1f7a5a;
  --danger: #9a3d2b;
  --shadow-sm: 0 12px 28px rgba(12, 35, 38, 0.07);
  --shadow-md: 0 24px 64px rgba(12, 35, 38, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --header-offset: 92px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html:lang(ar),
html:lang(fa) {
  --font-heading: "Noto Naskh Arabic", Georgia, serif;
  --font-body: "Noto Sans Arabic", "Segoe UI", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(184, 139, 74, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(15, 74, 76, 0.12), transparent 24%),
    var(--bg);
  line-height: 1.68;
}

html:lang(ar) body,
html:lang(fa) body {
  line-height: 1.9;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
li {
  color: var(--muted-strong);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.05;
}

html:lang(ar) h1,
html:lang(ar) h2,
html:lang(ar) h3,
html:lang(ar) h4,
html:lang(ar) h5,
html:lang(fa) h1,
html:lang(fa) h2,
html:lang(fa) h3,
html:lang(fa) h4,
html:lang(fa) h5 {
  line-height: 1.22;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.25rem);
}

h2 {
  font-size: clamp(1.9rem, 3.9vw, 3.05rem);
}

h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: 88px 0;
}

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

.section--dark {
  background:
    linear-gradient(145deg, rgba(11, 35, 37, 0.98), rgba(17, 58, 61, 0.96)),
    var(--bg-deep);
  color: #f6f0e7;
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p,
.section--dark li {
  color: inherit;
}

.section--panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.92));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html:lang(ar) .eyebrow,
html:lang(ar) .brand__subline,
html:lang(fa) .eyebrow,
html:lang(fa) .brand__subline {
  letter-spacing: 0.03em;
  text-transform: none;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.section__header {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.section__title {
  margin-bottom: 16px;
}

.section__lead {
  max-width: 720px;
  font-size: 1rem;
}

.cluster,
.chip-row,
.contact-actions,
.stats-grid,
.badge-list,
.split-actions,
.footer-links,
.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted-strong);
}

.chip--soft {
  background: var(--brand-soft);
  border-color: transparent;
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 16px 30px rgba(15, 74, 76, 0.2);
}

.btn--secondary {
  background: linear-gradient(135deg, #d8b27a, var(--accent));
  color: #1a1a1a;
  box-shadow: 0 16px 30px rgba(184, 139, 74, 0.18);
}

.btn--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.btn--block {
  width: 100%;
}

.announcement {
  padding: 10px 0;
  background: linear-gradient(90deg, rgba(15, 74, 76, 0.95), rgba(18, 89, 92, 0.92));
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.9rem;
}

.announcement a {
  color: #fff1d7;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
}

.site-header__bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(248, 244, 237, 0.88);
}

.site-header.is-scrolled .site-header__bar {
  box-shadow: var(--shadow-sm);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-offset);
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(184, 139, 74, 0.2), rgba(15, 74, 76, 0.18)),
    var(--panel);
  border: 1px solid rgba(15, 74, 76, 0.12);
  box-shadow: var(--shadow-sm);
}

.brand__mark img {
  width: 32px;
  height: 32px;
}

.brand__name {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand__subline {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.site-nav__links a {
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 0.9rem;
}

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

.site-nav__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: none;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  padding: 0 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(248, 244, 237, 0.96);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel__inner {
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.mobile-panel__inner a,
.mobile-panel__inner button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-weight: 700;
}

.mobile-panel__inner a[href^="tel:"] {
  display: none;
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: 72px 0 64px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 38px 0 auto;
  height: 560px;
  background:
    radial-gradient(circle at 18% 24%, rgba(184, 139, 74, 0.22), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(15, 74, 76, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: -1;
}

.page-hero__grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 34px;
  align-items: start;
}

.page-hero__copy {
  padding-top: 28px;
}

.page-hero__copy p {
  max-width: 700px;
  font-size: 1.02rem;
}

.page-hero__copy .chip-row {
  margin: 26px 0 18px;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.panel,
.card,
.quote-card,
.result-card,
.faq-item,
.sidebar-card,
.stat-card,
.package-card,
.contact-card,
.timeline-card,
.case-card {
  border: 1px solid rgba(16, 40, 42, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-sm);
}

.hero-panel {
  position: relative;
  padding: 28px;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -24px -24px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 139, 74, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-panel__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel__headline {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.hero-panel__list {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.hero-panel__list li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.hero-panel__list li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--success);
  font-weight: 800;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 700;
}

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

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.proof-strip__item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.proof-strip__label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof-strip__value {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.grid,
.service-grid,
.feature-grid,
.quote-grid,
.faq-grid,
.stats-grid,
.package-grid,
.result-grid,
.case-grid,
.link-grid,
.content-grid,
.ad-proof,
.info-grid {
  display: grid;
  gap: 20px;
}

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

.feature-grid,
.quote-grid,
.link-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-grid,
.result-grid,
.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  align-items: start;
}

.card,
.quote-card,
.package-card,
.result-card,
.case-card,
.sidebar-card,
.timeline-card,
.contact-card {
  padding: 24px;
}

.card h3,
.package-card h3,
.result-card h3,
.timeline-card h3,
.contact-card h3 {
  margin-bottom: 12px;
}

.card p:last-child,
.quote-card p:last-child,
.sidebar-card p:last-child {
  margin-bottom: 0;
}

.stat-card {
  padding: 22px 22px 18px;
}

.stat-card__value {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
}

.stat-card__label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 800;
}

.stat-card__meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 74, 76, 0.12), rgba(184, 139, 74, 0.14));
  color: var(--brand);
  font-size: 1.35rem;
}

.mini-title {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(var(--accent), rgba(15, 74, 76, 0.14));
}

.timeline-card {
  position: relative;
  padding-left: 68px;
}

.timeline-card__step {
  position: absolute;
  left: 14px;
  top: 21px;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border: 3px solid var(--bg);
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(15, 74, 76, 0.1);
}

.quote-card {
  padding: 26px;
}

.quote-card blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.quote-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
}

.quote-card__meta strong {
  display: block;
  color: var(--ink);
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.4rem;
  color: var(--brand);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__body {
  padding: 0 24px 22px;
}

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

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

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

.field label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 40, 42, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 130px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(15, 74, 76, 0.55);
  box-shadow: 0 0 0 4px rgba(15, 74, 76, 0.08);
}

.field--full {
  grid-column: 1 / -1;
}

.form-note,
.meta-note,
.footer-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.turnstile-slot {
  min-height: 66px;
}

.contact-card,
.sidebar-card {
  position: sticky;
  top: 118px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

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

.list-stack li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
}

.package-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.package-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--brand);
}

.package-card__price strong {
  font-size: 2.5rem;
  font-weight: 800;
}

.package-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.callout {
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(90deg, rgba(184, 139, 74, 0.16), rgba(255, 255, 255, 0.7));
}

.page-banner {
  padding: 42px 0 16px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--brand);
  font-weight: 700;
}

.rich-text {
  display: grid;
  gap: 18px;
}

.rich-text h2,
.rich-text h3 {
  margin-top: 8px;
}

.rich-text p,
.rich-text li {
  max-width: 78ch;
}

.rich-text ul {
  display: grid;
  gap: 10px;
}

.rich-text li {
  position: relative;
  padding-left: 22px;
}

.rich-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.link-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.link-card__kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 33, 35, 0.82);
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  margin-bottom: 14px;
}

.cta-band .split-actions {
  margin-top: 24px;
}

.footer {
  padding: 72px 0 32px;
  background: #0a1d1f;
  color: rgba(255, 255, 255, 0.78);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer__title {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #fff8ef;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: #fff;
}

.footer .brand__name {
  color: #fff8ef;
}

.footer .brand__subline {
  color: rgba(255, 255, 255, 0.66);
}

.footer__list {
  display: grid;
  gap: 10px;
}

.footer__brand p {
  max-width: 36ch;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 36;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #168c5b, #0d6c46);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(13, 108, 70, 0.26);
}

.landing-body .site-nav__links,
.landing-body .header-phone {
  display: none;
}

.landing-hero {
  padding: 84px 0 64px;
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 28px;
  align-items: start;
}

.landing-hero__copy {
  padding-top: 26px;
}

.landing-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.landing-proof .card {
  padding: 20px;
}

.landing-form {
  padding: 24px;
}

.lang-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.lang-strip a,
.lang-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
}

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

html[dir="rtl"] .brand,
html[dir="rtl"] .site-header__row,
html[dir="rtl"] .site-nav,
html[dir="rtl"] .site-nav__links,
html[dir="rtl"] .site-nav__meta,
html[dir="rtl"] .chip-row,
html[dir="rtl"] .contact-actions,
html[dir="rtl"] .lang-strip,
html[dir="rtl"] .footer__bottom {
  direction: rtl;
}

html[dir="rtl"] .hero-panel__list li,
html[dir="rtl"] .check-list li {
  padding-left: 0;
  padding-right: 28px;
}

html[dir="rtl"] .hero-panel__list li::before,
html[dir="rtl"] .check-list li::before {
  left: auto;
  right: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .site-nav__links,
  .site-nav__meta .btn,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .page-hero__grid,
  .split,
  .landing-hero__grid,
  .content-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .feature-grid,
  .package-grid,
  .result-grid,
  .case-grid,
  .quote-grid,
  .service-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card,
  .sidebar-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding: 52px 0;
  }

  .page-hero,
  .landing-hero {
    padding-top: 54px;
  }

  .site-header__row {
    min-height: 82px;
  }

  .field-grid,
  .proof-strip,
  .landing-proof,
  .feature-grid,
  .package-grid,
  .result-grid,
  .case-grid,
  .quote-grid,
  .service-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .quote-card,
  .package-card,
  .result-card,
  .case-card,
  .sidebar-card,
  .timeline-card,
  .contact-card,
  .hero-panel,
  .cta-band {
    padding: 22px;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .floating-contact span {
    display: none;
  }
}
