:root {
  --navy: #060c16;
  --ink: #08111d;
  --panel: #0e1a2b;
  --paper: #f7f9fc;
  --white: #ffffff;
  --muted: #687489;
  --line: #dfe7f0;
  --red: #ee1028;
  --green: #00d66f;
  --cyan: #31d7ff;
  --gold: #d6a854;
  --shadow: 0 28px 80px rgba(5, 12, 22, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green), var(--cyan));
  box-shadow: 0 0 18px rgba(0, 214, 111, 0.5);
  content: "";
  pointer-events: none;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(6, 12, 22, 0.78);
  color: var(--white);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-nav.is-scrolled {
  background: rgba(6, 12, 22, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-cta,
.login-cta,
.btn,
.quote-form button,
.sticky-whatsapp {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 900;
}

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

.nav-cta {
  padding: 0 18px;
  background: var(--red);
  box-shadow: 0 0 28px rgba(238, 16, 40, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.login-cta {
  padding: 0 18px;
  border: 1px solid rgba(0, 214, 111, 0.5);
  background: rgba(0, 214, 111, 0.1);
  color: var(--green);
  box-shadow: 0 0 28px rgba(0, 214, 111, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.login-cta:hover {
  background: rgba(0, 214, 111, 0.16);
  box-shadow: 0 0 34px rgba(0, 214, 111, 0.3);
}

.nav-cta:hover,
.login-cta:hover,
.btn:hover,
.quote-form button:hover,
.sticky-whatsapp:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 142px 24px 76px;
  background: var(--navy);
  color: var(--white);
}

.launch-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 96px 24px 14px;
  background: #050914;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.launch-banner a {
  color: var(--green);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 22, 0.96) 0%, rgba(6, 12, 22, 0.84) 46%, rgba(6, 12, 22, 0.48) 100%),
    url("assets/ipace-hero-banner.png") center right / cover no-repeat;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(49, 215, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 215, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
}

.hero-media::after {
  position: absolute;
  right: -10%;
  bottom: 18%;
  width: 58%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), var(--green), var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(238, 16, 40, 0.72), 0 0 32px rgba(0, 214, 111, 0.5);
  content: "";
  transform: rotate(-7deg);
  animation: routePulse 3.6s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1180px, 100%);
  align-items: center;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 5.1vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
}

.hero-rotator {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 214, 111, 0.22);
  border-radius: 8px;
  background: rgba(5, 12, 22, 0.48);
  box-shadow: 0 0 30px rgba(0, 214, 111, 0.08);
}

.hero-rotator strong {
  color: var(--green);
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  line-height: 1;
  text-shadow: 0 0 24px rgba(0, 214, 111, 0.42);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-rotator strong.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.btn {
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 34px rgba(238, 16, 40, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(49, 215, 255, 0.55);
  box-shadow: 0 0 24px rgba(49, 215, 255, 0.15);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 800;
}

.command-card,
.command-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(8, 17, 29, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.command-card {
  padding: 22px;
  animation: panelFloat 5s ease-in-out infinite;
}

.proof-console {
  position: relative;
  overflow: hidden;
  border-color: rgba(49, 215, 255, 0.26);
  box-shadow:
    0 28px 80px rgba(5, 12, 22, 0.28),
    0 0 0 1px rgba(0, 214, 111, 0.08),
    0 0 42px rgba(49, 215, 255, 0.14);
}

.proof-console::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(49, 215, 255, 0.32), transparent) top / 100% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(0, 214, 111, 0.26), transparent) right / 1px 100% no-repeat,
    linear-gradient(90deg, transparent, rgba(238, 16, 40, 0.28), transparent) bottom / 100% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(0, 214, 111, 0.2), transparent) left / 1px 100% no-repeat;
  content: "";
  pointer-events: none;
  animation: neonFrame 4.5s ease-in-out infinite;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.card-head span,
.status-stack span,
.proof-tile span,
.ai-alert span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-head b {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 214, 111, 0.13);
  color: var(--green);
  font-size: 0.74rem;
}

.status-stack {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0;
}

.status-stack div {
  min-height: 100px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.status-stack strong {
  font-size: 1.55rem;
}

.proof-tiles {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin: 22px 0;
}

.proof-tile {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 18%, rgba(49, 215, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.proof-tile::after {
  position: absolute;
  right: -30%;
  bottom: 14px;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
  box-shadow: 0 0 18px rgba(49, 215, 255, 0.7);
  content: "";
  transform: rotate(-14deg);
  animation: tileBeam 3.2s ease-in-out infinite;
}

.proof-tile:hover,
.proof-tile.is-highlighted {
  border-color: rgba(0, 214, 111, 0.62);
  box-shadow: 0 0 32px rgba(0, 214, 111, 0.16);
  transform: translateY(-4px);
}

.proof-tile strong {
  display: block;
  margin: 12px 0 4px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.proof-tile small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  line-height: 1.35;
}

.proof-tile.cod strong,
.proof-tile.tracking strong {
  color: var(--green);
}

.proof-tile.rtn strong {
  color: var(--cyan);
}

.proof-tile.pod strong {
  color: var(--red);
}

.proof-flow {
  position: relative;
  min-height: 58px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(49, 215, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 12, 22, 0.56);
}

.flow-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.flow-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.danger {
  color: var(--red);
}

.ai-alert {
  padding: 18px;
  border: 1px solid rgba(49, 215, 255, 0.18);
  border-radius: 8px;
  background: rgba(49, 215, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.ai-alert::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 44%, transparent 70%);
  content: "";
  transform: translateX(-120%);
  animation: scanLine 4.5s ease-in-out infinite;
}

.ai-alert p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.proof-alert {
  border-color: rgba(0, 214, 111, 0.26);
  background:
    linear-gradient(135deg, rgba(0, 214, 111, 0.1), rgba(49, 215, 255, 0.08)),
    rgba(49, 215, 255, 0.05);
}

.proof-bar {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: -44px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 3;
}

.proof-bar div {
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.proof-bar div:hover {
  background: #f4f8fb;
  transform: translateY(-3px);
}

.proof-bar div:last-child {
  border-right: 0;
}

.proof-bar strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 2.25rem;
  line-height: 1;
}

.proof-bar span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 94px 0;
}

.intro {
  display: grid;
  align-items: end;
  gap: 42px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
}

.section-title {
  max-width: 850px;
  margin-bottom: 36px;
}

.intro h2,
.section-title h2,
.coverage-copy h2,
.quote-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.1vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro > p,
.section-title p:not(.eyebrow),
.coverage-copy p,
.quote-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.tab:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.tab-panel {
  display: none;
  align-items: start;
  gap: 40px;
  min-height: 360px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(8, 17, 29, 0.07);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  opacity: 0;
  transform: translateY(8px);
}

.tab-panel.is-active {
  display: grid;
  animation: panelIn 240ms ease forwards;
}

.panel-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green);
  font-weight: 900;
}

.tab-panel h3 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.tab-panel p,
.tab-panel li {
  color: var(--muted);
  line-height: 1.72;
}

.tab-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tab-panel li {
  padding: 15px 16px;
  border-radius: 8px;
  background: #f2f6fa;
  font-weight: 700;
}

.process-grid article:hover,
.use-grid article:hover,
.emirate-card:hover {
  transform: translateY(-4px);
}

.process-grid,
.use-grid,
.advantage-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.advantage-grid,
.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article,
.use-grid article,
.advantage-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 17, 29, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-grid article:hover,
.use-grid article:hover,
.advantage-grid article:hover {
  box-shadow: 0 24px 70px rgba(8, 17, 29, 0.12);
}

.process-grid span,
.advantage-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.process-grid p,
.use-grid p,
.advantage-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.advantage-grid span {
  background: var(--ink);
  color: var(--green);
}

.coverage {
  position: relative;
  display: grid;
  align-items: center;
  gap: 46px;
  overflow: hidden;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 86% 22%, rgba(0, 214, 111, 0.18), transparent 28%),
    radial-gradient(circle at 38% 86%, rgba(49, 215, 255, 0.14), transparent 24%),
    linear-gradient(145deg, #060c16, #0d1a2b 56%, #08111d);
  color: var(--white);
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
}

.coverage::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(49, 215, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 215, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  pointer-events: none;
}

.coverage::after {
  position: absolute;
  right: -10%;
  top: 48%;
  width: 62%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), var(--green), var(--cyan), transparent);
  box-shadow: 0 0 28px rgba(0, 214, 111, 0.5), 0 0 44px rgba(49, 215, 255, 0.34);
  content: "";
  transform: rotate(-9deg);
  animation: routePulse 3.4s ease-in-out infinite;
}

.coverage-copy,
.emirates {
  position: relative;
  z-index: 1;
}

.coverage-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.coverage-pulse {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(49, 215, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.coverage-pulse span {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(0, 214, 111, 0.14), 0 0 26px rgba(0, 214, 111, 0.55);
  animation: nodeGlow 2.4s ease-in-out infinite;
}

.coverage-pulse p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
}

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

.emirate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 96px;
  justify-content: space-between;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.emirate-card::before {
  position: absolute;
  right: -22%;
  bottom: 16px;
  width: 78%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(49, 215, 255, 0.86), rgba(0, 214, 111, 0.8), transparent);
  box-shadow: 0 0 18px rgba(49, 215, 255, 0.54);
  content: "";
  transform: rotate(-16deg);
  animation: tileBeam 3.4s ease-in-out infinite;
}

.emirate-card:hover,
.emirate-card.is-active {
  border-color: rgba(0, 214, 111, 0.58);
  background:
    linear-gradient(145deg, rgba(0, 214, 111, 0.12), rgba(49, 215, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 34px rgba(0, 214, 111, 0.14), 0 24px 70px rgba(0, 0, 0, 0.18);
  transform: translateY(-5px);
}

.emirate-card.priority {
  border-color: rgba(238, 16, 40, 0.42);
}

.emirate-card.wide {
  grid-column: span 3;
}

.emirate-card span {
  display: inline-flex;
  width: max-content;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(49, 215, 255, 0.12);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
}

.emirate-card.priority span {
  background: rgba(238, 16, 40, 0.14);
  color: #ff8a98;
}

.emirate-card strong {
  margin-top: 18px;
  color: var(--white);
  font-size: 1.06rem;
  line-height: 1.15;
}

.emirate-card small {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.emirate-card.priority small {
  color: #ff8a98;
}

.quote-section {
  display: grid;
  align-items: start;
  gap: 46px;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 86% 12%, rgba(238, 16, 40, 0.15), transparent 28%),
    linear-gradient(145deg, #060c16, #0e1a2b);
  color: var(--white);
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.62fr);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.quote-form {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0 13px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 214, 111, 0.16);
}

.quote-form textarea {
  min-height: 112px;
  padding: 13px;
  resize: vertical;
}

.full-field,
.form-trust,
.form-status,
.quote-form button {
  grid-column: 1 / -1;
}

.lead-source-field {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.form-trust {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.form-status {
  display: none;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.form-status:not(:empty) {
  display: block;
}

.form-status[data-state="success"] {
  border-color: rgba(0, 214, 111, 0.42);
  background: rgba(0, 214, 111, 0.12);
  color: #dfffee;
}

.form-status[data-state="error"] {
  border-color: rgba(255, 22, 48, 0.45);
  background: rgba(255, 22, 48, 0.12);
  color: #ffe5e8;
}

.quote-form button {
  border: 0;
  background: var(--green);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 17, 29, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(0, 214, 111, 0.45);
  box-shadow: 0 18px 50px rgba(8, 17, 29, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 1.05rem;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, #008d48, #c8061b 34%, #060c16 100%);
  color: var(--white);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  display: grid;
  gap: 40px;
  padding: 58px max(24px, calc((100vw - 1180px) / 2));
  background: #050914;
  color: rgba(255, 255, 255, 0.74);
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.5fr));
}

.footer p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer a:not(.footer-brand) {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.footer span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 0 18px;
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 214, 111, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.process-grid article,
.use-grid article,
.service .tab-panel,
.emirate-card {
  will-change: transform;
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.62;
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.35);
  }
}

@keyframes nodeGlow {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(0, 214, 111, 0.14), 0 0 26px rgba(0, 214, 111, 0.55);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(0, 214, 111, 0), 0 0 34px rgba(49, 215, 255, 0.6);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes scanLine {
  0%,
  45% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes panelIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes neonFrame {
  0%,
  100% {
    opacity: 0.55;
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.45);
  }
}

@keyframes tileBeam {
  0%,
  100% {
    opacity: 0.38;
    transform: translateX(-8px) rotate(-14deg);
  }
  50% {
    opacity: 1;
    transform: translateX(12px) rotate(-14deg);
  }
}

@media (max-width: 980px) {
  .nav-menu {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .intro,
  .tab-panel.is-active,
  .coverage,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .command-card {
    max-width: 620px;
  }

  .proof-bar,
  .advantage-grid,
  .process-grid,
  .use-grid,
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .login-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  .nav-actions {
    gap: 8px;
  }

  .hero {
    padding: 108px 16px 54px;
  }

  .launch-banner {
    align-items: center;
    flex-direction: column;
    padding: 84px 16px 12px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(6, 12, 22, 0.94), rgba(6, 12, 22, 0.86) 54%, rgba(6, 12, 22, 0.98)),
      url("assets/ipace-hero-banner.png") center / cover no-repeat;
  }

  h1 {
    font-size: 2.42rem;
  }

  .hero-rotator {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .hero-rotator strong {
    font-size: 1.55rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .command-card {
    padding: 18px;
  }

  .proof-bar,
  .advantage-grid,
  .process-grid,
  .use-grid,
  .emirates,
  .footer {
    grid-template-columns: 1fr;
  }

  .emirate-card.wide {
    grid-column: auto;
  }

  .proof-bar {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .proof-bar div {
    min-height: 98px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-bar div:last-child {
    border-bottom: 0;
  }

  .status-stack {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .status-stack div {
    min-height: 82px;
    padding: 12px 8px;
  }

  .proof-tile {
    min-height: 112px;
    padding: 13px;
  }

  .status-stack span {
    font-size: 0.62rem;
  }

  .proof-tile span {
    font-size: 0.62rem;
  }

  .status-stack strong {
    font-size: 1.18rem;
  }

  .proof-tile strong {
    font-size: 1.45rem;
  }

  .proof-tile small {
    font-size: 0.74rem;
  }

  .proof-flow {
    min-height: 70px;
  }

  .flow-item {
    font-size: 0.86rem;
  }

  .ai-alert {
    padding: 14px;
  }

  .ai-alert p {
    font-size: 0.9rem;
  }

  .section {
    width: calc(100% - 28px);
    padding: 70px 0;
  }

  .intro h2,
  .section-title h2,
  .coverage-copy h2,
  .quote-copy h2,
  .final-cta h2 {
    font-size: 2.16rem;
  }

  .tab {
    flex: 1 1 calc(50% - 10px);
    padding: 0 12px;
  }

  .tab-panel {
    padding: 24px;
  }

  .tab-panel h3 {
    font-size: 1.55rem;
  }

  .coverage,
  .quote-section,
  .final-cta,
  .footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
