/* =========================================================
   SUMER • Professional Website Styles
   ========================================================= */

:root {
  --bg: #070b1f;
  --bg-2: #0b1437;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e8ecf7;
  --text-soft: #a8b0cc;
  --text-mute: #7d869f;

  --gold: #f5c66b;
  --gold-2: #d4a23a;
  --gold-deep: #a8761d;
  --accent: #6aa9ff;
  --accent-2: #14c8c0;

  --grad-gold: linear-gradient(135deg, #f5c66b 0%, #d4a23a 50%, #a8761d 100%);
  --grad-blue: linear-gradient(135deg, #6aa9ff 0%, #1058c6 100%);
  --grad-hero: linear-gradient(135deg, #0b1437 0%, #1a1f4e 50%, #0b1437 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.25);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 12px 40px rgba(245, 198, 107, 0.25);

  --container: 1280px;
  --pad: clamp(16px, 4vw, 32px);

  --font-ar: 'Zain', system-ui, sans-serif;
  --font-en: 'Inter', system-ui, sans-serif;
  --font-deco: 'Cinzel', serif;

  --t-fast: 200ms cubic-bezier(.4, 0, .2, 1);
  --t-base: 350ms cubic-bezier(.4, 0, .2, 1);
  --t-slow: 600ms cubic-bezier(.4, 0, .2, 1);
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ar);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html[lang="en"] body { font-family: var(--font-en); }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { cursor: pointer; font: inherit; color: inherit; background: none; border: 0; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: #0b1437; }

/* ========== Container ========== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ========== Background Decor ========== */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--grad-hero);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 198, 107, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 198, 107, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float 18s ease-in-out infinite;
}
.orb-1 { width: 480px; height: 480px; background: #f5c66b; top: -10%; right: -10%; }
.orb-2 { width: 420px; height: 420px; background: #6aa9ff; bottom: -15%; left: -8%; animation-delay: -6s; }
.orb-3 { width: 360px; height: 360px; background: #14c8c0; top: 40%; left: 50%; animation-delay: -12s; opacity: .25; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.08); }
  66% { transform: translate(-30px, 30px) scale(.95); }
}
#particles { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .6; }

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all var(--t-base);
  padding-block: 18px;
}
.navbar.scrolled {
  background: rgba(7, 11, 31, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding-block: 12px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--t-base), filter var(--t-base);
}
.logo-img:hover { transform: scale(1.04); }
.logo-img-footer {
  height: 64px;
  opacity: .92;
}
.logo-mark {
  display: grid;
  place-items: center;
  filter: drop-shadow(0 4px 16px rgba(245, 198, 107, 0.4));
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-deco);
  font-size: 24px;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}
html[lang="ar"] .logo-name { font-family: var(--font-ar); font-weight: 800; font-size: 22px; letter-spacing: 0; }
.logo-sub {
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
html[lang="ar"] .logo-sub { letter-spacing: 0; text-transform: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--t-fast);
  position: relative;
}
.nav-links a:hover { color: var(--gold); background: var(--surface); }
.nav-links a.active { color: var(--gold); background: rgba(245, 198, 107, 0.1); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  transition: all var(--t-fast);
  font-family: var(--font-en);
}
.lang-toggle:hover { background: var(--gold); color: #0b1437; transform: scale(1.05); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--t-base);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad-gold);
  color: #0b1437;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(245, 198, 107, 0.4);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  padding: 140px 0 100px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245, 198, 107, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 198, 107, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(245, 198, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 198, 107, 0); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title span { display: block; }
html[lang="ar"] .hero-title { letter-spacing: 0; line-height: 1.25; }
.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block !important;
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-soft);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  position: relative;
}
.stat-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-family: var(--font-en);
}
.plus {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--gold);
  margin-inline-start: 2px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual { position: relative; height: 520px; }
.hero-card-stack { position: relative; height: 100%; }
.float-card {
  position: absolute;
  background: rgba(11, 20, 55, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.code-card {
  top: 0;
  inset-inline-end: 0;
  width: min(420px, 95%);
  padding: 0;
  overflow: hidden;
  animation-delay: 0s;
}
.card-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
  direction: ltr;
}
.card-bar > span:nth-child(1),
.card-bar > span:nth-child(2),
.card-bar > span:nth-child(3) {
  width: 12px; height: 12px; border-radius: 50%;
}
.card-bar > span:nth-child(1) { background: #ff5f57; }
.card-bar > span:nth-child(2) { background: #febc2e; }
.card-bar > span:nth-child(3) { background: #28c840; }
.bar-title {
  margin-inline-start: 12px;
  font-size: 12px;
  color: var(--text-mute);
  font-family: var(--font-en);
}
.code {
  padding: 20px;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text);
  direction: ltr;
  text-align: left;
}
.code .kw { color: #ff79c6; }
.code .vr { color: #f5c66b; }
.code .cls { color: #50fa7b; }
.code .prop { color: #8be9fd; }
.code .str { color: #f1fa8c; }
.code .num { color: #bd93f9; }
.code .fn { color: #50fa7b; }

.dash-card {
  bottom: 30px;
  inset-inline-start: 0;
  width: min(320px, 85%);
  padding: 20px;
  animation-delay: -2s;
}
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dash-title { font-weight: 700; font-size: 14px; }
.dash-live { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #28c840; }
.live-dot { width: 6px; height: 6px; background: #28c840; border-radius: 50%; animation: pulse 1.5s infinite; }
.dash-stats { display: flex; gap: 24px; margin-bottom: 12px; }
.dash-stats > div { display: flex; flex-direction: column; }
.ds-num { font-size: 22px; font-weight: 800; color: var(--gold); font-family: var(--font-en); }
.ds-lbl { font-size: 11px; color: var(--text-mute); }
.dash-chart { width: 100%; height: 60px; }

.badge-card {
  top: 50%;
  inset-inline-end: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  animation-delay: -4s;
}
.badge-card strong { display: block; font-size: 13px; }
.badge-card small { font-size: 11px; color: var(--text-mute); }

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--border-strong);
  border-radius: 13px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ========== Sections common ========== */
section { padding: 100px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 64px; }
.kicker {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245, 198, 107, 0.1);
  border: 1px solid rgba(245, 198, 107, 0.3);
  color: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
html[lang="ar"] .section-title { line-height: 1.4; }
.section-sub {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

/* ========== About ========== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.about-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: -1;
}
.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 198, 107, 0.3);
  box-shadow: var(--shadow);
}
.ac-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(245, 198, 107, 0.12);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all var(--t-base);
}
.about-card:hover .ac-icon {
  background: var(--grad-gold);
  color: #0b1437;
  transform: scale(1.08) rotate(-5deg);
}
.about-card h3 { font-size: 19px; margin-bottom: 10px; }
.about-card p { color: var(--text-soft); font-size: 14.5px; line-height: 1.75; }

/* ========== Services ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 198, 107, 0.4);
  box-shadow: var(--shadow-lg);
}
.sc-media {
  position: relative;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.sc-media svg {
  width: 100%; height: 100%;
  transition: transform var(--t-slow);
}
.service-card:hover .sc-media svg { transform: scale(1.08); }
.sc-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 11, 31, 0.85) 100%);
  pointer-events: none;
}
.sc-badge {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  background: var(--grad-gold);
  color: #0b1437;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(245, 198, 107, 0.4);
}
.sc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.sc-body h3 { font-size: 22px; margin-bottom: 12px; }
.sc-body > p { color: var(--text-soft); font-size: 14.5px; line-height: 1.8; margin-bottom: 20px; }
.sc-feats { margin-bottom: 24px; flex: 1; }
.sc-feats li {
  position: relative;
  padding-inline-start: 28px;
  padding-block: 6px;
  color: var(--text-soft);
  font-size: 14px;
}
.sc-feats li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-gold);
  transform: translateY(-50%);
}
.sc-feats li::after {
  content: '';
  position: absolute;
  inset-inline-start: 5px;
  top: 50%;
  width: 8px;
  height: 5px;
  border-inline-start: 2px solid #0b1437;
  border-bottom: 2px solid #0b1437;
  transform: translateY(-65%) rotate(-45deg);
}
html[dir="rtl"] .sc-feats li::after { transform: translateY(-65%) rotate(-135deg) scaleX(-1); }
.sc-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  align-self: flex-start;
  padding: 10px 0;
  transition: gap var(--t-fast);
}
.sc-more:hover { gap: 14px; }
.sc-more svg { transition: transform var(--t-fast); }
html[dir="rtl"] .sc-more svg { transform: scaleX(-1); }

/* ========== Features ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature {
  padding: 36px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: all var(--t-base);
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 4px; height: 0;
  background: var(--grad-gold);
  transition: height var(--t-base);
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.feature:hover::before { height: 100%; }
.f-num {
  font-size: 46px;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .4;
  line-height: 1;
  margin-bottom: 12px;
  transition: opacity var(--t-base);
}
.feature:hover .f-num { opacity: 1; }
.feature h3 { font-size: 19px; margin-bottom: 10px; }
.feature p { color: var(--text-soft); font-size: 14.5px; line-height: 1.75; }

/* ========== Process Timeline ========== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: .35;
}
.t-step { text-align: center; position: relative; padding: 0 12px; }
.t-num {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--bg-2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-en);
  position: relative;
  z-index: 1;
  transition: all var(--t-base);
}
.t-step:hover .t-num {
  background: var(--grad-gold);
  color: #0b1437;
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.t-step h4 { font-size: 17px; margin-bottom: 8px; }
.t-step p { color: var(--text-soft); font-size: 14px; line-height: 1.7; }

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.ci-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--t-base);
}
.ci-card:hover {
  transform: translateX(0) translateY(-2px);
  border-color: rgba(245, 198, 107, 0.4);
  background: var(--surface-2);
}
.ci-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(245, 198, 107, 0.12);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ci-card > div { display: flex; flex-direction: column; }
.ci-card small { font-size: 12px; color: var(--text-mute); margin-bottom: 2px; }
.ci-card strong { font-size: 15px; font-weight: 700; }
.ci-address { cursor: default; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form h3 { font-size: 22px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label > span {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(7, 11, 31, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all var(--t-fast);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 198, 107, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.contact-form select option { background: var(--bg-2); color: var(--text); }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(40, 200, 100, 0.15);
  border: 1px solid rgba(40, 200, 100, 0.4);
  border-radius: var(--radius-sm);
  color: #4ad88a;
  font-size: 14px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

.map-wrap {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) brightness(.85); }
.map-overlay {
  position: absolute;
  bottom: 20px;
  inset-inline-start: 20px;
  background: rgba(7, 11, 31, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 340px;
}
.map-overlay strong { display: block; font-size: 16px; margin-bottom: 6px; color: var(--gold); }
.map-overlay > span { display: block; font-size: 13px; color: var(--text-soft); margin-bottom: 14px; }

/* ========== Footer ========== */
.footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border);
  padding-top: 64px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.logo-footer { margin-bottom: 16px; }
.footer-about { color: var(--text-soft); font-size: 14px; line-height: 1.8; margin-bottom: 20px; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.socials a, .socials .social-disabled {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-soft);
  display: grid;
  place-items: center;
  transition: all var(--t-fast);
  position: relative;
}
.socials a:hover { background: var(--grad-gold); color: #0b1437; transform: translateY(-3px); }

.social-disabled {
  opacity: .35;
  cursor: not-allowed;
  filter: grayscale(1);
}
.social-disabled::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7,11,31,0.95);
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
  font-size: 11px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.social-disabled:hover { opacity: .5; }
.social-disabled:hover::after { opacity: 1; }

.social-active {
  border-color: rgba(245,198,107,.35) !important;
  color: var(--gold) !important;
  box-shadow: 0 0 0 0 rgba(245,198,107,0);
  animation: socialPulse 3s infinite;
}
@keyframes socialPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,198,107,.45); }
  70%  { box-shadow: 0 0 0 8px rgba(245,198,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,198,107,0); }
}
.social-active:hover { background: var(--grad-gold) !important; color: #0b1437 !important; transform: translateY(-3px); }
.footer h4 { font-size: 16px; margin-bottom: 18px; color: var(--gold); }
.footer ul li { margin-bottom: 10px; }
.footer ul a, .ft-contact li { color: var(--text-soft); font-size: 14px; transition: color var(--t-fast); }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-mute);
}

/* ========== Float WhatsApp ========== */
.float-wa {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  width: 60px;
  height: 60px;
  background: var(--grad-gold);
  border-radius: 50%;
  color: #0b1437;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
  z-index: 90;
  animation: pulseWa 2.5s infinite;
  transition: transform var(--t-fast);
}
.float-wa:hover { transform: scale(1.1); }
@keyframes pulseWa {
  0% { box-shadow: 0 12px 32px rgba(245, 198, 107, 0.45), 0 0 0 0 rgba(245, 198, 107, 0.55); }
  70% { box-shadow: 0 12px 32px rgba(245, 198, 107, 0.45), 0 0 0 16px rgba(245, 198, 107, 0); }
  100% { box-shadow: 0 12px 32px rgba(245, 198, 107, 0.45), 0 0 0 0 rgba(245, 198, 107, 0); }
}

/* ========== Modal ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 20px;
  align-items: center;
  justify-content: center;
}
.modal.open { display: flex; animation: modalIn .3s ease; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}
.modal-box {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  font-size: 28px;
  line-height: 1;
  color: var(--text);
  transition: all var(--t-fast);
}
.modal-close:hover { background: var(--gold); color: #0b1437; }
.modal-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.modal-content .modal-lead {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 24px;
}
.modal-content h4 {
  font-size: 17px;
  margin: 24px 0 12px;
  color: var(--gold);
}
.modal-content ul { padding-inline-start: 0; }
.modal-content ul li {
  position: relative;
  padding-inline-start: 24px;
  padding-block: 6px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}
.modal-content ul li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 14px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad-gold);
}
.modal-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }

/* ========== Reveal Animation ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { height: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .timeline::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 16px; right: 16px;
    background: rgba(11, 20, 55, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    margin: 0;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--t-base);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { text-align: center; padding: 14px; }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }

  section { padding: 70px 0; }
  .hero { padding: 110px 0 60px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-visual { height: 380px; }
  .code-card { width: 92%; }
  .dash-card { width: 78%; }
  .badge-card { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .map-overlay { inset-inline-start: 10px; max-width: calc(100% - 20px); }
}

@media (max-width: 480px) {
  .section-head { margin-bottom: 44px; }
  .hero-title { font-size: 36px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .float-wa { width: 52px; height: 52px; bottom: 18px; }
  .modal-box { padding: 28px 22px; }
  .timeline { grid-template-columns: 1fr; }
}

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