/* ==========================================================================
   H&A Bau GmbH — Hauptstylesheet
   Brand: Orange #F37021 / #FF8A00 + Charcoal #1A1A1A + White
   ========================================================================== */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html[dir="rtl"] body { font-family: 'Cairo', 'Inter', 'Segoe UI', Arial, sans-serif; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-hi); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; line-height: 1.18; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Tokens ---------- */
:root {
  --orange: #F37021;
  --orange-hi: #FF8A00;
  --orange-dark: #D85A12;
  --ink: #1A1A1A;
  --ink-2: #2A2A2A;
  --ink-3: #3A3A3A;
  --muted: #6B6B6B;
  --muted-2: #9A9A9A;
  --line: #E8E8E8;
  --bg: #FFFFFF;
  --bg-alt: #F7F5F2;
  --bg-dark: #131313;
  --bg-dark-2: #1C1C1C;
  --white: #FFFFFF;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
  --shadow: 0 12px 40px rgba(0,0,0,.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.16);
  --shadow-orange: 0 12px 30px rgba(243, 112, 33, 0.35);

  --container: 1200px;
  --gap: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 110px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,.78); }

.section__head { max-width: 760px; margin-bottom: 60px; }
.section__head--center { margin: 0 auto 60px; text-align: center; }
.section__title {
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section__title em {
  font-style: italic;
  color: var(--orange);
}
.section__title--light { color: var(--white); }
.section__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 65ch;
}
.section__lead--light { color: rgba(255,255,255,.75); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--orange-hi); }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 112, 33, .18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(243, 112, 33, .18); }
  50% { box-shadow: 0 0 0 8px rgba(243, 112, 33, .04); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
}
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  background: var(--orange-hi);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(243, 112, 33, .45);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.section:not(.section--dark) .btn--ghost {
  color: var(--ink);
  border-color: rgba(0,0,0,.18);
}
.section:not(.section--dark) .btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar__contact a,
.topbar__hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
}
.topbar__contact a:hover { color: var(--orange-hi); }
.topbar__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  font-size: .85rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .2s;
}
.lang-btn.is-active { color: var(--orange-hi); }
.lang-btn:hover { color: var(--white); }
.lang-sep { opacity: .35; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .25s, padding .25s;
}
.header.is-scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.header__logo { color: var(--ink); display: inline-flex; align-items: center; }
.header__logo img { height: 116px !important; width: auto; }

.nav__list { display: flex; gap: 6px; }
.nav__link {
  display: inline-block;
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 999px;
  position: relative;
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--orange); background: rgba(243, 112, 33, .08); }
.nav__link.is-active { color: var(--orange); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  transform: translateX(-50%);
}

.header__cta { padding: 11px 18px; font-size: .9rem; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: auto 0 0 0;
  top: 100%;
  background: var(--ink);
  color: var(--white);
  padding: 30px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(0);
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s, visibility .3s;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu__link {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu__cta { margin-top: 18px; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 90px 0 110px;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,.35) 0%, rgba(15,15,15,.75) 100%),
    linear-gradient(90deg, rgba(15,15,15,.7) 0%, rgba(15,15,15,.2) 60%, rgba(15,15,15,.4) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 880px; }
.hero__title {
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 28px;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
}
.hero__title-line { display: block; }
.hero__title em {
  font-style: italic;
  color: var(--orange-hi);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 6px;
  background: var(--orange);
  opacity: .35;
  border-radius: 4px;
  z-index: -1;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,.88);
  max-width: 56ch;
  margin: 0 0 40px;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.18);
  max-width: 720px;
}
.stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--orange-hi);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  margin-top: 8px;
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 20px;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 3px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  margin: 8px auto 0;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  right: -30px; bottom: 40px;
  background: var(--orange);
  color: var(--white);
  padding: 26px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about__badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge span { font-size: .85rem; line-height: 1.3; }

.checklist {
  display: grid;
  gap: 14px;
  margin: 24px 0 32px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}
.check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(243, 112, 33, .12);
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
}
.check::after {
  content: '';
  position: absolute;
  left: 7px; top: 4px;
  width: 7px; height: 12px;
  border: solid var(--orange);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.about__signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--orange);
}
.about__signature strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}
.about__signature span { color: var(--muted); font-size: .92rem; }

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .35s var(--ease), border-color .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 112, 33, .35);
}
.service-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.service-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
  filter: brightness(.85);
}
.service-card:hover .service-card__img img {
  transform: scale(1.07);
  filter: brightness(1);
}
.service-card__body { padding: 32px 30px 36px; }
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hi));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-orange);
}
.service-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
}
.service-card__list {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
.service-card__list li {
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  padding-left: 22px;
  position: relative;
}
html[dir="rtl"] .service-card__list li { padding-left: 0; padding-right: 22px; }
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 2px;
  background: var(--orange);
}
html[dir="rtl"] .service-card__list li::before { left: auto; right: 0; }
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-hi);
  font-weight: 600;
  font-size: .95rem;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  width: 100%;
  transition: gap .25s;
}
.service-card__cta:hover { gap: 14px; color: var(--white); }

/* ---------- Process ---------- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 38px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .3s var(--ease), border-color .3s;
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}
.process-step__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .9;
}
.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
}

/* ---------- Projects ---------- */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  cursor: zoom-in;
}
.project-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.project-tile:hover img { transform: scale(1.08); }
.project-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,15,15,.92) 0%, rgba(15,15,15,.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 28px 28px;
  color: var(--white);
}
.project-tile__cat {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-hi);
  margin-bottom: 8px;
}
.project-tile h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0 0 6px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.project-tile__year {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}

/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  margin: 0;
  padding: 36px 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s, box-shadow .3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial__stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
  quotes: '„' '"';
  font-style: italic;
}
.testimonial figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 2px;
}
.testimonial figcaption span {
  color: var(--muted);
  font-size: .88rem;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-strip p { color: rgba(255,255,255,.8); margin: 0; max-width: 56ch; }
.cta-strip__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-list__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(243, 112, 33, .1);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-list a { color: var(--ink-2); }
.contact-list a:hover { color: var(--orange); }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.contact-form__intro {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 24px;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-2);
}
.contact-form label > span { display: block; margin-bottom: 6px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label { margin-bottom: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg-alt);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(243, 112, 33, .12);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  font-size: .88rem !important;
  color: var(--muted) !important;
  margin: 8px 0 20px !important;
}
.checkbox input {
  width: auto !important;
  padding: 0 !important;
  margin-top: 4px;
  accent-color: var(--orange);
}
.checkbox span { margin: 0 !important; }
.form-status {
  margin-top: 14px;
  font-size: .92rem;
  min-height: 22px;
  text-align: center;
}
.form-status.is-success { color: #15803D; }
.form-status.is-error { color: #B91C1C; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer__col h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: rgba(255,255,255,.7); font-size: .95rem; }
.footer__col a:hover { color: var(--orange-hi); }
.footer__logo {
  height: 50px; width: auto;
  margin-bottom: 18px;
  color: var(--white);
}
.footer__col--brand p { max-width: 30ch; font-size: .92rem; line-height: 1.65; }
.footer address { font-style: normal; font-size: .95rem; line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  font-size: .85rem;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: rgba(255,255,255,.6); }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .5);
  z-index: 90;
  transition: transform .25s;
}
.float-wa:hover { transform: scale(1.08); color: var(--white); }
html[dir="rtl"] .float-wa { right: auto; left: 24px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }

/* ---------- Reveal animation (only when JS is active; content shows by default) ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(.96);
  transition: opacity .7s var(--ease), transform .7s cubic-bezier(.34, 1.32, .5, 1);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* Capture mode: force everything visible & static for clean screenshots */
.cap [data-reveal],
.cap .hero__title-inner { opacity: 1 !important; transform: none !important; }
.cap .hero__title em::after { transform: scaleX(1) !important; }
.cap *, .cap *::before, .cap *::after { animation: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: inline-flex; }
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__badge { right: 20px; bottom: -20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__stats { gap: 30px; }
  .hero__stats .stat { min-width: 130px; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .topbar__hours { display: none; }
  .topbar__contact { gap: 14px; font-size: .78rem; }
  .hero { min-height: 88vh; padding: 60px 0 80px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__stats { gap: 24px; padding-top: 26px; }
  .projects__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 28px 22px; }
  .about__media img { aspect-ratio: 4/4; }
  .section__head, .section__head--center { margin-bottom: 40px; }
}

/* ==========================================================================
   RTL Adjustments (Arabic)
   ========================================================================== */
html[dir="rtl"] {
  letter-spacing: 0 !important;
}
html[dir="rtl"] .section__title em::after,
html[dir="rtl"] .hero__title em::after { left: auto; right: 0; }
html[dir="rtl"] .nav__link.is-active::after { left: 50%; right: auto; }
html[dir="rtl"] .check::after { right: 7px; left: auto; }
html[dir="rtl"] .about__badge { right: auto; left: -30px; }
@media (max-width: 1100px) {
  html[dir="rtl"] .about__badge { right: auto; left: 20px; }
}

/* Fine-tune Arabic typography */
html[dir="rtl"] .section__title,
html[dir="rtl"] .hero__title { font-family: 'Cairo', 'Inter', serif; }
html[dir="rtl"] .section__title em,
html[dir="rtl"] .hero__title em { font-style: normal; }

/* ==========================================================================
   PREMIUM LAYER  ·  cinematic hero, motion system, trust + blog components
   ========================================================================== */

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--orange), var(--orange-hi));
  box-shadow: 0 0 12px rgba(255, 138, 0, .6);
  transition: width .1s linear;
}

/* ---------- Reveal system: directional + stagger ---------- */
.js [data-reveal="left"]  { transform: translateX(-46px); }
.js [data-reveal="right"] { transform: translateX(46px); }
.js [data-reveal="scale"] { transform: scale(.9); }
.js [data-reveal="left"].is-visible,
.js [data-reveal="right"].is-visible,
.js [data-reveal="scale"].is-visible { transform: none; }

/* ---------- Hero: cinematic background layers ---------- */
.hero__glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  will-change: transform;
}
.hero__glow--1 {
  width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
  left: -6vw; top: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(255,138,0,.75), rgba(243,112,33,0) 68%);
  animation: glowFloat1 16s ease-in-out infinite alternate;
}
.hero__glow--2 {
  width: 38vw; height: 38vw; max-width: 520px; max-height: 520px;
  right: -4vw; bottom: 4%;
  background: radial-gradient(circle at 50% 50%, rgba(243,112,33,.6), rgba(243,112,33,0) 70%);
  animation: glowFloat2 20s ease-in-out infinite alternate;
}
@keyframes glowFloat1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,30px) scale(1.12); }
}
@keyframes glowFloat2 {
  0%   { transform: translate(0,0) scale(1.05); }
  100% { transform: translate(-50px,-26px) scale(1); }
}
/* enrich the dark overlay with a cinematic vignette */
.hero__overlay {
  z-index: 1;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(255,138,0,.16) 0%, rgba(0,0,0,0) 42%),
    linear-gradient(180deg, rgba(12,12,12,.30) 0%, rgba(12,12,12,.62) 55%, rgba(12,12,12,.86) 100%),
    linear-gradient(95deg, rgba(12,12,12,.78) 0%, rgba(12,12,12,.18) 55%, rgba(12,12,12,.42) 100%);
}
/* moving light sweep */
.hero__sweep {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.06) 46%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.06) 54%, transparent 70%);
  background-size: 280% 100%;
  animation: heroSweep 9s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes heroSweep {
  0%, 18% { background-position: 140% 0; }
  60%, 100% { background-position: -40% 0; }
}
/* fine grain texture */
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
/* thin orange accent line under hero */
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 3;
  background: linear-gradient(90deg, transparent, var(--orange) 30%, var(--orange-hi) 70%, transparent);
  opacity: .85;
}

/* ---------- Hero: animated title wipe ---------- */
.js .hero__title[data-reveal] { opacity: 1 !important; transform: none !important; }
.hero__title-line { display: block; overflow: hidden; padding-bottom: .08em; }
.js .hero__title-inner {
  display: block;
  transform: translateY(116%);
  opacity: 0;
  transition: transform 1s var(--ease), opacity 1s var(--ease);
}
.hero__title.is-visible .hero__title-inner { transform: none; opacity: 1; }
.hero__title.is-visible .hero__title-line:nth-child(2) .hero__title-inner { transition-delay: .13s; }
/* animated underline draw on em */
.hero__title em::after {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .8s var(--ease) .6s;
}
html[dir="rtl"] .hero__title em::after { transform-origin: right center; }
.hero__title.is-visible em::after { transform: scaleX(1); }

/* ---------- Hero: glass trust card ---------- */
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 14px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.hero__trust-stars { color: #FFB020; font-size: 1.05rem; letter-spacing: 2px; }
.hero__trust-rate { font-weight: 800; font-size: 1.15rem; color: #fff; }
.hero__trust-text { font-size: .82rem; color: rgba(255,255,255,.8); line-height: 1.35; }
.hero__trust-text strong { color: #fff; font-weight: 700; }
.hero__trust-divider { width: 1px; align-self: stretch; background: rgba(255,255,255,.18); }

/* ---------- Hero: floating service chips ---------- */
.hero__chips {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  display: none;
}
@media (min-width: 1101px) {
  .hero__chips { display: block; }
}
.hero-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-size: .82rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  animation: chipFloat 7s ease-in-out infinite;
}
.hero-chip svg { color: var(--orange-hi); }
.hero-chip--1 { top: 20%;  right: 6%;  animation-delay: 0s; }
.hero-chip--2 { top: 44%;  right: 13%; animation-delay: 1.2s; }
.hero-chip--3 { top: 66%;  right: 4%;  animation-delay: 2.1s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ---------- Buttons: shine sweep ---------- */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease);
}
.btn--primary:hover::after { left: 140%; }

/* ---------- Card 3D tilt + hover lift ---------- */
[data-tilt] { transform-style: preserve-3d; transition: transform .25s var(--ease), box-shadow .25s var(--ease); will-change: transform; }

/* ---------- Trust marquee strip ---------- */
.trust-strip {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  padding: 18px 0;
}
.trust-strip__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 34s linear infinite;
}
.trust-strip:hover .trust-strip__track { animation-play-state: paused; }
.trust-strip__item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 34px;
  font-size: .95rem; font-weight: 600;
  white-space: nowrap;
  color: rgba(255,255,255,.85);
}
.trust-strip__item svg { color: var(--orange-hi); flex-shrink: 0; }
.trust-strip__item::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); margin-left: 22px; opacity: .6;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
html[dir="rtl"] .trust-strip__track { animation-direction: reverse; }

/* ---------- "Warum H&A" guarantees grid ---------- */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.advantage {
  position: relative;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.advantage::before {
  content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: linear-gradient(180deg, var(--orange-hi), var(--orange));
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.advantage:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.advantage:hover::before { transform: scaleY(1); }
.advantage__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,138,0,.14), rgba(243,112,33,.14));
  color: var(--orange);
  margin-bottom: 20px;
  transition: transform .35s var(--ease);
}
.advantage:hover .advantage__icon { transform: scale(1.08) rotate(-4deg); }
.advantage h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.advantage p { color: var(--muted); line-height: 1.65; font-size: .96rem; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.is-open { border-color: rgba(243,112,33,.4); box-shadow: var(--shadow); }
.faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1.06rem; font-weight: 600; text-align: left;
  color: var(--ink);
}
html[dir="rtl"] .faq-item__q { text-align: right; }
.faq-item__icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(243,112,33,.1); color: var(--orange);
  transition: transform .3s var(--ease), background .3s;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: ''; position: absolute; background: currentColor; border-radius: 2px;
}
.faq-item__icon::before { width: 12px; height: 2px; }
.faq-item__icon::after  { width: 2px; height: 12px; transition: transform .3s var(--ease); }
.faq-item.is-open .faq-item__icon { background: var(--orange); color: #fff; transform: rotate(180deg); }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-item__a-inner { padding: 0 26px 24px; color: var(--muted); line-height: 1.8; }
.faq-item__a-inner a { color: var(--orange); font-weight: 600; }

/* ---------- Service area tags ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.area-tag {
  padding: 8px 16px; border-radius: 999px;
  background: rgba(243,112,33,.08); color: var(--orange-dark);
  font-size: .88rem; font-weight: 600;
  border: 1px solid rgba(243,112,33,.18);
}

/* ---------- Section eyebrow w/ inline rating badge ---------- */
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(243,112,33,.08); border: 1px solid rgba(243,112,33,.2);
  font-size: .85rem; font-weight: 700; color: var(--ink);
  margin-bottom: 18px;
}
.rating-badge__stars { color: #FFB020; letter-spacing: 1px; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-hero {
  position: relative;
  padding: 150px 0 70px;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(255,138,0,.14), rgba(0,0,0,0) 45%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #fff;
  overflow: hidden;
}
.blog-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.02em;
  margin: 14px 0 18px;
}
.blog-hero h1 em { font-style: italic; color: var(--orange-hi); }
.blog-hero p { color: rgba(255,255,255,.78); font-size: 1.15rem; line-height: 1.7; max-width: 60ch; }

.blog-section { padding: 80px 0 110px; }

.blog-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
  background: #fff;
  border: 1px solid var(--line);
}
.blog-featured__media { position: relative; min-height: 340px; overflow: hidden; }
.blog-featured__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.blog-featured:hover .blog-featured__media img { transform: scale(1.05); }
.blog-featured__body { padding: 48px 46px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.18; margin: 14px 0 14px; letter-spacing: -.01em;
}
.blog-featured__body p { color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

.blog-meta { display: inline-flex; align-items: center; gap: 12px; font-size: .82rem; color: var(--muted); }
.blog-cat {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hi));
  color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.blog-readmore {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--orange); align-self: flex-start;
}
.blog-readmore svg { transition: transform .25s var(--ease); }
.blog-readmore:hover svg { transform: translateX(5px); }
html[dir="rtl"] .blog-readmore svg { transform: scaleX(-1); }
html[dir="rtl"] .blog-readmore:hover svg { transform: scaleX(-1) translateX(5px); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.07); }
.blog-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.blog-card__body h3 { font-size: 1.2rem; line-height: 1.3; margin: 14px 0 12px; letter-spacing: -.01em; }
.blog-card__body h3 a { color: var(--ink); }
.blog-card__body h3 a:hover { color: var(--orange); }
.blog-card__body p { color: var(--muted); font-size: .94rem; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.blog-card .blog-readmore { font-size: .9rem; }

/* ---------- Article (single post) ---------- */
.article { max-width: 760px; margin: 0 auto; padding: 60px 0 90px; }
.article__head { margin-bottom: 36px; }
.article__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.14; letter-spacing: -.02em; margin: 16px 0 16px;
}
.article__lead { font-size: 1.2rem; color: var(--ink-2); line-height: 1.7; }
.article__cover { border-radius: var(--radius-lg); overflow: hidden; margin: 30px 0 44px; box-shadow: var(--shadow); }
.article__cover img { width: 100%; display: block; }
.article__body > * { margin-bottom: 1.25em; }
.article__body h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; margin: 1.6em 0 .5em; letter-spacing: -.01em; }
.article__body h3 { font-size: 1.25rem; margin: 1.4em 0 .4em; }
.article__body p,
.article__body li { color: var(--ink-2); line-height: 1.85; font-size: 1.06rem; }
.article__body ul { list-style: disc; padding-left: 24px; }
html[dir="rtl"] .article__body ul { padding-left: 0; padding-right: 24px; }
.article__body strong { color: var(--ink); }
.article__body blockquote {
  border-left: 4px solid var(--orange);
  background: var(--bg-alt);
  padding: 20px 26px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem; color: var(--ink-2); font-style: italic;
}
html[dir="rtl"] .article__body blockquote { border-left: none; border-right: 4px solid var(--orange); border-radius: var(--radius) 0 0 var(--radius); }
.article__cta {
  margin-top: 50px; padding: 40px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ink), var(--bg-dark-2));
  color: #fff; text-align: center;
}
.article__cta h3 { font-size: 1.5rem; margin-bottom: 10px; color: #fff; }
.article__cta p { color: rgba(255,255,255,.75); margin-bottom: 22px; }

/* ---------- Responsive: premium layer ---------- */
@media (max-width: 1100px) {
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__media { min-height: 260px; }
}
@media (max-width: 900px) {
  .advantages__grid { grid-template-columns: 1fr; }
  .hero__trust { flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured__body { padding: 32px 26px; }
  .trust-strip__item { padding: 0 20px; font-size: .86rem; }
  .article__body p, .article__body li { font-size: 1rem; }
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; }

/* ============================================================
   Enhanced motion — pop-in reveals, living icons, hover life
   (additive; respects reduced-motion & capture mode)
   ============================================================ */

/* Dramatic pop variant for highlighted blocks */
.js [data-reveal="pop"]            { transform: translateY(22px) scale(.8); }
.js [data-reveal="pop"].is-visible { transform: none; }

/* Icons pop in when their card reveals, then breathe gently.
   Independent scale/rotate/translate keep transform free for hover. */
@keyframes iconPop {
  0%   { opacity: 0; scale: .35; rotate: -22deg; }
  60%  { opacity: 1; scale: 1.14; rotate: 5deg; }
  100% { opacity: 1; scale: 1;    rotate: 0deg; }
}
@keyframes iconFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }
@keyframes iconRing {
  0%   { box-shadow: 0 0 0 0 rgba(255, 138, 0, .5); }
  70%  { box-shadow: 0 0 0 16px rgba(255, 138, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0); }
}

/* Parent card already hides the icon until it reveals, so the icon's
   resting opacity stays 1 — it can never get stuck invisible. */
.service-card.is-visible .service-card__icon,
.advantage.is-visible   .advantage__icon {
  animation: iconPop .7s var(--ease) .12s both,
             iconFloat 4.8s ease-in-out 1.1s infinite;
}

/* Hover life on the icons */
.service-card__icon { position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.service-card:hover .service-card__icon {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 16px 36px rgba(243, 112, 33, .55);
}
.advantage:hover .advantage__icon { transform: scale(1.14) rotate(-6deg); }

/* Pulsing radar ring behind service icons */
.service-card__icon::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none;
  animation: iconRing 2.8s ease-out infinite;
}
.service-card:nth-child(2) .service-card__icon::after { animation-delay: .7s; }
.service-card:nth-child(3) .service-card__icon::after { animation-delay: 1.4s; }
.service-card:nth-child(4) .service-card__icon::after { animation-delay: 2.1s; }

/* Arrows nudge on hover */
.service-card__cta svg, .blog-readmore svg, .header__cta svg, .btn svg { transition: transform .3s var(--ease); }
.service-card__cta:hover svg { transform: translateX(5px); }
.btn--primary:hover svg { transform: translateX(4px); }
html[dir="rtl"] .service-card__cta:hover svg { transform: scaleX(-1) translateX(5px); }

/* Process number pop on hover */
.process-step__num { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.process-step:hover .process-step__num { transform: scale(1.12) translateY(-3px); }

/* FAQ icon spin on hover */
.faq-item__q:hover .faq-item__icon { transform: rotate(90deg); }
.faq-item.is-open .faq-item__q:hover .faq-item__icon { transform: rotate(180deg) scale(1.08); }

/* Safety: never hide icons when motion is reduced or in capture mode */
.cap .service-card__icon, .cap .advantage__icon { opacity: 1 !important; animation: none !important; }
.cap .service-card__icon::after { animation: none !important; }
@media (prefers-reduced-motion: reduce) {
  .service-card__icon, .advantage__icon { opacity: 1 !important; }
  .service-card__icon::after { animation: none !important; }
}
