:root {
  --red: #b02022;
  --red-2: #7c1416;
  --black: #050505;
  --graphite: #161616;
  --graphite-2: #202020;
  --silver: #c0bcbc;
  --silver-2: #e1dede;
  --white: #f4f4f4;
  --muted: #9c9c9c;
  --gold: #d9a441;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(5, 5, 5, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 26px;
  --radius-sm: 16px;
  --container: 1400px;
  --surface: color-mix(in srgb, var(--black) 84%, var(--graphite) 16%);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --space-sm: clamp(0.75rem, 0.45rem + 0.8vw, 1rem);
  --space-md: clamp(1.2rem, 0.8rem + 1.1vw, 1.75rem);
  --space-lg: clamp(2rem, 1.2rem + 2.2vw, 3rem);
  --font-ar: "Cairo", "Tajawal", "IBM Plex Sans Arabic", system-ui,
    -apple-system, "Segoe UI", Arial, sans-serif;
  --font-en: "Rajdhani", "Montserrat", system-ui, -apple-system, "Segoe UI",
    Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ar);
  line-height: 1.8;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
::selection {
  background: var(--red);
  color: #fff;
}
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  right: 16px;
  top: -100px;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.86);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 22px);
  min-height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 0 auto;
}
.brand img {
  width: clamp(160px, 24vw, 205px);
  max-height: 54px;
  object-fit: contain;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #111;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: 0.25s;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--silver);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.22s;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(176, 32, 34, 0.15);
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-link {
  width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.icon-link i,
.icon i,
.whatsapp-float i {
  font-size: 1.08em;
  line-height: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: translateX(-120%);
  transition: 0.55s;
}
.btn:hover:before {
  transform: translateX(120%);
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  box-shadow: 0 14px 35px rgba(176, 32, 34, 0.28);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: #111;
}
.btn-dark {
  background: #111;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-block {
  width: 100%;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  color: var(--silver);
  font-weight: 900;
  font-size: 13px;
}
.badge:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(176, 32, 34, 0.14);
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 82px);
  padding: 76px 0 54px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(
      circle at 18% 28%,
      rgba(176, 32, 34, 0.26),
      transparent 34%
    ),
    linear-gradient(135deg, #050505 0%, #0c0c0c 42%, #171717 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero:after {
  content: "7G";
  position: absolute;
  left: -40px;
  bottom: -150px;
  z-index: -1;
  font-family: var(--font-en);
  font-weight: 1000;
  font-size: 35vw;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.035);
  line-height: 0.8;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--silver);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}
.eyebrow:before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 99px;
}
h1,
.h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 1000;
}
.red-text {
  color: var(--red);
}
.lead {
  font-size: clamp(18px, 2vw, 23px);
  color: var(--silver-2);
  max-width: 760px;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.hero-point {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--silver);
  font-weight: 800;
}
.hero-point strong {
  display: block;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.hero-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow);
}
.hero-card .main-img {
  border-radius: 20px;
  aspect-ratio: 1.07/1;
  object-fit: cover;
  background: #111;
}
.floating-card {
  position: absolute;
  right: -12px;
  bottom: 22px;
  width: min(320px, 80%);
  padding: 18px;
  background: rgba(5, 5, 5, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.floating-card span {
  display: block;
  color: var(--silver);
  font-size: 13px;
  font-weight: 800;
}
.floating-card b {
  font-size: 28px;
  color: #fff;
}
.floating-card p {
  margin: 6px 0 0;
  color: var(--silver);
}
.ribbon {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 10px 16px;
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  font-weight: 1000;
  font-size: 13px;
}
.diagonal {
  position: absolute;
  inset: auto -30px -28px auto;
  width: 190px;
  height: 32px;
  background: var(--red);
  transform: skewX(-28deg);
  opacity: 0.9;
}
.trust-strip {
  border-block: 1px solid var(--line);
  background: #0b0b0b;
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  text-align: center;
  padding: 18px;
  border-inline-start: 1px solid var(--line);
  color: var(--silver);
  font-weight: 1000;
}
.trust-item:last-child {
  border-inline-end: 1px solid var(--line);
}
.section {
  padding: 92px 0;
  position: relative;
  scroll-margin-top: 96px;
}
.section-light {
  background: var(--white);
  color: #111;
}
.section-dark {
  background: #0b0b0b;
}
.section-graphite {
  background: var(--graphite);
}
.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 38px;
}
.section-title {
  margin: 0;
  font-size: clamp(30px, 4.3vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 1000;
}
.section-desc {
  margin: 0;
  color: var(--silver);
  font-size: 18px;
}
.section-light .section-desc {
  color: #525252;
}
.section-kicker {
  color: var(--red);
  font-weight: 1000;
  margin-bottom: 10px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: var(--shadow);
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card.tall {
  min-height: 560px;
}
.media-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 45%);
}
.card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}
.card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0.85;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 32, 34, 0.42);
}
.section-light .card {
  background: #fff;
  border-color: #e5e5e5;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.07);
}
.section-light .card p,
.section-light .card li {
  color: #555;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.3;
}
.card p {
  margin: 0;
  color: var(--silver);
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(176, 32, 34, 0.14);
  color: #fff;
  margin-bottom: 16px;
  border: 1px solid rgba(176, 32, 34, 0.3);
}
.section-light .icon {
  color: var(--red);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}
.service-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
}
.service-card .content {
  padding: 22px;
}
.service-card .link {
  margin-top: 18px;
  color: #fff;
  font-weight: 1000;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.section-light .service-card .link {
  color: var(--red);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}
.stat b {
  font-family: var(--font-en);
  font-size: 32px;
  color: #fff;
  line-height: 1;
}
.stat span {
  display: block;
  color: var(--silver);
  font-weight: 800;
}
.section-light .stat {
  background: #fff;
  border-color: #e7e7e7;
}
.section-light .stat b {
  color: #111;
}
.section-light .stat span {
  color: #555;
}
.process {
  counter-reset: step;
  display: grid;
  gap: 16px;
}
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.step:before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--red);
  font-weight: 1000;
  font-family: var(--font-en);
  font-size: 24px;
}
.step h3 {
  margin: 0 0 4px;
  font-size: 22px;
}
.step p {
  margin: 0;
  color: var(--silver);
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #111;
  border: 1px solid var(--line);
  min-height: 360px;
}
.project-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.project-card:hover img {
  transform: scale(1.04);
}
.project-card .overlay {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  background: rgba(5, 5, 5, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.project-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 55%);
}
.project-card h3 {
  margin: 0 0 4px;
  color: #fff;
}
.project-card p {
  margin: 0;
  color: var(--silver);
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 900;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  border-color: var(--red);
}
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(135deg, #101010, #050505);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cta-panel:before {
  content: "";
  position: absolute;
  inset: auto -30px -80px auto;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(176, 32, 34, 0.4), transparent 62%);
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.cta-panel h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.cta-panel p {
  color: var(--silver);
  font-size: 18px;
  margin: 0 0 22px;
}
.cta-list {
  display: grid;
  gap: 12px;
}
.cta-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--silver);
}
.cta-list li:before {
  content: "✓";
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(176, 32, 34, 0.18);
  color: #fff;
  font-weight: 1000;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #050505, #151515);
  border-bottom: 1px solid var(--line);
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 18% 30%,
      rgba(176, 32, 34, 0.32),
      transparent 35%
    ),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}
.page-hero .container {
  position: relative;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  color: var(--silver);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}
.breadcrumbs a {
  color: #fff;
}
.page-hero h1 {
  max-width: 900px;
}
.page-hero p {
  max-width: 780px;
  color: var(--silver-2);
  font-size: 20px;
  margin: 0;
}
.content-block {
  background: #fff;
  color: #111;
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}
.content-block h2 {
  margin-top: 0;
  font-size: 34px;
  line-height: 1.25;
}
.content-block p,
.content-block li {
  color: #4b4b4b;
}
.content-block ul {
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.content-block li {
  list-style: none;
  display: flex;
  gap: 10px;
}
.content-block li:before {
  content: "";
  min-width: 9px;
  height: 9px;
  margin-top: 12px;
  border-radius: 50%;
  background: var(--red);
}
.feature-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
}
.feature-list li {
  list-style: none;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--silver);
  display: flex;
  gap: 10px;
}
.feature-list li:before {
  content: "7G";
  font-family: var(--font-en);
  color: var(--red);
  font-weight: 1000;
}
.section-light .feature-list li {
  background: #fff;
  border-color: #e5e5e5;
  color: #444;
}
.table-wrap {
  overflow: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.table th,
.table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}
.table th {
  background: #111;
  color: #fff;
}
.table td {
  color: var(--silver);
}
.section-light .table-wrap {
  border-color: #e5e5e5;
}
.section-light .table th {
  background: #111;
}
.section-light .table td {
  color: #4d4d4d;
  border-bottom-color: #e5e5e5;
}
.faq {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  color: #fff;
  border: 0;
  padding: 18px 22px;
  text-align: right;
  cursor: pointer;
  font-weight: 1000;
}
.faq-q span:last-child {
  font-size: 24px;
  color: var(--red);
}
.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: var(--silver);
}
.faq-item.open .faq-a {
  display: block;
}
.section-light .faq-item {
  background: #fff;
  border-color: #e5e5e5;
}
.section-light .faq-q {
  color: #111;
}
.section-light .faq-a {
  color: #555;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}
.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.contact-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.contact-row .icon {
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 14px;
}
.contact-row strong {
  display: block;
}
.contact-row span {
  color: var(--silver);
}
.form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  display: block;
  font-weight: 900;
  margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: 0.2s;
}
.field textarea {
  min-height: 132px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(176, 32, 34, 0.15);
}
.hint {
  font-size: 13px;
  color: var(--muted);
}
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111;
  border: 1px solid var(--line);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: translateY(120px);
  opacity: 0;
  transition: 0.3s;
  z-index: 300;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.map-placeholder {
  min-height: 380px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #111, #272727);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.map-placeholder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 45px 45px;
}
.map-pin {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  box-shadow: 0 0 0 22px rgba(176, 32, 34, 0.18);
  font-weight: 1000;
}
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 58px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 30px;
  margin-bottom: 34px;
}
.footer-logo {
  width: 260px;
  margin-bottom: 16px;
}
.footer-grid p {
  color: var(--silver);
  margin: 0;
}
.footer-grid h3 {
  margin: 0 0 14px;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links a {
  color: var(--silver);
  font-weight: 800;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
}
.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  z-index: 90;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  font-weight: 1000;
  font-size: 28px;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 1080px) {
  .main-nav {
    position: absolute;
    inset: calc(100% + 8px) 0 auto 0;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid var(--line);
    border-radius: 0 0 24px 24px;
    padding: 18px;
    display: none;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .main-nav a {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-actions .btn {
    display: none;
  }
  .hero-grid,
  .grid-2,
  .cta-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .media-card.tall {
    min-height: 360px;
  }
}
@media (max-width: 760px) {
  .brand img {
    width: 168px;
  }
  .header-wrap {
    min-height: 74px;
  }
  .hero {
    min-height: 0;
    padding: 48px 0;
  }
  .hero-actions,
  .hero-points,
  .grid-3,
  .stats,
  .trust-list,
  .grid-4,
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    display: grid;
  }
  .hero-points {
    display: grid;
  }
  .section {
    padding: 64px 0;
  }
  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 12px;
  }
  .cta-panel {
    padding: 26px;
  }
  .content-block,
  .contact-card {
    padding: 24px;
  }
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
  .project-card {
    min-height: 300px;
  }
  .page-hero {
    padding: 56px 0 42px;
  }
  h1,
  .h1 {
    letter-spacing: -0.02em;
  }
  .contact-grid {
    gap: 18px;
  }
  .field input,
  .field textarea,
  .field select {
    padding: 13px 14px;
  }
}
@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 1.15rem));
  }
  .section {
    padding: 56px 0;
  }
  .hero {
    padding: 36px 0 44px;
  }
  .page-hero {
    padding: 48px 0 36px;
  }
  .btn,
  .icon-link {
    min-height: 46px;
  }
  .main-nav ul {
    grid-template-columns: 1fr;
  }
}
@media print {
  body {
    background: #fff;
    color: #111;
  }
  .site-header,
  .whatsapp-float,
  .skip-link,
  .nav-toggle,
  .btn,
  .floating-card,
  .diagonal,
  .trust-strip,
  .cta-panel,
  .map-placeholder {
    display: none !important;
  }
  .hero,
  .page-hero {
    background: #fff;
    color: #111;
    padding: 24px 0;
    min-height: 0;
  }
  .section,
  .section-light,
  .section-dark,
  .section-graphite {
    background: #fff;
    color: #111;
    padding: 24px 0;
  }
  .card,
  .content-block,
  .contact-card,
  .project-card {
    box-shadow: none;
    border-color: #ddd;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
