@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700;800;900&display=swap");

/* الخط يعتمد على خطوط النظام أو أي خط عربي تضيفه لاحقًا محليًا. */

:root {
  /* عدّل ألوان الهوية الأساسية من هنا عند الحاجة. */
  --brand-cyan: #22B0C2;
  --brand-cyan-dark: #0F4A5A;
  --brand-cyan-soft: #EAF8FB;
  --brand-navy: #0F4A5A;
  --text-dark: #102a43;
  --text-muted: #5F6B76;
  --white: #ffffff;
  --border-light: #bfefff;
  --page-bg: #F7FAFC;
  --brand-blue: var(--brand-cyan);
  --brand-blue-dark: var(--brand-cyan-dark);
  --brand-light: var(--brand-cyan-soft);
  /* عدّل الخط العام للموقع من هنا. */
  --font-arabic: "IBM Plex Sans Arabic", "Tajawal", "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  --blue: var(--brand-blue);
  --cyan: #22b6e6;
  --teal: #1cc7b7;
  --ink: var(--text-dark);
  --ink-2: #25445c;
  --muted: var(--text-muted);
  --line: #d8edf6;
  --soft: var(--page-bg);
  --panel: #ffffff;
  --warning: #f2b84b;
  --whatsapp: #1fae64;
  --danger: #9d3328;
  --shadow: 0 18px 48px rgba(31, 41, 51, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-arabic);
  line-height: 1.75;
}

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

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

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

.skip-link {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 180px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover,
.nav a:focus {
  color: var(--ink);
}

.nav-cta {
  padding: 9px 14px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  align-items: center;
  gap: clamp(26px, 5vw, 78px);
  padding: clamp(36px, 7vw, 90px) clamp(16px, 4vw, 56px) 34px;
  background:
    radial-gradient(circle at 10% 10%, rgba(34, 182, 230, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.hero.compact {
  min-height: auto;
  padding-top: clamp(34px, 6vw, 72px);
  padding-bottom: clamp(34px, 6vw, 72px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.35;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.form-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.button-whatsapp,
.button-call {
  color: #fff;
  background: var(--whatsapp);
}

.button-danger {
  color: #fff;
  background: var(--danger);
}

.button:hover,
.button:focus,
.card-link:hover,
.card-link:focus {
  filter: brightness(0.96);
}

.hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero > .hero-copy:only-child {
  grid-column: 1 / -1;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(31, 41, 51, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 13px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trust-bar span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  text-align: center;
  background: #fff;
  font-weight: 800;
}

.section {
  padding: clamp(48px, 8vw, 92px) clamp(16px, 4vw, 56px);
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  color: #fff;
  background: var(--ink);
}

.section.dark .eyebrow,
.section.dark p,
.section.dark li {
  color: #d7e0e7;
}

.section.dark .note-card {
  color: var(--ink);
}

.section.dark .note-card p {
  color: var(--muted);
}

.section-head {
  max-width: 880px;
  margin-bottom: 28px;
}

.section-head p,
.intro-panel p,
.split p,
.service-body p,
.request-copy p,
.price-box p,
.scrap-note p,
.city-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

.phone-display {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  color: var(--brand-navy) !important;
  background: var(--brand-cyan-soft);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-weight: 900;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.service-card,
.city-card,
.case-card,
.contact-card,
.step-card,
.note-card,
.project-card,
.article-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.service-card strong,
.city-card strong,
.case-card strong,
.contact-card strong,
.step-card strong {
  font-size: 20px;
}

.service-card p,
.city-card p,
.case-card p,
.step-card p,
.project-card p,
.article-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-link {
  width: fit-content;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: #fff;
}

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

.step-card span,
.case-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 6px;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

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

.project-card {
  padding: 0;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card div {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.article-card {
  align-content: start;
}

.article-card ul,
.note-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 18px 0 0;
  color: var(--muted);
}

.tag-list,
.district-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.district-list li {
  padding: 9px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.link-panel {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.link-panel a {
  color: var(--blue);
  font-weight: 900;
}

.mini-faq {
  display: grid;
  gap: 12px;
}

.mini-faq .note-card {
  align-content: start;
}

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

.case-card {
  min-height: 210px;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist div,
.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 800;
}

.checklist span,
.feature-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-box {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1.16fr);
  gap: clamp(28px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #111820);
}

.price-box .eyebrow,
.price-box p {
  color: #e2edf4;
}

.scrap-note {
  background: #fff;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 1.24fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background: var(--soft);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(34, 182, 230, 0.28);
  outline-offset: 2px;
}

.form-wide {
  grid-column: 1 / -1;
}

.lead-result {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: #126d58;
  background: rgba(31, 174, 100, 0.08);
  border: 1px solid rgba(31, 174, 100, 0.24);
  border-radius: 8px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note.success {
  color: #126d58;
  font-weight: 900;
}

.form-note.error {
  color: var(--danger);
  font-weight: 900;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
}

.cta-section p {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: #eaf9fb;
  font-size: 19px;
}

.cta-section .button-secondary {
  border-color: rgba(255, 255, 255, 0.4);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  padding: 36px clamp(16px, 4vw, 56px);
  color: #dbe5eb;
  background: var(--ink);
}

.footer-logo {
  max-width: 210px;
  padding: 8px;
  background: #fff;
  border-radius: 10px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #dbe5eb;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  color: #fff;
  background: var(--whatsapp);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.admin-main {
  padding: clamp(28px, 5vw, 60px) clamp(16px, 4vw, 56px);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.metric {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

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

.metric strong {
  font-size: 32px;
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.admin-panel {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: auto;
}

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

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

.table th {
  color: var(--ink);
  background: var(--soft);
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 4px 8px;
  color: #fff;
  border-radius: 5px;
  font-weight: 900;
}

.badge-a { background: var(--whatsapp); }
.badge-b { background: var(--blue); }
.badge-c { background: var(--warning); color: var(--ink); }
.badge-d,
.badge-e { background: var(--danger); }

.empty-state {
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.entry-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 6%, rgba(18, 189, 235, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--page-bg) 100%);
}

.entry-header {
  display: grid;
  gap: 12px;
  padding: 12px clamp(16px, 5vw, 48px);
  border-bottom: 1px solid rgba(18, 189, 235, 0.16);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.entry-brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
  color: var(--brand-navy);
  font-weight: 800;
  text-align: right;
}

.entry-brand-name {
  max-width: 180px;
  font-size: 18px;
  line-height: 1.25;
}

.entry-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.entry-nav {
  display: flex;
  gap: clamp(12px, 3vw, 22px);
  overflow-x: auto;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  scrollbar-width: none;
}

.entry-nav::-webkit-scrollbar {
  display: none;
}

.entry-nav a {
  padding: 7px 0;
  border-bottom: 2px solid transparent;
}

.entry-nav a:hover,
.entry-nav a:focus {
  color: var(--brand-cyan-dark);
  border-bottom-color: var(--brand-cyan);
}

.entry-main {
  display: grid;
  gap: 28px;
  min-height: calc(100vh - 108px);
  padding: clamp(24px, 5vw, 52px) clamp(16px, 5vw, 48px) 28px;
}

.entry-choice-section {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.entry-kicker {
  margin-bottom: 6px;
  color: var(--brand-blue);
  font-weight: 900;
}

.entry-choice-section h1 {
  margin-bottom: 10px;
  font-size: clamp(32px, 8vw, 54px);
  color: var(--brand-navy);
}

.entry-lead {
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
}

.entry-choice-list {
  display: grid;
  gap: 14px;
  text-align: right;
}

.entry-choice-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 189, 235, 0.18);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.09);
}

.entry-choice-toggle {
  position: relative;
  display: grid;
  gap: 5px;
  width: 100%;
  min-height: 92px;
  padding: 18px 18px 18px 58px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-cyan-dark));
  border: 0;
  text-align: right;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.entry-choice-toggle::after {
  content: "+";
  position: absolute;
  left: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--brand-cyan-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
}

.entry-choice-toggle[aria-expanded="true"]::after {
  content: "-";
}

.entry-choice-direct::after {
  content: "+";
}

.entry-choice-toggle span {
  font-size: clamp(30px, 7.5vw, 38px);
  font-weight: 800;
  line-height: 1.1;
}

.entry-choice-toggle small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
}

.entry-choice-toggle[aria-expanded="true"] {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-cyan-dark), var(--brand-cyan));
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.entry-choice-toggle[aria-expanded="true"] small {
  color: rgba(255, 255, 255, 0.92);
}

.entry-choice-toggle:hover,
.entry-choice-toggle:focus {
  filter: brightness(0.98);
  box-shadow: 0 12px 26px rgba(0, 143, 197, 0.16);
}

.entry-option-panel {
  display: grid;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  border-top: 0 solid rgba(18, 189, 235, 0.16);
  transition: max-height 180ms ease, padding 180ms ease, opacity 160ms ease;
}

.entry-option-panel[hidden] {
  display: none;
}

.entry-choice-card.is-open .entry-option-panel {
  max-height: 280px;
  padding: 12px;
  opacity: 1;
  pointer-events: auto;
  border-top-width: 1px;
}

.entry-choice-card.is-open .entry-option-panel--large {
  max-height: 620px;
}

.entry-choice-card.is-open .entry-option-panel--catalog {
  max-height: 1500px;
}

.entry-option-label {
  margin: 2px 4px -2px;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 800;
}

.entry-option {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--brand-navy);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-weight: 800;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

button.entry-option {
  width: 100%;
  cursor: pointer;
}

.entry-option--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-cyan-dark));
  border-color: transparent;
}

.entry-option--primary:hover,
.entry-option--primary:focus {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-cyan-dark), var(--brand-cyan));
}

.entry-option:hover,
.entry-option:focus {
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border-color: var(--brand-cyan);
}

.entry-option--primary:hover,
.entry-option--primary:focus {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-cyan-dark), var(--brand-cyan));
}

.entry-quick-quote,
.entry-mini-step,
.entry-order-summary {
  display: grid;
  gap: 12px;
}

.entry-mini-grid,
.entry-size-grid,
.entry-unit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.entry-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.entry-mini-head button,
.entry-unit-grid button,
.entry-quantity-row button,
.entry-order-summary li button {
  min-height: 42px;
  border: 1px solid var(--border-light);
  border-radius: 9px;
  color: var(--brand-navy);
  background: var(--brand-cyan-soft);
  font-weight: 800;
  cursor: pointer;
}

.entry-mini-head button {
  padding: 8px 12px;
}

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

.entry-quantity-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 8px;
  align-items: end;
}

.entry-quantity-row label {
  display: grid;
  gap: 4px;
  color: var(--brand-navy);
  font-weight: 800;
}

.entry-quantity-row input {
  width: 100%;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid var(--border-light);
  border-radius: 9px;
  color: var(--brand-navy);
  background: var(--white);
  font: inherit;
  text-align: center;
}

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

.entry-unit-grid button {
  padding: 8px;
}

.entry-unit-grid button.is-selected {
  color: var(--white);
  background: var(--brand-cyan-dark);
  border-color: var(--brand-cyan-dark);
}

.entry-order-summary {
  padding-top: 10px;
  border-top: 1px solid rgba(18, 189, 235, 0.18);
}

.entry-order-summary strong {
  color: var(--brand-navy);
}

.entry-order-summary ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-order-summary li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(18, 189, 235, 0.18);
  border-radius: 10px;
  background: var(--brand-cyan-soft);
}

.entry-order-summary li span {
  color: var(--brand-navy);
  font-weight: 800;
}

.entry-order-summary li small {
  color: var(--muted);
  font-weight: 800;
}

.entry-order-summary li button {
  grid-column: 1 / -1;
}

.entry-project-strip {
  width: min(980px, 100%);
  margin-inline: auto;
}

.entry-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.entry-strip-head h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 24px;
}

.entry-strip-head a {
  color: var(--brand-cyan-dark);
  font-weight: 800;
}

.entry-projects-scroll {
  display: grid;
  grid-auto-columns: minmax(210px, 30%);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}

.entry-projects-scroll img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 180px;
  padding: 8px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(18, 189, 235, 0.18);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(16, 42, 67, 0.08);
  scroll-snap-align: start;
}

.project-card:not(:has(img)) {
  padding: 20px;
}

.project-card:not(:has(img)) div {
  padding: 0;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .intro-panel,
  .split,
  .price-box,
  .request-section {
    grid-template-columns: 1fr;
  }

  .grid.cards-5,
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid.cards-4,
  .grid.cards-3,
  .case-grid,
  .project-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-bar,
  .trust-bar.six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 150px;
  }

  .hero-actions,
  .form-actions,
  .admin-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .grid.cards-5,
  .grid.cards-4,
  .grid.cards-3,
  .process-grid,
  .case-grid,
  .project-grid,
  .faq-list,
  .lead-form,
  .metric-grid,
  .trust-bar,
  .trust-bar.six,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .hero-media figcaption {
    position: static;
    border: 0;
    border-radius: 0;
  }

  .floating-whatsapp {
    display: inline-flex;
  }

  .entry-main {
    gap: 22px;
    min-height: auto;
    padding-right: 14px;
    padding-left: 14px;
  }

  .entry-nav {
    justify-content: flex-start;
  }

  .entry-choice-section {
    text-align: right;
  }

  .entry-lead {
    margin-inline: 0;
  }

  .entry-projects-scroll {
    grid-auto-columns: minmax(210px, 78%);
  }

  .entry-projects-scroll img {
    height: 165px;
  }
}

/* Mobile-first refinement layer. Edit these variables/rules for responsive behavior. */
:root {
  --mobile-page-padding: 16px;
  --mobile-section-padding: 34px;
  --touch-target: 48px;
  --mobile-radius: 12px;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: #fff;
  font-size: 16px;
}

main,
section,
header,
footer,
nav,
form,
article,
div {
  min-width: 0;
}

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

.site-header {
  align-items: stretch;
  flex-direction: column;
  gap: 8px;
  min-height: auto;
  padding: 10px var(--mobile-page-padding) 8px;
}

.brand {
  justify-content: center;
  min-width: 0;
}

.brand img {
  width: min(154px, 56vw);
}

.nav,
.entry-nav {
  width: 100%;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 7px;
  font-size: 14px;
  line-height: 1.35;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nav::-webkit-scrollbar,
.entry-nav::-webkit-scrollbar {
  display: none;
}

.nav a,
.entry-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 2px;
  white-space: nowrap;
}

.nav-cta {
  padding: 9px 12px !important;
  border-radius: 8px;
}

.hero,
.intro-panel,
.split,
.price-box,
.request-section {
  grid-template-columns: 1fr;
  gap: 22px;
  padding: var(--mobile-section-padding) var(--mobile-page-padding);
}

.hero.compact {
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-copy,
.section-head,
.lead {
  max-width: 100%;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(30px, 9.2vw, 42px);
  line-height: 1.16;
}

h2 {
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1.24;
}

h3 {
  font-size: 19px;
}

.lead,
.section-head p,
.intro-panel p,
.split p,
.service-body p,
.request-copy p,
.price-box p,
.scrap-note p,
.city-copy p,
.contact-card p {
  font-size: 16px;
  line-height: 1.85;
}

.section {
  padding: var(--mobile-section-padding) var(--mobile-page-padding);
}

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

.button,
.card-link,
.entry-option {
  min-height: var(--touch-target);
}

.button {
  width: 100%;
  padding: 11px 16px;
  text-align: center;
}

.grid.cards-5,
.grid.cards-4,
.grid.cards-3,
.process-grid,
.case-grid,
.project-grid,
.faq-list,
.lead-form,
.metric-grid,
.trust-bar,
.trust-bar.six,
.site-footer {
  grid-template-columns: 1fr;
}

.grid,
.process-grid,
.case-grid,
.project-grid,
.faq-list,
.metric-grid {
  gap: 12px;
}

.service-card,
.city-card,
.case-card,
.contact-card,
.step-card,
.note-card,
.project-card,
.article-card,
.link-panel {
  padding: 16px;
  border-radius: var(--mobile-radius);
}

.trust-bar span {
  min-height: 54px;
  padding: 10px;
  font-size: 14px;
}

.checklist div,
.feature-list li {
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 13px;
}

.checklist span,
.feature-list span {
  width: 34px;
  height: 34px;
}

.lead-form {
  gap: 12px;
  padding: 16px;
}

input,
select,
textarea {
  min-height: 48px;
  font-size: 16px;
}

.form-wide {
  grid-column: auto;
}

.site-footer {
  gap: 18px;
  padding: 28px var(--mobile-page-padding) calc(78px + env(safe-area-inset-bottom));
}

.footer-logo {
  max-width: 170px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.floating-whatsapp {
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 50px;
  padding: 12px 17px;
}

.entry-body {
  overflow-x: clip;
}

.entry-header {
  gap: 8px;
  padding: 10px var(--mobile-page-padding) 7px;
}

.entry-brand img {
  width: 54px;
  height: 54px;
}

.entry-main {
  gap: 22px;
  min-height: auto;
  padding: 18px var(--mobile-page-padding) 30px;
}

.entry-choice-section {
  width: 100%;
  text-align: right;
}

.entry-kicker {
  margin-bottom: 4px;
  font-size: 14px;
}

.entry-choice-section h1 {
  font-size: clamp(29px, 9vw, 40px);
}

.entry-lead {
  margin-inline: 0;
  margin-bottom: 16px;
  font-size: 16px;
}

.entry-choice-list {
  gap: 12px;
}

.entry-choice-card {
  border-radius: 14px;
}

.entry-choice-toggle {
  min-height: 80px;
  padding: 15px 16px 15px 54px;
}

.entry-choice-toggle::after {
  left: 14px;
  width: 32px;
  height: 32px;
  font-size: 24px;
}

.entry-choice-toggle span {
  font-size: clamp(28px, 9vw, 36px);
}

.entry-choice-toggle small {
  font-size: 13.5px;
  line-height: 1.55;
}

.entry-choice-card.is-open .entry-option-panel {
  max-height: 330px;
  padding: 10px;
}

.entry-choice-card.is-open .entry-option-panel--large {
  max-height: 680px;
}

.entry-choice-card.is-open .entry-option-panel--catalog {
  max-height: 1600px;
}

.entry-option {
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 15px;
  line-height: 1.5;
}

.entry-project-strip {
  width: 100%;
  overflow: hidden;
}

.entry-strip-head {
  align-items: flex-start;
  margin-bottom: 9px;
}

.entry-strip-head h2 {
  font-size: 22px;
}

.entry-strip-head a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 14px;
}

.entry-projects-scroll {
  display: flex;
  width: 100%;
  max-width: 100%;
  grid-auto-columns: initial;
  gap: 10px;
  margin-inline: 0;
  padding-inline: 0;
  direction: ltr;
  contain: layout paint;
  overscroll-behavior-inline: contain;
}

.entry-projects-scroll img {
  direction: rtl;
  flex: 0 0 min(82%, 260px);
  width: min(82%, 260px);
  max-width: none;
  height: 166px;
  padding: 8px;
  object-fit: contain;
  background: #fff;
}

.table {
  min-width: 760px;
}

@media (min-width: 481px) {
  :root {
    --mobile-page-padding: 20px;
    --mobile-section-padding: 42px;
  }

  .entry-projects-scroll {
    grid-auto-columns: initial;
  }

  .entry-projects-scroll img {
    flex-basis: min(64%, 300px);
    width: min(64%, 300px);
    height: 190px;
  }
}

@media (min-width: 721px) {
  .entry-header {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .entry-brand {
    justify-self: start;
  }

  .entry-nav {
    width: auto;
    justify-content: flex-end;
  }

  .button {
    width: auto;
  }

  .hero-actions,
  .form-actions,
  .admin-actions {
    display: flex;
  }

  .grid.cards-3,
  .case-grid,
  .project-grid,
  .faq-list,
  .lead-form,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.cards-4,
  .grid.cards-5,
  .process-grid,
  .trust-bar,
  .trust-bar.six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-wide {
    grid-column: 1 / -1;
  }

  .entry-main {
    padding-top: 30px;
  }

  .entry-choice-section {
    width: min(760px, 100%);
    text-align: center;
  }

  .entry-lead {
    margin-inline: auto;
  }

  .entry-project-strip {
    width: min(980px, 100%);
  }

  .entry-projects-scroll {
    grid-auto-columns: initial;
    margin-inline: 0;
    padding-inline: 0;
  }

  .entry-projects-scroll img {
    flex-basis: min(36%, 280px);
    width: min(36%, 280px);
  }
}

@media (min-width: 1101px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 20px;
    min-height: 78px;
    padding: 12px clamp(16px, 4vw, 56px);
  }

  .brand {
    justify-content: flex-start;
    min-width: 180px;
  }

  .brand img {
    width: 180px;
  }

  .nav {
    width: auto;
    gap: clamp(10px, 1.5vw, 20px);
    padding: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
    gap: clamp(26px, 5vw, 78px);
    padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 56px) 40px;
  }

  .intro-panel,
  .split,
  .price-box,
  .request-section {
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(28px, 6vw, 82px);
  }

  .request-section {
    grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 1.24fr);
  }

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

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

  .grid.cards-5,
  .process-grid,
  .metric-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .trust-bar.six {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1.1fr 1fr 1fr;
    padding: 36px clamp(16px, 4vw, 56px);
  }

  .floating-whatsapp {
    display: none;
  }
}

/* Rawasi professional homepage layer.
   عدّل ألوان الصفحة الرئيسية من المتغيرات التالية عند الحاجة. */
:root {
  --brand-cyan: #22B0C2;
  --brand-cyan-dark: #0F4A5A;
  --brand-cyan-soft: #EAF8FB;
  --brand-navy: #0F4A5A;
  --page-bg: #F7FAFC;
  --text-dark: #102A43;
  --text-muted: #5F6B76;
  --border-light: #C9EEF4;
  --success: #1D6F56;
  --home-card-shadow: 0 16px 42px rgba(15, 74, 90, 0.09);
}

.home-body {
  min-height: 100vh;
  padding-bottom: calc(74px + env(safe-area-inset-bottom));
  color: var(--text-dark);
  background:
    radial-gradient(circle at 88% -10%, rgba(34, 176, 194, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--page-bg) 100%);
  font-family: var(--font-arabic);
  line-height: 1.75;
}

.home-body :focus-visible {
  outline: 3px solid rgba(34, 176, 194, 0.38);
  outline-offset: 3px;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(15, 74, 90, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.home-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--brand-cyan-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.home-brand img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.home-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding: 6px;
  border: 1px solid rgba(34, 176, 194, 0.18);
  border-radius: 16px;
  color: var(--text-muted);
  background: rgba(234, 248, 251, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  scroll-padding-inline: 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.home-nav::-webkit-scrollbar {
  display: none;
}

.home-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.78);
  scroll-snap-align: start;
  white-space: nowrap;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.home-nav a:hover,
.home-nav a:focus-visible,
.home-nav a:active {
  color: var(--brand-cyan-dark);
  border-color: rgba(34, 176, 194, 0.28);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 74, 90, 0.1);
  transform: translateY(-1px);
}

.home-header-wa,
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.home-header-wa,
.home-button--primary {
  color: #fff;
  background: var(--brand-cyan-dark);
  box-shadow: 0 12px 24px rgba(15, 74, 90, 0.16);
}

.home-header-wa:hover,
.home-button--primary:hover,
.home-header-wa:focus-visible,
.home-button--primary:focus-visible {
  background: #0B3D4B;
  transform: translateY(-1px);
}

.home-button--secondary {
  color: var(--brand-cyan-dark);
  background: #fff;
  border-color: var(--border-light);
}

.home-button--secondary:hover,
.home-button--secondary:focus-visible {
  border-color: var(--brand-cyan);
  background: var(--brand-cyan-soft);
}

.home-hero,
.home-section,
.home-final-cta {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.home-hero {
  display: grid;
  gap: 18px;
  padding: 34px 0 24px;
}

.home-hero__copy,
.home-hero__panel,
.home-about,
.home-form,
.home-final-cta,
.home-footer,
.home-service-card,
.home-steps article,
.home-faq details {
  border: 1px solid rgba(15, 74, 90, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--home-card-shadow);
}

.home-hero__copy {
  padding: 24px 18px;
  border-radius: 20px;
}

.home-kicker {
  margin: 0 0 8px;
  color: var(--brand-cyan-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.home-hero h1 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-size: clamp(34px, 10vw, 58px);
  line-height: 1.12;
}

.home-hero p,
.home-section-head p,
.home-final-cta p,
.home-about p,
.home-service-card p,
.home-steps p,
.home-faq p,
.home-footer p {
  color: var(--text-muted);
}

.home-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.home-hero-points,
.home-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.home-hero-points li,
.home-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.home-hero__panel {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 152px;
  padding: 20px;
  color: var(--brand-cyan-dark);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(34, 176, 194, 0.14), rgba(255, 255, 255, 0.92)),
    #fff;
}

.home-hero__panel strong {
  font-size: 24px;
  line-height: 1.3;
}

.home-trust {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(15, 74, 90, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(15, 74, 90, 0.06);
}

.home-section {
  padding: 38px 0 0;
}

.home-section-head {
  margin-bottom: 18px;
}

.home-section-head h2,
.home-about h2,
.home-final-cta h2 {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-size: clamp(25px, 7vw, 42px);
  line-height: 1.22;
}

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

.home-choice-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 74, 90, 0.08);
  border-radius: 18px;
  box-shadow: var(--home-card-shadow);
}

.home-choice-toggle.entry-choice-toggle {
  min-height: 88px;
  padding: 17px 18px 17px 58px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-cyan-dark));
}

.home-choice-toggle.entry-choice-toggle span {
  font-size: clamp(25px, 8vw, 36px);
}

.home-choice-toggle.entry-choice-toggle small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.home-option-panel.entry-option-panel {
  display: grid;
  gap: 10px;
  max-height: 0;
  padding: 0 12px;
  border-top: 1px solid rgba(34, 176, 194, 0.14);
  background: #fff;
  transition: max-height 220ms ease, padding 220ms ease;
}

.home-choice-card.is-open .home-option-panel.entry-option-panel {
  max-height: 2000px;
  padding: 12px;
  opacity: 1;
  pointer-events: auto;
  border-top-width: 1px;
}

.entry-option {
  min-height: 48px;
  color: var(--brand-cyan-dark);
  background: #fff;
  border: 1px solid var(--border-light);
}

.entry-option:hover,
.entry-option:focus-visible {
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border-color: var(--brand-cyan);
}

.entry-option--primary {
  color: #fff;
  background: var(--brand-cyan-dark);
  border-color: var(--brand-cyan-dark);
}

.entry-mini-step,
.entry-order-summary {
  display: grid;
  gap: 10px;
}

.entry-mini-grid,
.entry-size-grid,
.entry-unit-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}

.entry-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.entry-mini-head button,
.entry-order-summary button,
.entry-quantity-row button,
.entry-unit-grid button {
  min-height: 44px;
  padding: 8px 12px;
  color: var(--brand-cyan-dark);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
}

.entry-quantity-row {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 8px;
  align-items: end;
}

.entry-quantity-row label {
  display: grid;
  gap: 5px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
}

.entry-quantity-row input {
  width: 100%;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  text-align: center;
}

.entry-unit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.entry-unit-grid .is-selected {
  color: #fff;
  background: var(--brand-cyan-dark);
  border-color: var(--brand-cyan-dark);
}

.entry-order-summary {
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: var(--brand-cyan-soft);
}

.entry-order-summary ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-order-summary li {
  display: grid;
  gap: 6px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(15, 74, 90, 0.08);
  border-radius: 10px;
}

.home-service-grid,
.home-steps {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.home-service-card,
.home-steps article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
}

.home-service-card h3,
.home-steps h3 {
  margin: 0;
  color: var(--brand-cyan-dark);
  font-size: 20px;
}

.home-service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 4px;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand-cyan-dark);
  border-radius: 11px;
  font-weight: 900;
}

.home-work-strip {
  display: grid;
  grid-auto-columns: minmax(220px, 74vw);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 14px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.home-work-strip figure {
  display: grid;
  gap: 8px;
  scroll-snap-align: start;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(15, 74, 90, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--home-card-shadow);
}

.home-work-strip img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: var(--brand-cyan-soft);
  border-radius: 13px;
}

.home-work-strip figcaption {
  color: var(--text-muted);
  font-weight: 800;
  text-align: center;
}

.home-steps article span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--brand-cyan-dark);
  border-radius: 999px;
  font-weight: 900;
}

.home-about {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
}

.home-about dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.home-about dl div {
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: var(--brand-cyan-soft);
}

.home-about dt {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}

.home-about dd {
  margin: 0;
  color: var(--brand-cyan-dark);
  font-weight: 900;
}

.home-contact {
  scroll-margin-top: 120px;
}

.home-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
}

.home-form label {
  display: grid;
  gap: 6px;
  color: var(--text-dark);
  font-weight: 900;
}

.home-form input,
.home-form select,
.home-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 11px;
}

.home-form textarea {
  resize: vertical;
}

.home-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.home-privacy-note,
.home-form-status {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.home-form-status {
  padding: 10px 12px;
  color: var(--success);
  background: rgba(29, 111, 86, 0.08);
  border: 1px solid rgba(29, 111, 86, 0.16);
  border-radius: 10px;
  font-weight: 800;
}

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

.home-faq details {
  padding: 0;
  overflow: hidden;
  border-radius: 15px;
}

.home-faq summary {
  min-height: 52px;
  padding: 14px 16px;
  color: var(--brand-cyan-dark);
  font-weight: 900;
  cursor: pointer;
}

.home-faq details p {
  margin: 0;
  padding: 0 16px 16px;
}

.home-final-cta {
  display: grid;
  gap: 10px;
  margin-top: 38px;
  padding: 24px 18px;
  border-radius: 22px;
  text-align: center;
}

.home-final-cta .home-actions {
  margin-top: 10px;
}

.home-footer {
  display: grid;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 38px auto 0;
  padding: 22px 18px calc(96px + env(safe-area-inset-bottom));
  border-radius: 22px 22px 0 0;
}

.home-footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.home-footer strong {
  display: block;
  margin-top: 8px;
  color: var(--brand-cyan-dark);
  font-size: 20px;
}

.home-footer nav,
.home-footer-contact {
  display: grid;
  gap: 8px;
}

.home-footer a {
  color: var(--brand-cyan-dark);
  font-weight: 900;
}

.home-footer small,
.home-footer-contact span {
  color: var(--text-muted);
}

.home-mobile-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(15, 74, 90, 0.1);
  box-shadow: 0 -12px 24px rgba(15, 74, 90, 0.08);
  backdrop-filter: blur(12px);
}

.home-mobile-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  color: #fff;
  background: var(--brand-cyan-dark);
  border-radius: 12px;
  font-weight: 900;
}

.home-mobile-bar a:first-child {
  background: var(--success);
}

@media (min-width: 520px) {
  .home-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 760px) {
  .home-body {
    padding-bottom: 0;
  }

  .home-header {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    padding: 12px 32px;
  }

  .home-brand {
    justify-content: center;
  }

  .home-nav {
    justify-content: center;
    padding-bottom: 0;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    align-items: stretch;
    padding-top: 54px;
  }

  .home-hero__copy {
    padding: 36px;
  }

  .home-hero__panel {
    min-height: 100%;
  }

  .home-section {
    padding-top: 56px;
  }

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

  .home-work-strip {
    grid-auto-columns: 260px;
  }

  .home-work-strip img {
    height: 300px;
  }

  .home-about {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    padding: 28px;
  }

  .home-about dl {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px;
  }

  .home-form-wide,
  .home-privacy-note,
  .home-form-status,
  .home-form .home-button {
    grid-column: 1 / -1;
  }

  .home-final-cta {
    padding: 34px;
  }

  .home-final-cta .home-actions {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .home-footer {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    padding-bottom: 26px;
  }

  .home-footer small {
    grid-column: 1 / -1;
  }

  .home-mobile-bar {
    display: none;
  }
}

/* Visual polish only: no catalog data, WhatsApp messages, or ordering logic changes. */
:root {
  --brand-cyan: #22B0C2;
  --brand-cyan-dark: #0F4A5A;
  --brand-cyan-soft: #EAF8FB;
  --page-bg: #F7FAFC;
  --text-dark: #102A43;
  --text-muted: #5F6B76;
  --border-light: #C9EEF4;
  --success: #1D6F56;
  --home-radius: 12px;
  --home-shadow-soft: 0 10px 26px rgba(15, 74, 90, 0.07);
  --home-shadow-hover: 0 14px 34px rgba(15, 74, 90, 0.11);
}

body,
.home-body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.home-body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fbfd 34%, var(--page-bg) 100%);
}

.home-header {
  border-bottom-color: rgba(15, 74, 90, 0.1);
  box-shadow: 0 8px 22px rgba(15, 74, 90, 0.045);
}

.home-brand {
  letter-spacing: 0;
}

.home-brand img {
  filter: drop-shadow(0 6px 14px rgba(15, 74, 90, 0.12));
}

.home-nav {
  gap: 8px;
  justify-content: flex-start;
}

.home-nav a {
  min-height: 42px;
  padding: 8px 12px;
}

.home-nav a:hover,
.home-nav a:focus-visible {
  background: #fff;
}

.home-header-wa,
.home-button {
  border-radius: 10px;
  letter-spacing: 0;
}

.home-header-wa {
  min-height: 44px;
  padding-inline: 16px;
}

.home-header-wa,
.home-button--primary,
.home-service-grid > article a,
.home-mobile-bar a:nth-child(2) {
  background: linear-gradient(135deg, var(--brand-cyan-dark), #0b6274);
}

.home-button--primary,
.home-header-wa {
  box-shadow: 0 12px 24px rgba(15, 74, 90, 0.15);
}

.home-mobile-bar a:first-child {
  background: linear-gradient(135deg, var(--success), #15875f);
}

.home-hero {
  align-items: stretch;
  padding-top: clamp(28px, 7vw, 58px);
}

.home-hero__copy,
.home-hero__panel,
.home-about,
.home-form,
.home-final-cta,
.home-footer,
.home-choice-card,
.home-service-grid > article,
.home-steps article,
.home-faq details,
.home-work-strip figure {
  border-color: rgba(15, 74, 90, 0.09);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow-soft);
}

.home-hero__copy {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 5vw, 40px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    var(--white);
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: var(--brand-cyan-soft);
}

.home-hero h1 {
  max-width: 720px;
  color: var(--brand-cyan-dark);
  font-weight: 900;
}

.home-hero p,
.home-section-head p,
.home-final-cta p,
.home-about p,
.home-service-grid > article p,
.home-steps p,
.home-faq p,
.home-footer p {
  font-size: clamp(15.5px, 2.5vw, 17px);
  line-height: 1.85;
}

.home-hero__panel {
  min-height: 150px;
  background:
    linear-gradient(145deg, rgba(34, 176, 194, 0.14), rgba(255, 255, 255, 0.96));
}

.home-hero__panel strong {
  color: var(--brand-cyan-dark);
  font-weight: 900;
}

.home-hero__panel span {
  color: var(--text-muted);
}

.home-hero-points li,
.home-trust span {
  min-height: 36px;
  border-color: rgba(34, 176, 194, 0.28);
  background: rgba(234, 248, 251, 0.82);
}

.home-trust {
  gap: 8px;
  border-radius: var(--home-radius);
}

.home-section {
  padding-top: clamp(34px, 7vw, 62px);
}

.home-section-head {
  max-width: 760px;
}

.home-section-head h2,
.home-about h2,
.home-final-cta h2 {
  color: var(--brand-cyan-dark);
  font-weight: 900;
}

.home-choice-card,
.home-service-grid > article,
.home-steps article,
.home-faq details,
.home-work-strip figure {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.home-choice-card:hover,
.home-service-grid > article:hover,
.home-steps article:hover,
.home-work-strip figure:hover {
  border-color: rgba(34, 176, 194, 0.35);
  box-shadow: var(--home-shadow-hover);
}

.home-choice-toggle.entry-choice-toggle {
  min-height: 86px;
  background: linear-gradient(135deg, #22b0c2, #0f6f82);
}

.home-choice-toggle.entry-choice-toggle[aria-expanded="true"] {
  background: linear-gradient(135deg, #0f4a5a, #22b0c2);
}

.entry-choice-toggle::after {
  color: #0f4a5a;
  box-shadow: 0 6px 16px rgba(15, 74, 90, 0.16);
}

.entry-option,
.entry-mini-head button,
.entry-order-summary button,
.entry-quantity-row button,
.entry-unit-grid button {
  border-radius: 10px;
}

.entry-option {
  min-height: 50px;
  box-shadow: 0 6px 16px rgba(15, 74, 90, 0.035);
}

.entry-option--primary {
  background: linear-gradient(135deg, var(--brand-cyan-dark), #0b6274);
}

.entry-mini-head {
  padding-bottom: 2px;
}

.entry-option-label {
  color: var(--brand-cyan-dark);
}

.entry-order-summary {
  background: linear-gradient(180deg, #f4fbfd, #ffffff);
}

.entry-order-summary li {
  border-color: rgba(15, 74, 90, 0.08);
}

.home-service-grid > article {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 18px;
  background: #fff;
}

.home-service-grid > article .home-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 900;
}

.home-service-grid > article h3 {
  margin: 0;
  color: var(--brand-cyan-dark);
  font-size: 20px;
  font-weight: 900;
}

.home-service-grid > article p {
  margin: 0;
  color: var(--text-muted);
}

.home-service-grid > article a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 4px;
  padding: 10px 14px;
  color: #fff;
  border-radius: 10px;
  font-weight: 900;
}

.home-service-grid > article a.home-card-link-secondary {
  color: var(--brand-cyan-dark);
  background: #fff;
  border: 1px solid var(--border-light);
}

.home-service-grid > article a.home-card-link-secondary:hover,
.home-service-grid > article a.home-card-link-secondary:focus-visible {
  background: var(--brand-cyan-soft);
  border-color: var(--brand-cyan);
}

.home-work-strip {
  gap: 14px;
  padding-bottom: 16px;
  scrollbar-color: rgba(34, 176, 194, 0.45) transparent;
}

.home-work-strip figure {
  background: rgba(255, 255, 255, 0.96);
}

.home-work-strip img {
  height: clamp(210px, 58vw, 300px);
  border: 1px solid rgba(15, 74, 90, 0.06);
}

.home-steps article {
  align-content: start;
  min-height: 178px;
  background: #fff;
}

.home-steps article span {
  background: linear-gradient(135deg, var(--brand-cyan-dark), var(--brand-cyan));
}

.home-about,
.home-form,
.home-final-cta {
  background: rgba(255, 255, 255, 0.96);
}

.home-form input,
.home-form select,
.home-form textarea {
  border-color: rgba(15, 74, 90, 0.14);
  box-shadow: inset 0 1px 0 rgba(15, 74, 90, 0.025);
}

.home-form input:focus,
.home-form select:focus,
.home-form textarea:focus {
  border-color: var(--brand-cyan);
  background: #fff;
}

.home-faq details {
  background: #fff;
}

.home-faq summary {
  position: relative;
  padding-left: 48px;
}

.home-faq summary::after {
  content: "+";
  position: absolute;
  left: 15px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border-radius: 999px;
  transform: translateY(-50%);
}

.home-faq details[open] summary::after {
  content: "-";
}

.home-final-cta {
  background:
    linear-gradient(135deg, rgba(34, 176, 194, 0.14), rgba(255, 255, 255, 0.98)),
    #fff;
}

.home-footer {
  background:
    linear-gradient(180deg, #ffffff, #f5fbfd);
}

.home-footer-contact span {
  line-height: 1.7;
}

.home-mobile-bar {
  z-index: 80;
}

@media (max-width: 420px) {
  .home-header {
    padding-inline: 12px;
  }

  .home-brand {
    font-size: 13px;
  }

  .home-brand img {
    width: 120px;
    height: 120px;
  }

  .home-nav a {
    font-size: 13px;
    min-height: 42px;
    padding-inline: 11px;
  }

  .home-hero,
  .home-section,
  .home-final-cta,
  .home-trust,
  .home-footer {
    width: min(100% - 24px, 1120px);
  }

  .home-hero h1 {
    font-size: clamp(31px, 10vw, 38px);
  }

  .home-choice-toggle.entry-choice-toggle {
    padding-right: 15px;
  }

  .entry-unit-grid {
    grid-template-columns: 1fr;
  }

  .home-mobile-bar {
    gap: 7px;
    padding-inline: 10px;
  }
}

@media (min-width: 760px) {
  .home-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-inline: clamp(24px, 5vw, 58px);
  }

  .home-nav {
    justify-content: center;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.72fr);
  }

  .home-choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .home-service-grid > article,
  .home-steps article {
    min-height: 190px;
  }
}

@media (min-width: 1040px) {
  .home-service-grid > article,
  .home-steps article {
    padding: 20px;
  }

  .home-work-strip {
    grid-auto-columns: 280px;
  }
}

/* Landing pages for steel and demolition campaigns. */
.landing-body {
  min-height: 100vh;
  padding-bottom: calc(74px + env(safe-area-inset-bottom));
  color: var(--text-dark);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 36%, var(--page-bg) 100%);
  font-family: var(--font-arabic);
  line-height: 1.75;
}

.landing-body :focus-visible {
  outline: 3px solid rgba(34, 176, 194, 0.34);
  outline-offset: 3px;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(15, 74, 90, 0.09);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 22px rgba(15, 74, 90, 0.045);
  backdrop-filter: blur(14px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--brand-cyan-dark);
  font-weight: 900;
}

.landing-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(15, 74, 90, 0.12));
}

.landing-nav,
.landing-header-actions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.landing-nav::-webkit-scrollbar,
.landing-header-actions::-webkit-scrollbar {
  display: none;
}

.landing-nav a,
.landing-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.landing-nav a:hover,
.landing-nav a:focus-visible {
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
}

.landing-mini-button {
  color: var(--brand-cyan-dark);
  background: #fff;
  border: 1px solid var(--border-light);
}

.landing-mini-button--wa {
  color: #fff;
  background: linear-gradient(135deg, var(--success), #15875f);
  border-color: transparent;
}

.landing-hero,
.landing-section,
.landing-final-cta,
.landing-trust,
.landing-footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.landing-hero {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 7vw, 58px) 0 22px;
}

.landing-hero__copy,
.landing-side-card,
.landing-card-grid article,
.landing-steps article,
.landing-form,
.landing-faq details,
.landing-final-cta,
.landing-footer,
.landing-image-grid figure {
  border: 1px solid rgba(15, 74, 90, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--home-shadow-soft);
}

.landing-hero__copy {
  padding: clamp(22px, 5vw, 42px);
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 10px;
  padding: 4px 10px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.landing-hero h1,
.landing-section-head h2,
.landing-final-cta h2 {
  margin: 0 0 10px;
  color: var(--brand-cyan-dark);
  font-size: clamp(31px, 8vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.landing-section-head h2,
.landing-final-cta h2 {
  font-size: clamp(25px, 6vw, 40px);
}

.landing-hero p,
.landing-note,
.landing-section-head p,
.landing-card-grid p,
.landing-steps p,
.landing-faq p,
.landing-final-cta p,
.landing-footer p,
.landing-side-card li {
  color: var(--text-muted);
  font-size: clamp(15.5px, 2.4vw, 17px);
  line-height: 1.85;
}

.landing-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-weight: 800;
}

.landing-actions,
.landing-inline-cta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 900;
  text-align: center;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.landing-button:hover,
.landing-button:focus-visible,
.landing-card-grid article:hover,
.landing-steps article:hover {
  transform: translateY(-1px);
}

.landing-button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--success), #15875f);
  box-shadow: 0 12px 24px rgba(29, 111, 86, 0.16);
}

.landing-button--secondary {
  color: var(--brand-cyan-dark);
  background: #fff;
  border-color: var(--border-light);
}

.landing-button--secondary:hover,
.landing-button--secondary:focus-visible {
  border-color: var(--brand-cyan);
  background: var(--brand-cyan-soft);
}

.landing-side-card {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(34, 176, 194, 0.14), rgba(255, 255, 255, 0.96));
}

.landing-side-card strong {
  color: var(--brand-cyan-dark);
  font-size: 22px;
  font-weight: 900;
}

.landing-side-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0 18px 0 0;
}

.landing-trust,
.landing-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(15, 74, 90, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(15, 74, 90, 0.055);
}

.landing-trust span,
.landing-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 10px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border: 1px solid rgba(34, 176, 194, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.landing-section {
  padding-top: clamp(34px, 7vw, 62px);
}

.landing-section-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.landing-soft {
  padding: clamp(24px, 5vw, 34px);
  margin-top: clamp(34px, 7vw, 62px);
  border: 1px solid rgba(15, 74, 90, 0.08);
  border-radius: 12px;
  background: rgba(234, 248, 251, 0.46);
}

.landing-card-grid,
.landing-steps,
.landing-image-grid,
.landing-faq-list {
  display: grid;
  gap: 12px;
}

.landing-card-grid article,
.landing-steps article {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
}

.landing-card-grid h3,
.landing-steps h3 {
  margin: 0;
  color: var(--brand-cyan-dark);
  font-size: 20px;
  font-weight: 900;
}

.landing-card-grid p,
.landing-steps p {
  margin: 0;
}

.source-catalog {
  scroll-margin-top: 92px;
}

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

.source-catalog-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-block: 4px 8px;
  scrollbar-width: thin;
}

.source-catalog-nav a {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--brand-cyan-dark);
  background: #fff;
  border: 1px solid rgba(34, 176, 194, 0.24);
  font-weight: 800;
  text-decoration: none;
}

.source-catalog-group {
  display: grid;
  gap: 16px;
  scroll-margin-top: 92px;
}

.source-catalog-group__head {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(234, 248, 251, 0.9), #fff);
  border: 1px solid rgba(34, 176, 194, 0.18);
}

.source-catalog-group__head h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(22px, 5vw, 32px);
}

.source-catalog-group__head p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.source-catalog-group__head > span {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--brand-cyan-dark);
  background: rgba(34, 176, 194, 0.12);
  font-weight: 800;
}

.source-product-grid {
  display: grid;
  gap: 14px;
}

.source-product-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 14px 34px rgba(15, 74, 90, 0.08);
}

.source-product-card figure {
  margin: 0;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 18px;
  background: var(--page-bg);
  overflow: hidden;
}

.source-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16);
}

.knowledge-grid {
  display: grid;
  gap: 18px;
}

.knowledge-category-grid,
.knowledge-article-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.knowledge-card,
.knowledge-category {
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(15, 74, 90, 0.07);
}

.knowledge-card {
  display: grid;
  gap: 12px;
}

.knowledge-card span,
.knowledge-meta span,
.knowledge-category span {
  color: var(--brand-cyan-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.knowledge-card h3,
.knowledge-category h3 {
  margin: 0;
  color: var(--brand-navy);
}

.knowledge-card p,
.knowledge-category p,
.knowledge-article p {
  color: var(--text-muted);
  line-height: 1.85;
}

.knowledge-card a {
  color: var(--brand-cyan-dark);
  font-weight: 800;
  text-decoration: none;
}

.knowledge-card a:hover,
.knowledge-card a:focus-visible {
  text-decoration: underline;
}

.knowledge-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.knowledge-article {
  max-width: 920px;
  margin-inline: auto;
}

.knowledge-article h2,
.knowledge-article h3 {
  color: var(--brand-navy);
}

.knowledge-article ul,
.knowledge-article ol {
  display: grid;
  gap: 10px;
  padding-inline-start: 1.25rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.knowledge-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.knowledge-breadcrumb a {
  color: var(--brand-cyan-dark);
  text-decoration: none;
  font-weight: 800;
}

.knowledge-breadcrumb a:hover,
.knowledge-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.knowledge-inline-link {
  margin-top: 16px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 16px;
  background: var(--page-bg);
}

.knowledge-inline-link a {
  color: var(--brand-cyan-dark);
  font-weight: 800;
  text-decoration: none;
}

.source-product-card__body {
  display: grid;
  gap: 10px;
}

.source-product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-product-card__meta span,
.source-product-card__size {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--brand-cyan-dark);
  background: rgba(34, 176, 194, 0.11);
  font-weight: 800;
  font-size: 0.88rem;
}

.source-product-card h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1.12rem;
  line-height: 1.5;
}

.source-product-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.source-product-card__size {
  margin: 0;
}

.source-product__variants {
  border: 1px solid rgba(34, 176, 194, 0.18);
  border-radius: 16px;
  background: rgba(247, 250, 252, 0.82);
  overflow: hidden;
}

.source-product__variants summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 12px;
  color: var(--brand-navy);
  font-weight: 800;
}

.source-product__variants ul {
  display: grid;
  gap: 8px;
  max-height: 230px;
  overflow: auto;
  margin: 0;
  padding: 0 12px 12px;
  list-style: none;
}

.source-product__variants li {
  display: block;
  padding: 9px 0;
  border-top: 1px solid rgba(16, 42, 67, 0.08);
  color: var(--text-dark);
  line-height: 1.6;
}

.source-product-card__cta {
  width: 100%;
  margin-top: 2px;
}

.landing-steps article span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-cyan-dark), var(--brand-cyan));
  border-radius: 999px;
  font-weight: 900;
}

.landing-form {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.landing-form label {
  display: grid;
  gap: 6px;
  color: var(--text-dark);
  font-weight: 900;
}

.landing-form input,
.landing-form select,
.landing-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid rgba(15, 74, 90, 0.14);
  border-radius: 10px;
}

.landing-form textarea {
  resize: vertical;
}

.landing-privacy-note,
.landing-form-status {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.landing-form-status {
  padding: 10px 12px;
  color: var(--success);
  background: rgba(29, 111, 86, 0.08);
  border: 1px solid rgba(29, 111, 86, 0.16);
  border-radius: 10px;
  font-weight: 800;
}

.landing-faq details {
  overflow: hidden;
}

.landing-faq summary {
  position: relative;
  min-height: 52px;
  padding: 14px 16px 14px 48px;
  color: var(--brand-cyan-dark);
  font-weight: 900;
  cursor: pointer;
}

.landing-faq summary::after {
  content: "+";
  position: absolute;
  left: 15px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border-radius: 999px;
  transform: translateY(-50%);
}

.landing-faq details[open] summary::after {
  content: "-";
}

.landing-faq p {
  margin: 0;
  padding: 0 16px 16px;
}

.landing-image-grid figure {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 10px;
}

.landing-image-grid img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--brand-cyan-soft);
  border: 1px solid rgba(15, 74, 90, 0.06);
  border-radius: 10px;
}

.landing-image-grid figcaption {
  color: var(--text-muted);
  font-weight: 800;
  text-align: center;
}

.landing-final-cta {
  display: grid;
  gap: 10px;
  margin-top: 38px;
  padding: 24px 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(34, 176, 194, 0.14), rgba(255, 255, 255, 0.98)),
    #fff;
}

.landing-footer {
  display: grid;
  gap: 16px;
  margin-top: 38px;
  padding: 22px 18px calc(96px + env(safe-area-inset-bottom));
}

.landing-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-cyan-dark);
  font-size: 20px;
}

.landing-footer nav,
.landing-footer div:last-child {
  display: grid;
  gap: 8px;
}

.landing-footer a {
  color: var(--brand-cyan-dark);
  font-weight: 900;
}

.landing-footer span {
  color: var(--text-muted);
}

.landing-mobile-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(15, 74, 90, 0.1);
  box-shadow: 0 -12px 24px rgba(15, 74, 90, 0.08);
  backdrop-filter: blur(12px);
}

.landing-mobile-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  color: #fff;
  background: var(--brand-cyan-dark);
  border-radius: 10px;
  font-weight: 900;
}

.landing-mobile-bar a:first-child {
  background: linear-gradient(135deg, var(--success), #15875f);
}

.media-proof-section {
  overflow: hidden;
}

.media-proof-grid {
  display: grid;
  gap: 16px;
}

.media-proof-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 74, 90, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(15, 74, 90, 0.08);
}

.media-proof-card--featured {
  border-color: rgba(34, 176, 194, 0.34);
  box-shadow: 0 22px 54px rgba(15, 74, 90, 0.14);
}

.media-proof-card figure {
  display: grid;
  min-height: 0;
  margin: 0;
  background: linear-gradient(135deg, rgba(34, 176, 194, 0.08), rgba(15, 74, 90, 0.06));
}

.media-proof-card img,
.media-proof-card video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 230px;
  object-fit: cover;
  background: #f4fbfd;
}

.media-proof-card--video video {
  height: 300px;
}

.media-proof-card > div {
  display: grid;
  gap: 8px;
  padding: 0 16px 18px;
}

.media-proof-card h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(18px, 5vw, 22px);
}

.media-proof-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.9;
}

.media-proof-card a {
  width: fit-content;
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(34, 176, 194, 0.1);
  color: var(--brand-navy);
  font-weight: 900;
  text-decoration: none;
}

.media-proof-card a:hover,
.media-proof-card a:focus-visible {
  background: rgba(34, 176, 194, 0.18);
}

.media-proof-kicker {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(34, 176, 194, 0.1);
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 900;
}

.media-proof-grid--landing {
  margin-top: 20px;
}

@media (max-width: 420px) {
  .landing-header {
    padding-inline: 12px;
  }

  .landing-brand {
    font-size: 15px;
  }

  .landing-brand img {
    width: 42px;
    height: 42px;
  }

  .landing-nav a,
  .landing-mini-button {
    font-size: 13px;
    padding-inline: 9px;
  }

  .landing-hero,
  .landing-section,
  .landing-final-cta,
  .landing-trust,
  .landing-footer {
    width: min(100% - 24px, 1120px);
  }

  .landing-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }
}

@media (min-width: 560px) {
  .landing-actions,
  .landing-inline-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-card-grid,
  .landing-steps,
  .landing-image-grid,
  .source-product-grid,
  .media-proof-grid--landing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .landing-body {
    padding-bottom: 0;
  }

  .landing-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    padding-inline: clamp(24px, 5vw, 58px);
  }

  .landing-nav {
    justify-content: center;
  }

  .landing-header-actions {
    justify-content: flex-end;
  }

  .landing-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.72fr);
    align-items: stretch;
  }

  .landing-side-card {
    min-height: 100%;
  }

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

  .landing-steps,
  .landing-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .media-proof-card--video {
    grid-column: span 1;
  }

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

  .media-proof-card img,
  .media-proof-card video {
    height: 260px;
  }

  .media-proof-card--video video {
    height: 360px;
  }

  .landing-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px;
  }

  .landing-form-wide,
  .landing-privacy-note,
  .landing-form-status {
    grid-column: 1 / -1;
  }

  .landing-final-cta {
    padding: 34px;
  }

  .landing-final-cta .landing-button {
    width: min(360px, 100%);
    margin-inline: auto;
  }

  .landing-footer {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    padding-bottom: 26px;
  }

  .landing-mobile-bar {
    display: none;
  }
}

.document-templates-section {
  scroll-margin-top: 96px;
}

.document-template-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.document-template-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(34, 176, 194, 0.22);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 74, 90, 0.08);
}

.document-template-preview {
  margin: 0;
  padding: 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, var(--brand-cyan-soft));
  border: 1px solid rgba(15, 74, 90, 0.1);
  overflow: hidden;
}

.document-template-preview img {
  width: 100%;
  aspect-ratio: 900 / 1274;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 74, 90, 0.1);
  pointer-events: none;
  user-select: none;
}

.document-template-badge {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border: 1px solid rgba(34, 176, 194, 0.28);
  font-size: 0.88rem;
  font-weight: 700;
}

.document-trust-preview {
  overflow: hidden;
}

.document-template-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.document-template-mini-grid--compact {
  margin-block: 14px;
}

.document-template-mini-card {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(34, 176, 194, 0.2);
  background: linear-gradient(180deg, #ffffff, rgba(234, 248, 251, 0.72));
  box-shadow: 0 12px 28px rgba(15, 74, 90, 0.08);
}

.document-template-mini-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
  justify-self: center;
  aspect-ratio: 420 / 595;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 74, 90, 0.1);
  pointer-events: none;
  user-select: none;
}

.document-template-mini-card figcaption {
  margin: 0;
  color: var(--brand-cyan-dark);
  font-weight: 800;
  text-align: center;
}

.document-template-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 44px;
  border-radius: 14px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border: 1px solid rgba(34, 176, 194, 0.28);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.document-template-card h3 {
  margin: 0;
  color: var(--brand-cyan-dark);
  font-size: clamp(1.05rem, 4vw, 1.25rem);
}

.document-template-card p,
.document-template-note {
  margin: 0;
  color: var(--text-muted);
}

.document-template-actions,
.document-template-compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.document-template-actions .landing-button,
.document-template-actions .home-button,
.document-template-compact-actions .landing-button {
  min-height: 44px;
}

.document-template-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(234, 248, 251, 0.82);
  border: 1px solid rgba(34, 176, 194, 0.2);
  font-size: 0.95rem;
}

.document-templates-compact {
  border-block: 1px solid rgba(34, 176, 194, 0.12);
}

.company-docs-section {
  overflow: hidden;
}

.company-docs-section--compact {
  border-block: 1px solid rgba(34, 176, 194, 0.12);
}

.company-docs-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(235px, 78%);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 176, 194, 0.45) rgba(234, 248, 251, 0.9);
}

.company-docs-track:focus {
  outline: 2px solid rgba(34, 176, 194, 0.35);
  outline-offset: 4px;
  border-radius: 18px;
}

.company-doc-card {
  scroll-snap-align: start;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(34, 176, 194, 0.2);
  background: linear-gradient(180deg, #ffffff, rgba(234, 248, 251, 0.72));
  box-shadow: 0 12px 28px rgba(15, 74, 90, 0.08);
}

.company-doc-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 74, 90, 0.08);
  pointer-events: none;
  user-select: none;
}

.company-doc-card h3 {
  margin: 0;
  color: var(--brand-cyan-dark);
  font-size: 1rem;
}

.company-doc-card p,
.company-doc-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.company-doc-label {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  border: 1px solid rgba(34, 176, 194, 0.28);
  font-size: 0.84rem;
  font-weight: 700;
}

.company-doc-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(234, 248, 251, 0.82);
  border: 1px solid rgba(34, 176, 194, 0.2);
}

@media (min-width: 760px) {
  .document-template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .document-template-mini-grid--compact .document-template-mini-card img {
    max-width: 240px;
  }

  .company-docs-track {
    grid-auto-columns: minmax(260px, 31%);
  }

  .company-doc-card img {
    height: 210px;
  }
}

/* Homepage hero service-path refinement */
.home-hero.home-hero--paths {
  grid-template-columns: minmax(0, 1fr);
}

.home-hero--paths .home-hero__copy {
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 176, 194, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(234, 248, 251, 0.92), rgba(255, 255, 255, 0.98) 54%, rgba(255, 255, 255, 0.94));
}

.home-hero__mark {
  position: absolute;
  inset-block-start: -42px;
  inset-inline-end: -36px;
  z-index: -1;
  width: clamp(170px, 48vw, 330px);
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  filter: saturate(0.95);
}

.home-hero-paths {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.home-hero-path {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 18px 16px;
  border: 1px solid rgba(34, 176, 194, 0.22);
  border-radius: 18px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 26px rgba(15, 74, 90, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.home-hero-path::after {
  content: "فتح";
  position: absolute;
  inset-block-start: 14px;
  inset-inline-end: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
  font-size: 12px;
  font-weight: 900;
}

.home-hero-path:hover,
.home-hero-path:focus-visible {
  border-color: rgba(34, 176, 194, 0.45);
  background: #fff;
  box-shadow: 0 18px 34px rgba(15, 74, 90, 0.12);
  transform: translateY(-2px);
}

.home-hero-path span {
  width: max-content;
  max-width: calc(100% - 58px);
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--brand-cyan-dark);
  background: rgba(234, 248, 251, 0.94);
  font-size: 12px;
  font-weight: 900;
}

.home-hero-path strong {
  color: var(--brand-cyan-dark);
  font-size: clamp(20px, 6vw, 28px);
  line-height: 1.25;
}

.home-hero-path small {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.home-actions--single {
  margin-top: 16px;
}

.home-actions--single .home-button {
  width: 100%;
}

@media (max-width: 759px) {
  .home-header-wa {
    display: none;
  }
}

@media (min-width: 760px) {
  .home-hero.home-hero--paths {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .home-actions--single .home-button {
    width: min(320px, 100%);
  }
}

/* Visual model inspired hero layout */
.home-hero.home-hero--paths {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 12px 30px;
  background:
    linear-gradient(168deg, rgba(22, 94, 111, 0.84) 0%, rgba(22, 94, 111, 0.22) 42%, transparent 43%),
    linear-gradient(180deg, #0f3f50 0 46%, var(--page-bg) 46% 100%);
}

.home-hero--paths .home-hero__copy {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 26px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-hero--paths .home-hero__mark {
  inset-block-start: 8px;
  inset-inline-start: 6px;
  inset-inline-end: auto;
  z-index: 0;
  width: clamp(190px, 54vw, 390px);
  opacity: 0.09;
  filter: brightness(1.8) saturate(0.8);
}

.home-hero--paths .home-hero__copy > h1,
.home-hero--paths .home-hero__copy > p,
.home-hero--paths .home-actions--single {
  position: relative;
  z-index: 1;
}

.home-hero--paths h1 {
  max-width: 620px;
  margin-inline-start: auto;
  color: #fff;
  font-size: clamp(34px, 11vw, 58px);
  text-align: right;
}

.home-hero--paths .home-hero__copy > p {
  max-width: 520px;
  margin-inline-start: auto;
  color: rgba(255, 255, 255, 0.86);
  text-align: right;
}

.home-hero--paths .home-hero-paths {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

.home-hero--paths .home-hero-path {
  min-height: 168px;
  padding: 24px 20px 24px 76px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 44px rgba(15, 74, 90, 0.16);
}

.home-hero--paths .home-hero-path::before {
  content: "";
  position: absolute;
  inset-block: 22px;
  inset-inline-end: 12px;
  width: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-cyan), #2b7d96);
}

.home-hero--paths .home-hero-path:nth-child(2)::before {
  background: linear-gradient(180deg, #22a06b, #1d6f56);
}

.home-hero--paths .home-hero-path::after {
  content: "انتقال";
  inset-block-start: auto;
  inset-block-end: 22px;
  inset-inline-start: auto;
  inset-inline-end: 20px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-soft);
}

.home-hero--paths .home-hero-path span {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--text-muted);
}

.home-hero--paths .home-hero-path strong {
  font-size: clamp(24px, 7vw, 34px);
}

.home-hero--paths .home-hero-path small {
  max-width: 440px;
}

.home-hero--paths .home-actions--single {
  width: min(620px, 100%);
  margin: 28px auto 0;
}

.home-hero--paths .home-actions--single .home-button {
  min-height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #17a36f, #16865f);
  box-shadow: 0 16px 30px rgba(22, 134, 95, 0.22);
}

@media (max-width: 420px) {
  .home-hero.home-hero--paths {
    padding-inline: 10px;
  }

  .home-hero--paths h1 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .home-hero--paths .home-hero-path {
    padding-inline-start: 18px;
    padding-inline-end: 26px;
  }
}

@media (min-width: 760px) {
  .home-hero.home-hero--paths {
    padding-inline: 28px;
  }

  .home-hero--paths .home-hero__copy {
    padding-top: 44px;
  }
}

.home-header {
  position: relative;
  top: auto;
}

.company-trust-badges {
  display: none !important;
}

#demolition-form {
  display: none !important;
}
