:root {
  --navy: #07111f;
  --navy-2: #0c1d32;
  --charcoal: #171a1f;
  --cream: #ffffff;
  --page: #f6f7f9;
  --soft: #d9dee7;
  --muted: #8d98a8;
  --gold: #c9a45a;
  --gold-2: #f0d48a;
  --line: rgba(255,255,255,.14);
  --glass: rgba(255,255,255,.08);
  --shadow: 0 24px 80px rgba(0,0,0,.25);
  --shadow-soft: 0 18px 55px rgba(9,21,38,.1);
  --shadow-premium: 0 30px 95px rgba(7,17,31,.24);
  --grid-line: rgba(7,17,31,.055);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, Cairo, Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease, transform .55s ease;
}
body.lang-ar {
  font-family: Cairo, Montserrat, Arial, sans-serif;
}
body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar p,
body.lang-ar label,
body.lang-ar .prose,
body.lang-ar .sector-detail-copy,
body.lang-ar .split-copy,
body.lang-ar .section-head,
body.lang-ar .contact-form,
body.lang-ar .contact-info article,
body.lang-ar .alert {
  direction: rtl;
  text-align: right;
}
body.lang-ar .hero-content {
  direction: rtl;
}
body.lang-ar .hero-content h1,
body.lang-ar .hero-content p {
  text-align: right;
}
body.lang-ar .hero-actions,
body.lang-ar .language-switcher,
body.lang-ar .main-nav,
body.lang-ar .site-header,
body.lang-ar .contact-layout {
  direction: ltr;
}
body.page-ready { opacity: 1; transform: translateY(0); }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7,17,31,.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7,17,31,.022) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  background: rgba(7,17,31,.62);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,212,138,.7), transparent);
  opacity: .55;
}
.site-header.scrolled { padding-block: 12px; background: rgba(7,17,31,.92); box-shadow: 0 14px 44px rgba(0,0,0,.28); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 23px; }
.brand span, .brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,164,90,.5);
  background: linear-gradient(135deg, #111c2e, #c9a45a);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(201,164,90,.22);
  position: relative;
  overflow: hidden;
}
.brand span::after, .brand-mark::after {
  content: "";
  position: absolute;
  inset: -80% auto auto -80%;
  width: 90%;
  height: 220%;
  background: rgba(255,255,255,.38);
  transform: rotate(24deg);
  animation: logoSheen 4.8s ease-in-out infinite;
}
@keyframes logoSheen {
  0%, 62% { transform: translateX(0) rotate(24deg); opacity: 0; }
  72% { opacity: .6; }
  100% { transform: translateX(210px) rotate(24deg); opacity: 0; }
}
.brand img {
  width: clamp(132px, 12vw, 176px);
  max-height: 58px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.26));
}
.footer-brand img { width: 168px; max-height: 72px; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; }
.main-nav a { color: rgba(255,255,255,.76); transition: .2s ease; }
.main-nav > a, .nav-dropdown > a {
  position: relative;
  padding: 10px 0;
}
.main-nav > a::after, .nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav > a:hover::after, .main-nav > a.active::after, .nav-dropdown > a:hover::after, .nav-dropdown > a.active::after {
  transform: scaleX(1);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-2); }
.nav-dropdown { position: relative; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.language-switcher a {
  min-width: 34px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
}
.language-switcher a::after { display: none; }
.language-switcher a.active {
  color: #10131a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 8px 22px rgba(201,164,90,.22);
}
.nav-mega {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  background: rgba(7,17,31,.96);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 14px);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
}
.nav-mega::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(7,17,31,.96);
  border-left: 1px solid rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.12);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .nav-mega { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.nav-mega a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 12px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.nav-mega a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(240,212,138,.22), transparent 34%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}
.nav-mega a > * { position: relative; z-index: 1; }
.nav-mega a:hover { background: rgba(201,164,90,.12); transform: translateY(-2px); }
.nav-mega a:hover::after { opacity: 1; }
.nav-mega .nav-icon { grid-row: span 2; width: 34px; height: 34px; display: grid; place-items: center; color: var(--gold-2); }
.nav-mega .nav-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.nav-mega strong { color: #fff; }
.nav-mega small { color: rgba(255,255,255,.58); line-height: 1.45; }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(201,164,90,.38);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.header-cta::before, .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,.34) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform .65s ease;
}
.header-cta:hover::before, .btn:hover::before { transform: translateX(120%); }
.header-cta, .btn.primary { color: #10131a; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 16px 44px rgba(201,164,90,.22); }
.btn.secondary { color: #fff; background: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.14); }
.btn.danger { background: #7d1f2d; color: #fff; border-color: #7d1f2d; }
.btn:hover, .header-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 55px rgba(0,0,0,.22); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 8px; }
.nav-toggle span { display: block; height: 2px; margin: 6px 9px; background: #fff; }

.hero {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 150px clamp(20px, 6vw, 84px) 92px;
  color: #fff;
  background: var(--navy);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at calc(50% + var(--hero-x, 0px)) calc(44% + var(--hero-y, 0px)), rgba(240,212,138,.18), transparent 30%),
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 24%, transparent 76%, rgba(201,164,90,.12));
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7,17,31,.96), rgba(7,17,31,.78), rgba(7,17,31,.46)),
    var(--image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 6s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,17,31,.12), rgba(7,17,31,.78)),
    radial-gradient(circle at 78% 26%, rgba(201,164,90,.16), transparent 34%);
  pointer-events: none;
}
.hero-lines, .hero-lines::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(201,164,90,.18) 49%, transparent 50% 100%),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 280px 280px, 96px 96px, 96px 96px;
  animation: drift 18s linear infinite;
  opacity: .55;
  z-index: 1;
}
.hero-lines::before { content: ""; animation-direction: reverse; opacity: .4; }
@keyframes drift { to { transform: translate3d(80px, -80px, 0); } }
.hero-orbit {
  position: absolute;
  right: clamp(24px, 8vw, 120px);
  bottom: 160px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  opacity: .72;
  animation: spin 28s linear infinite;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform .18s ease-out;
  z-index: 1;
}
.hero-orbit span { position: absolute; inset: 38px; border: 1px solid rgba(201,164,90,.22); border-radius: 50%; }
.hero-orbit span:nth-child(2) { inset: 78px; border-color: rgba(255,255,255,.12); }
.hero-orbit span:nth-child(3) { inset: 126px; background: rgba(201,164,90,.2); border: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-intelligence {
  position: relative;
  z-index: 2;
  align-self: end;
  margin-bottom: 42px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06)),
    linear-gradient(180deg, rgba(7,17,31,.34), rgba(7,17,31,.72));
  backdrop-filter: blur(22px);
  box-shadow: 0 32px 100px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.12);
  overflow: hidden;
}
.hero-intelligence::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
  pointer-events: none;
}
.hero-intelligence > * { position: relative; z-index: 1; }
.intelligence-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.intelligence-head span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.intelligence-head strong { color: var(--gold-2); font-size: 15px; }
.intelligence-grid { display: grid; gap: 12px; }
.intelligence-grid article {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,17,31,.42);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.intelligence-grid article:hover {
  transform: translateX(-4px);
  background: rgba(255,255,255,.1);
  border-color: rgba(240,212,138,.36);
}
.intelligence-grid small,
.intelligence-grid span {
  display: block;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}
.intelligence-grid strong {
  display: block;
  color: #fff;
  font-size: 29px;
  margin: 5px 0 2px;
}
.intelligence-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 800;
}
.intelligence-flow i {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-2);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
h1, h2, h3, p { margin-top: 0; }
.hero h1 { font-size: clamp(42px, 6vw, 82px); line-height: .98; margin-bottom: 24px; max-width: 980px; }
.hero h1 {
  text-shadow: 0 18px 70px rgba(0,0,0,.45);
}
.hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-progress { display: flex; gap: 9px; margin-top: 34px; }
.hero-progress span {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  overflow: hidden;
}
.hero-progress span::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-2);
}
.hero-progress span.active::after { animation: fillSlide 5.2s linear both; }
@keyframes fillSlide { to { width: 100%; } }
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin-top: 72px;
}
.hero-stats article, .sector-card, .feature-card, .value-card, .contact-info article, .contact-form, .admin-panel, .login-card {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}
.hero-stats article {
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.hero-stats article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 30%), rgba(240,212,138,.16), transparent 36%);
  opacity: 0;
  transition: opacity .25s ease;
}
.hero-stats article:hover { transform: translateY(-6px); border-color: rgba(240,212,138,.32); background: rgba(255,255,255,.11); }
.hero-stats article:hover::after { opacity: 1; }
.hero-stats strong { display: block; color: var(--gold-2); font-size: 27px; margin-bottom: 4px; }
.hero-stats span { color: rgba(255,255,255,.74); }

.section, .content-wrap, .contact-layout, .map-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}
.analytics-strip {
  width: min(1180px, calc(100% - 40px));
  margin: -54px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7,17,31,.08);
  box-shadow: 0 30px 90px rgba(7,17,31,.16);
}
.analytics-strip article {
  position: relative;
  min-height: 205px;
  padding: 28px 24px;
  border-right: 1px solid rgba(7,17,31,.08);
  background: #fff;
  transition: transform .28s ease, background-color .28s ease, box-shadow .28s ease;
}
.analytics-strip article:last-child { border-right: 0; }
.analytics-strip article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: .8;
}
.analytics-strip article:hover {
  transform: translateY(-7px);
  background-color: #f8f9fb;
  box-shadow: 0 26px 70px rgba(7,17,31,.14);
}
.analytics-strip span {
  display: inline-flex;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 34px;
}
.analytics-strip strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.analytics-strip p {
  color: #667080;
  line-height: 1.7;
  margin: 0;
}
.sectors-preview,
.why {
  position: relative;
}
.sectors-preview::before,
.why::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffffff, var(--page));
  z-index: -1;
}
.premium-intro, .sector-showcase, .process-section, .quality-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.premium-intro {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: stretch;
  padding: 92px 0 18px;
}
.intro-copy {
  padding: 38px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.intro-copy::after, .showcase-content::after, .prose::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,164,90,.12), transparent 34%);
  opacity: .55;
  pointer-events: none;
}
.intro-copy > *, .showcase-content > * { position: relative; z-index: 1; }
.intro-copy h2, .showcase-content h2, .process-section h2, .quality-band h2 {
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.06;
}
.intro-copy p, .showcase-content p {
  color: #596271;
  line-height: 1.85;
  font-size: 17px;
}
.intro-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.intro-metrics article {
  position: relative;
  min-height: 280px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f4f6f9);
  color: var(--navy);
  border: 1px solid rgba(7,17,31,.08);
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}
.intro-metrics article:hover { transform: translateY(-8px); box-shadow: 0 34px 100px rgba(7,17,31,.28); }
.intro-metrics article::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(201,164,90,.32);
  border-radius: 50%;
}
.intro-metrics span { color: var(--gold); font-weight: 900; margin-bottom: 24px; }
.intro-metrics strong { display: block; font-size: 22px; margin-bottom: 10px; }
.intro-metrics p { color: #657081; line-height: 1.7; margin: 0; }
.section-head { max-width: 680px; margin-bottom: 34px; }
.section-head h2, .split-copy h2, .cta-band h2, .page-hero h1 { font-size: clamp(31px, 4vw, 54px); line-height: 1.05; }
.sector-directory { padding-top: 154px; }
.sector-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.sector-grid.large { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sector-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(180deg, rgba(7,17,31,.08), rgba(7,17,31,.88)), var(--bg) center/cover;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.sector-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
  z-index: 1;
}
.sector-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 30%), rgba(240,212,138,.28), transparent 28%);
  opacity: 0;
  transition: .2s ease;
}
.sector-card:hover { transform: translateY(-8px); box-shadow: 0 36px 110px rgba(7,17,31,.34); filter: saturate(1.08); }
.sector-card:hover::after { opacity: 1; }
.sector-card > * { position: relative; z-index: 1; }
.sector-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  color: var(--gold-2);
}
.sector-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sector-card h3, .sector-card h2 { font-size: 28px; margin-bottom: 10px; }
.sector-card p { color: rgba(255,255,255,.8); line-height: 1.65; }
.sector-card a { width: fit-content; color: var(--gold-2); font-weight: 800; margin-top: auto; }
.sector-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 4px 0 18px;
}
.sector-points li {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 800;
}
.sector-points li::before, .capability-list span::before, .category-strip span::before {
  content: "✓";
  color: var(--gold-2);
  margin-right: 7px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}
.sector-showcase {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
  padding: 48px 0 92px;
}
.showcase-media {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,17,31,.05), rgba(7,17,31,.62));
}
.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}
.showcase-media:hover img { transform: scale(1.08); }
.showcase-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(7,17,31,.72);
  color: #fff;
  backdrop-filter: blur(18px);
}
.showcase-badge strong { display: block; font-size: 30px; color: var(--gold-2); }
.showcase-badge span { color: rgba(255,255,255,.76); }
.showcase-content {
  padding: 38px;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f1f3f7);
  border: 1px solid rgba(7,17,31,.07);
  box-shadow: 0 20px 70px rgba(9,21,38,.08);
  position: relative;
  overflow: hidden;
}
.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.capability-list span {
  padding: 11px 13px;
  border-radius: 999px;
  background: #101b2b;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(7,17,31,.14);
  transition: transform .22s ease, background .22s ease;
}
.capability-list span:hover, .category-strip span:hover { transform: translateY(-3px); background: #182944; }
.split-image img, .about-panel img, .sector-detail-hero img, .carpet-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.split-image { height: 560px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.split-copy p, .prose p { color: #596271; line-height: 1.9; font-size: 17px; }
.feature-grid, .value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.feature-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); padding-top: 28px; }
.feature-card, .value-card {
  background: #fff;
  border-color: rgba(7,17,31,.08);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-card::after, .value-card::after, .process-grid article::after, .deep-grid article::after, .sector-extra-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 22%), rgba(201,164,90,.2), transparent 34%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}
.feature-card:hover, .value-card:hover, .process-grid article:hover, .deep-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 85px rgba(9,21,38,.15);
  border-color: rgba(201,164,90,.22);
}
.feature-card:hover::after, .value-card:hover::after, .process-grid article:hover::after, .deep-grid article:hover::after, .sector-extra-card:hover::after { opacity: 1; }
.feature-card > span, .value-card > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #10131a;
  background: linear-gradient(135deg, rgba(240,212,138,.95), rgba(201,164,90,.92));
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(201,164,90,.24);
}
.line-icon svg,
.contact-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3, .value-card h2 { margin: 16px 0 10px; }
.feature-card p, .value-card p { color: #6b7482; line-height: 1.7; }
.value-card.wide { grid-column: span 2; }
.process-section {
  padding: 96px 0;
  position: relative;
}
.process-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: #fff;
  z-index: -1;
}
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 39px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,90,.65), transparent);
}
.process-grid article {
  position: relative;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(7,17,31,.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.process-grid span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #10131a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.process-grid article > * { position: relative; z-index: 1; }
.process-grid h3 { font-size: 22px; }
.process-grid p { color: #657081; line-height: 1.7; }

.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 30px auto 96px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(240,212,138,.25), transparent 28%),
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.08) 43%, transparent 54% 100%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .hero-actions .btn {
  width: auto;
  min-width: 154px;
  min-height: 44px;
  padding-inline: 20px;
  font-size: 15px;
  white-space: nowrap;
}
.quality-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
  padding: 46px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,17,31,.96), rgba(12,29,50,.9)),
    url("../img/construction.jpg") center/cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.quality-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
  position: relative;
  overflow: hidden;
}
.quality-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 30%), rgba(240,212,138,.18), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.quality-grid article:hover::after { opacity: 1; }
.quality-grid article > * { position: relative; z-index: 1; }
.quality-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(240,212,138,.34);
  background: rgba(255,255,255,.13);
}
.quality-grid strong {
  display: block;
  color: var(--gold-2);
  font-size: 23px;
  margin-bottom: 10px;
}
.quality-grid span { color: rgba(255,255,255,.72); line-height: 1.6; }

.page-hero {
  color: #fff;
  background: linear-gradient(120deg, rgba(7,17,31,.94), rgba(12,29,50,.86)), url("../img/hero-corporate.jpg") center/cover;
  padding: 170px clamp(20px, 6vw, 84px) 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(201,164,90,.12) 47%, transparent 60%),
    radial-gradient(circle at 82% 20%, rgba(240,212,138,.16), transparent 28%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero.compact { min-height: 460px; display: flex; align-items: end; padding-bottom: 68px; }
.page-hero-inner { max-width: 880px; }
.contact-hero { min-height: 500px; padding-bottom: 52px; }
.contact-hero .page-hero-inner { transform: translateY(24px); }
.contact-hero .eyebrow { margin-bottom: 26px; }
.about-layout { display: block; }
.about-layout .prose {
  max-width: 1120px;
  column-count: 1;
  column-gap: 0;
}
.about-layout .prose p {
  break-inside: avoid;
  max-width: 1000px;
}
.about-panel { background: #fff; padding: 14px; box-shadow: var(--shadow); border-radius: 8px; }
.about-panel, .split-image, .showcase-media, .carpet-showcase article {
  transition: transform .45s ease, box-shadow .45s ease;
}
.about-panel:hover, .split-image:hover, .showcase-media:hover, .carpet-showcase article:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 100px rgba(7,17,31,.22);
}
.about-panel img { height: 320px; }
.about-panel div { padding: 22px; }
.about-panel strong { display: block; font-size: 22px; margin-bottom: 10px; }
.about-panel span { color: #657081; line-height: 1.7; }
.corporate-deep {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 36px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}
.deep-copy, .deep-grid article {
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(7,17,31,.08);
  box-shadow: 0 18px 60px rgba(9,21,38,.08);
}
.deep-copy {
  padding: 34px;
}
.deep-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}
.deep-copy p {
  color: #596271;
  line-height: 1.85;
}
.deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.deep-grid article {
  padding: 24px;
}
.deep-grid strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}
.deep-grid span {
  color: #657081;
  line-height: 1.7;
}

.sector-detail-hero {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: end;
  padding: 180px clamp(20px, 6vw, 84px) 64px;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.sector-detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,31,.95), rgba(7,17,31,.45)); }
.sector-detail-hero img { position: absolute; inset: 0; border-radius: 0; opacity: .72; }
.sector-detail-copy { position: relative; z-index: 1; max-width: 760px; }
.sector-detail-copy h1 { font-size: clamp(44px, 6vw, 78px); line-height: 1; }
.sector-detail-copy p { color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.75; }
.sector-content { padding-top: 70px; }
.sector-content .prose {
  max-width: 1040px;
  margin: 0 auto;
}
.sector-content .sector-prose {
  color: #202733;
  opacity: 1;
  transform: none;
}
.sector-content .sector-prose::after {
  display: none;
}
.sector-content .sector-prose h2:first-child {
  margin-top: 0;
}
.sector-content .sector-prose p {
  color: #4f5968;
  font-size: 18px;
  line-height: 1.9;
}
.prose { background: #fff; border-radius: 8px; padding: clamp(28px, 5vw, 58px); box-shadow: 0 20px 70px rgba(9,21,38,.08); }
.prose {
  position: relative;
  overflow: hidden;
}
.prose > * { position: relative; z-index: 1; }
.prose h2 { margin-top: 28px; font-size: 30px; }
.sector-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.sector-extra-card {
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #07111f, #13253a);
  box-shadow: 0 18px 60px rgba(9,21,38,.14);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.sector-extra-card:hover { transform: translateY(-8px); box-shadow: 0 34px 100px rgba(7,17,31,.24); }
.sector-extra-card span {
  display: block;
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 13px;
}
.sector-extra-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sector-extra-card li {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.76);
  line-height: 1.5;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.service-grid article {
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(7,17,31,.05), rgba(201,164,90,.12));
  border: 1px solid rgba(7,17,31,.08);
}
.service-grid strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 17px;
}
.service-grid span {
  color: #657081;
  line-height: 1.65;
}
.empty-state {
  margin-top: 18px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(201,164,90,.14), rgba(7,17,31,.06));
  border: 1px solid rgba(201,164,90,.28);
}
.empty-state strong, .empty-state span { display: block; }
.empty-state span { margin-top: 8px; color: #657081; }
.carpet-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.carpet-showcase article { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 60px rgba(9,21,38,.08); }
.carpet-showcase img { height: 280px; border-radius: 0; }
.carpet-showcase h3, .carpet-showcase p { padding: 0 24px; }
.carpet-showcase h3 { padding-top: 22px; }
.carpet-showcase p { padding-bottom: 24px; color: #657081; line-height: 1.7; }
.category-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.category-strip span { padding: 13px 18px; border-radius: 8px; background: #101b2b; color: var(--gold-2); font-weight: 800; }

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
  align-items: stretch;
  padding: 30px;
  margin-top: 96px;
  margin-bottom: 70px;
  background: #fff;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 8px;
  box-shadow: 0 24px 85px rgba(9,21,38,.1);
}
.contact-info { display: grid; gap: 16px; }
.contact-info article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201,164,90,.12), transparent 36%),
    linear-gradient(145deg, #07111f, #14263a);
  border-color: rgba(201,164,90,.22);
  padding: 24px;
  box-shadow: 0 22px 48px rgba(7,17,31,.16);
}
.contact-info article::after {
  content: "";
  position: absolute;
  inset: auto -30px -46px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,90,.18), transparent 62%);
  pointer-events: none;
}
.contact-info .contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #07111f;
  border-radius: 8px;
  background: linear-gradient(135deg, #f4d38a, var(--gold));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 14px 28px rgba(0,0,0,.2);
}
.contact-info h2 { color: #fff; margin-top: 18px; }
.contact-info a { display: block; margin-top: 8px; font-weight: 800; color: #fff; }
.contact-info a:not(.btn):hover { color: #f4d38a; }
.contact-info p { color: rgba(255,255,255,.72); line-height: 1.7; }
.contact-info .contact-whatsapp {
  display: inline-flex;
  width: fit-content;
  min-width: 0;
  min-height: 38px;
  justify-self: start;
  align-self: start;
  margin-top: 0;
  padding: 0 17px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(201,164,90,.26);
}
.contact-form {
  background: linear-gradient(145deg, #ffffff, #f7f8fa);
  border-color: rgba(7,17,31,.08);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: none;
  align-self: stretch;
}
label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 800; color: #222a35; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(7,17,31,.14);
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
}
textarea { resize: vertical; }
.alert { padding: 14px 16px; border-radius: 8px; margin-bottom: 16px; font-weight: 700; }
.alert.success { color: #155d35; background: #ddf7e8; }
.alert.error { color: #7b1e2b; background: #ffe1e6; }
.map-wrap { padding-top: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; border-radius: 8px; box-shadow: var(--shadow); filter: grayscale(.15); }

.site-footer {
  background: #07111f;
  color: #fff;
  padding: 64px clamp(20px, 6vw, 84px) 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 40px; max-width: 1180px; margin: 0 auto; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); line-height: 1.7; }
.site-footer h3 { color: var(--gold-2); }
.site-footer a { display: block; margin: 8px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; max-width: 1180px; margin: 44px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.62); }
.footer-bottom a { color: var(--gold-2); margin: 0; }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  padding: 15px 18px;
  border-radius: 999px;
  color: #fff;
  background: #1fbf62;
  box-shadow: 0 16px 44px rgba(31,191,98,.32);
  font-weight: 900;
}

.reveal { opacity: 0; transform: translateY(34px) scale(.985); transition: opacity .82s ease var(--reveal-delay, 0ms), transform .82s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.reveal.visible,
body.page-ready .reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.interactive-surface {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(201,164,90,.22), transparent 34%), var(--navy);
}
.login-card { width: min(430px, calc(100% - 32px)); padding: 34px; background: rgba(255,255,255,.08); color: #fff; }
.login-card input { background: rgba(255,255,255,.92); }
.brand-mark { margin-bottom: 18px; }
.admin-body { min-height: 100vh; background: #eef1f5; }
.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 250px;
  padding: 24px;
  background: #07111f;
  color: #fff;
}
.admin-sidebar nav { display: grid; gap: 10px; margin-top: 36px; }
.admin-sidebar nav a { padding: 13px 14px; border-radius: 8px; color: rgba(255,255,255,.75); }
.admin-sidebar nav a:hover { background: rgba(255,255,255,.08); color: var(--gold-2); }
.admin-main { margin-left: 250px; padding: 34px; }
.admin-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; }
.admin-stat-grid, .editor-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.admin-stat-grid article, .admin-panel { background: #fff; border-color: rgba(7,17,31,.08); padding: 24px; box-shadow: 0 12px 38px rgba(9,21,38,.08); }
.admin-stat-grid strong { display: block; font-size: 38px; color: var(--navy); }
.admin-stat-grid span { color: #657081; }
.admin-panel { margin-bottom: 18px; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.admin-actions a { padding: 13px 16px; border-radius: 8px; background: #101b2b; color: var(--gold-2); font-weight: 800; }
.admin-row { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.check { display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 8px; margin: 0 auto 0 0; }
.check input { width: auto; }
.message-top, .message-meta { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.message-card.unread { border-left: 5px solid var(--gold); }
.message-card.read { opacity: .78; }
.message-meta a { color: var(--navy-2); font-weight: 800; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: rgba(7,17,31,.98);
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .nav-dropdown { width: 100%; }
  .language-switcher { width: 100%; justify-content: flex-start; }
  .nav-mega { position: static; width: 100%; grid-template-columns: 1fr; margin-top: 10px; transform: none; opacity: 1; pointer-events: auto; display: none; }
  .main-nav.open .nav-mega { display: grid; }
  .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-intelligence { align-self: auto; margin: 24px 0 0; max-width: 520px; }
  .analytics-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -28px; }
  .hero-stats, .sector-grid, .sector-grid.large, .split-section, .feature-grid, .value-grid, .contact-layout, .footer-grid, .carpet-showcase, .premium-intro, .intro-metrics, .sector-showcase, .process-grid, .quality-band, .quality-grid, .corporate-deep, .deep-grid, .sector-extra-grid { grid-template-columns: 1fr; }
  .about-layout .prose { column-count: 1; }
  .service-grid { grid-template-columns: 1fr; }
  .sector-extra-card ul { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .value-card.wide { grid-column: auto; }
  .split-image { height: 360px; }
  .showcase-media { min-height: 390px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .admin-sidebar { position: static; width: auto; }
  .admin-main { margin-left: 0; padding: 20px; }
  .admin-stat-grid, .editor-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; }
  .brand strong { font-size: 19px; }
  .brand img { width: 128px; max-height: 48px; }
  .hero { padding: 120px 20px 70px; min-height: 720px; }
  .hero h1 { font-size: 40px; }
  .hero-intelligence { display: none; }
  .analytics-strip { width: calc(100% - 28px); grid-template-columns: 1fr; margin-top: -22px; }
  .analytics-strip article { min-height: auto; padding: 24px; border-right: 0; border-bottom: 1px solid rgba(7,17,31,.08); }
  .hero-actions, .footer-bottom, .admin-row { flex-direction: column; align-items: stretch; }
  .btn, .header-cta { width: 100%; }
  .cta-band .hero-actions .btn { width: fit-content; max-width: 100%; }
  .contact-info .contact-whatsapp { width: fit-content; max-width: 100%; }
  .section, .content-wrap, .contact-layout, .map-wrap, .split-section, .cta-band, .premium-intro, .sector-showcase, .process-section, .quality-band, .corporate-deep { width: calc(100% - 28px); padding-block: 62px; }
  .intro-copy, .showcase-content, .quality-band { padding: 26px; }
  .cta-band { margin-bottom: 64px; padding: 26px; }
  .page-hero { padding: 150px 20px 60px; }
  .sector-detail-hero { min-height: 560px; padding: 150px 20px 48px; }
}
