/* EasyIqama.ae — official-inspired palette (gold / beige / white) */
:root {
  --font-ar: "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-en: "Noto Sans", system-ui, sans-serif;
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-2: #f3efe6;
  --surface-hero: #f7f5f0;
  --text: #2a2824;
  --muted: #5e5a54;
  --accent: #3d3428;
  --accent-soft: #524a40;
  --gold: #9a7b2e;
  --gold-mid: #b8923d;
  --gold-light: #d4bc6a;
  --gold-line: rgba(154, 123, 46, 0.28);
  --gold-glow: rgba(184, 146, 61, 0.18);
  --line: rgba(42, 40, 36, 0.09);
  --shadow: 0 4px 28px rgba(42, 40, 36, 0.07);
  --shadow-sm: 0 2px 14px rgba(42, 40, 36, 0.05);
  --card-soft: 0 4px 22px rgba(42, 40, 36, 0.055);
  --card-soft-hover: 0 10px 32px rgba(42, 40, 36, 0.09);
  --icon-squircle-bg: #e8e2d6;
  --icon-squircle-stroke: #7a6a48;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --header-h: 64px;
  --header-h-sm: 58px;
  --site-header-h: 64px;
  --maxw: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

/* Phone numbers & handles: keep +971 / @user order correct in RTL pages */
.phone-num {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.ig-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  display: block;
}

#services {
  scroll-margin-top: calc(var(--site-header-h, 64px) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font-ar);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4rem;
}

html[lang="en"] body {
  font-family: var(--font-en);
  letter-spacing: 0.01em;
}

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

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

.container.narrow {
  max-width: 720px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

html[lang="ar"] [data-lang="en"],
html[lang="en"] [data-lang="ar"] {
  display: none !important;
}

/* ——— Intro ——— */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background-color: #faf8f4;
  background-image:
    repeating-linear-gradient(
      118deg,
      transparent,
      transparent 48px,
      rgba(154, 123, 46, 0.04) 48px,
      rgba(154, 123, 46, 0.04) 49px
    ),
    radial-gradient(100% 80% at 50% 0%, #fff 0%, #f3efe6 55%, #ebe4d8 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s var(--ease-out);
}

.intro-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.intro-overlay.is-exit {
  opacity: 0;
  pointer-events: none;
}

.intro-overlay__content {
  text-align: center;
  padding: clamp(1.25rem, 4vw, 2rem) 1rem;
  width: min(100%, 520px);
  max-width: 520px;
}

.intro-overlay__logo-frame {
  position: relative;
  display: block;
  width: min(100%, 420px);
  max-width: 420px;
  margin: 0 auto 2rem;
  padding: clamp(0.85rem, 3vw, 1.15rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 22px 26px 20px 24px;
  background: linear-gradient(165deg, #fff 0%, #faf8f3 48%, #f5f0e6 100%);
  border: 1px solid var(--gold-line);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 48px rgba(42, 40, 36, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.intro-overlay__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-color: var(--gold-mid);
  border-style: solid;
  opacity: 0.5;
}

.intro-overlay__corner--tl {
  top: 11px;
  inset-inline-start: 11px;
  border-width: 2px 0 0 2px;
  border-radius: 3px 0 0 0;
}

.intro-overlay__corner--tr {
  top: 11px;
  inset-inline-end: 11px;
  border-width: 2px 2px 0 0;
  border-radius: 0 3px 0 0;
}

.intro-overlay__corner--bl {
  bottom: 11px;
  inset-inline-start: 11px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 3px;
}

.intro-overlay__corner--br {
  bottom: 11px;
  inset-inline-end: 11px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 3px 0;
}

.intro-overlay__logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  filter: drop-shadow(0 6px 20px rgba(42, 40, 36, 0.06));
  object-fit: contain;
  object-position: center;
}

.intro-overlay.is-anim .intro-overlay__logo {
  animation: intro-logo 1s var(--ease-out) forwards;
}

.intro-overlay__lines {
  min-height: 8.5rem;
}

.intro-overlay__line {
  margin: 0.4rem 0;
  font-size: clamp(1.06rem, 3.8vw, 1.28rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(14px);
}

.intro-overlay__line:nth-of-type(4),
.intro-overlay__line:nth-of-type(8) {
  color: var(--gold);
  font-weight: 600;
}

.intro-overlay.is-anim .intro-overlay__line[data-lang="ar"],
.intro-overlay.is-anim .intro-overlay__line[data-lang="en"] {
  animation: intro-line 0.62s var(--ease-out) forwards;
}

.intro-overlay.is-anim .intro-overlay__line:nth-of-type(1) {
  animation-delay: 0.55s;
}

.intro-overlay.is-anim .intro-overlay__line:nth-of-type(2) {
  animation-delay: 0.85s;
}

.intro-overlay.is-anim .intro-overlay__line:nth-of-type(3) {
  animation-delay: 1.15s;
}

.intro-overlay.is-anim .intro-overlay__line:nth-of-type(4) {
  animation-delay: 1.45s;
}

html[lang="en"] .intro-overlay.is-anim .intro-overlay__line:nth-of-type(5) {
  animation-delay: 0.55s;
}

html[lang="en"] .intro-overlay.is-anim .intro-overlay__line:nth-of-type(6) {
  animation-delay: 0.85s;
}

html[lang="en"] .intro-overlay.is-anim .intro-overlay__line:nth-of-type(7) {
  animation-delay: 1.15s;
}

html[lang="en"] .intro-overlay.is-anim .intro-overlay__line:nth-of-type(8) {
  animation-delay: 1.45s;
}

html[lang="ar"] .intro-overlay__line:nth-of-type(n + 5) {
  display: none !important;
}

html[lang="en"] .intro-overlay__line:nth-of-type(-n + 4) {
  display: none !important;
}

@keyframes intro-logo {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-line {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(154, 123, 46, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem 1rem;
  min-height: var(--header-h);
  padding-block: 0.45rem;
  flex-wrap: nowrap;
  position: relative;
}

@media (min-width: 961px) {
  .site-header__brand {
    order: 1;
  }

  .site-nav {
    order: 2;
  }

  .site-header__aside {
    order: 3;
  }

  .site-header__menu-btn {
    order: 4;
  }
}

.site-header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
  line-height: 0;
}

.site-header__logo {
  width: auto;
  height: 46px;
  max-height: 46px;
  max-width: min(220px, 46vw);
  object-fit: contain;
  object-position: center;
}

.site-header__aside {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-header__call {
  padding-inline: 0.85rem;
  white-space: nowrap;
}

.site-header__menu-btn {
  display: none;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(42, 40, 36, 0.06);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.site-header__menu-btn:hover {
  background: #fffdf8;
  border-color: rgba(154, 123, 46, 0.45);
}

.site-header__menu-btn[aria-expanded="true"] {
  background: var(--surface-2);
  border-color: var(--gold-mid);
}

.site-header__menu-icon,
.site-header__menu-icon::before,
.site-header__menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s var(--ease), opacity 0.2s, top 0.25s var(--ease);
}

.site-header__menu-icon::before,
.site-header__menu-icon::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
}

.site-header__menu-icon::before {
  top: -7px;
}

.site-header__menu-icon::after {
  top: 7px;
}

.site-header__menu-btn[aria-expanded="true"] .site-header__menu-icon {
  background: transparent;
}

.site-header__menu-btn[aria-expanded="true"] .site-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header__menu-btn[aria-expanded="true"] .site-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.25rem;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  border-bottom-color: var(--gold);
}

.site-nav__drawer-head {
  display: none;
}

.site-nav__drawer-foot {
  display: none;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(42, 40, 36, 0.04);
}

.lang-switch--header {
  flex-shrink: 0;
}

.lang-switch__btn {
  border: none;
  background: transparent;
  padding: 0.38rem 0.72rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  line-height: 1.2;
}

.lang-en__abbr {
  display: none;
}

.lang-switch__btn.is-active {
  background: linear-gradient(180deg, var(--gold-mid), var(--gold));
  color: #fff;
}

@media (max-width: 400px) {
  .lang-en__full {
    display: none;
  }

  .lang-en__abbr {
    display: inline;
  }

  .lang-switch__btn {
    padding-inline: 0.55rem;
  }
}

@media (min-width: 401px) {
  .lang-en__abbr {
    display: none;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

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

.btn--primary {
  background: linear-gradient(180deg, #c4a24a 0%, var(--gold-mid) 45%, var(--gold) 100%);
  color: #fff;
  box-shadow: 0 4px 18px var(--gold-glow);
  border-color: rgba(154, 123, 46, 0.35);
}

.btn--primary:hover {
  filter: brightness(1.05);
  color: #fff;
}

.btn--secondary {
  background: var(--surface);
  color: var(--gold);
  border: 2px solid var(--gold-mid);
  box-shadow: 0 2px 10px rgba(42, 40, 36, 0.04);
}

.btn--secondary:hover {
  background: #fffdf8;
  color: var(--accent);
  border-color: var(--gold);
}

.btn--outline {
  background: transparent;
  border-color: var(--gold-mid);
  color: var(--accent-soft);
}

.btn--outline:hover {
  background: rgba(196, 162, 74, 0.1);
  color: var(--accent);
  border-color: var(--gold);
}

.btn--ghost {
  background: var(--surface-2);
  color: var(--accent-soft);
  border-color: transparent;
}

.btn--ghost:hover {
  background: #ebe6dc;
}

/* Hero primary CTA — WhatsApp */
.btn--whatsapp-hero {
  background: linear-gradient(180deg, #3fe67f 0%, #25d366 48%, #1ea952 100%);
  color: #fff !important;
  border-color: rgba(15, 120, 60, 0.35);
  box-shadow:
    0 6px 26px rgba(37, 211, 102, 0.48),
    0 2px 0 rgba(255, 255, 255, 0.12) inset;
  padding: 1.05rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.btn--whatsapp-hero:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.btn--whatsapp-hero__icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ——— Hero ——— */
.hero {
  padding: 0 0 3.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

/* Office photo is 2048×412 (~5:1). Full width, height follows intrinsic ratio — no crop. */
.hero__office {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #f0ece4 0%, #e5e0d6 100%);
  line-height: 0;
}

.hero__office-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

.hero__wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  padding-top: clamp(1.35rem, 3vw, 2rem);
}

.hero__grid {
  display: block;
  padding: clamp(1.5rem, 3.8vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background-color: var(--surface-hero);
  background-image:
    repeating-linear-gradient(
      105deg,
      transparent,
      transparent 56px,
      rgba(154, 123, 46, 0.035) 56px,
      rgba(154, 123, 46, 0.035) 57px
    ),
    linear-gradient(180deg, #fff 0%, #f9f6f0 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.hero__copy {
  max-width: 42rem;
}

.hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 36em;
}

.hero__title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  line-height: 1.18;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 38em;
}

.hero__lead p {
  margin: 0 0 0.65rem;
}

.hero__lead p:last-child {
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.hero__actions--cta {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.7rem;
}

.hero__actions--cta .btn {
  width: 100%;
  justify-content: center;
}

.hero__meta {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.hero__meta a {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}

.hero__meta-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.hero__notice {
  max-width: 40em;
}

.notice-box {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-line);
  background: #fbf8f1;
  font-size: 0.95rem;
  color: var(--muted);
}

.notice-box--strong {
  border-color: var(--gold-line);
  background: linear-gradient(135deg, #faf6ec 0%, #f3ece0 100%);
  color: var(--text);
}

.notice-box p {
  margin: 0;
}

.notice-box p + p {
  margin-top: 0.55rem;
}

/* ——— Sections ——— */
.section {
  padding: 4rem 0;
}

.section--muted {
  background: var(--surface-2);
}

.section__head {
  margin-bottom: 2rem;
  text-align: center;
}

.section__head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--accent);
  font-weight: 700;
}

.section__head h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 0.65rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  opacity: 0.85;
}

.section__sub {
  margin: 0 auto;
  max-width: 36em;
  color: var(--muted);
}

.section__head--leftish {
  text-align: start;
}

.section__head--leftish h2::after {
  margin-inline: 0;
}

.section__head--leftish .section__sub {
  margin-inline: 0;
  max-width: 40rem;
}

.section--services-panel {
  background: #f4f0e7;
}

@media (max-width: 959px) {
  .section--services-panel {
    padding-top: 2.15rem;
    padding-bottom: 2.15rem;
  }

  .section--services-panel .section__head--leftish {
    margin-bottom: 0.75rem;
  }

  .section--services-panel .section__head--leftish h2 {
    font-size: clamp(1.2rem, 4.8vw, 1.45rem);
  }

  .section--services-panel .section__sub {
    font-size: 0.82rem;
    line-height: 1.45;
  }
}

.section--steps-panel {
  background: #f0ebe2;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

/* ——— Services grid ——— */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  grid-auto-rows: auto;
  align-items: stretch;
}

@media (max-width: 359px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }
}

@media (min-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.service-card {
  position: relative;
  border: none;
  border-radius: 14px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  font: inherit;
  width: 100%;
  text-align: center;
  transition:
    box-shadow 0.22s var(--ease),
    transform 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  aspect-ratio: 1;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  box-shadow: var(--card-soft);
}

@media (min-width: 960px) {
  .service-card {
    border-radius: 18px;
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.service-card:hover,
.service-card:focus-visible {
  box-shadow: var(--card-soft-hover);
  transform: translateY(-2px);
  outline: none;
}

.service-card:focus-visible {
  box-shadow: var(--card-soft-hover), 0 0 0 2px #fff, 0 0 0 4px rgba(154, 123, 46, 0.45);
}

.service-card:active {
  transform: translateY(0);
  transition-duration: 0.08s;
}

.service-card__body {
  padding: 0.35rem 0.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 0;
  width: 100%;
}

.service-card__icon-wrap {
  flex-shrink: 0;
  width: clamp(30px, 10vw, 52px);
  height: clamp(30px, 10vw, 52px);
  border-radius: 10px;
  background: var(--icon-squircle-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c2823;
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: clamp(15px, 5vw, 22px);
  height: clamp(15px, 5vw, 22px);
  display: block;
}

.service-card__title {
  margin: 0;
  font-size: clamp(0.52rem, 2.55vw, 0.68rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  text-wrap: balance;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  hyphens: auto;
}

html[lang="en"] .service-card__title {
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(0.48rem, 2.15vw, 0.62rem);
  -webkit-line-clamp: 6;
}

@media (min-width: 960px) {
  .service-card__body {
    padding: clamp(1.15rem, 3vw, 1.45rem) clamp(0.9rem, 2.5vw, 1.15rem);
    gap: 0.9rem;
    min-height: 7.25rem;
  }

  .service-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .service-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .service-card__title {
    font-size: clamp(0.88rem, 2.4vw, 0.98rem);
    line-height: 1.38;
    display: block;
    overflow: visible;
  }

  html[lang="en"] .service-card__title {
    font-size: clamp(0.72rem, 1.85vw, 0.8rem);
  }
}

/* ——— Steps ——— */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    align-items: stretch;
  }
}

.steps__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.4rem;
  border: none;
  box-shadow: var(--card-soft);
  position: relative;
}

.steps__icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--icon-squircle-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-squircle-stroke);
}

.steps__icon-svg {
  width: 22px;
  height: 22px;
  display: block;
}

.steps__text {
  flex: 1;
  min-width: 0;
}

.steps__item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.steps__item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--muted);
}

/* ——— Trust ——— */
.trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.trust-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--accent);
}

.trust-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ——— FAQ ——— */
.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  text-align: inherit;
  padding: 1.1rem 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__q::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__q[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

.faq__a {
  padding: 0 0 1.1rem;
}

.faq__a p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Contact ——— */
.contact-instagram-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  margin: 0 0 1.75rem;
}

.contact-instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
  box-shadow: 0 2px 8px rgba(42, 40, 36, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.contact-instagram-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-mid);
}

.contact-instagram-link__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.contact-instagram-link__handle {
  direction: ltr;
  unicode-bidi: isolate;
}

.contact-instagram-link:hover {
  border-color: rgba(154, 123, 46, 0.55);
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.about-cta-instagram {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.about-cta-instagram a {
  font-weight: 700;
  color: var(--gold);
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--accent);
}

.contact-card__link {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.contact-card__text {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

/* ——— Footer ——— */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 -1px 0 rgba(154, 123, 46, 0.08);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: min(100%, 22rem);
}

.site-footer__copy {
  margin: 0;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 36em;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  font-size: 0.88rem;
}

.site-footer__links a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.site-footer__links a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.site-footer__ig .ig-icon {
  opacity: 0.9;
}

.site-footer__ig-handle {
  direction: ltr;
  unicode-bidi: isolate;
}

.site-footer__sep {
  color: var(--line);
  color: rgba(42, 40, 36, 0.25);
  user-select: none;
}

/* ——— Sticky WhatsApp ——— */
.sticky-wa {
  position: fixed;
  bottom: 1.25rem;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

html[dir="rtl"] .sticky-wa {
  left: 1.25rem;
  right: auto;
}

html[dir="ltr"] .sticky-wa {
  right: 1.25rem;
  left: auto;
}

.sticky-wa:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

.sticky-wa__icon {
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ——— Modals ——— */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none !important;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 40, 36, 0.4);
  backdrop-filter: blur(5px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(88vh, 720px);
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-line);
  -webkit-overflow-scrolling: touch;
}

.modal__dialog--sm {
  width: min(100%, 400px);
  max-height: none;
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  inset-inline-end: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--accent);
}

.modal__title {
  margin: 0;
  margin-inline-end: 3rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--accent);
  padding-inline-end: 0.35rem;
  line-height: 1.35;
}

.modal__desc {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
}

.modal__h {
  margin: 1rem 0 0.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 700;
}

.modal__list {
  margin: 0 0 1rem;
  padding-inline-start: 1.25rem;
  color: var(--text);
}

.modal__list li {
  margin-bottom: 0.35rem;
}

.modal__note {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.75rem;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
}

.modal__hint {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.modal__yesno {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.modal__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.modal__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  margin-bottom: 1rem;
  resize: vertical;
}

.call-modal__num {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.call-modal__num a {
  color: var(--text);
  text-decoration: none;
}

body.modal-open,
body.nav-drawer-open {
  overflow: hidden;
  width: 100%;
  overscroll-behavior: none;
}

/* ——— Mobile header & drawer ——— */
@media (max-width: 960px) {
  .site-header {
    --header-h: var(--header-h-sm);
  }

  .site-header__inner {
    gap: 0.4rem 0.5rem;
    min-height: var(--header-h-sm);
    padding-block: 0.35rem;
  }

  .site-header__logo {
    height: 34px;
    max-height: 34px;
    max-width: min(200px, 50vw);
  }

  .site-header__wa-desktop {
    display: none !important;
  }

  .site-header__aside {
    gap: 0.3rem;
  }

  .site-header__call {
    padding-inline: 0.65rem;
    font-size: 0.8rem;
  }

  .site-header__menu-btn {
    display: inline-flex;
  }

  /* Full-viewport drawer below header (fixed to viewport, not clipped by parent) */
  .site-nav {
    position: fixed;
    z-index: 1100;
    inset-inline: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: none;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--site-header-h, 64px) + env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) max(1.25rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
    margin: 0;
    gap: 0.75rem;
    background: #fff;
    border: none;
    border-top: 1px solid var(--gold-line);
    box-shadow: 0 24px 48px rgba(42, 40, 36, 0.12);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(0, -100%, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: transform, opacity;
    transition:
      transform 0.38s var(--ease-out),
      opacity 0.32s var(--ease-out),
      visibility 0.38s;
  }

  .site-nav.is-open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
  }

  .site-nav__drawer-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent);
  }

  .site-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 44px;
    padding: 0 0.95rem;
    border: 1px solid var(--gold-line);
    border-radius: 12px;
    background: #fff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(42, 40, 36, 0.06);
    -webkit-tap-highlight-color: rgba(154, 123, 46, 0.15);
    transition: background 0.2s, border-color 0.2s;
  }

  .site-nav__close:hover {
    background: #fffdf8;
    border-color: rgba(154, 123, 46, 0.45);
  }

  .site-nav__close-icon {
    width: 18px;
    height: 18px;
    display: block;
    stroke: currentColor;
  }

  .site-nav__list {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__list a {
    display: block;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    font-weight: 500;
    -webkit-tap-highlight-color: rgba(154, 123, 46, 0.15);
  }

  .site-nav__drawer-foot {
    display: block;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 1.5rem;
  }

  .site-nav__wa-drawer {
    text-align: center;
  }
}

@media (min-width: 961px) {
  .site-header__menu-btn {
    display: none !important;
  }

  .site-nav {
    position: static;
    z-index: auto;
    inset: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    min-height: 0;
    max-width: none;
    max-height: none;
    padding: 0;
    margin: 0;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    will-change: auto;
  }

  .site-nav.is-open {
    transform: none !important;
  }

  .site-nav__drawer-foot {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero__actions:not(.hero__actions--cta) .btn {
    width: 100%;
  }
}
