/*
Theme Name: GipfelTV Germany
Theme URI: https://GipfelTV.de
Description: Premium IPTV Sales Website for Germany - Cinematic Luxury Design
Version: 2.0.0
Author: GipfelTV
Text Domain: gipfel-tv
*/

/* ============================================
   🎨 DESIGN SYSTEM - CINEMATIC LUXURY THEME
   ============================================ */

/* ------------------------------------------
   CSS Custom Properties (Design Tokens)
   ------------------------------------------ */
:root {
  /* Primary Colors */
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-tertiary: #1a1f2e;
  --bg-card: rgba(17, 24, 39, 0.8);

  /* Accent Colors */
  --accent-primary: #00d4ff;
  --accent-secondary: #7c3aed;
  --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --accent-glow: 0 0 40px rgba(0, 212, 255, 0.3);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Semantic Colors */
  --success: #10b981;
  --success-glow: 0 0 20px rgba(16, 185, 129, 0.4);
  --warning: #f59e0b;
  --error: #ef4444;

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);

  /* Typography */
  --font-display: 'Space Grotesk', 'Outfit', sans-serif;
  --font-body: 'Inter', 'DM Sans', system-ui, sans-serif;

  /* Font Sizes (Fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 2.3vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.5rem + 3.75vw, 3.5rem);
  --text-5xl: clamp(3rem, 2rem + 5vw, 4.5rem);
  --text-hero: clamp(2.5rem, 1.5rem + 5vw, 5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(4rem, 8vw, 8rem);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px rgba(0, 212, 255, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;

  /* Container */
  --container-max: 1280px;
  --container-padding: clamp(1rem, 5vw, 2rem);
}

/* ------------------------------------------
   CSS Reset & Base Styles
   ------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img,
video,
svg,
picture {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------
   Accessibility
   ------------------------------------------ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  padding: var(--space-sm) var(--space-lg);
  z-index: 9999;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 4px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* Selection */
::selection {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

/* ------------------------------------------
   Typography
   ------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: var(--text-hero);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

strong,
b {
  font-weight: 600;
  color: var(--text-primary);
}

/* ------------------------------------------
   Layout Utilities
   ------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-wide {
  max-width: 1440px;
}

.container-narrow {
  max-width: 800px;
}

.section {
  padding: var(--space-section) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--text-lg);
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.gap-xs {
  gap: var(--space-xs);
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.gap-2xl {
  gap: var(--space-2xl);
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ------------------------------------------
   Buttons
   ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
}

/* WhatsApp Live Indicator */
.btn-live-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background-color: #25D366;
  /* WhatsApp Green */
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-white {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--bg-primary);
  box-shadow: var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.5);
  color: var(--bg-primary);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

.btn-outline {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ------------------------------------------
   Cards
   ------------------------------------------ */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  backdrop-filter: var(--glass-blur);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.card-featured {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-color: var(--accent-primary);
  position: relative;
  overflow: hidden;
}

.card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

/* ------------------------------------------
   Badges
   ------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.badge-primary {
  background: var(--accent-gradient);
  color: var(--bg-primary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
  border: 1px solid var(--success);
}

.badge-popular {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
}

/* ------------------------------------------
   Forms
   ------------------------------------------ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ------------------------------------------
   Header / Navigation
   ------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-md) 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  padding: var(--space-sm) 0;
  background: rgba(10, 14, 23, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-logo span {
  color: var(--accent-primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  transform-origin: center;
}

/* Hamburger → X animation when active */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .site-header {
    background: #0a0e17 !important;
    backdrop-filter: none;
    padding: var(--space-sm) 0;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 60px;
    /* Adjust according to header height */
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-2xl) var(--space-xl);
    padding-bottom: 80px;
    background: #0a0e17 !important;
    /* Force solid background */
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
    z-index: 1000;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  /* CTA button appears FIRST in mobile menu */
  .main-nav .btn {
    order: -1;
    margin-bottom: var(--space-xl);
    width: 100%;
    justify-content: center;
    font-size: var(--text-lg);
    padding: var(--space-lg) var(--space-xl);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: var(--text-xl);
    display: block;
    padding: var(--space-sm);
    color: var(--text-primary);
  }

  .nav-links a::after {
    display: none;
  }
}

/* ------------------------------------------
   Hero Section
   ------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: visible;
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    height: auto;
    padding-top: 160px;
    padding-bottom: var(--space-3xl);
    display: block;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 23, 0.6) 0%, rgba(10, 14, 23, 0.85) 100%),
    url('assets/images/hero-bg.webp') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
  opacity: 0.03;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

@media (max-width: 992px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xl);
  }
}

.hero-content {
  max-width: 600px;
}

@media (max-width: 992px) {
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 650px;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 992px) {
  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .hero-image {
    position: relative !important;
    transform: none !important;
    top: auto !important;
    right: auto !important;
    width: 100%;
    max-width: 480px;
    margin: var(--space-xl) auto 0;
    grid-row: 2;
  }

  .hero-content {
    grid-row: 1;
    max-width: 100%;
    margin: 0 auto;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero h1 {
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-2xl);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--accent-primary);
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ------------------------------------------
   Trust Bar / Logos
   ------------------------------------------ */
.trust-bar {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-secondary);
}

.trust-bar-inner {
  text-align: center;
}

.trust-bar p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.trust-logos img {
  height: 20px;
  max-width: 80px;
  opacity: 0.6;
  filter: grayscale(100%) brightness(1.8);
  transition: all var(--transition-fast);
}

.trust-logos img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

/* ------------------------------------------
   Features Section
   ------------------------------------------ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-2xl);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  font-size: var(--text-2xl);
}

.feature-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.feature-card p {
  font-size: var(--text-base);
}

/* ------------------------------------------
   Pricing Section
   ------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: var(--space-2xl);
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
  }
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-name {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.pricing-price span {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.pricing-cta {
  width: 100%;
}

.payment-methods {
  margin: var(--space-md) 0;
}

.payment-methods img {
  max-width: 100%;
  width: 280px;
  height: auto;
  opacity: 0.9;
}

.pricing-bonus {
  font-size: var(--text-sm);
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

/* ------------------------------------------
   Trustpilot Reviews Section
   ------------------------------------------ */
.trustpilot-section {
  padding: var(--space-2xl) 0;
}

.trustpilot-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  max-width: 1100px;
  margin: 0 auto;
}

/* Left Side - Summary */
.trustpilot-summary {
  flex-shrink: 0;
  text-align: center;
  padding-right: var(--space-3xl);
  border-right: 1px solid var(--glass-border);
  min-width: 220px;
}

.trustpilot-title {
  color: #00b67a;
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 20px rgba(0, 182, 122, 0.3);
}

.trustpilot-stars-large {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.tp-star {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #dcdce6;
  position: relative;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.tp-star.filled {
  background: #00b67a;
}

.trustpilot-count {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.trustpilot-count strong {
  color: var(--text-primary);
  font-weight: 700;
}

.trustpilot-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(0, 182, 122, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 182, 122, 0.2);
}

.tp-logo-star {
  color: #00b67a;
  font-size: var(--text-2xl);
}

.tp-logo-text {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

/* Right Side - Reviews */
.trustpilot-reviews {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.reviews-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reviews-slider {
  display: flex;
  gap: var(--space-lg);
  align-items: stretch;
  position: relative;
  overflow-x: auto;
  padding-bottom: var(--space-md);
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 182, 122, 0.5) transparent;
}

.reviews-slider::-webkit-scrollbar {
  height: 6px;
}

.reviews-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.reviews-slider::-webkit-scrollbar-thumb {
  background: rgba(0, 182, 122, 0.5);
  border-radius: 3px;
}

.reviews-slider::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 182, 122, 0.7);
}

.review-card {
  flex: 0 0 300px;
  min-width: 280px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.7) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.review-card:hover {
  border-color: rgba(0, 182, 122, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 182, 122, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  gap: var(--space-sm);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars .tp-star {
  width: 18px;
  height: 18px;
}

.review-verified {
  font-size: 11px;
  color: #00b67a;
  white-space: nowrap;
  font-weight: 600;
  background: rgba(0, 182, 122, 0.1);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.review-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.review-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--glass-border);
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.author-date {
  color: var(--text-muted);
}

/* Navigation Arrow */
.review-nav-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border: 1px solid rgba(0, 182, 122, 0.3);
  color: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.review-nav-arrow:hover {
  background: rgba(0, 182, 122, 0.2);
  border-color: #00b67a;
  transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .trustpilot-wrapper {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2xl);
  }

  .trustpilot-summary {
    padding-right: 0;
    padding-bottom: var(--space-2xl);
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }

  .reviews-label {
    text-align: center;
  }

  .reviews-slider {
    overflow-x: auto;
    padding-bottom: var(--space-md);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .reviews-slider::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 280px;
    min-width: 260px;
    display: flex !important;
    opacity: 1 !important;
    scroll-snap-align: start;
  }

  .review-nav-arrow {
    display: none;
  }
}

@media (max-width: 576px) {
  .trustpilot-title {
    font-size: var(--text-2xl);
  }

  .tp-star {
    width: 26px;
    height: 26px;
  }

  .review-card {
    flex: 0 0 260px;
    min-width: 240px;
    padding: var(--space-md);
  }
}

/* ------------------------------------------
   FAQ Section
   ------------------------------------------ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-question::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--accent-primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: var(--space-lg);
}

/* ------------------------------------------
   CTA Section
   ------------------------------------------ */
.cta-section {
  position: relative;
  text-align: center;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: var(--space-lg);
}

.cta-content p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
}

.cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.cta-guarantee svg {
  color: var(--success);
}

/* ------------------------------------------
   Footer
   ------------------------------------------ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-brand {
  max-width: 300px;
}

@media (max-width: 768px) {
  .footer-brand {
    max-width: none;
    margin: 0 auto;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.footer-logo span {
  color: var(--accent-primary);
}

.footer-brand p {
  font-size: var(--text-sm);
}

.footer-column h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--accent-primary);
}

/* ------------------------------------------
   Page Templates
   ------------------------------------------ */
.page-header {
  padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.page-header p {
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: var(--space-3xl) 0;
}

/* ------------------------------------------
   Animations
   ------------------------------------------ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: var(--accent-glow);
  }

  50% {
    box-shadow: 0 0 80px rgba(0, 212, 255, 0.5);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Animation Delays */
.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-500 {
  animation-delay: 500ms;
}

/* ------------------------------------------
   Utility Classes
   ------------------------------------------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.mt-auto {
  margin-top: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.pointer-events-none {
  pointer-events: none;
}

/* ------------------------------------------
   WordPress Specific Fixes
   ------------------------------------------ */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin-right: var(--space-lg);
}

.alignright {
  float: right;
  margin-left: var(--space-lg);
}

/* Admin bar offset */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ------------------------------------------
   Content Slider / Carousel
   ------------------------------------------ */
.content-slider-section {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.content-slider-section .section-header {
  position: relative;
  z-index: 2;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: var(--space-2xl);
}

.slider-track {
  display: flex;
  gap: var(--space-lg);
  animation: slide 40s linear infinite;
  width: max-content;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slider-item {
  flex-shrink: 0;
  width: 140px;
  height: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-item:hover {
  transform: scale(1.1);
}

.slider-item img {
  width: auto;
  height: 50px;
  object-fit: contain;
  opacity: 0.9;
  transition: all var(--transition-base);
}

.slider-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Gradient overlays for fade effect */
.slider-overlay-left,
.slider-overlay-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 5;
  pointer-events: none;
}

.slider-overlay-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}

.slider-overlay-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-primary) 0%, transparent 100%);
}

/* Infinite scroll animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slider-item {
    width: 130px;
    height: 60px;
  }

  .slider-item img {
    height: 45px;
  }

  .slider-overlay-left,
  .slider-overlay-right {
    width: 60px;
  }

  .slider-track {
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .slider-item {
    width: 120px;
    height: 55px;
  }

  .slider-item img {
    height: 40px;
  }

  .slider-overlay-left,
  .slider-overlay-right {
    width: 40px;
  }
}

/* Page header for inner pages */
.page-header {
  padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
  margin-bottom: var(--space-md);
}

.page-header p {
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* Page content styles */
.page-content {
  color: var(--text-secondary);
}

.page-content h2 {
  font-size: var(--text-2xl);
  margin: var(--space-2xl) 0 var(--space-lg);
  color: var(--text-primary);
}

.page-content h3 {
  font-size: var(--text-xl);
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--text-primary);
}

.page-content p {
  margin-bottom: var(--space-md);
}

.page-content ul,
.page-content ol {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.page-content li {
  margin-bottom: var(--space-sm);
}

.page-content a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.page-content a:hover {
  color: var(--text-primary);
}

/* ------------------------------------------
   Pricing Section
   ------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: flex-start;
  margin-bottom: var(--space-4xl);
}

.pricing-card {
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-primary);
}

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: var(--accent-primary);
  transform: scale(1.05);
  z-index: 10;
  box-shadow: var(--shadow-2xl);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.pricing-price span {
  font-size: 1.5rem;
  opacity: 0.8;
}

.pricing-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2xl);
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-bottom: 1px solid var(--glass-border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: bold;
  flex-shrink: 0;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.badge-popular {
  background: var(--accent-primary);
  color: #fff;
}

.badge-success {
  background: var(--accent-secondary, #00b67a);
  color: #fff;
}

/* Responsive Pricing */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
  }

  .pricing-card.featured {
    transform: none;
    z-index: 1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }

  .pricing-card {
    width: 100%;
  }

  .pricing-price {
    font-size: 3rem;
  }
}

/* ------------------------------------------
   Trustpilot Reviews Section
   ------------------------------------------ */
.trustpilot-section {
  overflow: hidden;
}

.trustpilot-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.trustpilot-summary {
  text-align: left;
}

.trustpilot-stars-large {
  color: #00b67a;
  /* Trustpilot Green */
  font-size: 2rem;
  margin: var(--space-sm) 0;
  display: flex;
  gap: 4px;
}

.tp-star.filled::before {
  content: '★';
}

.trustpilot-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-weight: bold;
  font-size: 1.2rem;
}

.tp-logo-star {
  color: #00b67a;
}

.reviews-label {
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}

/* Review Slider */
.reviews-slider {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  padding-bottom: var(--space-lg);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  scrollbar-width: thin;
  /* Firefox */
}

/* Hide scrollbar for standard look but keep functionality */
.reviews-slider::-webkit-scrollbar {
  height: 6px;
}

.reviews-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
}

.reviews-slider::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: var(--radius-full);
}

.review-card {
  flex: 0 0 320px;
  background: var(--bg-card);
  /* Darker background */
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  scroll-snap-align: start;
}

.review-stars {
  color: #00b67a;
  margin-bottom: var(--space-sm);
  display: flex;
  gap: 2px;
}

.review-stars .tp-star.filled::before {
  font-size: 1rem;
}

.review-verified {
  font-size: 0.75rem;
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  float: right;
}

.review-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.review-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trustpilot-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .trustpilot-summary {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--glass-border);
  }

  .trustpilot-stars-large {
    justify-content: center;
  }

  .trustpilot-logo {
    justify-content: center;
  }

  .reviews-slider {
    scroll-padding-left: var(--space-md);
  }

  .review-card {
    flex: 0 0 280px;
    /* Slightly smaller cards on mobile */
  }
}

/* --- Premium Features Grid Section --- */
.premium-features-section {
  background: var(--bg-primary);
  /* Changed to theme bg */
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pf-card {
  background: var(--bg-card);
  /* Changed to dark card bg */
  border-radius: 12px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
  border: 1px solid var(--glass-border);
  /* Changed to glass border */
}

.pf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--accent-glow);
  /* Subtle glow on hover */
  border-color: var(--accent-primary);
  /* Accent border on hover */
}

.pf-card.pf-full {
  grid-column: span 2;
}

.pf-card.pf-half {
  grid-column: span 1;
}

.pf-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.pf-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.1);
  /* Subtle dark blue bg */
  color: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.pf-icon svg {
  width: 24px;
  height: 24px;
}

.pf-header h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 800;
  line-height: 1.3;
}

.pf-body p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .pf-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .premium-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pf-card.pf-full,
  .pf-card.pf-half {
    grid-column: span 1;
  }

  .premium-features-section {
    padding: 60px 20px;
  }

  .pf-card {
    padding: 24px;
  }

  .pf-header h3 {
    font-size: 1.25rem;
  }

  .pf-body p {
    font-size: 1rem;
  }
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* ============================================
   Blog Listing Grid
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog Card */
.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

/* Blog Card Image */
.blog-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__image--placeholder {
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* Blog Card Content */
.blog-card__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Blog Card Meta */
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.blog-card__reading-time {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-primary);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

/* Blog Card Title */
.blog-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card__title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-card__title a:hover {
  color: var(--accent-primary);
}

/* Blog Card Excerpt */
.blog-card__excerpt {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}

/* Blog Card Link */
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--accent-primary);
  transition: all var(--transition-fast);
  margin-top: auto;
}

.blog-card__link:hover {
  gap: var(--space-sm);
  color: var(--text-primary);
}

.blog-card__link svg {
  transition: transform var(--transition-fast);
}

.blog-card__link:hover svg {
  transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
  margin-top: var(--space-3xl);
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links {
  display: flex;
  gap: var(--space-sm);
  list-style: none;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.blog-pagination .page-numbers:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.1);
}

.blog-pagination .page-numbers.current {
  background: var(--accent-gradient);
  color: var(--bg-primary);
  border-color: transparent;
}

.blog-pagination .prev,
.blog-pagination .next {
  font-weight: 600;
}

/* No Content */
.no-content {
  text-align: center;
  padding: var(--space-4xl);
}

.no-content h2 {
  margin-bottom: var(--space-md);
}

.no-content p {
  color: var(--text-muted);
}