/* ═══════════════════════════════════════════════
   ANUBTECH Business Suite — Premium Landing Page
   ═══════════════════════════════════════════════ */

:root {
  --gold:        #d4af37;
  --gold-light:  #e8c94f;
  --gold-dark:   #8b6b16;
  --gold-glow:   rgba(212, 175, 55, 0.18);
  --bg:          #080c14;
  --bg-card:     #0f1624;
  --bg-card2:    #111827;
  --border:      rgba(212, 175, 55, 0.15);
  --border-soft: rgba(255, 255, 255, 0.06);
  --white:       #ffffff;
  --white-80:    rgba(255,255,255,0.8);
  --white-50:    rgba(255,255,255,0.5);
  --white-20:    rgba(255,255,255,0.08);
  --text:        #c8d0e0;
  --radius:      16px;
  --radius-lg:   24px;
  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body.ar {
  font-family: 'Cairo', sans-serif;
  text-align: right;
}
body.ar .service-block { flex-direction: row-reverse; }
body.ar .service-block.reverse { flex-direction: row; }
body.ar .section-label::before { left: auto; right: 0; }
body.ar .btn-outline { direction: rtl; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
body.ar h1, body.ar h2, body.ar h3, body.ar h4 {
  font-family: 'Cairo', sans-serif;
  letter-spacing: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* ─── Reveal Animation ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ═══════════════════════ NAV ═══════════════════════ */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background: rgba(8, 12, 20, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.top-nav.scrolled .nav-inner {
  background: rgba(8, 12, 20, 0.94);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 12px 5%;
}

.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-mark.small { width: 36px; height: 36px; }
.logo-mark.contact-logo { width: 60px; height: 60px; margin: 0 auto 24px; display: block; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}
body.ar .logo-sub { letter-spacing: 0; font-size: 0.7rem; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--white-80);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.main-nav a:hover { color: var(--gold); background: var(--gold-glow); }

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

.lang-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  font-family: inherit;
}
.lang-btn:hover { background: var(--gold); color: var(--bg); }

.cta-nav-btn {
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition);
}
.cta-nav-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,175,55,0.35); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 5% 20px;
  background: rgba(8, 12, 20, 0.97);
  border-top: 1px solid var(--border);
}
.mobile-menu a { color: var(--white-80); text-decoration: none; padding: 10px 0; font-size: 1rem; border-bottom: 1px solid var(--border-soft); }
.mobile-menu.open { display: flex; }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #d4af3722, #d4af3700); top: -200px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #1c3a6b44, transparent); bottom: 0; right: -100px; animation-delay: 3s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #d4af3715, transparent); top: 50%; left: 50%; animation-delay: 5s; }

.orb-c1 { width: 500px; height: 500px; background: radial-gradient(circle, #d4af3718, transparent); top: -100px; left: -150px; animation-delay: 0s; }
.orb-c2 { width: 400px; height: 400px; background: radial-gradient(circle, #1c3a6b33, transparent); bottom: -50px; right: -100px; animation-delay: 3s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.98); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title .line { display: block; }
.hero-title .gold { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-80);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(212,175,55,0.4); }
.btn-primary.big { padding: 17px 34px; font-size: 1.05rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-secondary.big { padding: 17px 34px; font-size: 1.05rem; }

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: var(--white-20);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 18px 30px;
  backdrop-filter: blur(10px);
}
.trust-item { text-align: center; }
.trust-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.trust-label { font-size: 0.72rem; color: var(--white-50); letter-spacing: 0.03em; text-transform: uppercase; margin-top: 4px; display: block; }
.trust-divider { width: 1px; height: 36px; background: var(--border-soft); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--white-50);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 1; height: 40px; } 50% { opacity: 0.4; height: 24px; } }

/* ═══════════════════════ WHY GO ONLINE ═══════════════════════ */
.why-section { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 1px;
  background: var(--gold);
}
body.ar .section-label { padding-left: 0; padding-right: 20px; }
body.ar .section-label::before { left: auto; right: 0; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--white);
}
.section-sub { color: var(--white-50); max-width: 560px; margin-bottom: 60px; font-size: 1rem; }
body.ar .section-sub { margin: 0 auto 60px 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px var(--gold-glow); }
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 52px; height: 52px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--white); }
.why-card p { font-size: 0.88rem; color: var(--white-50); line-height: 1.7; }

/* ═══════════════════════ SERVICES ═══════════════════════ */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 50%, var(--bg) 100%);
}

.service-block {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse { flex-direction: row-reverse; }

.service-visual {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.service-icon-large {
  width: 220px; height: 220px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: var(--transition);
}
.service-icon-large::before {
  content: '';
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.15);
  animation: spinSlow 20s linear infinite;
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.service-icon-large svg { width: 100px; height: 100px; }
.service-block:hover .service-icon-large { box-shadow: 0 0 60px var(--gold-glow); border-color: var(--border); }

.service-price-badge {
  background: var(--gold);
  color: var(--bg);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-price-badge span { font-weight: 400; opacity: 0.7; }

.service-info { flex: 1; }
.service-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(212,175,55,0.08);
  line-height: 1;
  margin-bottom: -10px;
}
.service-name { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.service-desc { color: var(--white-50); line-height: 1.8; margin-bottom: 28px; font-size: 0.95rem; }
.service-desc em { color: var(--gold); font-style: normal; }

.service-packages { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.pkg {
  background: var(--bg-card2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 16px 20px;
  flex: 1;
  min-width: 140px;
  position: relative;
  transition: var(--transition);
}
.pkg:hover { border-color: var(--border); }
.featured-pkg { border-color: var(--border); background: rgba(212,175,55,0.06); }
.pkg-badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pkg-name { font-size: 0.82rem; color: var(--white-50); margin-bottom: 6px; }
.pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.3); }

/* Domain list */
.domain-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.domain-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 18px;
  transition: var(--transition);
}
.domain-item:hover { border-color: var(--border); }
.domain-ext { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); min-width: 50px; }
.domain-label { flex: 1; font-size: 0.85rem; color: var(--white-50); }
.domain-price { font-size: 0.82rem; color: var(--white-80); font-weight: 600; }

/* Email showcase */
.email-showcase {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.email-preview {
  background: var(--bg-card2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 12px 16px;
}
.email-preview.good { border-color: rgba(212,175,55,0.3); }
.email-label { display: block; font-size: 0.7rem; color: var(--white-50); margin-bottom: 4px; letter-spacing: 0.03em; text-transform: uppercase; }
.email-bad { font-size: 0.88rem; color: var(--white-50); text-decoration: line-through; }
.email-good { font-size: 0.88rem; color: var(--gold); font-weight: 600; }
.email-arrow { font-size: 1.4rem; color: var(--gold); }
.email-pkg { font-size: 0.85rem; color: var(--white-50); margin-bottom: 28px; }
.email-pkg strong { color: var(--gold); }

/* ═══════════════════════ DEMOS ═══════════════════════ */
.demos-section { padding: 100px 0; }

.demos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.demo-card:hover { transform: translateY(-8px); border-color: var(--border); box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px var(--gold-glow); }

.demo-screen {
  height: 200px;
  position: relative;
  overflow: hidden;
  padding: 16px;
}

/* Corporate screen */
.demo-screen.corporate { background: linear-gradient(135deg, #0d1520, #1a2540); }
.ds-nav { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.ds-logo { display: block; width: 60px; height: 8px; background: var(--gold); border-radius: 4px; opacity: 0.7; }
.ds-links { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.ds-hero .ds-title { width: 70%; height: 14px; background: rgba(255,255,255,0.8); border-radius: 4px; margin-bottom: 8px; }
.ds-hero .ds-sub { width: 50%; height: 8px; background: rgba(255,255,255,0.3); border-radius: 4px; margin-bottom: 14px; }
.ds-hero .ds-btn { width: 80px; height: 22px; background: var(--gold); border-radius: 11px; opacity: 0.8; }
.ds-cards { display: flex; gap: 8px; margin-top: 16px; }
.ds-cards span { flex: 1; height: 28px; background: rgba(255,255,255,0.06); border-radius: 6px; border: 1px solid rgba(212,175,55,0.15); }

/* Restaurant screen */
.demo-screen.restaurant { padding: 0; background: #1a0f08; }
.ds-hero-img { width: 100%; height: 120px; background: linear-gradient(135deg, #3d1f0a, #6b3010, #3d1f0a); position: relative; }
.ds-hero-img::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='50%25' cy='50%25' rx='40' ry='25' fill='%23d4af3720'/%3E%3C/svg%3E") center/cover; }
.ds-overlay { padding: 10px 16px; }
.ds-title.dark { width: 60%; height: 10px; background: rgba(255,255,255,0.7); border-radius: 4px; margin-bottom: 6px; }
.ds-sub.dark { width: 40%; height: 7px; background: rgba(255,255,255,0.3); border-radius: 4px; }
.ds-menu-row { display: flex; gap: 8px; padding: 8px 16px; }
.ds-menu-row span { flex: 1; height: 18px; background: rgba(212,175,55,0.15); border-radius: 4px; border: 1px solid rgba(212,175,55,0.2); }

/* Medical screen */
.demo-screen.medical { background: linear-gradient(135deg, #071520, #0e2337); }
.ds-med-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.ds-cross { font-size: 1.4rem; color: #4fc3f7; line-height: 1; }
.ds-med-header span { flex: 1; height: 8px; background: rgba(79,195,247,0.2); border-radius: 4px; }
.ds-med-body { display: flex; gap: 12px; }
.ds-appt { flex: 1; height: 100px; background: rgba(79,195,247,0.06); border: 1px solid rgba(79,195,247,0.15); border-radius: 10px; }
.ds-services { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ds-services span { flex: 1; background: rgba(79,195,247,0.06); border: 1px solid rgba(79,195,247,0.1); border-radius: 8px; }

/* Event screen */
.demo-screen.event { background: linear-gradient(135deg, #1a0f24, #2d1545); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.ds-event-top { width: 80px; height: 3px; background: linear-gradient(90deg, #f59e0b, #ec4899); border-radius: 2px; }
.ds-event-title { width: 60%; height: 14px; background: rgba(255,255,255,0.8); border-radius: 4px; }
.ds-event-date { width: 40%; height: 8px; background: rgba(245,158,11,0.5); border-radius: 4px; }
.ds-event-btn { width: 90px; height: 26px; background: linear-gradient(90deg, #f59e0b, #ec4899); border-radius: 13px; opacity: 0.85; }

/* E-commerce screen */
.demo-screen.ecommerce { background: linear-gradient(135deg, #0a1520, #0f1f30); }
.ds-shop-nav { width: 100%; height: 16px; background: rgba(255,255,255,0.05); border-radius: 4px; margin-bottom: 16px; }
.ds-products { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.ds-products span { height: 50px; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid var(--border-soft); }
.ds-cart-btn { width: 100%; height: 22px; background: var(--gold); border-radius: 8px; opacity: 0.7; }

.demo-info { padding: 20px 24px; }
.demo-info h4 { font-size: 1.05rem; margin-bottom: 6px; }
.demo-info p { font-size: 0.82rem; color: var(--white-50); }

/* CTA demo card */
.cta-demo {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
  border-color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-demo-inner { text-align: center; padding: 40px 24px; }
.cta-demo-icon { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--gold); }
.cta-demo-icon svg { width: 28px; height: 28px; }
.cta-demo-inner h4 { font-size: 1.1rem; margin-bottom: 8px; }
.cta-demo-inner p { font-size: 0.85rem; color: var(--white-50); margin-bottom: 20px; }
.btn-gold-sm {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-gold-sm:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ═══════════════════════ WHY US ═══════════════════════ */
.why-us-section {
  padding: 100px 0;
  background: var(--bg-card);
  position: relative;
}
.why-us-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.why-us-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.why-us-card:hover { border-color: var(--border); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.wuc-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.why-us-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }
.why-us-card p { font-size: 0.85rem; color: var(--white-50); line-height: 1.7; }

/* ═══════════════════════ CONTACT ═══════════════════════ */
.contact-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-inner { position: relative; z-index: 1; }

.contact-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}
.contact-sub { color: var(--white-50); margin-bottom: 40px; font-size: 1rem; }
.contact-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.contact-meta { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 0.85rem; color: var(--white-50); }
.contact-meta span { display: flex; align-items: center; gap: 6px; }

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--white-50); line-height: 1.7; max-width: 320px; }
.footer-links h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-links a { display: block; color: var(--white-50); text-decoration: none; font-size: 0.85rem; margin-bottom: 10px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--white-50);
  flex-wrap: wrap;
  gap: 10px;
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .service-block { flex-direction: column; gap: 40px; }
  .service-block.reverse { flex-direction: column; }
  body.ar .service-block.reverse { flex-direction: column; }
  .service-visual { width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .cta-nav-btn { display: none; }
  .burger { display: flex; }
  .hero-trust { flex-direction: column; gap: 16px; padding: 20px; }
  .trust-divider { width: 60px; height: 1px; }
  .demos-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-meta { flex-direction: column; gap: 10px; }
  .service-packages { flex-direction: column; }
  .email-showcase { flex-direction: column; align-items: flex-start; }
  .email-arrow { transform: rotate(90deg); }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .contact-btns { flex-direction: column; align-items: center; }
  .hero-badge { font-size: 0.72rem; text-align: center; }
}


.demo-link{
  text-decoration:none;
  color:inherit;
  display:block;
}
