/* ===================================
   REAP IRAQ — Brand Stylesheet
   Medical Imaging Division
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Custom Properties */
:root {
  --navy: #0D1B2E;
  --navy-mid: #162436;
  --navy-light: #1e3148;
  --navy-border: #243d5c;
  --cyan: #00C8E0;
  --cyan-dark: #008FA0;
  --cyan-glow: rgba(0, 200, 224, 0.2);
  --cyan-glow-strong: rgba(0, 200, 224, 0.4);
  --white: #FFFFFF;
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-10: rgba(255,255,255,0.1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-cyan: 0 8px 32px rgba(0, 200, 224, 0.25);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.cyan { color: var(--cyan); }
.highlight-nile { color: var(--cyan); }
.highlight-mesopotamia { color: var(--cyan); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13, 27, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--navy-border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.nav-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  border: 2px solid var(--cyan);
  transition: var(--transition);
  background: #fff;
  padding: 2px;
}
.nav-logo:hover .nav-logo-img { box-shadow: 0 0 20px var(--cyan-glow-strong); transform: scale(1.05); }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text small {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-40);
  font-family: var(--font-body);
  margin-top: 2px;
}
.logo-reap { font-family: var(--font-display); font-weight: 300; font-size: 22px; color: var(--white); }
.logo-iraq { font-family: var(--font-display); font-weight: 300; font-size: 22px; color: var(--cyan); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--white-70);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--white); background: var(--white-10); }
.nav-cta {
  background: var(--cyan) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--cyan-dark) !important; box-shadow: var(--shadow-cyan); }
.nav-lang {
  background: transparent !important;
  color: var(--cyan) !important;
  border: 1px solid rgba(0,200,224,0.4) !important;
  font-family: 'Arial', sans-serif !important;
  border-radius: var(--radius-sm) !important;
}
.nav-lang:hover { background: rgba(0,200,224,0.1) !important; border-color: var(--cyan) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 46, 0.92) 0%,
    rgba(13, 27, 46, 0.75) 50%,
    rgba(0, 143, 160, 0.15) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--cyan);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}
@keyframes float {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) translateX(var(--drift)); opacity: 0; }
}
/* Hero wordmark — replaces square logo image in hero */
.hero-wordmark {
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease 0.15s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-wordmark-text {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -4px;
}
.hero-wordmark-text .hw-reap { color: var(--white); }
.hero-wordmark-text .hw-iraq { color: var(--cyan); }
.hero-wordmark-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white-40);
}
/* The 'ea' circle mark placed small below or beside */
.hero-ea-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  opacity: 0.85;
  filter: drop-shadow(0 0 16px rgba(0,200,224,0.4));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 200, 224, 0.1);
  border: 1px solid rgba(0, 200, 224, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.title-reap { color: var(--white); }
.title-iraq { color: var(--cyan); }
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 16px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-sub {
  font-size: 14px;
  color: var(--white-40);
  letter-spacing: 1px;
  margin-bottom: 48px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--cyan);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
}
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--white-40);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--white); background: var(--white-10); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeInUp 0.9s ease 0.5s both;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.stat-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--white-40); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--navy-border); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-40);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  animation: scroll-bounce 2s ease infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1) translateY(0); }
  50% { transform: scaleY(0.5) translateY(10px); }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--cyan);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 24px;
}
.marquee-track .sep { padding: 0; color: var(--navy-mid); opacity: 0.5; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTIONS COMMON ===== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-tag.light { color: var(--cyan); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub { color: var(--white-70); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about { background: var(--navy); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-visual { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.about-logo-showcase { position: relative; }
.about-logo {
  width: 260px;
  height: 260px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  padding: 0;
  animation: gentle-float 6s ease-in-out infinite;
  /* The logo PNG already has the circle shape - no clipping needed */
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.logo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.about-heritage {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--navy-mid);
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-border);
}
.heritage-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.heritage-year {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan);
}
.heritage-label { font-size: 11px; color: var(--white-70); text-align: center; }
.heritage-arrow { font-size: 24px; color: var(--cyan); }
.about-content .section-tag { display: block; text-align: left; }
.about-text { color: var(--white-70); margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.about-text strong { color: var(--white); }
.about-pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--navy-mid);
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-border);
  transition: var(--transition);
  cursor: default;
}
.pillar:hover { border-color: var(--cyan); background: rgba(0,200,224,0.05); }
.pillar-icon { font-size: 22px; }
.pillar-text { display: flex; flex-direction: column; gap: 2px; }
.pillar-text strong { font-size: 14px; font-weight: 600; }
.pillar-text span { font-size: 12px; color: var(--white-70); }

/* ===== SOLUTIONS ===== */
.solutions { background: var(--navy-mid); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.solution-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--cyan-glow) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.solution-card:hover::before { opacity: 1; }
.card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: var(--transition);
}
.solution-card:hover .card-accent { opacity: 1; }
.solution-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
}
.solution-card.featured .card-accent { opacity: 1; }
.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
}
.card-icon {
  width: 48px;
  height: 48px;
  color: var(--cyan);
  margin-bottom: 20px;
}
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.solution-card p { font-size: 14px; color: var(--white-70); line-height: 1.7; margin-bottom: 20px; }
.card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.card-features li {
  font-size: 13px;
  color: var(--white-70);
  padding-left: 16px;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
}
.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  transition: var(--transition);
  display: inline-block;
}

/* =============================================================
   REAP PRO 101 — PREMIUM SHOWCASE
   Single sticky container · 3-column layout · Clean animations
   ============================================================= */

/* Tall scroll canvas */
.rp-section {
  height: 450vh;
  position: relative;
}

/* ONE sticky viewport — the only sticky element */
.rp-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

/* ─── Background ─── */
.rp-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.rp-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,224,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,224,0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 20%, transparent 75%);
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  0%  { background-position: 0 0; }
  100%{ background-position: 52px 52px; }
}
.rp-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 40%, rgba(5,12,24,0.7) 100%);
}
.rp-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.rp-glow-l {
  width: 500px; height: 500px; top: 20%; left: -100px;
  background: rgba(0,200,224,0.06);
}
.rp-glow-r {
  width: 500px; height: 500px; top: 20%; right: -100px;
  background: rgba(0,200,224,0.06);
}
.rp-glow-b {
  width: 600px; height: 300px; bottom: -80px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,200,224,0.0);
  transition: background 0.8s ease;
}
.rp-glow-b.active {
  background: rgba(0,200,224,0.12);
}

/* ─── 3-Column Layout ─── */
.rp-layout {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  padding: 0 32px;
  z-index: 5;
  gap: 24px;
}

/* ─── Side columns ─── */
.rp-side {
  display: flex; flex-direction: column; gap: 32px;
  z-index: 10;
}

/* ─── Callout cards ─── */
.rp-callout {
  display: flex; align-items: center;
  opacity: 0;
  will-change: transform, opacity;
}
/* Left callouts: content then connector (right-facing) */
.rp-side-l .rp-callout {
  flex-direction: row;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.rp-side-l .rp-cl-2 { transition-delay: 0.15s; }

/* Right callouts: connector then content (left-facing) */
.rp-side-r .rp-callout {
  flex-direction: row-reverse;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.rp-side-r .rp-cr-2 { transition-delay: 0.15s; }

/* Visible state — JS adds this class */
.rp-callout.visible {
  opacity: 1;
  transform: translateX(0);
}

.rp-c-inner {
  background: rgba(8,20,44,0.75);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,200,224,0.2);
  border-radius: 12px; padding: 18px 22px;
  flex: 1;
}
.rp-side-l .rp-c-inner { border-right: none; border-radius: 12px 0 0 12px; }
.rp-side-r .rp-c-inner { border-left: none; border-radius: 0 12px 12px 0; }

.rp-c-num {
  font-family: var(--font-display); font-size: 30px; font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: 4px;
}
.rp-c-num span { font-size: 17px; color: var(--cyan); font-weight: 600; }
.rp-c-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); font-weight: 700; margin-bottom: 6px;
}
.rp-c-desc {
  font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5;
}

/* Connector lines — horizontal line from card to printer */
.rp-c-connector {
  width: 60px; height: 1px;
  background: linear-gradient(to right, rgba(0,200,224,0.6), transparent);
  flex-shrink: 0; position: relative;
}
.rp-c-connector::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translate(50%, -50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0,200,224,0.8);
  animation: connector-pulse 2s ease-in-out infinite;
}
.rp-c-connector-r {
  background: linear-gradient(to left, rgba(0,200,224,0.6), transparent);
}
.rp-c-connector-r::after { right: auto; left: 0; transform: translate(-50%, -50%); }
@keyframes connector-pulse {
  0%,100%{ box-shadow: 0 0 4px rgba(0,200,224,0.5); transform: translate(50%,-50%) scale(1); }
  50%    { box-shadow: 0 0 12px rgba(0,200,224,0.9); transform: translate(50%,-50%) scale(1.4); }
}
.rp-c-connector-r::after { animation: connector-pulse-r 2s ease-in-out infinite 0.3s; }
@keyframes connector-pulse-r {
  0%,100%{ box-shadow: 0 0 4px rgba(0,200,224,0.5); transform: translate(-50%,-50%) scale(1); }
  50%    { box-shadow: 0 0 12px rgba(0,200,224,0.9); transform: translate(-50%,-50%) scale(1.4); }
}

/* ─── Center column ─── */
.rp-center {
  display: flex; flex-direction: column; align-items: center;
  position: relative; height: 100%;
  justify-content: center; gap: 0;
}

/* Product tag (top) */
.rp-product-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 12px;
  opacity: 1; transform: translateY(0);
}
.rp-tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 8px rgba(0,200,224,0.8);
  animation: tag-dot-pulse 2s ease-in-out infinite;
}
@keyframes tag-dot-pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ─── Printer ─── */
.rp-printer-wrap {
  width: 100%; max-width: 420px;
  opacity: 1; transform: translateY(0);
}

.rp-printer-inner { position: relative; }

.rp-printer-img {
  width: 100%; display: block; position: relative; z-index: 2;
  mix-blend-mode: lighten;
}

/* Floating animation — pure CSS, no JS needed */
.rp-printer-inner {
  animation: printer-float 5s ease-in-out infinite;
}
@keyframes printer-float {
  0%,100%{ transform: translateY(0px); }
  50%    { transform: translateY(-12px); }
}

/* Halo glow behind printer */
.rp-halo {
  position: absolute; top: 50%; left: 50%;
  width: 120%; height: 120%; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,200,224,0.14) 0%, transparent 55%);
  z-index: 1; pointer-events: none;
  transition: background 0.8s ease;
}
.rp-halo.intense {
  background: radial-gradient(circle, rgba(0,200,224,0.32) 0%, transparent 55%);
}

/* Ground shadow */
.rp-ground-shadow {
  position: absolute; bottom: -8%; left: 10%; width: 80%; height: 30px;
  background: radial-gradient(ellipse, rgba(0,200,224,0.18) 0%, transparent 70%);
  border-radius: 50%; filter: blur(10px); z-index: 0;
  animation: shadow-float 5s ease-in-out infinite;
}
@keyframes shadow-float {
  0%,100%{ transform: scaleX(1); opacity: 0.5; }
  50%    { transform: scaleX(0.85); opacity: 0.25; }
}

/* ─── Film eject — FULL SCREEN ─── */
.rp-film-wrap {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  background: rgba(2,6,18,0);
  transition: opacity 0.4s ease, background 0.6s ease;
}
.rp-film-wrap.active {
  opacity: 1;
  pointer-events: auto;
  background: rgba(2,6,18,0.92);
}
.rp-film {
  width: 38vw; max-width: 420px;
  transform: translateY(60vh) scale(0.3);
  will-change: transform;
  transition: none;
  filter: drop-shadow(0 0 40px rgba(0,80,220,0.6)) drop-shadow(0 0 80px rgba(0,50,180,0.35));
}
.rp-xray {
  width: 100%; display: block; border-radius: 6px;
  border: 2px solid rgba(0,200,224,0.4);
  box-shadow: 0 0 60px rgba(0,80,200,0.5), 0 0 120px rgba(0,60,200,0.2), inset 0 0 40px rgba(0,30,100,0.3);
}

/* ─── Bottom info (title + CTA) ─── */
.rp-bottom-info {
  text-align: center; margin-top: 16px; z-index: 10;
  opacity: 1; transform: translateY(0);
}
.rp-title {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 42px);
  font-weight: 200; color: #fff; margin: 0 0 4px;
  letter-spacing: -1px;
}
.rp-title span { color: var(--cyan); font-weight: 700; }
.rp-subtitle {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin: 0 0 18px;
}

/* ─── Print progress bar ─── */
.rp-print-bar-wrap {
  position: absolute; bottom: 6%; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 20;
}
.rp-print-bar-wrap.visible { opacity: 1; }
.rp-print-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan);
  animation: label-blink 1s ease-in-out infinite alternate;
}
@keyframes label-blink { from{opacity:0.5} to{opacity:1} }
.rp-print-track {
  width: min(280px, 70%); height: 3px;
  background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
}
.rp-print-fill {
  height: 100%; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), #00f0ff);
  box-shadow: 0 0 12px rgba(0,200,224,0.6);
  transition: width 0.08s linear;
}
.rp-print-meta {
  font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.28);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .rp-layout { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; }
  .rp-side   { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 12px; }
  .rp-side-l { grid-row: 1; }
  .rp-center { grid-row: 2; }
  .rp-side-r { grid-row: 3; }
  .rp-side-l .rp-c-inner, .rp-side-r .rp-c-inner { border-radius: 10px; border: 1px solid rgba(0,200,224,0.2); }
  .rp-c-connector { display: none; }
  .rp-printer-wrap { max-width: 260px; }
}

/* ===== PRODUCTS ===== */
.products { background: var(--navy); }
.products-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-screen-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--navy-border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.showcase-img { width: 100%; display: block; }
.showcase-overlay-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(13, 27, 46, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid var(--cyan);
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
}
.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
.showcase-features { display: flex; flex-direction: column; gap: 8px; }
.feature-item {
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  cursor: pointer;
}
.feature-item:hover, .feature-item.active {
  border-color: var(--cyan);
  background: rgba(0, 200, 224, 0.05);
}
.feat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-border);
  line-height: 1;
  min-width: 40px;
  transition: var(--transition);
}
.feature-item.active .feat-num, .feature-item:hover .feat-num { color: var(--cyan); }
.feat-content h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.feat-content p { font-size: 13px; color: var(--white-70); line-height: 1.6; }

/* ===== SERVICE & SUPPORT ===== */
.support { background: var(--navy-mid); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.support-card {
  background: rgba(13,27,46,0.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.support-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.support-card:hover { border-color: rgba(0,200,224,0.3); transform: translateY(-4px); }
.support-card:hover::before { opacity: 1; }

/* Highlighted card (24/7) */
.support-card-highlight {
  border-color: rgba(0,200,224,0.25);
  background: rgba(0,200,224,0.05);
}
.support-card-highlight::before { opacity: 0.6; }

/* Icon */
.support-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(0,200,224,0.08);
  border: 1px solid rgba(0,200,224,0.15);
  color: var(--cyan);
  margin-bottom: 20px;
  transition: var(--transition);
}
.support-card:hover .support-icon {
  background: rgba(0,200,224,0.15);
  border-color: rgba(0,200,224,0.3);
  transform: scale(1.05);
}
.support-icon svg { width: 28px; height: 28px; }

/* Text */
.support-card-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 12px;
}
.support-card-desc {
  font-size: 14px; line-height: 1.7;
  color: var(--white-60);
  margin-bottom: 16px;
}

/* Tag */
.support-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan);
  padding: 5px 14px;
  background: rgba(0,200,224,0.08);
  border: 1px solid rgba(0,200,224,0.15);
  border-radius: 100px;
}

/* Responsive */
@media (max-width: 768px) {
  .support-grid { grid-template-columns: 1fr; }
/* ===== WHY IRAQ ===== */
.why-iraq {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-iraq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(0,200,224,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(0,200,224,0.04) 0%, transparent 60%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  padding: 32px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.why-card p { font-size: 14px; color: var(--white-70); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact { background: var(--navy-mid); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-tag { display: block; }
.contact-sub { color: var(--white-70); font-size: 15px; line-height: 1.8; margin-bottom: 40px; margin-top: 16px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-border);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--cyan); }
.contact-icon { font-size: 20px; flex-shrink: 0; }
.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: 14px; font-weight: 600; }
.contact-item span { font-size: 13px; color: var(--white-70); }
/* Form */
.contact-form-wrapper {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%2300C8E0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-40); }
.form-group label {
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--cyan);
  background: var(--navy);
  padding: 0 4px;
  opacity: 0;
  transition: var(--transition);
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label { opacity: 1; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(0, 200, 224, 0.1);
  border: 1px solid var(--cyan);
  border-radius: var(--radius-sm);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.form-success.visible { display: block; animation: fadeInUp 0.4s ease; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); border-top: 1px solid var(--navy-border); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--cyan); }
.footer-brand .footer-logo div { display: flex; flex-direction: column; line-height: 1.1; }
.footer-brand .footer-logo small { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--white-40); }
.footer-tagline { font-size: 13px; color: var(--white-70); line-height: 1.8; margin-bottom: 16px; }
.footer-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,200,224,0.1);
  border: 1px solid rgba(0,200,224,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--cyan);
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--white-40);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--cyan); }
.footer-contact { display: flex; flex-direction: column; gap: 0; }
.presence-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--navy-border);
}
.presence-item:last-child { border-bottom: none; }
.flag { font-size: 24px; }
.presence-item div { display: flex; flex-direction: column; gap: 2px; }
.presence-item strong { font-size: 14px; }
.presence-item span { font-size: 12px; color: var(--white-70); }
.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--white-40);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tagline-sm { color: var(--cyan); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { flex-direction: row; justify-content: center; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .products-showcase { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(13,27,46,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 8px; border-bottom: 1px solid var(--navy-border); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 20px; border-radius: var(--radius-sm); }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 16px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-logo-card, .brand-tagline-card { grid-column: span 1; }
  .logo-variants { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-visual { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .hero-stats { gap: 24px; }
}
