/* ============================================
   SMARTERS PLAYER LITE — Astra Light Theme
   Exact Theme, Colors & Layout (Matching Competitor smarterplayer-lite.com)
   ============================================ */

/* ============================================
   CSS VARIABLES / TOKENS
   ============================================ */
:root {
  /* Competitor Exact Color Palette (smarterplayer-lite.com) */
  --ast-global-color-primary: #046bd2;
  --ast-global-color-hover: #0352a0;
  --ast-global-color-heading: #1e293b;
  --ast-global-color-body: #475569;
  --ast-global-color-light-bg: #f8fafc;
  --ast-global-color-border: #e2e8f0;
  
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  /* Accent Colors */
  --accent-blue: #046bd2;
  --accent-blue-hover: #0352a0;
  --accent-green: #10b981;
  --accent-purple: #7c3aed;
  
  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --text-white: #ffffff;
  
  /* Borders & Shadows */
  --border-card: 1px solid #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 12px 28px rgba(4, 107, 210, 0.12);
  
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  
  /* Container */
  --container-width: 1200px;
  --section-padding: 80px 0;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

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

.section {
  padding: var(--section-padding);
  position: relative;
}

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

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   NAVBAR (Competitor Clean Header)
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 72px;
  max-height: 80px;
  width: auto;
  transition: transform 0.2s ease;
}

.navbar-logo img:hover {
  transform: scale(1.02);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--accent-blue);
}

.navbar-cta-mobile {
  display: none;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent-blue);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(4, 107, 210, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.navbar-cta:hover {
  background: var(--accent-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(4, 107, 210, 0.35);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.navbar-toggle span {
  width: 24px;
  height: 2.5px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.navbar-toggle span:nth-child(2) {
  margin: 5px 0;
}

/* Morphing X close button when active */
.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: #0f172a;
}

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

.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: #0f172a;
}

/* ============================================
   HERO SECTION (2-Column Split Grid matching competitor smarterplayer-lite.com)
   ============================================ */
.hero {
  padding: 160px 0 70px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

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

.btn-pill-primary {
  background: #6366f1;
  color: #ffffff !important;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pill-primary:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-pill-secondary {
  background: #e0e7ff;
  color: #1e293b !important;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pill-secondary:hover {
  background: #c7d2fe;
  transform: translateY(-2px);
}

.hero-image-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-right img {
  width: 100%;
  max-width: 580px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08));
}

/* ============================================
   BUTTONS (Competitor Exact Style)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(4, 107, 210, 0.3);
}

.btn-primary:hover {
  background: var(--accent-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 107, 210, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
  background: var(--accent-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}

/* ============================================
   HIGHLIGHT CARDS (3-Col Cards with Blue Accent)
   ============================================ */
.highlights {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.highlight-card .icon {
  width: 52px;
  height: 52px;
  background: rgba(4, 107, 210, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-blue);
  margin: 0 auto 18px;
}

.highlight-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   STREAMING SECTION (Split Layout)
   ============================================ */
.streaming-section {
  padding: var(--section-padding);
  background: #ffffff;
}

.streaming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.streaming-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
  color: var(--text-primary);
}

.streaming-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.streaming-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.streaming-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
}

.streaming-feature .feat-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--accent-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
}

.streaming-feature h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.streaming-feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.streaming-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

/* ============================================
   FEATURES GRID SECTION
   ============================================ */
.features-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(4, 107, 210, 0.4);
}

.feature-card .feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(4, 107, 210, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--accent-blue);
}

.feature-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
  padding-left: 0;
}

.feature-card ul li::before {
  display: none !important;
}

.feature-card ul li i.check-icon,
.feature-card ul li i.fa-check,
.feature-card ul li i.fa-circle-check {
  color: var(--accent-blue);
  font-size: 0.88rem;
  margin-top: 3px;
  min-width: 14px;
  flex-shrink: 0;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  padding: var(--section-padding);
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-card .why-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-blue);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(4, 107, 210, 0.25);
}

.why-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ============================================
   PAGE HERO (Inner Pages & Telecharger)
   ============================================ */
.page-hero {
  padding: 145px 0 50px;
  text-align: center;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.page-hero .breadcrumb a {
  color: var(--text-secondary);
  font-weight: 500;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   PRICING SECTION (Competitor Exact Design from Screenshot)
   ============================================ */
.pricing-section {
  padding: var(--section-padding);
  background: #ffffff;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: #e2e8f0;
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-tab.active {
  background: #5b56f6;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(91, 86, 246, 0.3);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #5b56f6;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(91, 86, 246, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(91, 86, 246, 0.2);
}

.pricing-card .card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.pricing-card .duration-badge {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 6px 36px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 900;
  color: #5b56f6;
  margin-bottom: 24px;
  line-height: 1;
}

.pricing-card .features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
  width: 100%;
  flex-grow: 1;
}

.pricing-card .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-card .features-list li .check,
.pricing-card .features-list li .check-icon,
.pricing-card .features-list li i {
  color: #000000;
  font-weight: 900;
  font-size: 0.95rem;
  margin-top: 3px;
  min-width: 16px;
  flex-shrink: 0;
}

.pricing-card.featured-card .features-list li .check,
.pricing-card.featured-card .features-list li .check-icon,
.pricing-card.featured-card .features-list li i {
  color: #ffffff;
}

.pricing-card .btn-pricing {
  width: 100%;
  padding: 12px 24px;
  background: #5b56f6;
  color: #ffffff !important;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(91, 86, 246, 0.3);
}

.pricing-card .btn-pricing:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

.pricing-card .paypal-badge {
  max-width: 100%;
  height: auto;
  margin-top: auto;
}

/* 4th Featured Card (Solid Purple background matching competitor screenshot) */
.pricing-card.featured-card {
  background: #5b56f6;
  border-color: #5b56f6;
  color: #ffffff;
}

.pricing-card.featured-card .card-title {
  color: #ffffff;
}

.pricing-card.featured-card .duration-badge {
  background: #000000;
  color: #ffffff;
}

.pricing-card.featured-card .price {
  color: #ffffff;
}

.pricing-card.featured-card .features-list li {
  color: #ffffff;
}

.pricing-card.featured-card .features-list li .check {
  color: #ffffff;
}

.pricing-card.featured-card .btn-pricing {
  background: #000000;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured-card .btn-pricing:hover {
  background: #1e1e1e;
}

/* Multi-Connexion Banner */
.pricing-banner {
  text-align: center;
  margin: 40px auto 30px;
  max-width: 700px;
}

.pricing-banner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-banner p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ============================================
   DOWNLOAD SECTION & HERO CARDS
   ============================================ */
.download-section {
  padding: var(--section-padding);
  background: #ffffff;
}

.download-grid,
.download-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.download-card,
.download-hero-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--accent-blue);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.download-card:hover,
.download-hero-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(4, 107, 210, 0.4);
}

.download-card .platform-icon,
.download-hero-card .dl-icon {
  width: 56px;
  height: 56px;
  background: rgba(4, 107, 210, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.download-card h3,
.download-hero-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.download-card p,
.download-hero-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.download-card .meta-list,
.download-hero-card .meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.download-card .meta-list li,
.download-hero-card .meta-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.download-card .meta-list li span.label,
.download-hero-card .meta-list li span.label {
  font-weight: 600;
  color: var(--text-primary);
}

.download-card .btn,
.download-hero-card .btn {
  margin-top: auto;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: var(--accent-blue);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  background: transparent;
}

.faq-question .faq-icon {
  font-size: 1.1rem;
  color: var(--accent-blue);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 22px 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  padding: var(--section-padding);
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card .blog-image {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-card .blog-body {
  padding: 22px;
}

.blog-card .blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card .blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

.blog-card .blog-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-blue);
}

/* ============================================
   FOOTER (Competitor Slate Clean Footer)
   ============================================ */
.footer {
  background: #1e293b;
  color: #94a3b8;
  padding: 60px 0 30px;
}

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

.footer-brand .footer-logo img {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column ul li a {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-left: 20px;
}

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

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ============================================
   RESPONSIVE DESIGN (Mobile & Tablet Optimization)
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  /* Container & Section Spacing */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 35px;
    padding: 0 8px;
  }

  .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Navbar Mobile Header */
  .navbar {
    padding: 8px 0;
  }

  .navbar-logo img {
    height: 52px !important;
    max-height: 52px;
  }

  .navbar-cta {
    display: none !important;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding: 80px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-menu.active {
    transform: translateX(0);
  }

  .navbar-menu a {
    font-size: 1.15rem;
    font-weight: 700;
  }

  .navbar-cta-mobile {
    display: inline-flex !important;
    margin-top: 10px;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 110px 0 45px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 1.85rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-pill-primary,
  .btn-pill-secondary {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .hero-image-right {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-image-right img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Highlights Section */
  .highlights {
    padding: 30px 0;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-card {
    padding: 22px 18px;
    text-align: center;
  }

  /* Streaming Section Split Layout */
  .streaming-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .streaming-content h2 {
    font-size: 1.7rem;
  }

  .streaming-features {
    text-align: left;
  }

  .streaming-feature {
    padding: 14px 16px;
  }

  .streaming-image {
    max-width: 100%;
  }

  .streaming-image img {
    width: 100%;
    height: auto;
  }

  /* Features Grid Section */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 22px 18px;
  }

  /* Why Choose Us Section */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 24px 18px;
    text-align: center;
  }

  .why-icon {
    margin: 0 auto 16px;
  }

  /* Pricing Section Mobile */
  .pricing-tabs {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }

  .pricing-tab {
    flex: 1 1 auto;
    min-width: 130px;
    padding: 10px 14px;
    font-size: 0.88rem;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 26px 18px;
    max-width: 100%;
    text-align: center;
  }

  .pricing-card .card-title {
    font-size: 1.25rem;
  }

  .pricing-card .price {
    font-size: 2.5rem;
  }

  .pricing-card .features-list {
    text-align: left;
  }

  .pricing-card .btn-pricing {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    justify-content: center;
  }

  .paypal-badge {
    max-width: 220px;
    margin: 16px auto 0;
  }

  /* Download Overview & Platform Cards */
  .download-grid,
  .download-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .download-hero-card {
    padding: 24px 18px;
  }

  /* FAQ Section Mobile */
  .faq-list {
    gap: 10px;
  }

  .faq-question {
    padding: 16px 16px;
    font-size: 0.95rem;
  }

  .faq-answer-inner {
    padding: 0 16px 18px;
    font-size: 0.9rem;
  }

  /* Blog Section Mobile */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card .blog-image {
    height: 180px;
  }

  .blog-card .blog-body {
    padding: 18px;
  }

  /* Footer Mobile */
  .footer {
    padding: 45px 0 25px;
    text-align: center;
  }

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

  .footer-brand .footer-logo img {
    margin: 0 auto 16px;
    display: block;
    height: 56px !important;
  }

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

  .footer-column ul {
    align-items: center;
  }

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

  .footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .footer-bottom-links a {
    margin: 0;
  }

  /* Floating WhatsApp Button */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.65rem;
  }

  .pricing-tab {
    width: 100%;
  }

  .pricing-card .price {
    font-size: 2.2rem;
  }
}
