/* ============================================
   WINNER PRONOSTIC - Stylesheet Principal
   Auteur: Ghani Manseur
   Site: winner-pronostic.com
   ============================================ */

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

:root {
  --bg-dark: #f0f2f5;
  --bg-card: #ffffff;
  --bg-card-hover: #f7f8fa;
  --primary: #5D1A6B;
  --primary-dark: #4A1158;
  --secondary: #0ea5e9;
  --accent: #f59e0b;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-dark: #222222;
  --border: #e2e8f0;
  --success: #059669;
  --danger: #dc2626;
  --shadow: rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* --- PAGE LOAD TRANSITION --- */
@keyframes fadeInPage {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  animation: fadeInPage 0.45s ease 0.05s forwards;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.logo-text span {
  color: var(--primary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-desktop a {
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
}

.nav-dropdown > .nav-dropdown-toggle:hover,
.nav-dropdown.active > .nav-dropdown-toggle {
  color: var(--primary);
}

.nav-dropdown > .nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.nav-dropdown.active > .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 36px var(--shadow);
  min-width: 180px;
  z-index: 100;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--text);
  transition: background var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
}

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

.nav-actions .btn-nav {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.burger span {
  width: 25px;
  height: 2px;
  background: #374151;
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

/* Mobile Nav */
.nav-mobile {
  display: flex;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 30px 20px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-mobile a {
  opacity: 0;
  transform: translateX(-20px);
  animation: none;
  color: var(--text);
  font-size: 1.1rem;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  display: block;
}

.nav-mobile.active a {
  animation: slideInNavItem 0.35s ease forwards;
}

.nav-mobile.active a:nth-child(1)  { animation-delay: 0.05s; }
.nav-mobile.active a:nth-child(2)  { animation-delay: 0.1s; }
.nav-mobile.active a:nth-child(3)  { animation-delay: 0.15s; }
.nav-mobile.active a:nth-child(4)  { animation-delay: 0.2s; }
.nav-mobile.active a:nth-child(5)  { animation-delay: 0.25s; }
.nav-mobile.active a:nth-child(6)  { animation-delay: 0.3s; }
.nav-mobile.active a:nth-child(7)  { animation-delay: 0.35s; }
.nav-mobile.active a:nth-child(8)  { animation-delay: 0.4s; }
.nav-mobile.active a:nth-child(9)  { animation-delay: 0.45s; }
.nav-mobile.active a:nth-child(10) { animation-delay: 0.5s; }

@keyframes slideInNavItem {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.nav-mobile a:hover {
  background: var(--bg-card);
  color: var(--primary);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(93, 26, 107, 0.35);
  color: #fff;
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #e6a800);
  color: #000;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.35);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* --- HERO SECTION --- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroBgPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93, 26, 107, 0.10), rgba(14, 165, 233, 0.06));
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(93, 26, 107, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero .hero-content h1 {
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(0.9);
  animation: heroFadeUp 0.7s ease 0.3s both;
}

.hero .hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: heroFadeUp 0.7s ease 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 0.7s ease 0.7s both;
}

/* --- QUICK NAV BAR --- */
.quick-nav {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 12px 0;
  position: sticky;
  top: 65px;
  z-index: 100;
}

.quick-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.quick-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background var(--transition);
  white-space: nowrap;
}

.quick-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* --- SECTIONS --- */
.section {
  padding: 80px 0;
}

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

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-header .accent-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- CARDS GRID --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 40px var(--shadow);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--bg-card);
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin-bottom: 8px;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* --- PRICING CARDS --- */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  width: 300px;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .pricing-card {
    width: 100%;
    max-width: 400px;
  }
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

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

.pricing-card .badge {
  display: inline-block;
  background: rgba(93, 26, 107, 0.15);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 16px 0 4px;
  font-family: var(--font-heading);
}

.pricing-card .price-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-card .price .currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  white-space: normal;
  text-align: center;
}

/* --- STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--primary);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.stat-card .stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- BOOKMAKER CARDS --- */
.bookmaker-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all var(--transition);
}

.bookmaker-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.bookmaker-card img {
  height: 50px;
  object-fit: contain;
}

.bookmaker-card .promo-code {
  background: rgba(93, 26, 107, 0.12);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- REVIEWS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.review-stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.review-text {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  color: var(--text);
}

/* --- FORMS --- */
.form-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
}

.form-container {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
}

.form-container h1 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.form-container .form-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(93, 26, 107, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check input[type="checkbox"] {
  width: auto;
}

.form-footer {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-footer a {
  color: var(--primary);
  font-weight: 600;
}

/* --- CAROUSEL --- */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition);
}

.carousel-dots .dot.active {
  background: var(--primary);
}

/* --- LEGAL PAGES --- */
.legal-page {
  padding: 120px 0 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 24px;
  color: var(--primary);
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
  background: #1e2235;
  border-top: none;
  padding: 56px 0 28px;
  margin-top: auto;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer .logo-text {
  color: #fff;
}

.footer h4 {
  font-size: 0.85rem;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

/* --- EBOOK SPECIAL OFFER --- */
.special-offer {
  background: linear-gradient(135deg, rgba(93, 26, 107, 0.07), rgba(245, 158, 11, 0.05));
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  margin-top: 48px;
}

.special-offer .offer-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.special-offer .offer-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.special-offer h3 {
  margin-bottom: 8px;
}

.special-offer p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* --- VIDEO EMBED --- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* --- WHATSAPP FAB --- */
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70%  { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform var(--transition);
  animation: waPulse 2.5s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.12);
  color: #fff;
  animation: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* --- BREADCRUMB --- */
.breadcrumb {
  padding: 80px 0 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--text-muted);
  margin: 0 8px;
}

.breadcrumb .current {
  color: var(--primary);
}

/* --- PAGE TITLE --- */
.page-title {
  text-align: center;
  padding: 100px 0 40px;
}

.page-title h1 {
  margin-bottom: 12px;
  color: var(--text);
  animation: heroFadeUp 0.55s ease 0.1s both;
}

.page-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  animation: heroFadeUp 0.55s ease 0.25s both;
}

/* --- TESTIMONIAL TEXT --- */
.testimonial-block {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--primary);
  margin-top: 24px;
}

.testimonial-block p {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

/* --- HOW IT WORKS --- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.how-step {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.how-step:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 48px var(--shadow);
}

.how-step .step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.how-step .step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

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

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

.how-step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 42%;
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
}

.how-step:last-child::after {
  display: none;
}

/* --- WHY CHOOSE US --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 40px var(--shadow);
}

.why-card .why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(93, 26, 107,0.12), rgba(93, 26, 107,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

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

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

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 16px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-info .name {
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.reveal-scale {
  transform: scale(0.92);
}

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

/* Stagger delays for grid children */
.reveal-stagger > *:nth-child(1)  { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2)  { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3)  { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4)  { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5)  { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6)  { transition-delay: 0.40s; }

/* Section header underline animation */
.section-header .accent-line {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.section-header.revealed .accent-line {
  transform: scaleX(1);
}

/* Pricing card featured shimmer */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.pricing-card.featured {
  background: linear-gradient(270deg, #fff 0%, #fff8f5 50%, #fff 100%);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .nav-desktop, .nav-actions {
    display: none;
  }

  .burger {
    display: flex;
  }

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

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 100px 20px 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .section {
    padding: 60px 0;
  }

  .cards-grid,
  .stats-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

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

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

  .footer-social {
    justify-content: center;
  }

  .form-container {
    padding: 32px 20px;
  }

  .quick-nav-inner {
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 16px;
  }

  .quick-nav a {
    font-size: 0.8rem;
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 16px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .container {
    padding: 0 16px;
  }
}
