/* ==========================================================================
   بعض العناية - Ultimate Responsive Design
   Mobile-First Approach | All Devices Compatible
   ========================================================================== */

/* CSS Variables */
:root {
  --blue: #00E6FF;
  --green: #4C3CF0;
  --text: #1F2A39;
  --bg: #FFFFFF;
  --muted: #6b7a90;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(31,42,57,.1);
  --accent: #1F2A39;
  --gradient: linear-gradient(135deg, #00E6FF 0%, #4C3CF0 100%);
}

/* ==========================================================================
   RESET & BASE - Mobile First
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography - Fluid */
h1, h2, h3, h4, h5, h6 {
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 0.5em;
  word-wrap: break-word;
}

h1 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
h2 { font-size: clamp(1.3rem, 5vw, 2rem); }
h3 { font-size: clamp(1rem, 4vw, 1.25rem); }

p {
  margin-bottom: 1rem;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--green);
  transition: color 0.2s ease;
}

a:hover { color: var(--blue); }

ul { list-style: none; }

/* ==========================================================================
   LAYOUT - Responsive Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 480px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

section {
  padding: 50px 0;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  section { padding: 70px 0; }
}

@media (min-width: 1024px) {
  section { padding: 90px 0; }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus { top: 10px; }

/* ==========================================================================
   SLIDER - Professional & Modern
   ========================================================================== */
.slider-section {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
}

.slider-wrapper {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  position: relative;
}

.slider-slide img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
}

@media (min-width: 768px) {
  .slider-slide img {
    height: 400px;
  }
}

@media (min-width: 1200px) {
  .slider-slide img {
    height: 500px;
  }
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0,230,255,0.5);
}

.slider-nav.prev { right: 16px; }
.slider-nav.next { left: 16px; }

@media (min-width: 768px) {
  .slider-nav { width: 56px; height: 56px; }
  .slider-nav.prev { right: 30px; }
  .slider-nav.next { left: 30px; }
}

.slider-nav svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255,255,255,0.8);
  transform: scale(1.15);
}

.slider-dot.active {
  background: var(--blue);
  border-color: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(0,230,255,0.8);
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  width: 0%;
  z-index: 15;
  border-radius: 0 2px 2px 0;
}

/* ==========================================================================
   FEATURED VIDEO SECTION
   ========================================================================== */
.featured-video-section {
  padding: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
}

.featured-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
}

.featured-video {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.featured-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  text-align: center;
}

.featured-video-overlay h2 {
  color: #fff;
  font-size: clamp(1.3rem, 4vw, 2rem);
  margin-bottom: 8px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.featured-video-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  margin: 0 0 20px 0;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.play-sound-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 230, 255, 0.4);
}

.play-sound-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 230, 255, 0.6);
}

.play-sound-btn svg {
  width: 24px;
  height: 24px;
}

.featured-video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

@media (min-width: 768px) {
  .featured-video-wrapper {
    border-radius: 16px;
    margin: 30px auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  
  .featured-video-overlay {
    padding: 50px 30px;
  }
}

@media (min-width: 1024px) {
  .featured-video-section {
    padding: 40px 20px;
  }
  
  .featured-video {
    max-height: 600px;
  }
}

/* ==========================================================================
   HEADER - Fully Responsive
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  min-height: 60px;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 12px 0;
    min-height: 70px;
  }
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  max-width: 60%;
}

.brand img {
  height: 52px;
  width: auto;
  border-radius: 0;
}

@media (min-width: 480px) {
  .brand img { height: 58px; }
}

@media (min-width: 768px) {
  .brand img { height: 64px; }
  .brand { max-width: none; }
}

.brand-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  line-height: 1.3;
}

@media (min-width: 480px) {
  .brand-name { font-size: 0.95rem; }
}

.brand-tag {
  display: none;
  font-size: 0.7rem;
  color: var(--muted);
}

@media (min-width: 480px) {
  .brand-tag { display: block; }
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
  transition: all 0.2s;
}

.site-nav a:hover {
  background: rgba(0, 230, 255, 0.1);
  color: var(--green);
}

.site-nav .btn-login {
  background: transparent;
  border: 1px solid rgba(0, 230, 255, 0.5);
  color: #00e6ff;
  padding: 8px 16px;
}

.site-nav .btn-login:hover {
  background: rgba(0, 230, 255, 0.1);
  border-color: #00ff9d;
}

.site-nav .btn-login.logged-in {
  background: rgba(0, 255, 157, 0.1);
  border-color: #00ff9d;
  color: #00ff9d;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  z-index: 2147483647;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:active {
  background: var(--bg);
  transform: scale(0.95);
}

.nav-toggle.active {
  background: var(--blue);
}

.nav-toggle.active span {
  background: #fff;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: all 0.3s;
}

/* Mobile Menu */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex !important;
  }
  
  .site-nav {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 24px 40px;
    box-shadow: -10px 0 50px rgba(0,0,0,0.5);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    gap: 0;
    overflow-y: auto;
  }
  
  .site-nav.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .site-nav a {
    padding: 18px 16px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a2e !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    display: block;
    text-align: right;
  }
  
  .site-nav a:hover,
  .site-nav a:focus {
    background: rgba(0, 255, 157, 0.15);
    color: #00cc7a !important;
  }
  
  .site-nav .btn {
    margin-top: 20px;
    text-align: center;
    background: linear-gradient(135deg, #00ff9d, #00e6ff) !important;
    color: #0a0a1a !important;
    border: none !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
  }
  
  .site-nav .btn-login {
    background: transparent !important;
    border: 2px solid #00cc7a !important;
    color: #00cc7a !important;
    margin-top: 10px;
  }
}

@media (min-width: 901px) {
  .nav-toggle { display: none; }
}

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9998;
  border: none;
  cursor: pointer;
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

body.nav-open { overflow: hidden; }

/* ==========================================================================
   BUTTONS - Touch Friendly
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  min-height: 48px; /* Touch friendly */
  width: 100%;
}

@media (min-width: 480px) {
  .btn { width: auto; }
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 230, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 230, 255, 0.4);
  color: #fff;
}

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

.btn-outline:hover {
  background: rgba(0, 230, 255, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #22c55e;
  color: #fff;
}

/* ==========================================================================
   HERO SECTION - Responsive
   ========================================================================== */
.hero {
  padding: 50px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 70px 0 70px; }
}

@media (min-width: 1024px) {
  .hero { padding: 90px 0 90px; }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(0,230,255,0.12), rgba(76,60,240,0.12));
  padding: 8px 16px;
  border-radius: 25px;
}

@media (min-width: 480px) {
  .eyebrow { font-size: 0.85rem; }
}

.hero h1 {
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}

@media (min-width: 900px) {
  .hero h1 { text-align: right; }
}

.lede, .seo-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.8;
}

.seo-intro {
  font-size: 1.05rem;
}

.hero-price {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 24px;
  text-align: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(0,230,255,0.08), rgba(0,255,157,0.08));
  border-radius: 12px;
  border-right: 4px solid var(--blue);
}

@media (min-width: 900px) {
  .lede, .seo-intro, .hero-price { text-align: right; }
}

@media (min-width: 768px) {
  .lede, .seo-intro { font-size: 1rem; }
  .seo-intro { font-size: 1.1rem; }
  .hero-price { font-size: 1.15rem; }
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

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

.metrics li {
  background: #fff;
  padding: 16px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 230, 255, 0.15);
  box-shadow: 0 4px 15px rgba(31, 42, 57, 0.06);
  text-align: center;
}

.metrics span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .metrics span { font-size: 1.75rem; }
}

/* Hero Media */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

.hero-media img {
  max-width: 100%;
  width: 280px;
  height: auto;
  border-radius: 0;
}

@media (min-width: 480px) {
  .hero-media img { width: 320px; }
}

@media (min-width: 768px) {
  .hero-media img { width: 360px; }
}

/* Card Highlight */
.card-highlight {
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(76, 60, 240, 0.1);
  margin-top: 16px;
  width: 100%;
  max-width: 280px;
}

@media (min-width: 900px) {
  .card-highlight {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
  }
}

.card-highlight p {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.9rem;
}

.card-highlight span {
  font-size: 0.8rem;
  color: var(--green);
}

/* ==========================================================================
   SECTION COMPONENTS
   ========================================================================== */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
  padding: 0 8px;
}

@media (min-width: 768px) {
  .section-head { margin-bottom: 45px; }
}

.section-head p { color: var(--muted); }

.section-alt { background: #f8fbff; }

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

@media (min-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Card */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(76, 60, 240, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 768px) {
  .card { padding: 24px; }
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(31, 42, 57, 0.12);
}

/* Service Cards */
#services .card {
  text-align: center;
  padding: 24px 16px;
}

#services .card .icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  #services .card .icon { font-size: 2.5rem; }
}

#services .card h3 {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 1rem;
}

#services .card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ==========================================================================
   PROCESS / TIMELINE
   ========================================================================== */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(4, 1fr); }
}

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(76, 60, 240, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

@media (min-width: 768px) {
  .step { padding: 24px; }
}

.step:hover { transform: translateY(-4px); }

.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.portfolio-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(76, 60, 240, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(31, 42, 57, 0.15);
}

.portfolio-card picture {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
  padding: 16px;
}

.portfolio-card picture img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.portfolio-card:hover picture img {
  transform: scale(1.03);
}

.portfolio-card > div {
  padding: 16px;
}

@media (min-width: 768px) {
  .portfolio-card > div { padding: 20px; }
}

.portfolio-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.portfolio-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.testimonials .card {
  padding: 20px;
}

.testimonials .card p {
  font-style: italic;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.testimonials .card span {
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ==========================================================================
   CTA / CONTACT SECTION
   ========================================================================== */
.cta {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.cta-grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

@media (min-width: 900px) {
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
  }
}

.cta-list {
  color: var(--muted);
  margin-top: 16px;
}

.cta-list li {
  padding: 12px 0;
  padding-right: 36px;
  position: relative;
  border-bottom: 1px solid rgba(76, 60, 240, 0.08);
  font-size: 0.95rem;
}

.cta-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ==========================================================================
   CONTACT FORM - Fully Responsive
   ========================================================================== */
.contact-form {
  width: 100%;
}

.form-modern {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 480px) {
  .form-modern { padding: 24px; }
}

@media (min-width: 768px) {
  .form-modern { padding: 28px; }
}

.form-modern label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}

.form-modern input,
.form-modern textarea,
.form-modern select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(31, 42, 57, 0.15);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px; /* Prevents zoom on iOS */
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-modern input:focus,
.form-modern textarea:focus,
.form-modern select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 230, 255, 0.15);
}

.form-modern select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7a90' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.form-modern textarea {
  min-height: 100px;
  resize: vertical;
}

.form-modern button {
  margin-top: 8px;
  width: 100%;
}

.form-modern small {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Form Grid on Desktop */
@media (min-width: 600px) {
  .form-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  
  .form-modern label:nth-child(4),
  .form-modern button,
  .form-modern small {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
#faq .cards-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 600px) {
  #faq .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

#faq .card {
  padding: 18px;
}

@media (min-width: 768px) {
  #faq .card { padding: 22px; }
}

#faq .card h3 {
  color: var(--green);
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

#faq .card h3::before {
  content: "؟";
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  background: var(--gradient);
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

#faq .card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #1F2A39 0%, #161d27 100%);
  color: #f5f5f5;
  padding: 40px 0 25px;
}

@media (min-width: 768px) {
  .site-footer { padding: 50px 0 30px; }
}

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

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

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

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-grid h3 {
  color: var(--blue);
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer a {
  color: #f5f5f5;
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
}

.site-footer a:hover { color: var(--blue); }

.site-footer a[href^="tel:"] {
  font-weight: 700;
  direction: ltr;
  text-align: right;
}

.footer-social p {
  color: var(--blue);
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

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

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  padding: 0 !important;
}

.social-link.linkedin {
  background: #0077b5;
  color: #fff;
}

.social-link.linkedin:hover {
  background: #005f8d;
  transform: translateY(-3px);
  color: #fff;
}

.social-link.whatsapp {
  background: #25d366;
  color: #fff;
}

.social-link.whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  color: #fff;
}

.social-link.x-twitter {
  background: #000;
  color: #fff;
}

.social-link.x-twitter:hover {
  background: #333;
  transform: translateY(-3px);
  color: #fff;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #d97f2a 0%, #c95a33 25%, #bf2239 50%, #b31f5a 75%, #a3157a 100%);
  transform: translateY(-3px);
  color: #fff;
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   FAB BUTTONS - Touch Friendly
   ========================================================================== */
.fab-container {
  position: fixed;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}

@media (min-width: 768px) {
  .fab-container {
    bottom: 24px;
    left: 24px;
    gap: 12px;
  }
}

.whatsapp-fab,
.phone-fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 768px) {
  .whatsapp-fab,
  .phone-fab {
    width: 56px;
    height: 56px;
  }
}

.whatsapp-fab {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.phone-fab {
  background: #007AFF;
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.phone-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.5);
}

.phone-fab svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   VIDEO FRAME
   ========================================================================== */
.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f8fbff;
  width: 100%;
}

.video-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.video-frame > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   ARTICLES PAGE
   ========================================================================== */
.hero-articles {
  padding-top: 80px;
  background: linear-gradient(180deg, rgba(0, 230, 255, 0.05) 0%, #fff 100%);
}

@media (min-width: 768px) {
  .hero-articles { padding-top: 100px; }
}

.filters {
  padding: 16px 0;
}

.filters-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

@media (min-width: 600px) {
  .filters-bar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
  }
}

.filters-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  border: 1px solid rgba(31, 42, 57, 0.12);
  background: #f8fbff;
  color: var(--accent);
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-size: 0.85rem;
  flex: 1;
  min-width: 100px;
  text-align: center;
}

@media (min-width: 600px) {
  .filter-btn {
    flex: none;
    min-width: auto;
  }
}

.filter-btn.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.article-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(31, 42, 57, 0.06);
  box-shadow: var(--shadow);
  min-height: 200px;
  transition: transform 0.25s;
}

@media (min-width: 768px) {
  .article-card { padding: 22px; }
}

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

.article-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--gradient);
  padding: 5px 10px;
  border-radius: 6px;
  align-self: flex-start;
}

.article-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.article-card p {
  color: var(--muted);
  font-size: 0.85rem;
  flex: 1;
  margin-bottom: 0;
  line-height: 1.5;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(31, 42, 57, 0.06);
}

.article-meta a { color: var(--blue); }

/* Insights */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.insight-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(31, 42, 57, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s;
}

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

.insight-card h3 { font-size: 0.95rem; }

.insight-card p {
  color: var(--muted);
  font-size: 0.85rem;
  flex: 1;
  margin-bottom: 0;
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
}

.insight-meta a { color: var(--blue); }

/* ==========================================================================
   ARTICLE PAGE
   ========================================================================== */
.article-page {
  width: 100%;
  max-width: 860px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .article-page {
    padding: 36px;
    margin: 45px auto;
    border-radius: 20px;
  }
}

.article-page header p {
  color: var(--muted);
  margin-top: 10px;
}

.article-page section { margin: 20px 0; }

.article-page .visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 500px) {
  .article-page .visuals { grid-template-columns: repeat(2, 1fr); }
}

.article-page .visuals figure {
  background: #fff;
  border: 1px solid rgba(31, 42, 57, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
}

.article-page .visuals figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
}

.article-page .related-articles ul {
  list-style: disc;
  padding-inline-start: 20px;
}

.article-page .related-articles li { margin: 6px 0; }

.article-page .cta {
  background: #f8fbff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.article-page .faq details {
  background: #fff;
  border: 1px solid rgba(31, 42, 57, 0.1);
  border-radius: 10px;
  padding: 12px;
  margin: 8px 0;
}

.article-page .faq summary {
  cursor: pointer;
  font-weight: 700;
}

.article-page .faq details[open] { box-shadow: var(--shadow); }

.article-page .table-wrap { overflow-x: auto; }

.article-page table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.article-page th,
.article-page td {
  padding: 10px;
  border-bottom: 1px solid rgba(31, 42, 57, 0.1);
  text-align: start;
  font-size: 0.9rem;
}

.article-page thead th { background: #f8fbff; }

.article-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .article-actions {
    flex-direction: row;
    justify-content: space-between;
  }
}

.article-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.back-link {
  background: #f8fbff;
  color: var(--accent);
  border: 1px solid rgba(31, 42, 57, 0.1);
}

.back-link::before { content: "←"; }
.back-link:hover { background: #e8f4ff; }

.home-link {
  background: var(--blue);
  color: #fff;
}

.home-link:hover {
  background: #00d4eb;
  color: #fff;
}

/* ==========================================================================
   PROMO TOP BAR
   ========================================================================== */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 10px 15px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.promo-bar.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-fire {
  font-size: 1.3rem;
  animation: pulse-fire 1s ease-in-out infinite;
}

@keyframes pulse-fire {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.promo-text {
  text-align: center;
}

.promo-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

.timer-label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.timer-digits {
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #00e6ff;
  letter-spacing: 1px;
}

.promo-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.promo-close {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  padding: 5px;
}

.promo-close:hover {
  opacity: 1;
}

/* Adjust header when promo bar is visible */
body:has(.promo-bar:not(.hidden)) .site-header {
  top: 52px;
}

body:has(.promo-bar:not(.hidden)) {
  padding-top: 52px;
}

@media (max-width: 768px) {
  .promo-bar {
    padding: 10px 35px 10px 10px;
    font-size: 0.75rem;
  }
  
  .promo-content {
    gap: 8px;
    flex-wrap: nowrap;
  }
  
  .promo-fire {
    font-size: 1rem;
  }
  
  .promo-timer {
    display: flex !important;
    padding: 4px 10px;
    font-size: 0.7rem;
    background: rgba(0, 230, 255, 0.2);
    border-radius: 15px;
  }
  
  .timer-label {
    display: none;
  }
  
  .timer-digits {
    font-size: 0.9rem;
    font-weight: 700;
  }
  
  .promo-text {
    font-size: 0.7rem;
    flex: 1;
  }
  
  .promo-text strong {
    color: #00e6ff;
  }
  
  .promo-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  
  .promo-close {
    left: 8px;
    font-size: 1.2rem;
  }
  
  /* Adjust header positioning when promo is visible */
  body:has(.promo-bar:not(.hidden)) .site-header {
    top: 48px;
  }
  
  body:has(.promo-bar:not(.hidden)) {
    padding-top: 48px;
  }
}

/* ==========================================================================
   EXIT INTENT POPUP
   ========================================================================== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  border-radius: 24px;
  padding: 40px 30px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.8) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.popup-overlay.active .popup-content {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #666;
}

.popup-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.popup-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  animation: bounce-gift 1s ease infinite;
}

@keyframes bounce-gift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.popup-content h3 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.popup-content > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.popup-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.popup-features span {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.popup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.popup-btn svg {
  width: 24px;
  height: 24px;
}

.popup-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #999;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 50px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

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

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  opacity: 0.9;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background: #f8fbff;
}

.testimonials-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--accent);
  font-size: 1rem;
}

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

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */
.trust-section {
  padding: 40px 20px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #f8fbff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

/* ==========================================================================
   ENHANCED FAB BUTTONS
   ========================================================================== */
.fab-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9990;
}

.whatsapp-fab,
.phone-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-fab {
  background: linear-gradient(135deg, #25d366, #128c7e);
  animation: fab-pulse 2s ease-in-out infinite;
}

.phone-fab {
  background: linear-gradient(135deg, var(--blue), #0099cc);
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp-fab:hover,
.phone-fab:hover {
  transform: scale(1.15);
}

.whatsapp-fab svg,
.phone-fab svg {
  width: 30px;
  height: 30px;
}

.fab-tooltip {
  position: absolute;
  right: 70px;
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #333;
}

.whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@media (max-width: 768px) {
  .fab-container {
    bottom: 16px;
    left: 16px;
    gap: 12px;
  }
  
  .whatsapp-fab,
  .phone-fab {
    width: 54px;
    height: 54px;
  }
  
  .whatsapp-fab svg,
  .phone-fab svg {
    width: 26px;
    height: 26px;
  }
  
  .fab-tooltip {
    display: none;
  }
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  margin-bottom: 20px;
}

.preloader-text {
  color: #fff;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ==========================================================================
   SCROLL PROGRESS INDICATOR
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  width: 0%;
  z-index: 99999;
  transition: width 0.1s linear;
}

/* ==========================================================================
   HERO ANIMATED BACKGROUND
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float-around 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--blue);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
  animation-duration: 25s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--green);
  top: 50%;
  right: 10%;
  animation-delay: -10s;
  animation-duration: 18s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--blue), var(--green));
  top: 20%;
  left: 15%;
  animation-delay: -7s;
  animation-duration: 22s;
}

.shape-5 {
  width: 80px;
  height: 80px;
  background: var(--blue);
  bottom: 20%;
  right: 20%;
  animation-delay: -12s;
  animation-duration: 15s;
}

@keyframes float-around {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translate(20px, 10px) rotate(270deg) scale(1.05);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  left: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #2d3a4f);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9980;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, var(--blue), var(--green));
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 140px;
    left: 16px;
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================================
   LIVE VISITORS COUNTER
   ========================================================================== */
.visitors-counter {
  position: fixed;
  bottom: 160px;
  left: 24px;
  right: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 89;
  font-size: 0.9rem;
  animation: slideInRight 0.5s ease-out 2s backwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visitor-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.visitor-count {
  color: var(--accent);
  font-weight: 600;
}

#visitor-number {
  color: var(--blue);
  font-weight: 700;
}

/* Desktop: bottom corners */
@media (min-width: 769px) {
  .visitors-counter {
    bottom: 100px;
    left: 24px;
    right: auto;
  }
}

/* Mobile: Stack vertically on left side */
@media (max-width: 768px) {
  .visitors-counter {
    position: fixed;
    bottom: 150px;
    left: 10px;
    right: auto;
    padding: 8px 12px;
    font-size: 0.75rem;
    z-index: 85;
  }
}

/* ==========================================================================
   URGENCY BANNER - Scarcity
   ========================================================================== */
.urgency-banner {
  position: fixed;
  bottom: 100px;
  left: 24px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  z-index: 9980;
  font-size: 0.85rem;
  font-weight: 600;
}

.urgency-icon {
  font-size: 1rem;
}

.urgency-banner strong {
  color: #fff;
  font-size: 1em;
}

/* ==========================================================================
   MOBILE CTA BAR - Removed (FAB is enough)
   ========================================================================== */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 210px;
  }
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-cta-btn.call-btn {
  background: linear-gradient(135deg, var(--blue), #0099cc);
  color: #fff;
}

.mobile-cta-btn.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.mobile-cta-btn:active {
  transform: scale(0.95);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for grid items */
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  .site-header,
  .site-footer,
  .fab-container,
  .nav-toggle,
  .hero-actions {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    background: #fff;
  }
  
  .container { max-width: 100%; }
  
  .card, .step, .article-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }
}


/* Tawk.to Widget - Position Fix */
#tawk-bubble-container,
.tawk-min-container,
iframe[title*="chat"],
iframe[src*="tawk"] {
  z-index: 99999 !important;
}

/* Make sure nav-toggle is always clickable */
.site-header {
  z-index: 100000 !important;
  position: relative;
}

.nav-toggle {
  z-index: 2147483647 !important;
  position: relative !important;
  pointer-events: auto !important;
}

/* Mobile nav above everything */
@media (max-width: 900px) {
  .site-nav.open,
  #mobile-nav[style*="visible"] {
    z-index: 2147483646 !important;
  }
  
  #nav-overlay-inline {
    z-index: 2147483645 !important;
  }
}

/* ==========================================================================
   ARTICLE CARDS - Modern Icon Design
   ========================================================================== */
.article-icon-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.article-emoji {
  font-size: 60px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  animation: float-emoji 3s ease-in-out infinite;
}

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

.featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a1a2e;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.article-card-featured {
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.article-tag.tag-price {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: #fff;
}

.article-tag.tag-beginner {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: #1a1a2e;
}

.article-card .article-meta a {
  color: #00e6ff;
  font-weight: 600;
  transition: all 0.3s;
}

.article-card .article-meta a:hover {
  color: #00ff9d;
  padding-right: 5px;
}


/* ==========================================================================
   Affiliate Button - Simple Hero Style
   ========================================================================== */
.btn-affiliate-simple {
  display: inline-block;
  margin: 1.5rem 0;
  padding: 16px 30px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  animation: pulse-affiliate 2s ease-in-out infinite;
}

.btn-affiliate-simple:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.btn-affiliate-simple strong {
  color: #fff;
  font-size: 1.3rem;
}

@keyframes pulse-affiliate {
  0%, 100% { box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 8px 35px rgba(245, 158, 11, 0.6); }
}

/* Consultation CTA Button */
.btn-consultation {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #00ff9d, #00d68f);
  color: #0a0a0a;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  margin: 20px 0;
  box-shadow: 0 8px 30px rgba(0, 255, 157, 0.4);
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
}

.btn-consultation:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 255, 157, 0.6);
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 8px 30px rgba(0, 255, 157, 0.4);
  }
  50% { 
    box-shadow: 0 8px 50px rgba(0, 255, 157, 0.7), 0 0 0 15px rgba(0, 255, 157, 0.1);
  }
}

@media (max-width: 600px) {
  .btn-consultation {
    padding: 16px 24px;
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .btn-affiliate-simple {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  .btn-affiliate-simple strong {
    font-size: 1.1rem;
  }
}

/* Hero Slider */
.hero-slider {
  flex: 1;
  min-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-slider .slider-container {
  border-radius: 20px;
}

.hero-slider .slider-slide img {
  height: 350px;
}

@media (max-width: 900px) {
  .hero-slider {
    width: 100%;
    margin-top: 2rem;
  }
  .hero-slider .slider-slide img {
    height: 250px;
  }
}


/* ==========================================================================
   Coupon Section - Calculator (Enhanced Design)
   ========================================================================== */
.coupon-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: 16px;
  border: 2px dashed rgba(99, 102, 241, 0.2);
}

.coupon-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #fff;
}

.coupon-header .coupon-icon {
  font-size: 1.3rem;
}

.coupon-header .coupon-label {
  font-size: 1rem;
  color: #fff;
}

.coupon-input-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.coupon-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  background: white;
  border: 3px solid #6366f1;
  border-radius: 16px;
  padding: 0 16px;
  transition: all 0.3s;
  min-height: 60px;
}

.coupon-input-box:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(99, 102, 241, 0.2);
}

.coupon-input-box .input-icon {
  font-size: 1.5rem;
  margin-left: 10px;
  opacity: 0.7;
}

.coupon-input-wrapper input {
  flex: 1;
  padding: 18px 12px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--text);
}

.coupon-input-wrapper input:focus {
  outline: none;
}

.coupon-input-wrapper input::placeholder {
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  color: #94a3b8;
  font-size: 1rem;
}

.coupon-input-wrapper button {
  padding: 18px 32px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 60px;
}

.coupon-input-wrapper button .btn-icon {
  display: none;
}

.coupon-input-wrapper button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.coupon-input-wrapper button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.coupon-input-wrapper button:disabled .btn-text {
  display: none;
}

.coupon-input-wrapper button:disabled .btn-icon {
  display: inline;
}

.coupon-message {
  font-size: 0.9rem;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
  border-radius: 8px;
}

.coupon-message.success {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 10px;
}

.coupon-message.error {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 10px;
}

.coupon-message.warning {
  color: #ffa500;
  background: rgba(255, 165, 0, 0.1);
  padding: 10px;
}

.coupon-discount-display {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
  border: 2px solid #10b981;
  border-radius: 16px;
  padding: 20px;
  margin-top: 15px;
}

.coupon-discount-display .discount-header {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(16, 185, 129, 0.3);
  margin-top: 15px;
}

.discount-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.discount-row .discount-value {
  color: #10b981;
  font-weight: 700;
}

.discount-row.highlight {
  color: #10b981;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  margin: 5px -10px;
  padding: 10px;
  border-radius: 8px;
}

.discount-row.final {
  border-top: 2px dashed #10b981;
  margin-top: 10px;
  padding-top: 15px;
  font-size: 1.15rem;
}

.discount-row.final strong {
  color: #059669;
  font-size: 1.4rem;
}

/* Mobile adjustments for coupon */
@media (max-width: 480px) {
  .coupon-section {
    padding: 1rem;
  }
  
  .coupon-input-wrapper {
    flex-direction: column;
  }
  
  .coupon-input-box {
    width: 100%;
  }
  
  .coupon-input-wrapper button {
    width: 100%;
    justify-content: center;
  }
  
  .btn-affiliate {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .btn-affiliate .affiliate-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .coupon-input-wrapper {
    flex-direction: column;
  }
  
  .coupon-input-wrapper input,
  .coupon-input-wrapper button {
    width: 100%;
  }
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-links span {
  color: rgba(255,255,255,0.3);
}

/* Commercial Registration Badge */
.commercial-registration {
  margin: 25px 0 15px;
  display: flex;
  justify-content: center;
}

.cr-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(0,230,255,0.1), rgba(0,255,157,0.05));
  border: 1px solid rgba(0,230,255,0.3);
  border-radius: 50px;
  padding: 12px 25px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.cr-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.cr-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.cr-number {
  font-size: 0.85rem;
  color: var(--muted);
}

.cr-number strong {
  color: var(--blue);
  font-family: monospace;
  letter-spacing: 1px;
}

.cr-link {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s;
  white-space: nowrap;
}

.cr-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,230,255,0.4);
}

@media (max-width: 600px) {
  .cr-badge {
    padding: 15px 20px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
  .cr-info {
    text-align: center;
  }
  .cr-icon {
    font-size: 2rem;
  }
}

/* ========================================
   NEOLEAP PAYMENT BUTTON STYLES
   ======================================== */
.btn-neoleap-pay {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-neoleap-pay::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-neoleap-pay:hover::before {
  left: 100%;
}

.btn-neoleap-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.btn-neoleap-pay:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.payment-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.payment-divider {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin: 5px 0;
  position: relative;
}

.payment-divider::before,
.payment-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.payment-divider::before { right: 60%; }
.payment-divider::after { left: 60%; }

/* Discounted price styling */
.discount-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0,255,157,0.15), rgba(0,230,255,0.15));
  border: 1px solid rgba(0,255,157,0.3);
  padding: 12px 20px;
  border-radius: 12px;
  margin: 15px 0;
}

.discount-icon {
  font-size: 1.5rem;
}

.discount-text {
  color: #fff;
  font-size: 0.95rem;
}

.discount-text strong {
  color: var(--green);
}

.discounted-price {
  background: rgba(0,255,157,0.1);
  padding: 15px;
  border-radius: 12px;
  margin: 15px 0;
}

.discounted-price .original-price {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.discounted-price .final-price {
  display: block;
  font-size: 20px;
  color: var(--green);
  font-weight: 700;
  margin-top: 8px;
}
