/* ==========================================================================
   RUZMA.STORE — Google Gemini Pro 18-Month Landing Page
   Aesthetic: Ultra-modern Dark AI Glow / Mobile-First / RTL
   ========================================================================== */

:root {
  --bg-primary: #070a12;
  --bg-secondary: #0d1322;
  --bg-card: rgba(16, 23, 42, 0.75);
  --bg-card-hover: rgba(24, 34, 61, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(99, 102, 241, 0.35);
  --border-accent: rgba(56, 189, 248, 0.4);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --gemini-blue: #3b82f6;
  --gemini-purple: #8b5cf6;
  --gemini-cyan: #06b6d4;
  --gemini-pink: #ec4899;

  --accent-green: #10b981;
  --accent-orange: #f97316;
  --accent-red: #ef4444;

  --font-arabic: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 25px -10px rgba(59, 130, 246, 0.15);
  --shadow-glow: 0 0 35px -5px rgba(139, 92, 246, 0.4);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-arabic);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  padding-bottom: 76px; /* space for mobile sticky bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Background Ambient Glows */
.bg-ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
}

.ambient-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #3b82f6, #8b5cf6);
  top: -150px;
  right: -100px;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.ambient-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #ec4899, #6366f1);
  top: 45%;
  left: -150px;
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

.ambient-orb-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #06b6d4, #3b82f6);
  bottom: 5%;
  right: -100px;
  animation: floatOrb 20s ease-in-out infinite alternate;
}

.bg-grid-pattern {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.1); }
  100% { transform: translate(-30px, 50px) scale(0.95); }
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #facc15 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(7, 10, 18, 0.82);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-badge {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-live-badge {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

@media (min-width: 640px) {
  .header-live-badge {
    display: inline-flex;
  }
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Banner: Top Urgency Bar */
.top-notice-bar {
  background: linear-gradient(90deg, #1e1b4b, #311042, #1e1b4b);
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
  font-size: 0.84rem;
  padding: 0.45rem 1rem;
  text-align: center;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.top-notice-bar strong {
  color: #fbbf24;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 55%, #db2777 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -4px rgba(124, 58, 237, 0.65);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-pulse-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-messenger {
  background: #0084ff;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 132, 255, 0.4);
}

.btn-messenger:hover {
  background: #0073e6;
  box-shadow: 0 6px 24px rgba(0, 132, 255, 0.6);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.12rem;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
  position: relative;
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Deal Badge */
.deal-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Pricing Tag Box in Hero */
.hero-price-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.85));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.hero-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
  pointer-events: none;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.current-price {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.current-price span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #93c5fd;
  margin-right: 0.35rem;
}

.old-price {
  font-size: 1.35rem;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 600;
}

.discount-badge {
  background: #ef4444;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  vertical-align: middle;
}

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

/* 48-Hour Countdown Timer */
.countdown-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  margin-top: 0.75rem;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.84rem;
  color: #cbd5e1;
}

.countdown-header span.alert-tag {
  color: #f87171;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  direction: ltr; /* numbers stay ltr for digital clock standard */
}

.countdown-segment {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.25rem;
  text-align: center;
}

.countdown-number {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 800;
  color: #60a5fa;
  display: block;
  line-height: 1.1;
}

.countdown-label {
  font-family: var(--font-arabic);
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 600;
  margin-top: 0.15rem;
}

/* Hero Quick Perks */
.hero-quick-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

@media (min-width: 480px) {
  .hero-quick-perks {
    grid-template-columns: 1fr 1fr;
  }
}

.quick-perk-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.quick-perk-item svg {
  color: #34d399;
  flex-shrink: 0;
}

/* Hero Image Card Showcase */
.hero-media-wrapper {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8), 0 0 35px -5px rgba(59, 130, 246, 0.3);
  background: var(--bg-card);
  transition: transform 0.4s ease;
}

.hero-main-card:hover {
  transform: translateY(-4px);
}

.hero-image-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.95) 10%, rgba(7, 10, 18, 0.4) 60%, transparent 100%);
  padding: 1.5rem 1.25rem 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-badge-float {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(7, 10, 18, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Floating Trust Cards */
.floating-trust-pill {
  position: absolute;
  bottom: -1.25rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: #ecfdf5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Interactive Image Switcher Gallery */
.gallery-nav-bar {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.gallery-thumb-btn {
  flex: 1;
  min-width: 70px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.gallery-thumb-btn.active {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.2);
  color: #fff;
  font-weight: 700;
}

/* Section Common Headers */
.section {
  padding: 4rem 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #60a5fa;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.7;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6), 0 0 20px -5px rgba(99, 102, 241, 0.2);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #93c5fd;
  flex-shrink: 0;
}

.feature-card:hover .feature-icon-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  color: #ffffff;
  border-color: #8b5cf6;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-badge-mini {
  align-self: flex-start;
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Comparison Section */
.comparison-container {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(10, 15, 30, 0.95));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}

@media (min-width: 768px) {
  .comparison-container {
    padding: 2.5rem;
  }
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  min-width: 540px;
}

.comparison-table th, 
.comparison-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.comparison-table th.col-ruzma {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border-inline: 1px solid rgba(59, 130, 246, 0.3);
  font-size: 1.1rem;
}

.comparison-table td.col-ruzma {
  background: rgba(59, 130, 246, 0.04);
  border-inline: 1px solid rgba(59, 130, 246, 0.2);
  font-weight: 700;
  color: #ffffff;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:last-child td.col-ruzma {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

/* How It Works Steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.step-card h3 {
  font-size: 1.15rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Trust / Guarantee Big Banner */
.guarantee-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .guarantee-box {
    grid-template-columns: 80px 1fr auto;
    padding: 2.5rem;
  }
}

.guarantee-icon {
  width: 72px;
  height: 72px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.35);
}

.guarantee-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.guarantee-content p {
  color: #a7f3d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Visual Gallery Grid */
.gallery-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.gallery-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.7);
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-card-content {
  padding: 1.25rem;
}

.gallery-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.gallery-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Reviews / Social Proof */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.review-stars {
  color: #fbbf24;
  display: flex;
  gap: 0.25rem;
}

.review-text {
  font-size: 0.92rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

.author-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
}

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

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(20, 28, 50, 0.85);
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.4rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: #60a5fa;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.4rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Final CTA Section */
.final-cta-box {
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.25) 0%, rgba(15, 23, 42, 0.95) 75%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(124, 58, 237, 0.35);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .final-cta-box {
    padding: 4.5rem 3rem;
  }
}

.final-cta-box h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.final-cta-box p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #05070c;
  padding: 2.5rem 0 2rem;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: right;
  }
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Mobile Sticky Bottom Floating Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 99;
  background: rgba(7, 10, 18, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 1rem;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-price-col {
  display: flex;
  flex-direction: column;
}

.mobile-deal-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.mobile-deal-price span {
  font-size: 0.82rem;
  color: #60a5fa;
}

.mobile-deal-old {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

/* Modal: Order Helper & Prewritten Messenger Text */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0f172a;
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #94a3b8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.modal-title {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.modal-message-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.copy-badge-btn {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #e2e8f0;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: inherit;
  transition: all 0.2s;
}

.copy-badge-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.copy-badge-btn.copied {
  background: #10b981;
  color: #fff;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}


