@font-face {
  font-family: "Tajawal";
  src: url("../fonts/Tajawal-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src: url("../fonts/Tajawal-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal: #121212;
  --charcoal-soft: #1c1c1c;
  --mustard: #f28705;
  --mustard-soft: #ffab23;
  --terracotta: #e4573d;
  --white: #ffffff;
  --off-white: #f7f6f3;
  --muted: #706f6c;
  --line: #e9e5de;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.75;
  direction: rtl;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* شعار الهيدر المستقل */
.brand-header {
  min-width: 0;
}

.header-brand-logo {
  width: auto;
  height: 64px;
  max-width: 190px;
  object-fit: contain;
}

.brand-fallback {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(145deg, var(--charcoal), #2a2a2a);
  font-size: 23px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.18);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 18px;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2px;
  direction: ltr;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: #3c3b39;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--mustard);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--off-white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
  transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--charcoal);
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.16);
}

.btn-primary:hover {
  background: #252525;
}

.btn-accent {
  color: var(--charcoal);
  background: var(--mustard);
  box-shadow: 0 14px 30px rgba(242, 135, 5, 0.24);
}

.btn-accent:hover {
  background: var(--mustard-soft);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 135, 5, 0.16), transparent 26%),
    radial-gradient(circle at 84% 72%, rgba(228, 87, 61, 0.11), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 18px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.08);
  filter: blur(22px);
}

.hero::before {
  top: 18%;
  left: -100px;
  transform: rotate(-18deg);
}

.hero::after {
  right: -90px;
  bottom: 11%;
  transform: rotate(16deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--mustard);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.18;
  letter-spacing: -2px;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--mustard);
}

.hero-copy > p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #5e5c58;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
}

.hero-meta-item {
  min-width: 110px;
}

.hero-meta-item strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.hero-meta-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-card {
  position: absolute;
  inset: 40px 14px 22px 34px;
  overflow: hidden;
  border-radius: 42px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 45%, rgba(242, 135, 5, 0.95) 45% 54%, transparent 54%),
    linear-gradient(25deg, transparent 58%, rgba(228, 87, 61, 0.82) 58% 70%, transparent 70%);
  opacity: 0.9;
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}

.visual-logo-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 90px;
}

.visual-logo {
  width: min(100%, 300px);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.3));
}

.visual-fallback {
  width: 210px;
  height: 210px;
  display: none;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 52px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-size: 100px;
  font-weight: 700;
}

.float-card {
  position: absolute;
  z-index: 3;
  padding: 15px 18px;
  border: 1px solid rgba(18, 18, 18, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 45px rgba(18, 18, 18, 0.14);
  backdrop-filter: blur(16px);
}

.float-card strong {
  display: block;
  font-size: 15px;
}

.float-card span {
  color: var(--muted);
  font-size: 12px;
}

.float-one {
  top: 0;
  right: -4px;
}

.float-two {
  left: -6px;
  bottom: 0;
}

.section {
  padding: 96px 0;
}

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

.section-dark {
  color: var(--white);
  background: var(--charcoal);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head-copy {
  max-width: 680px;
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.25;
  letter-spacing: -1px;
}

.section-subtitle {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(242, 135, 5, 0.45);
  box-shadow: 0 22px 55px rgba(18, 18, 18, 0.09);
}

.service-index {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  color: var(--charcoal);
  background: rgba(242, 135, 5, 0.16);
  font-weight: 700;
}

.service-card h3 {
  margin: 25px 0 8px;
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card::after {
  content: "";
  position: absolute;
  left: -32px;
  bottom: -32px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(228, 87, 61, 0.09);
}

.works-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--charcoal);
  border-color: var(--mustard);
  background: var(--mustard);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius-lg);
  background: #242424;
  cursor: zoom-in;
}

.work-card[hidden] {
  display: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.work-card:hover img {
  transform: scale(1.045);
}

.work-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 30px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(242, 135, 5, 0.32), transparent 55%),
    linear-gradient(320deg, rgba(228, 87, 61, 0.25), transparent 50%),
    #202020;
}

.work-fallback strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.work-fallback span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  direction: ltr;
}

.work-card::after {
  content: "عرض";
  position: absolute;
  left: 15px;
  bottom: 15px;
  min-width: 58px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--mustard);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.work-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.about-strip {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-art {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.about-art::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 420px;
  top: -90px;
  right: 70px;
  background: var(--mustard);
  transform: rotate(36deg);
}

.about-art::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 350px;
  left: -30px;
  bottom: -120px;
  background: var(--terracotta);
  transform: rotate(-28deg);
}

.about-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: auto;
  height: min(64%, 300px);
  max-width: 44%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.about-content p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--mustard);
  font-size: 13px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 52px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.cta-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -70px;
  top: -110px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.75;
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: 45%;
  bottom: -120px;
  border-radius: 36px;
  background: var(--mustard);
  transform: rotate(30deg);
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.cta-copy p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-copy {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #4f4d49;
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background: var(--off-white);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -70px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(242, 135, 5, 0.18);
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.info-panel h2,
.info-panel h3 {
  margin-top: 0;
}

.info-panel p {
  color: var(--muted);
}

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

.stat-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--charcoal);
  color: var(--white);
}

.stat-card strong {
  display: block;
  color: var(--mustard);
  font-size: 32px;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-wide {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.service-wide .service-index {
  flex: 0 0 auto;
}

.service-wide h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.service-wide p {
  margin: 0;
  color: var(--muted);
}

.work-category {
  margin-bottom: 60px;
}

.work-category:last-child {
  margin-bottom: 0;
}

.work-category h2 {
  margin: 0 0 22px;
  font-size: 32px;
}

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(12px);
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: min(1120px, 96vw);
  max-height: 90vh;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-placeholder {
  min-width: min(760px, 82vw);
  min-height: min(520px, 68vh);
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.7);
  background: #1c1c1c;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 26px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .main-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 26px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .eyebrow,
  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-strip,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .about-art {
    min-height: 380px;
  }

  .services-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    inset-block-start: 72px;
  }

  .brand-copy span {
    display: none;
  }

  .header-brand-logo {
    width: auto;
    height: 52px;
    max-width: 155px;
  }

  .hero {
    padding: 72px 0 58px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
    letter-spacing: -1px;
  }

  .hero-copy > p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .visual-card {
    inset: 36px 0 18px 0;
    border-radius: 30px;
  }

  .visual-logo-wrap {
    padding: 70px;
  }

  .about-icon {
    height: min(62%, 250px);
    max-width: 46%;
  }

  .float-card {
    padding: 12px 14px;
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .btn {
    margin-top: 20px;
  }

  .services-grid,
  .works-grid,
  .check-list,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 235px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-wide {
    grid-template-columns: 1fr;
  }

  .work-category h2 {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


/* المرحلة النهائية */
.main-nav { gap: 18px; }
.main-nav a { font-size: 14px; }

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  gap: 52px;
  padding: 50px 0 34px;
}
.footer-brand p { max-width: 430px; margin: 18px 0 0; color: var(--muted); }
.footer-nav { display: grid; align-content: start; gap: 10px; }
.footer-nav strong { margin-bottom: 5px; }
.footer-nav a { color: var(--muted); font-size: 14px; }
.footer-nav a:hover { color: var(--mustard); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 950;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #171717;
  box-shadow: 0 18px 45px rgba(18,18,18,.2);
  font-size: 13px;
  font-weight: 700;
}
.whatsapp-float::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--mustard);
}

.clients-preview { background: #fff; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.clients-grid-preview { grid-template-columns: repeat(6, 1fr); }
.client-logo {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.client-logo:hover { transform: translateY(-4px); border-color: rgba(242,135,5,.45); box-shadow: 0 18px 45px rgba(18,18,18,.08); }
.client-logo img { max-width: 150px; max-height: 75px; object-fit: contain; }
.client-logo span {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: #9b978f;
  background: linear-gradient(145deg, #fff, #f5f2ec);
  font-size: 13px;
  font-weight: 700;
}

.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.policy-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.policy-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(242,135,5,.16);
  font-weight: 700;
}
.policy-card h2 { margin: 0 0 8px; font-size: 22px; }
.policy-card p { margin: 0; color: var(--muted); }
.notice-card {
  padding: 28px 30px;
  border-right: 5px solid var(--mustard);
  border-radius: var(--radius-md);
  background: var(--white);
}
.notice-card strong { font-size: 20px; }
.notice-card p { margin: 8px 0 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 46px; align-items: start; }
.contact-info > p { color: var(--muted); font-size: 17px; }
.contact-cards { display: grid; gap: 12px; margin-top: 30px; }
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color .25s ease, transform .25s ease;
}
.contact-card:hover { transform: translateY(-2px); border-color: rgba(242,135,5,.5); }
.contact-card span { color: var(--muted); font-size: 14px; overflow-wrap: anywhere; }
.request-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--off-white);
  box-shadow: var(--shadow);
}
.form-head span { color: var(--mustard); font-weight: 700; }
.form-head h2 { margin: 5px 0 0; font-size: 32px; }
.form-head p { margin: 7px 0 0; color: var(--muted); }
.form-row { display: grid; gap: 8px; margin-top: 20px; }
.form-row label { font-weight: 700; }
.form-row label span { color: var(--muted); font-size: 12px; font-weight: 400; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #ddd8ce;
  border-radius: 14px;
  outline: 0;
  color: var(--charcoal);
  background: var(--white);
}
.form-row input,
.form-row select { height: 52px; padding: 0 15px; }
.form-row textarea { min-height: 150px; padding: 14px 15px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--mustard); box-shadow: 0 0 0 4px rgba(242,135,5,.12); }
.form-row .invalid { border-color: var(--terracotta); }
.form-error { min-height: 24px; margin: 12px 0 0; color: var(--terracotta); font-size: 14px; }
.form-submit { width: 100%; border: 0; cursor: pointer; }

@media (max-width: 1020px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .clients-grid-preview { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .clients-grid,
  .clients-grid-preview,
  .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo { min-height: 120px; }
  .policy-card { grid-template-columns: 1fr; }
  .contact-card { align-items: flex-start; flex-direction: column; gap: 4px; }
  .request-form { padding: 24px 18px; border-radius: 24px; }
  .whatsapp-float { left: 14px; bottom: 14px; min-height: 44px; padding: 0 14px; }
}

@media (max-width: 460px) {
  .clients-grid,
  .clients-grid-preview { grid-template-columns: 1fr 1fr; gap: 10px; }
  .client-logo { padding: 16px; min-height: 105px; border-radius: 16px; }
}
