:root {
  --bg: #061221;
  --bg-deep: #030b16;
  --surface: #0a1b30;
  --surface-2: #0d243e;
  --surface-soft: rgba(13, 36, 62, 0.72);
  --line: rgba(174, 210, 233, 0.13);
  --line-strong: rgba(174, 210, 233, 0.24);
  --text: #f7fbff;
  --text-soft: #b8c9d7;
  --text-muted: #8298aa;
  --blue: #39a9e4;
  --blue-light: #66caf5;
  --blue-dark: #197db8;
  --gold: #d3aa48;
  --gold-light: #efd071;
  --success: #32c67a;
  --danger: #ff6b74;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  --container: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --font-body: "IBM Plex Sans Arabic", "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  --font-display: "Alexandria", "Noto Kufi Arabic", "IBM Plex Sans Arabic", "Noto Sans Arabic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  min-width: 280px;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(35, 146, 207, .14), transparent 26rem),
    radial-gradient(circle at 4% 46%, rgba(211, 170, 72, .07), transparent 24rem),
    var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5, h6,
.brand-copy strong,
.nav-link,
.mobile-menu a,
.section-kicker,
.eyebrow,
.button,
.header-whatsapp,
.text-link,
.field > span,
.footer-grid h3 {
  font-family: var(--font-display);
}

button { color: inherit; }
::selection { color: #03111e; background: var(--gold-light); }
[hidden] { display: none !important; }

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

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  color: #061221;
  background: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.page-progress {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1001;
  height: 3px;
  background: transparent;
}
.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--gold-light));
  box-shadow: 0 0 14px rgba(57, 169, 228, .7);
}

/* Header */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled,
.site-header.menu-active {
  background: rgba(4, 14, 27, .88);
  border-color: var(--line);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-logo-wrap {
  width: 52px;
  height: 52px;
  padding: 5px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.brand-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { min-width: 0; display: grid; line-height: 1.25; }
.brand-copy strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 700;
}
.brand-copy small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: 1.2px;
  direction: ltr;
  text-align: right;
  font-family: Arial, sans-serif;
}
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  padding: 10px 13px;
  color: var(--text-soft);
  font-size: 13px;
  border-radius: 12px;
  transition: color .2s ease, background .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 16px;
  inset-block-end: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.04); }
.nav-link.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: #062315;
  background: linear-gradient(135deg, #4bdc8c, #25b96a);
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(37, 185, 106, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37, 185, 106, .26); }
.header-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }
.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  display: none;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  padding-block: 18px 32px;
  background: rgba(3, 11, 22, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow-y: auto;
}
.mobile-menu nav { display: grid; gap: 8px; }
.mobile-menu a {
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text-soft);
  background: rgba(255,255,255,.025);
}
.mobile-menu a:hover { color: #fff; border-color: rgba(57,169,228,.35); background: rgba(57,169,228,.07); }

/* Global typography and buttons */
.section { position: relative; padding-block: clamp(76px, 9vw, 126px); }
.section-heading { max-width: 640px; }
.section-heading.centered { margin-inline: auto; margin-block-end: 48px; text-align: center; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block-end: 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-heading h2,
.contact-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  text-wrap: balance;
}
.section-heading p,
.contact-copy > p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.9;
}
.text-link {
  margin-block-start: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-light);
  font-weight: 700;
  font-size: 14px;
}
.text-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.text-link:hover svg { transform: translateX(-3px); }
.text-link svg { transition: transform .2s ease; }
.button {
  min-height: 52px;
  padding: 12px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary {
  color: #031423;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: 0 15px 38px rgba(37, 151, 211, .25), inset 0 1px 0 rgba(255,255,255,.35);
}
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(37, 151, 211, .34); }
.button-secondary {
  color: #fff;
  border-color: var(--line-strong);
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.button-secondary:hover { transform: translateY(-3px); border-color: rgba(57,169,228,.45); background: rgba(57,169,228,.08); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-block-start: calc(var(--header-height) + 54px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .18;
  background-image:
    linear-gradient(rgba(143, 190, 219, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 190, 219, .16) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6,18,33,.96) 0%, rgba(6,18,33,.78) 48%, rgba(6,18,33,.45) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 32%);
}
.hero-glow {
  position: absolute;
  z-index: -2;
  width: 480px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-one { inset-block-start: 0; inset-inline-start: 46%; background: rgba(40, 167, 228, .16); animation: glow-drift 9s ease-in-out infinite alternate; }
.hero-glow-two { inset-block-end: 5%; inset-inline-end: -120px; background: rgba(211, 170, 72, .08); animation: glow-drift 11s ease-in-out infinite alternate-reverse; }
.hero-layout {
  padding-block: 48px 94px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  width: fit-content;
  margin-block-end: 20px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(79,190,239,.22);
  border-radius: 999px;
  color: #cbe8f7;
  background: rgba(23, 111, 162, .11);
  font-size: 12px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(50,198,122,.1), 0 0 16px rgba(50,198,122,.7);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.hero h1 {
  margin: 0;
  max-width: 730px;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.18;
  letter-spacing: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-wrap: balance;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--blue-light), #fff 48%, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  max-width: 665px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.9;
}
.hero-actions { margin-block-start: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof {
  margin-block-start: 34px;
  padding-block-start: 25px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line);
}
.hero-proof div { min-width: 0; display: grid; gap: 2px; }
.hero-proof strong { color: #fff; font-size: 20px; line-height: 1.3; }
.hero-proof span { color: var(--text-muted); font-size: 11px; }
.hero-media {
  position: relative;
  min-width: 0;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 36px 46px rgba(0,0,0,.28));
  animation: hero-float 6s ease-in-out infinite;
  transform-origin: center;
}
.hero-media-aura {
  position: absolute;
  inset: 16% 12% 12%;
  border-radius: 50%;
  background: rgba(38, 157, 217, .22);
  filter: blur(70px);
  opacity: .55;
}
.floating-note {
  position: absolute;
  z-index: 4;
  min-width: 176px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(7, 22, 39, .79);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
}
.floating-note.note-top { inset-block-start: 16%; inset-inline-start: -2%; animation: note-float 5s ease-in-out infinite; }
.floating-note.note-bottom { inset-block-end: 13%; inset-inline-end: -3%; animation: note-float 5.8s ease-in-out infinite reverse; }
.note-icon {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
}
.note-icon.blue { color: var(--blue-light); background: rgba(57,169,228,.12); }
.note-icon.gold { color: var(--gold-light); background: rgba(211,170,72,.12); }
.note-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-note > span:last-child { display: grid; line-height: 1.45; }
.floating-note small { color: var(--text-muted); font-size: 10px; }
.floating-note strong { color: #fff; font-size: 12px; }
.hero-marquee {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 5;
  height: 54px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(4, 15, 28, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  color: #adc2d1;
  font-size: 12px;
  animation: marquee 30s linear infinite;
}
.marquee-track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 12px rgba(57,169,228,.65);
}

/* About */
.about { background: linear-gradient(180deg, rgba(255,255,255,.012), transparent 70%); }
.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: clamp(36px, 6vw, 84px);
}
.value-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.value-card {
  position: relative;
  min-height: 245px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(15, 41, 69, .84), rgba(8, 24, 43, .78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .28s var(--ease), border-color .28s ease, background .28s ease;
}
.value-card::after {
  content: "";
  position: absolute;
  width: 130px;
  aspect-ratio: 1;
  inset-inline-end: -60px;
  inset-block-end: -70px;
  border-radius: 50%;
  background: rgba(57,169,228,.08);
  filter: blur(8px);
}
.value-card:hover { transform: translateY(-8px); border-color: rgba(57,169,228,.35); background: linear-gradient(145deg, rgba(17, 47, 79, .92), rgba(8, 24, 43, .86)); }
.value-number {
  position: absolute;
  inset-block-start: 18px;
  inset-inline-end: 20px;
  color: rgba(255,255,255,.07);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  direction: ltr;
}
.value-icon {
  width: 48px;
  height: 48px;
  margin-block-end: 28px;
  display: grid;
  place-items: center;
  color: var(--blue-light);
  border: 1px solid rgba(57,169,228,.18);
  border-radius: 15px;
  background: rgba(57,169,228,.09);
}
.value-card:nth-child(2n) .value-icon { color: var(--gold-light); border-color: rgba(211,170,72,.18); background: rgba(211,170,72,.08); }
.value-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin: 0 0 10px; font-size: 18px; }
.value-card p { margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.85; }

/* Sectors */
.sectors::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 70%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(36, 140, 198, .08), transparent 65%);
}
.sector-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.sector-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(8, 25, 44, .78);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .3s var(--ease), border-color .3s ease;
}
.sector-card:hover { transform: translateY(-10px); border-color: rgba(91,190,235,.35); }
.sector-visual {
  position: relative;
  min-height: 205px;
  padding: 18px 24px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent),
    radial-gradient(circle at 50% 20%, rgba(52, 168, 224, .14), transparent 64%);
  border-block-end: 1px solid var(--line);
}
.sector-gold .sector-visual { background: linear-gradient(180deg, rgba(255,255,255,.025), transparent), radial-gradient(circle at 50% 20%, rgba(211,170,72,.12), transparent 64%); }
.sector-visual::after {
  content: "";
  position: absolute;
  inset-inline: 13%;
  inset-block-end: 15px;
  height: 24px;
  border-radius: 50%;
  background: #000;
  filter: blur(17px);
  opacity: .36;
}
.sector-visual svg { position: relative; z-index: 1; width: 100%; max-width: 270px; transition: transform .35s var(--ease); }
.sector-card:hover .sector-visual svg { transform: translateY(-7px) scale(1.035); }
.sector-body { position: relative; padding: 26px; }
.sector-index {
  position: absolute;
  inset-block-start: 25px;
  inset-inline-end: 25px;
  color: rgba(255,255,255,.08);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  direction: ltr;
}
.sector-body h3 { margin: 0 0 12px; padding-inline-end: 34px; font-size: 20px; line-height: 1.5; }
.sector-body p { margin: 0 0 20px; color: var(--text-soft); font-size: 13px; line-height: 1.85; }
.sector-body ul { margin: 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.sector-body li { position: relative; padding-inline-start: 20px; color: #d6e1e9; font-size: 12px; }
.sector-body li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: .72em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}
.sector-gold .sector-body li::before { border-color: var(--gold); }

/* Process */
.process { padding-block-start: 30px; }
.process-panel {
  position: relative;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background:
    linear-gradient(130deg, rgba(16, 48, 79, .9), rgba(5, 17, 31, .94)),
    var(--surface);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
}
.process-panel::before {
  content: "";
  position: absolute;
  width: 420px;
  aspect-ratio: 1;
  inset-inline-start: -180px;
  inset-block-end: -270px;
  border-radius: 50%;
  border: 80px solid rgba(57,169,228,.04);
}
.process-steps { position: relative; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; list-style: none; }
.process-steps li {
  min-height: 165px;
  padding: 21px;
  display: flex;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}
.process-steps li > span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #061221;
  border-radius: 12px;
  background: linear-gradient(135deg,var(--gold-light),var(--gold));
  font-weight: 900;
  direction: ltr;
}
.process-steps h3 { margin: 2px 0 7px; font-size: 16px; }
.process-steps p { margin: 0; color: var(--text-soft); font-size: 12px; line-height: 1.8; }

/* Credentials */
.credentials { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
.credentials-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 15px; }
.credential-card {
  min-width: 0;
  min-height: 155px;
  padding: 21px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10, 29, 50, .74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}
.credential-card:hover { transform: translateY(-5px); border-color: rgba(57,169,228,.32); background: rgba(12, 35, 59, .9); }
.credential-card > div { min-width: 0; display: grid; gap: 8px; }
.credential-card span { color: var(--gold-light); font-size: 11px; font-weight: 700; }
.credential-card strong { overflow-wrap: anywhere; color: #fff; font-size: 16px; line-height: 1.5; }
.credential-card small { color: var(--text-muted); font-size: 10px; line-height: 1.65; }
.copy-button {
  width: 38px;
  height: 38px;
  padding: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.copy-button:hover, .copy-button.copied { color: var(--blue-light); border-color: rgba(57,169,228,.38); background: rgba(57,169,228,.09); }
.copy-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Contact */
.contact::before {
  content: "";
  position: absolute;
  inset: 10% 0 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 70%, rgba(42, 154, 211, .11), transparent 60%);
}
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(32px, 6vw, 78px); }
.contact-copy h2 { font-size: clamp(30px, 4vw, 48px); }
.contact-cards { margin-block-start: 30px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.contact-cards > * {
  min-width: 0;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.contact-cards a:hover { transform: translateY(-3px); border-color: rgba(57,169,228,.32); background: rgba(57,169,228,.06); }
.contact-icon {
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-light);
  border-radius: 12px;
  background: rgba(57,169,228,.09);
}
.contact-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-cards > * > span:last-child { min-width: 0; display: grid; line-height: 1.45; }
.contact-cards small { color: var(--text-muted); font-size: 9px; }
.contact-cards strong { overflow-wrap: anywhere; color: #eef7fb; font-size: 11px; }
.contact-form {
  padding: clamp(22px, 3.5vw, 36px);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(14, 42, 70, .92), rgba(7, 22, 39, .95));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.055);
}
.form-head { margin-block-end: 25px; display: flex; align-items: center; gap: 13px; }
.form-head img { width: 52px; height: 49px; object-fit: contain; }
.form-head div { display: grid; line-height: 1.5; }
.form-head strong { font-size: 18px; }
.form-head span { color: var(--text-muted); font-size: 10px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.field { min-width: 0; display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field > span { color: #d5e2ea; font-size: 11px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  outline: 0;
  background: rgba(2, 13, 24, .58);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 125px; resize: vertical; }
.field select { cursor: pointer; color-scheme: dark; }
.field input::placeholder, .field textarea::placeholder { color: #668095; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(84,190,238,.7);
  background: rgba(3, 17, 31, .82);
  box-shadow: 0 0 0 4px rgba(57,169,228,.1);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: rgba(255,107,116,.75); box-shadow: 0 0 0 4px rgba(255,107,116,.08); }
.field-error { display: none; color: #ff9aa1; font-size: 10px; }
.field.invalid .field-error { display: block; }
.form-submit { width: 100%; margin-block-start: 20px; border: 0; }
.form-note { margin: 12px 0 0; display: flex; align-items: flex-start; gap: 7px; color: var(--text-muted); font-size: 9px; }
.form-note svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; }

/* Footer */
.site-footer {
  position: relative;
  padding-block-start: 64px;
  border-block-start: 1px solid var(--line);
  background: rgba(3, 10, 19, .7);
}
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .95fr .9fr; gap: 45px; }
.footer-brand img { width: 190px; max-height: 190px; object-fit: contain; object-position: right; margin-block-end: 15px; }
.footer-brand p, .footer-grid > div:last-child p { max-width: 330px; margin: 0; color: var(--text-muted); font-size: 11px; line-height: 1.85; }
.footer-grid h3 { margin: 8px 0 17px; color: #fff; font-size: 14px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a, .footer-grid span { color: var(--text-muted); font-size: 11px; transition: color .2s ease; }
.footer-grid a:hover { color: var(--blue-light); }
.install-button {
  margin-block-start: 6px;
  padding: 10px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.install-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom {
  margin-block-start: 44px;
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-block-start: 1px solid var(--line);
}
.footer-bottom p { margin: 0; color: #687e91; font-size: 9px; }
.footer-bottom a { color: var(--blue-light); }

.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 900;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
}
.floating-whatsapp {
  width: 56px;
  height: 56px;
  inset-inline-end: 20px;
  inset-block-end: 20px;
  color: #fff;
  background: linear-gradient(145deg,#48dc8b,#1eaf61);
  box-shadow: 0 16px 40px rgba(30,175,97,.26);
  animation: whatsapp-pulse 2.8s ease-in-out infinite;
}
.floating-whatsapp svg { width: 28px; height: 28px; fill: currentColor; }
.back-to-top {
  width: 43px;
  height: 43px;
  inset-inline-end: 27px;
  inset-block-end: 88px;
  color: #fff;
  border: 1px solid var(--line-strong);
  background: rgba(7, 22, 39, .88);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { border-color: rgba(57,169,228,.5); }
.back-to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.toast {
  position: fixed;
  z-index: 1200;
  inset-inline-start: 50%;
  inset-block-end: 28px;
  max-width: calc(100% - 32px);
  padding: 11px 16px;
  color: #062315;
  border-radius: 12px;
  background: #7ee8ad;
  box-shadow: 0 16px 42px rgba(0,0,0,.34);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .22s ease, transform .22s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@keyframes glow-drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(40px,30px,0) scale(1.12); } }
@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: .95; } 50% { transform: scale(.75); opacity: .55; } }
@keyframes hero-float { 0%,100% { transform: translateY(0) rotate(.15deg); } 50% { transform: translateY(-12px) rotate(-.15deg); } }
@keyframes note-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(50%); } }
@keyframes whatsapp-pulse { 0%,100% { box-shadow: 0 16px 40px rgba(30,175,97,.25), 0 0 0 0 rgba(70,218,138,.22); } 50% { box-shadow: 0 16px 40px rgba(30,175,97,.3), 0 0 0 10px rgba(70,218,138,0); } }

/* Responsive */
@media (max-width: 1050px) {
  :root { --header-height: 72px; }
  .desktop-nav { display: none; }
  .menu-toggle { position: relative; display: grid; }
  .hero-layout { grid-template-columns: minmax(0,1fr) minmax(380px,.9fr); }
  .hero h1 { font-size: clamp(40px,6vw,64px); }
  .floating-note.note-top { inset-inline-start: 0; }
  .floating-note.note-bottom { inset-inline-end: 0; }
  .sector-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .sector-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 10px); justify-self: center; }
  .credentials-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 26px, var(--container)); }
  .header-whatsapp span { display: none; }
  .header-whatsapp { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 13px; }
  .hero { min-height: auto; padding-block-start: calc(var(--header-height) + 34px); }
  .hero-layout { padding-block: 34px 88px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-lead { max-width: 650px; }
  .hero-actions { justify-content: center; }
  .hero-proof { width: min(100%, 600px); }
  .hero-media { width: min(100%, 590px); margin-inline: auto; }
  .floating-note.note-top { inset-block-start: 12%; inset-inline-start: 2%; }
  .floating-note.note-bottom { inset-block-end: 12%; inset-inline-end: 2%; }
  .split-layout, .process-panel, .contact-layout { grid-template-columns: 1fr; }
  .process-panel { gap: 32px; }
  .contact-copy { text-align: center; }
  .contact-copy .section-kicker { justify-content: center; }
  .contact-cards { text-align: right; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .container { width: min(100% - 20px, var(--container)); }
  .brand-logo-wrap { width: 47px; height: 47px; border-radius: 13px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 8px; }
  .hero-layout { padding-block-start: 26px; gap: 24px; }
  .eyebrow { font-size: 10px; }
  .hero h1 { font-size: clamp(36px, 11vw, 52px); line-height: 1.22; }
  .hero-lead { font-size: 14px; line-height: 1.9; }
  .hero-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
  .hero-proof strong { font-size: 16px; }
  .hero-proof span { font-size: 9px; line-height: 1.5; }
  .hero-media { margin-block-start: 4px; }
  .floating-note { min-width: 0; padding: 8px; border-radius: 13px; }
  .note-icon { width: 31px; height: 31px; border-radius: 9px; }
  .note-icon svg { width: 17px; height: 17px; }
  .floating-note small { font-size: 8px; }
  .floating-note strong { font-size: 9px; }
  .floating-note.note-top { inset-inline-start: -2px; }
  .floating-note.note-bottom { inset-inline-end: -2px; }
  .section { padding-block: 72px; }
  .section-heading h2, .contact-copy h2 { font-size: 29px; }
  .section-heading p, .contact-copy > p { font-size: 14px; }
  .value-grid, .sector-grid, .credentials-grid, .process-steps, .contact-cards, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 210px; }
  .sector-card:last-child { grid-column: auto; max-width: none; }
  .sector-visual { min-height: 185px; }
  .process-panel { padding: 22px; border-radius: 25px; }
  .process-steps li { min-height: 140px; }
  .credential-card { min-height: 140px; }
  .contact-copy { text-align: right; }
  .contact-copy .section-kicker { justify-content: flex-start; }
  .field-full { grid-column: auto; }
  .contact-form { border-radius: 22px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-brand img { width: 160px; max-height: 160px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .floating-whatsapp { width: 52px; height: 52px; inset-inline-end: 14px; inset-block-end: 14px; }
  .back-to-top { inset-inline-end: 19px; inset-block-end: 77px; }
  .toast { inset-block-end: 18px; }
}

@media (max-width: 360px) {
  .brand-copy { max-width: 150px; }
  .header-actions { gap: 7px; }
  .header-whatsapp, .menu-toggle { width: 42px; height: 42px; }
  .hero-proof { grid-template-columns: 1fr; width: 100%; }
  .hero-proof div { padding-block: 7px; }
  .floating-note { display: none; }
}

@media (hover: none) {
  .value-card:hover, .sector-card:hover, .credential-card:hover, .button:hover, .header-whatsapp:hover, .contact-cards a:hover { transform: none; }
}

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