/* ==========================================================================
   IPTV NORDEN — DESIGN SYSTEM & STYLES
   Colors: Emerald Fresh #00C97A + Sky Cyan #00AEEF | BG #F6FAF9
   ========================================================================== */

:root {
  --primary: #00C97A;
  --primary-glow: rgba(0, 201, 122, 0.35);
  --secondary: #00AEEF;
  --secondary-glow: rgba(0, 174, 239, 0.35);
  --gradient-accent: linear-gradient(135deg, #00C97A 0%, #00AEEF 100%);
  --gradient-accent-hover: linear-gradient(135deg, #00d984 0%, #15b9f7 100%);
  
  --bg-main: #F6FAF9;
  --bg-card: #FFFFFF;
  --bg-card-glass: rgba(255, 255, 255, 0.85);
  --bg-dark: #0A0F14;
  --bg-dark-card: #121820;
  --bg-dark-card-glass: rgba(18, 24, 32, 0.8);
  
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-light-muted: #94A3B8;
  
  --border-light: #E2E8F0;
  --border-glass: rgba(255, 255, 255, 0.2);
  --border-emerald: rgba(0, 201, 122, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 201, 122, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 201, 122, 0.1);
  --shadow-glow: 0 0 25px rgba(0, 201, 122, 0.25);
  
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Overflow Rules */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Global Section Utility */
section {
  width: 100%;
  box-sizing: border-box;
  padding: 70px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

/* Typography Headings */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 122, 0.12);
  border: 1px solid var(--border-emerald);
  color: #008751;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--gradient-accent-hover);
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(0, 201, 122, 0.45);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Top Urgency Banner */
.urgency-banner {
  --gold: #00C97A;
  --gold2: #00AEEF;
  --ink: #06231A;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 20px;
  background: linear-gradient(90deg, #E6FBF2, #E0F7FE 45%, #E6FBF2);
  color: var(--ink);
  font: 600 13px/1.3 var(--font-main);
  letter-spacing: .01em;
  text-align: center;
  border-bottom: 1px solid rgba(0, 201, 122, 0.2);
}

.urgency-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.7) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: sheen 4.5s ease-in-out infinite;
}

@keyframes sheen {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.ub-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #00A865;
  color: #FFFFFF;
  font: 800 11px var(--font-main);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  z-index: 1;
}

.ub-flag svg { width: 12px; height: 12px; }
.ub-text { z-index: 1; color: #064E3B; }
.ub-text b { font-weight: 800; color: #022C22; }

@media (max-width: 640px) {
  .urgency-banner { font-size: 12px; gap: 8px; padding: 8px 12px; }
}

/* Header & Glassmorphism Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.header__logo img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: 0 2px 8px var(--primary-glow);
}

.header__logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  padding: 6px 0;
  position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--primary);
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition);
  border-radius: 2px;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.server-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 122, 0.1);
  border: 1px solid var(--border-emerald);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: #008751;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #00C97A;
  border-radius: 50%;
  box-shadow: 0 0 8px #00C97A;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(0, 201, 122, 0.08);
  border: 1px solid var(--border-emerald);
  transition: var(--transition);
  cursor: pointer;
  z-index: 1001;
}

.header__toggle:hover,
.header__toggle:focus-visible {
  background: rgba(0, 201, 122, 0.18);
  border-color: var(--primary);
  transform: scale(1.05);
}

.header__toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, width 0.3s ease;
  transform-origin: center;
}

.header__toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background-color: var(--primary);
}

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

.header__toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background-color: var(--primary);
}

/* Mobile Side Menu & Overlay */
.header__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 13, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

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

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -360px;
  width: min(88vw, 340px);
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 1100;
  padding: 24px 20px;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-left: 1px solid rgba(0, 201, 122, 0.25);
}

.header__mobile-menu.active {
  transform: translateX(-360px);
}

.header__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.header__mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
  font-size: 1.5rem;
  line-height: 1;
  transition: var(--transition);
}

.header__mobile-close:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
  transform: rotate(90deg);
}

.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.header__mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.header__mobile-nav-link::after {
  content: "›";
  font-size: 1.3rem;
  color: #94A3B8;
  font-weight: 400;
  transition: var(--transition);
}

.header__mobile-nav-link:hover,
.header__mobile-nav-link.active {
  background: linear-gradient(90deg, rgba(0, 201, 122, 0.12), rgba(0, 174, 239, 0.06));
  color: #008751;
  font-weight: 700;
  padding-left: 18px;
}

.header__mobile-nav-link:hover::after,
.header__mobile-nav-link.active::after {
  color: var(--primary);
  transform: translateX(3px);
}

.header__mobile-actions {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__toggle { display: flex; }
  .header__right .server-status-pill { display: none; }
}

@media (max-width: 640px) {
  .header__container { height: 64px; }
  .header__logo span { font-size: 1.15rem; }
  .header__right .btn-primary { display: none; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 60px 16px 50px 16px;
  background: #080D14;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 177.77vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrap iframe {
  width: 100%;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 13, 20, 0.7) 0%, #080D14 90%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  text-align: left;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 122, 0.15);
  border: 1px solid var(--primary);
  color: #00FFA3;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-h1 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-hook {
  font-size: 1.2rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: #E2E8F0;
  font-weight: 600;
}

.hero-trust-pill svg {
  color: var(--primary);
}

/* Flash Sale Card */
.flash-card {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(160deg, #18202A 0%, #0F161E 100%);
  border: 1px solid rgba(0, 201, 122, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 0 50px rgba(0, 201, 122, 0.15), 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.flash-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 201, 122, 0.25), transparent 70%);
  pointer-events: none;
}

.flash-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-accent);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  animation: flash-pulse 1.8s ease-in-out infinite;
}

@keyframes flash-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 201, 122, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(0, 201, 122, 0); }
}

.flash-sub {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 0;
  width: 72px;
}

.cd-num {
  color: #FFFFFF;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.cd-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 16px;
}

.btn-claim {
  display: block;
  background: var(--gradient-accent);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px rgba(0, 201, 122, 0.35);
}

.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 201, 122, 0.5);
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-hook {
    padding-left: 0;
    border-left: none;
  }
  .hero-desc {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-badges {
    justify-content: center;
  }
}

/* Hero Carousel Icons */
.hero-icons-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin-top: 48px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}

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

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-emerald);
  border-radius: 16px;
  padding: 10px;
  transition: var(--transition);
}

.icon-badge:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  background: rgba(0, 201, 122, 0.15);
  box-shadow: 0 0 15px var(--primary-glow);
}

.icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   CAROUSELS: MOVIES, SPORTS, PREVIEWS, DEVICES, WTSP
   Pure CSS scroll-snap + horizontal flow
   ========================================================================== */
.carousel-wrap {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
  padding: 16px 0 24px 0;
  display: flex;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
}

.carousel-wrap::-webkit-scrollbar {
  height: 6px;
}

.carousel-wrap::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.carousel-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

/* Specific aspect ratios */
.carousel--movies .carousel-card {
  width: 200px;
  aspect-ratio: 1 / 1.482;
}

.carousel--sport .carousel-card {
  width: 220px;
  aspect-ratio: 9 / 16;
}

.carousel--preview .carousel-card {
  width: 380px;
  aspect-ratio: 2.22 / 1;
}

.carousel--devices .carousel-card {
  width: 200px;
  aspect-ratio: 1 / 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.carousel--wtsp .carousel-card {
  width: 260px;
  aspect-ratio: 473 / 1024;
}

.carousel--reviews .carousel-card {
  width: 320px;
  aspect-ratio: 4 / 3;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel--devices .carousel-card img {
  object-fit: contain;
}

/* Dark section styles for sports / previews */
.section-dark {
  background: #0D131A;
  color: #FFFFFF;
}

.section-dark .section-title {
  color: #FFFFFF;
}

.section-dark .section-subtitle {
  color: var(--text-light-muted);
}

.section-dark .carousel-card {
  background: #141B24;
  border-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   SECTION 5: COMPARISON TABLE
   ========================================================================== */
.compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-top: 30px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
}

.compare-table th {
  background: #F8FAFC;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.compare-table th.highlight-col {
  background: rgba(0, 201, 122, 0.08);
  color: #008751;
  border-top: 3px solid var(--primary);
}

.compare-table td.highlight-col {
  background: rgba(0, 201, 122, 0.04);
  font-weight: 700;
  color: #008751;
}

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

.badge-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00C97A;
  font-weight: 700;
}

.badge-cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #EF4444;
  font-weight: 600;
}

/* ==========================================================================
   SECTION 6: PRICING SECTION & INTERACTIVE SCREEN SELECTOR
   ========================================================================== */
.pricing-section {
  background: linear-gradient(180deg, #F6FAF9 0%, #EDF7F4 100%);
  padding: 80px 0;
}

.screens-selector-wrap {
  margin-bottom: 40px;
  text-align: center;
}

.screens-selector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto 20px;
}

.screen-card-btn {
  background: #FFFFFF;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.screen-card-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.screen-card-btn.active {
  border-color: var(--primary);
  background: rgba(0, 201, 122, 0.06);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.screen-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
  line-height: 1.2;
}

.screen-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.screen-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .screens-selector-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

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

.pricing-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.plan-price-wrap {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.plan-duration {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.plan-breakdown {
  font-size: 0.95rem;
  font-weight: 700;
  color: #008751;
  background: rgba(0, 201, 122, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 20px;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.plan-feature-item.strikethrough {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.plan-feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
}

.plan-feature-icon.cross {
  color: #EF4444;
}

.plan-cta {
  width: 100%;
}

/* Horizontal 1-Month Plan Card */
.pricing-card-horizontal {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pricing-card-horizontal:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card-horizontal {
    flex-direction: column;
    text-align: center;
  }
}

/* Price Breakdown Summary Bar */
.price-breakdown-bar {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.savings-highlight {
  color: #008751;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Payment Icons Container */
.payment-icons-container {
  max-width: 580px;
  margin: 32px auto 0;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.payment-icons-container img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   SECTION 7: TRUSTPILOT MARQUEE (EXACT SPEC)
   ========================================================================== */
.reviews {
  background: #0c0c0c;
  padding: 96px 0 110px;
  overflow: hidden;
}

.reviews-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: center;
}

.tp-badge {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 40px;
  font-size: 1rem;
}

.tp-left,
.tp-right {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
}

.tp-left {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  color: #fff;
}

.tp-star-icon {
  color: #00b67a;
  font-size: 1.25rem;
  line-height: 1;
}

.tp-stars-row {
  display: flex;
  gap: 3px;
}

.tp-stars-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #00b67a;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.tp-score {
  color: #fff;
  font-weight: 600;
}

.reviews-header h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.reviews-header h2 span {
  color: #4caf7d;
}

.reviews-header p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.125rem;
  line-height: 1.6;
}

.reviews-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.reviews-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
  will-change: transform;
}

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

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.rev-card {
  flex: 0 0 auto;
  width: 430px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px 30px 34px;
  display: flex;
  flex-direction: column;
}

.rev-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.rev-stars-row {
  display: flex;
  gap: 3px;
}

.rev-stars-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background: #00b67a;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.rev-stars-row span.g {
  background: #3a3a3a;
}

.rev-date {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
}

.rev-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.rev-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.65;
  flex: 1;
}

.rev-author {
  color: #fff;
  font-weight: 700;
  margin-top: 26px;
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .reviews { padding: 64px 0 72px; }
  .tp-badge { font-size: 0.85rem; }
  .tp-left, .tp-right { padding: 10px 14px; gap: 7px; }
  .tp-stars-row span { width: 20px; height: 20px; font-size: 12px; }
  .rev-card { width: 320px; padding: 24px 22px 26px; }
  .rev-title { font-size: 1.15rem; }
  .rev-text { font-size: 0.95rem; }
}

/* ==========================================================================
   SECTION 8: TRUSTPILOT IMAGE SHOWCASE
   ========================================================================== */
.tp-image-showcase {
  background: #080D14;
  padding: 60px 0;
  text-align: center;
}

.tp-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.tp-image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.tp-image-card img {
  width: 100%;
  aspect-ratio: 1200 / 488;
  object-fit: cover;
}

/* ==========================================================================
   SECTION 9: 3-STEP ACTIVATION
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 201, 122, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

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

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

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 11: CUSTOMER REVIEWS (7 CARDS)
   ========================================================================== */
.cust-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.cust-review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.cust-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.cust-review-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cust-avatar-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.cust-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
}

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

.cust-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #008751;
  background: rgba(0, 201, 122, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.cust-stars {
  color: #F59E0B;
  font-size: 1.1rem;
}

.cust-review-body {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  flex: 1;
}

/* ==========================================================================
   SECTION 13: FEATURES GRID
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.feature-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 201, 122, 0.1);
  border: 1px solid var(--border-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-box-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

/* ==========================================================================
   SECTION 14: FAQS ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 860px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  background: none;
  cursor: pointer;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 24px 20px 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #0B1218;
  color: #94A3B8;
  padding-top: 70px;
  border-top: 2px solid var(--primary);
  box-shadow: 0 -4px 25px rgba(0, 201, 122, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.92rem;
  color: #94A3B8;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 20px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
}

.footer-payment-strip img {
  max-height: 32px;
  width: auto;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   SOCIAL PROOF POPUP & FLOATING WHATSAPP
   ========================================================================== */
.social-proof-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 950;
  max-width: 320px;
  width: calc(100% - 40px);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  pointer-events: none;
}

.social-proof-popup.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.sp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 201, 122, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.sp-content {
  flex: 1;
  font-size: 0.85rem;
}

.sp-title {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.sp-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sp-verified {
  font-size: 0.72rem;
  font-weight: 700;
  color: #008751;
}

.sp-close {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
}

@media (max-width: 640px) {
  .social-proof-popup {
    left: 12px;
    bottom: 16px;
    width: calc(100% - 24px);
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* Breadcrumb bar for subpages */
.breadcrumb-nav {
  padding: 14px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-separator {
  color: #CBD5E1;
}

.breadcrumb-current {
  color: var(--text-dark);
  font-weight: 700;
}

/* Prose content for SEO / Legal / Blog pages */
.page-hero {
  background: linear-gradient(180deg, #0A0F14 0%, #111822 100%);
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.page-hero h1 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin-inline: auto;
}

.content-prose {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.content-prose h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.content-prose h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.content-prose p {
  margin-bottom: 20px;
}

.content-prose ul, .content-prose ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.content-prose li {
  margin-bottom: 8px;
}

.content-prose .highlight-box {
  background: rgba(0, 201, 122, 0.08);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
