/* ===================================================
   ELITE 4 HOST — النخبة للاستضافة
   Luxury CSS Design System
   =================================================== */

/* ─── Google Fonts Import ─── */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CSS Variables ─── */
:root {
  /* Colors */
  --gold-primary:     #C9A96E;
  --gold-light:       #FFD700;
  --gold-dark:        #A07840;
  --gold-shine:       #F5E4B0;
  --navy-dark:        #030712;
  --navy-mid:         #0A0F2C;
  --navy-light:       #111827;
  --navy-card:        #0D1535;
  --white:            #FFFFFF;
  --white-soft:       #F1F5F9;
  --text-muted:       #94A3B8;
  --border-glass:     rgba(201, 169, 110, 0.2);
  --glass-bg:         rgba(13, 21, 53, 0.6);

  /* Grid Pattern */
  --hero-grid-pattern: linear-gradient(rgba(201, 169, 110, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 169, 110, 0.1) 1px, transparent 1px);

  /* Gradients */
  --grad-gold:        linear-gradient(135deg, #C9A96E 0%, #FFD700 50%, #C9A96E 100%);
  --grad-gold-soft:   linear-gradient(135deg, #A07840 0%, #C9A96E 50%, #FFD700 100%);
  --grad-navy:        linear-gradient(135deg, #030712 0%, #0A0F2C 50%, #111827 100%);
  --grad-card:        linear-gradient(145deg, rgba(13,21,53,0.9), rgba(3,7,18,0.95));
  --grad-hero:        radial-gradient(ellipse at 50% 0%, #1a1040 0%, #030712 70%);

  /* Shadows */
  --shadow-gold:      0 0 30px rgba(201, 169, 110, 0.3);
  --shadow-gold-lg:   0 0 60px rgba(201, 169, 110, 0.4), 0 20px 60px rgba(0,0,0,0.5);
  --shadow-card:      0 20px 60px rgba(0,0,0,0.4), 0 1px 0 rgba(201,169,110,0.1) inset;
  --shadow-btn:       0 8px 32px rgba(201, 169, 110, 0.4);

  /* Typography */
  --font-ar:          'Tajawal', sans-serif;
  --font-en:          'Poppins', sans-serif;

  /* Spacing */
  --section-py:       100px;
  --container-max:    1280px;

  /* Transitions */
  --trans-smooth:     all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-bounce:     all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  font-family: var(--font-ar);
  background-color: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection {
  background: var(--gold-primary);
  color: var(--navy-dark);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 3px;
}

/* ─── Container ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.85rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-en);
  font-weight: 600;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.section-title .gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Gold Divider ─── */
.gold-divider {
  width: 80px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: 16px auto 40px;
  position: relative;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
}

.gold-divider::before { right: -12px; }
.gold-divider::after  { left: -12px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-ar);
  text-decoration: none;
  transition: var(--trans-smooth);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--grad-gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-btn);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn);
}

.btn-glass {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--trans-smooth);
}

.navbar.scrolled {
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo img {
  height: 52px;
  width: auto;
  border-radius: 8px;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-logo-text .name-ar {
  font-size: 1rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-logo-text .name-en {
  font-size: 0.72rem;
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-nav a {
  display: block;
  padding: 8px 16px;
  color: var(--white-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--trans-smooth);
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 16px;
  left: 16px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: right;
}

.navbar-nav a:hover {
  color: var(--gold-primary);
  background: rgba(201, 169, 110, 0.08);
}

.navbar-nav a:hover::after {
  transform: scaleX(1);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--trans-smooth);
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
}

/* Grid pattern overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}


.hero-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-stars::before,
.hero-stars::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow:
    120px 30px #fff, 250px 80px #fff, 40px 150px rgba(255,255,255,0.5),
    320px 200px #fff, 500px 50px rgba(255,255,255,0.7), 650px 120px #fff,
    780px 40px rgba(255,255,255,0.4), 900px 180px #fff, 1050px 60px rgba(255,255,255,0.8),
    1150px 220px #fff, 200px 300px rgba(255,255,255,0.3), 380px 380px #fff,
    550px 320px rgba(255,255,255,0.6), 720px 280px #fff, 850px 360px rgba(255,255,255,0.5),
    1000px 400px #fff, 70px 450px rgba(255,255,255,0.7), 450px 500px #fff,
    620px 480px rgba(255,255,255,0.4), 800px 520px #fff, 980px 450px rgba(255,255,255,0.6),
    1120px 480px #fff, 160px 580px rgba(255,255,255,0.5), 330px 620px #fff;
  animation: drift-stars 80s linear infinite;
}

.hero-stars::after {
  box-shadow:
    80px 100px rgba(255,255,255,0.4), 220px 220px #fff, 410px 140px rgba(255,255,255,0.6),
    590px 260px #fff, 740px 80px rgba(255,255,255,0.3), 880px 310px #fff,
    1020px 160px rgba(255,255,255,0.7), 1180px 90px #fff, 130px 420px rgba(255,255,255,0.5),
    300px 480px #fff, 480px 440px rgba(255,255,255,0.4), 660px 560px #fff,
    820px 440px rgba(255,255,255,0.6), 960px 380px #fff, 1100px 540px rgba(255,255,255,0.3);
  animation-delay: -40s;
  animation-duration: 100s;
}

@keyframes drift-stars {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-60px) translateX(20px); }
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100,80,200,0.12) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -2s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 32px;
  animation: slide-down 0.8s ease;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.hero-badge .star-icon {
  color: var(--gold-light);
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: slide-up 0.8s ease 0.2s both;
}

.hero-title .line-1 { display: block; color: var(--white); }
.hero-title .line-2 {
  display: block;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-3 { display: block; color: var(--white-soft); font-size: 0.8em; }

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: slide-up 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: slide-up 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  animation: slide-up 0.8s ease 0.8s both;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  animation: bounce-slow 2s ease-in-out infinite;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-primary));
}

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

/* ─── Section Styles ─── */
section {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ─── Services Section ─── */
.services {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--grad-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  transition: var(--trans-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: right;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 1; }

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: var(--trans-smooth);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: rgba(201, 169, 110, 0.2);
  border-color: var(--gold-primary);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-features li::before {
  content: '✦';
  color: var(--gold-primary);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 28px;
  text-decoration: none;
  transition: var(--trans-smooth);
  position: relative;
  z-index: 1;
}

.service-link:hover { gap: 12px; color: var(--gold-light); }

/* ─── Products Section ─── */
.products-section {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.products-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(201,169,110,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(100,120,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Price Strip */
.products-price-strip {
  background: linear-gradient(135deg, rgba(201,169,110,0.1), rgba(255,215,0,0.08), rgba(201,169,110,0.1));
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 16px;
  padding: 18px 32px;
  margin-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.price-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: var(--white-soft);
  font-weight: 500;
}

.strip-icon {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.strip-price {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.strip-price small {
  font-size: 0.85rem;
  font-family: var(--font-ar);
  font-weight: 600;
  -webkit-text-fill-color: var(--gold-primary);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

/* Product Card */
.product-card {
  background: var(--grad-card);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 28px;
  overflow: hidden;
  transition: var(--trans-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(201,169,110,0.15);
}

.product-card:hover::before { opacity: 1; }

/* Product Header */
.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  background: rgba(255,255,255,0.02);
}

.product-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
}

.dental-badge {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #22D3EE;
}

.furniture-badge {
  background: rgba(180, 120, 50, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--gold-primary);
}

.product-price-tag {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.product-price-amount {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.product-price-currency {
  font-size: 0.9rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.product-price-period {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Browser Mockup / Screenshot */
.product-screenshot-wrap {
  position: relative;
  padding: 20px 20px 0;
}

.product-screenshot-frame {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
}

.browser-bar {
  background: #1e2535;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red    { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green  { background: #28C840; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-family: var(--font-en);
  color: var(--text-muted);
  text-align: center;
}

.product-screenshot-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s ease;
}

.product-card:hover .product-screenshot-img {
  transform: scale(1.03);
}

.product-screenshot-glow {
  position: absolute;
  bottom: 0;
  right: 20px;
  left: 20px;
  height: 80px;
  pointer-events: none;
}

.dental-glow {
  background: linear-gradient(to top, rgba(13,21,53,0.9), transparent);
}

.furniture-glow {
  background: linear-gradient(to top, rgba(13,21,53,0.9), transparent);
}

/* Product Body */
.product-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Features Grid */
.product-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 9px 12px;
  transition: var(--trans-smooth);
}

.pf-item:hover {
  border-color: rgba(201,169,110,0.2);
  color: var(--white-soft);
  background: rgba(201,169,110,0.05);
}

.pf-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* Includes Tags */
.product-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.include-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.8rem;
  color: var(--gold-primary);
  font-weight: 600;
}

/* Product CTA */
.product-cta {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

.product-btn {
  flex: 1;
  justify-content: center;
  min-width: 160px;
  gap: 8px;
}

.product-btn-outline {
  flex: 0 0 auto;
  padding: 14px 20px;
  font-size: 0.9rem;
}

/* Products Bottom Note */
.products-bottom-note {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.note-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.note-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.note-content strong {
  font-size: 1rem;
  color: var(--white);
}

.note-content span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive Products */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .product-features-grid {
    grid-template-columns: 1fr;
  }
  .product-btn {
    min-width: 100%;
  }
  .products-bottom-note {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── Pricing Section ─── */
.pricing {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 100%, rgba(201,169,110,0.05) 0%, transparent 60%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--grad-card);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: var(--trans-smooth);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(20, 30, 70, 0.95), rgba(13, 21, 53, 0.98));
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: var(--shadow-gold-lg);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 24px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 20px 0;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-currency {
  font-size: 1.2rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-soft);
  font-size: 0.9rem;
}

.plan-features .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.plan-features .cross {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.plan-features li.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

/* ─── Features / Why Us ─── */
.features {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  position: relative;
}

.features-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-image-side {
  position: relative;
}

.features-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.features-image-frame img {
  width: 100%;
  border-radius: 24px;
}

.features-floating-card {
  position: absolute;
  background: rgba(13, 21, 53, 0.9);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.features-floating-card.card-1 {
  bottom: -20px;
  right: -20px;
  animation: float-card 4s ease-in-out infinite;
}

.features-floating-card.card-2 {
  top: -20px;
  left: -20px;
  animation: float-card 4s ease-in-out infinite 2s;
}

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

.floating-icon {
  font-size: 1.8rem;
}

.floating-text strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.floating-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 110, 0.08);
  background: rgba(13, 21, 53, 0.5);
  transition: var(--trans-smooth);
}

.feature-item:hover {
  border-color: rgba(201, 169, 110, 0.25);
  background: rgba(13, 21, 53, 0.8);
  transform: translateX(-4px);
  box-shadow: 4px 0 0 var(--gold-primary);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Testimonials ─── */
.testimonials {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 40px;
  right: 10%;
  font-size: 20rem;
  font-family: var(--font-en);
  color: rgba(201, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--grad-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  transition: var(--trans-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-en);
}

.testimonial-text {
  color: var(--white-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--gold-light);
  font-size: 1rem;
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, rgba(20, 30, 70, 0.95) 0%, rgba(13, 21, 53, 0.98) 100%);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold-lg);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--grad-gold);
}

.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% -50%, rgba(201,169,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Tech Stack Strip ─── */
.tech-strip {
  padding: 40px 0;
  background: rgba(13, 21, 53, 0.5);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  overflow: hidden;
}

.tech-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.tech-track:hover { animation-play-state: paused; }

.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--trans-smooth);
  flex-shrink: 0;
}

.tech-item:hover { color: var(--gold-primary); }

.tech-item .tech-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Footer ─── */
.footer {
  background: #020510;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-brand .footer-logo img {
  height: 48px;
  border-radius: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--trans-smooth);
}

.social-link:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--trans-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--gold-primary);
  font-size: 1rem;
}

.footer-col ul li a:hover {
  color: var(--gold-primary);
  padding-right: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.footer-contact-item .icon {
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom .gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ─── Animations ─── */
@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-image-side { display: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .navbar-nav,
  .navbar-cta { display: none; }

  .hamburger { display: flex; }

  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    padding: 80px 24px 32px;
    border-left: 1px solid rgba(201, 169, 110, 0.2);
    z-index: 999;
  }

  .hero-stats { gap: 28px; }
  .stat-number { font-size: 2rem; }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-box { padding: 48px 24px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
