/*
Theme Name: Germany Iptv
Theme URI: https://example.com/germany-iptv
Author: Germany IPTV Studio
Author URI: https://example.com
Description: Ein modernes, blitzschnelles WordPress Theme für Premium IPTV Streaming Angebote in Deutschland. Optimiert für 4K/FHD Live-Streams, Bundesliga, Sky Sport, VOD Mediatheken und Multi-Device Kompatibilität.
Version: 1.0.0
Tested up to: 6.7
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: germany-iptv
Tags: entertainment, dark-theme, responsive-layout, grid-layout, custom-menu, featured-images, translation-ready
*/

:root {
  --bg-main: #0b0f19;
  --bg-card: #131b2e;
  --bg-card-hover: #1b2640;
  --primary: #ff334b;
  --primary-glow: rgba(255, 51, 75, 0.4);
  --gold: #ffbe1a;
  --gold-glow: rgba(255, 190, 26, 0.35);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --border-color: rgba(255, 255, 255, 0.08);
  --accent-cyan: #06b6d4;
  --gradient-ger: linear-gradient(90deg, #111 0%, #dc2626 50%, #f59e0b 100%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

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

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-badge {
  background: var(--gradient-ger);
  height: 38px;
  width: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 15px var(--primary-glow);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

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

.logo-tag {
  background: rgba(255, 190, 26, 0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  border: 1px solid rgba(255, 190, 26, 0.3);
  margin-left: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #ff334b 0%, #e11d48 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 51, 75, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #ffbe1a 0%, #f59e0b 100%);
  color: #0b0f19;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 190, 26, 0.5);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(225, 29, 72, 0.22) 0%, rgba(245, 158, 11, 0.1) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 100%;
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, #ff334b, #ffbe1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding: 18px 26px;
  background: rgba(19, 27, 46, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.12),
              0 0 20px rgba(255, 51, 75, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), rgba(255, 51, 75, 0.3), transparent);
}

.hero-trust:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.18),
              0 0 25px rgba(255, 51, 75, 0.12);
  transform: translateY(-2px);
}

.trust-item {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  padding: 0 16px;
}

.trust-item:first-child {
  padding-left: 4px;
}

.trust-item:last-child {
  padding-right: 4px;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 38px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
}

.trust-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  background: linear-gradient(180deg, #ffffff 40%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.hero-media {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 51, 75, 0.15);
}

.hero-image-card img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  background: rgba(19, 27, 46, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-badge.badge-top {
  top: 20px;
  right: -15px;
}

.floating-badge.badge-bottom {
  bottom: 25px;
  left: -20px;
}

/* Features Grid */
.section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-tag {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), 
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), 
              border-color 0.35s ease, 
              background 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  border-color: rgba(255, 51, 75, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 25px rgba(255, 51, 75, 0.2);
}

.feature-card.highlight-card {
  border-color: rgba(255, 51, 75, 0.7);
  box-shadow: 0 0 25px rgba(255, 51, 75, 0.2);
}

.feature-card.highlight-card:hover {
  border-color: rgba(255, 51, 75, 0.95);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 51, 75, 0.35);
}

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

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 51, 75, 0.08);
  border: 1px solid rgba(255, 51, 75, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
}

.feature-icon-box.device-svg-icon {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon-box.device-svg-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card:hover .feature-icon-box.device-svg-icon {
  background: rgba(59, 130, 246, 0.22);
  color: #93c5fd;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.12) rotate(3deg);
  background: rgba(255, 51, 75, 0.16);
}

.feature-pill-badge {
  background: rgba(255, 51, 75, 0.12);
  border: 1px solid rgba(255, 51, 75, 0.35);
  color: #ff4d61;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 99px;
}

.feature-pill-badge.badge-top-rated {
  background: rgba(255, 190, 26, 0.15);
  border-color: rgba(255, 190, 26, 0.4);
  color: var(--gold);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.feature-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-tag-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.feature-card:hover .feature-tag-chip {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* App & Device Protocol Pills Strip */
.protocol-pill-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto 40px;
  width: 100%;
}

.protocol-chip {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.protocol-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.protocol-chip.special-chip {
  border-color: rgba(255, 51, 75, 0.4);
  color: #ff6b7e;
  background: rgba(255, 51, 75, 0.08);
  text-align: center;
}

/* Setup Guides Links Bottom Row */
.device-guides-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.device-guides-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ========================================================
   Redesigned Premium Pricing Section
======================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
  position: relative;
}

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Base Pricing Card */
.pricing-card {
  background: linear-gradient(180deg, rgba(20, 27, 45, 0.85) 0%, rgba(13, 18, 30, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              border-color 0.4s ease;
  will-change: transform, box-shadow;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: visible;
}

/* Subtle Card Glow */
.pricing-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover .pricing-card-glow {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 51, 75, 0.15);
}

/* Featured / Popular Card (Center Bestseller) */
.pricing-card.popular {
  background: linear-gradient(180deg, rgba(28, 35, 60, 0.95) 0%, rgba(15, 21, 38, 0.98) 100%);
  border: 1.5px solid rgba(255, 51, 75, 0.65);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 45px rgba(255, 51, 75, 0.3), inset 0 1px 0 rgba(255, 100, 120, 0.3);
  transform: scale(1.04);
  z-index: 5;
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-10px);
  border-color: #ff475e;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.75), 0 0 60px rgba(255, 51, 75, 0.45);
}

/* VIP Card Custom Accent */
.pricing-card.plan-vip,
.pricing-card.plan-3 {
  border-color: rgba(255, 190, 26, 0.25);
}

.pricing-card.plan-vip:hover,
.pricing-card.plan-3:hover {
  border-color: rgba(255, 190, 26, 0.65);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 190, 26, 0.2);
}

/* Redesigned Popular Ribbon / Badge */
.popular-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff334b 0%, #d91b38 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 20px rgba(255, 51, 75, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.popular-ribbon .ribbon-star {
  color: #ffdd44;
  font-size: 0.85rem;
}

/* Card Header Section */
.pricing-card-header {
  margin-bottom: 20px;
}

.plan-header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.plan-avatar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card.popular .plan-avatar-icon {
  background: rgba(255, 51, 75, 0.15);
  border-color: rgba(255, 51, 75, 0.35);
  box-shadow: 0 0 15px rgba(255, 51, 75, 0.25);
}

.pricing-card.plan-vip .plan-avatar-icon,
.pricing-card.plan-3 .plan-avatar-icon {
  background: rgba(255, 190, 26, 0.12);
  border-color: rgba(255, 190, 26, 0.35);
  box-shadow: 0 0 15px rgba(255, 190, 26, 0.2);
}

.pricing-plan-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 3px 0;
  letter-spacing: -0.3px;
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Cost & Pricing Display */
.pricing-cost-wrap {
  margin-bottom: 22px;
}

.pricing-cost {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-cost .currency-symbol {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.9;
}

.pricing-cost .amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1.5px;
}

.pricing-card.popular .pricing-cost .amount {
  background: linear-gradient(135deg, #ffffff 40%, #ff8090 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-card.plan-vip .pricing-cost .amount,
.pricing-card.plan-3 .pricing-cost .amount {
  background: linear-gradient(135deg, #ffffff 40%, #ffdd66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-cost .unit-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-cost-guarantee {
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.guarantee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
}

/* Card Divider */
.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  margin-bottom: 22px;
}

/* Features List */
.pricing-features-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  margin-bottom: 14px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #e2e8f0;
  line-height: 1.45;
  padding: 0;
  border: none;
}

.pricing-features li::before {
  display: none !important;
}

.feat-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
}

.pricing-card.popular .feat-check {
  background: rgba(255, 51, 75, 0.15);
  border-color: rgba(255, 51, 75, 0.4);
  color: #ff4d61;
  box-shadow: 0 0 10px rgba(255, 51, 75, 0.2);
}

.feat-text {
  flex: 1;
}

/* Card Action Button */
.pricing-card-footer {
  margin-top: auto;
}

.btn-plan-action {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-plan-action .btn-arrow {
  transition: transform 0.25s ease;
  font-size: 1.15rem;
}

.btn-plan-action:hover .btn-arrow {
  transform: translateX(4px);
}

.pricing-card .btn-primary {
  background: linear-gradient(135deg, #ff334b 0%, #dc143c 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 20px rgba(255, 51, 75, 0.45);
}

.pricing-card .btn-primary:hover {
  background: linear-gradient(135deg, #ff4d61 0%, #e11d48 100%);
  box-shadow: 0 10px 28px rgba(255, 51, 75, 0.65);
  transform: translateY(-2px);
}

.pricing-card .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.pricing-card .btn-gold {
  background: linear-gradient(135deg, #ffbe1a 0%, #f59e0b 100%);
  color: #0b0f19;
  border: none;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(255, 190, 26, 0.35);
}

.pricing-card .btn-gold:hover {
  background: linear-gradient(135deg, #ffd043 0%, #fbbf24 100%);
  box-shadow: 0 10px 28px rgba(255, 190, 26, 0.55);
  transform: translateY(-2px);
}

.plan-sub-trust {
  text-align: center;
  margin-top: 12px;
  font-size: 0.76rem;
  color: #94a3b8;
}

/* Catchy 1-Month Trial Banner Below Pricing Table (Compact & Centered) */
.trial-test-box {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(255, 51, 75, 0.08) 0%, rgba(255, 190, 26, 0.06) 50%, rgba(19, 27, 46, 0.95) 100%);
  border: 1px solid rgba(255, 190, 26, 0.35);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 18px rgba(255, 190, 26, 0.08);
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), 
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), 
              border-color 0.35s ease;
  will-change: transform, box-shadow;
}

.trial-test-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 190, 26, 0.7);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 32px rgba(255, 190, 26, 0.25);
}

.trial-test-box::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 180px;
  background: radial-gradient(ellipse, rgba(255, 190, 26, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.trial-test-box:hover::before {
  opacity: 1;
}

.trial-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffbe1a 0%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 14px var(--gold-glow);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trial-test-box:hover .trial-icon-badge {
  transform: scale(1.15) rotate(6deg);
}

.trial-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 190, 26, 0.15);
  border: 1px solid rgba(255, 190, 26, 0.35);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.trial-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  max-width: 520px;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.trial-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 auto 18px;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.trial-action-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.trial-price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.trial-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.trial-period {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-trial-cta {
  padding: 10px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-md);
}

@media (max-width: 640px) {
  .trial-test-box {
    padding: 22px 16px;
    max-width: 95%;
  }
  .trial-title {
    font-size: 1.15rem;
  }
  .trial-amount {
    font-size: 1.8rem;
  }
  .btn-trial-cta {
    width: 100%;
  }
}

/* ==========================================================================
   Contact Page UI Styles (/kontakt) - Modern Dark Glassmorphism Design
   ========================================================================== */
.contact-page-wrapper {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}

/* Ambient Radial Glows */
.contact-bg-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  border-radius: 50%;
}

.contact-bg-glow.glow-primary {
  top: 5%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 51, 75, 0.15) 0%, transparent 70%);
}

.contact-bg-glow.glow-whatsapp {
  top: 35%;
  left: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.12) 0%, transparent 70%);
}

/* Breadcrumb */
.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-breadcrumb a:hover {
  color: #fff;
}

.contact-breadcrumb .bc-sep {
  color: rgba(255, 255, 255, 0.2);
}

.contact-breadcrumb .bc-current {
  color: var(--gold);
  font-weight: 600;
}

/* Header */
.contact-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}

.contact-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 18px;
}

.contact-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.contact-main-heading {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.15;
}

.contact-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* ==========================================================================
   Contact Page UI Styles (/kontakt) - Reorganized Modern Split Layout
   ========================================================================== */
.contact-page-wrapper {
  position: relative;
  padding: 50px 0 100px;
  overflow: hidden;
}

/* Ambient Radial Glows */
.contact-bg-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  border-radius: 50%;
}

.contact-bg-glow.glow-primary {
  top: 5%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 51, 75, 0.15) 0%, transparent 70%);
}

.contact-bg-glow.glow-whatsapp {
  top: 30%;
  left: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.14) 0%, transparent 70%);
}

/* Breadcrumb */
.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-breadcrumb a:hover {
  color: #fff;
}

.contact-breadcrumb .bc-sep {
  color: rgba(255, 255, 255, 0.2);
}

.contact-breadcrumb .bc-current {
  color: var(--gold);
  font-weight: 600;
}

/* Header */
.contact-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px;
  position: relative;
  z-index: 1;
}

.contact-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
}

.contact-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.contact-main-heading {
  font-size: 2.85rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.contact-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* 2-Column Split Layout */
.contact-layout-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

/* Left Sidebar Column */
.contact-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* WhatsApp Channel Card */
.contact-channel-card {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 27, 45, 0.9) 0%, rgba(13, 18, 30, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.contact-channel-card.card-whatsapp {
  border-color: rgba(37, 211, 102, 0.3);
}

.contact-channel-card.card-whatsapp:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55),
              0 0 35px rgba(37, 211, 102, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-channel-card.card-email {
  border-color: rgba(59, 130, 246, 0.3);
}

.contact-channel-card.card-email:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55),
              0 0 35px rgba(59, 130, 246, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.channel-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-channel-card:hover .channel-icon-badge {
  transform: scale(1.08) rotate(4deg);
}

.channel-icon-badge.icon-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(18, 140, 126, 0.35) 100%);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.channel-icon-badge.icon-email {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.35) 100%);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.channel-badge-chip.badge-recommended {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.channel-badge-chip.badge-email {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.35);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.channel-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.channel-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.channel-highlight-box {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.channel-highlight-box.highlight-whatsapp {
  border-left: 3px solid #25D366;
}

.channel-highlight-box.highlight-email {
  border-left: 3px solid #3b82f6;
}

.highlight-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-value {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #ffffff;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s ease;
}

.highlight-value.phone-number:hover {
  color: #25D366;
}

.highlight-value.email-address:hover {
  color: #60a5fa;
}

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

.btn-channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-channel-arrow {
  transition: transform 0.25s ease;
  font-size: 1.15rem;
}

.btn-channel:hover .btn-channel-arrow {
  transform: translateX(4px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee06f 0%, #179b8c 100%);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
  color: #fff;
}

.btn-email {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-email:hover {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.channel-note-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  justify-content: center;
}

.status-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.status-live-dot.dot-email {
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
}

/* Left Column Benefits Card */
.contact-benefits-card {
  background: rgba(19, 27, 46, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.benefits-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.benefits-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon {
  font-size: 1.25rem;
  line-height: 1.2;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-card-list strong {
  display: block;
  font-size: 0.88rem;
  color: #f1f5f9;
  font-weight: 700;
  margin-bottom: 2px;
}

.benefits-card-list p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* RIGHT COLUMN: Interactive Message Composer Card */
.contact-main-col {
  display: flex;
  flex-direction: column;
}

.contact-composer-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 38px 34px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.composer-header {
  margin-bottom: 26px;
}

.composer-header h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.composer-header p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.composer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}

.optional-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.composer-input {
  width: 100%;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 13px 16px;
  color: #ffffff;
  font-size: 0.94rem;
  font-family: inherit;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.composer-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background: rgba(15, 23, 42, 0.95);
}

.composer-select {
  cursor: pointer;
}

.composer-select option {
  background: #0f172a;
  color: #ffffff;
}

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

.composer-choose-text {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #cbd5e1;
  text-align: center;
}

.composer-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-composer {
  padding: 15px 20px;
  font-size: 0.98rem;
  width: 100%;
  border-radius: 14px;
}

.composer-footnote {
  text-align: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Contact FAQ Section (Full-width Below) */
.contact-faq-section {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .contact-layout-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .contact-main-heading {
    font-size: 2.2rem;
  }
  .contact-composer-card {
    padding: 28px 20px;
  }
  .composer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .composer-actions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Device compatibility */
.device-strip {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.25s ease, color 0.25s ease;
  cursor: default;
}

.device-item .icon {
  font-size: 1.8rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.device-item:hover {
  color: #fff;
  transform: translateY(-3px);
}

.device-item:hover .icon {
  transform: scale(1.18);
}

/* Channel Category Cards */
.channel-card {
  background: var(--bg-card);
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), 
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), 
              border-color 0.35s ease, 
              background 0.35s ease;
  will-change: transform, box-shadow;
}

.channel-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  border-color: rgba(255, 51, 75, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 51, 75, 0.15);
}

.channel-card h3 span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.channel-card:hover h3 span {
  transform: scale(1.2) rotate(4deg);
}

/* FAQ Accordion */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.faq-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.faq-card[open] {
  border-color: rgba(255, 51, 75, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 51, 75, 0.12);
}

.faq-card summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-card summary:hover {
  color: #fff;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq-card[open] summary::after {
  transform: rotate(45deg);
  color: #ff4d61;
}

.faq-body {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SEO Article Section (IPTV Deutschland & German IPTV) */
.seo-article-section {
  padding: 80px 0 90px;
}

.seo-article-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 45px 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.seo-article-header {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 25px;
}

.seo-article-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 16px;
  color: #fff;
}

.seo-article-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #cbd5e1;
  font-weight: 500;
}

.seo-article-body {
  color: #94a3b8;
  font-size: 0.98rem;
  line-height: 1.8;
}

.seo-article-body h3 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-article-body h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--primary);
  border-radius: 2px;
}

.seo-article-body p {
  margin-bottom: 18px;
}

.seo-article-body strong {
  color: #fff;
  font-weight: 700;
}

.seo-article-body ul {
  list-style: none;
  margin: 18px 0 26px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-article-body li {
  position: relative;
  padding-left: 26px;
  color: #e2e8f0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.seo-article-body li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  color: #10b981;
  font-size: 0.9rem;
  font-weight: bold;
}

.seo-article-cta {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255, 51, 75, 0.1) 0%, rgba(255, 190, 26, 0.08) 100%);
  border: 1px solid rgba(255, 51, 75, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.seo-cta-text h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.seo-cta-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.seo-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .seo-article-wrapper {
    padding: 30px 20px;
  }
  .seo-article-title {
    font-size: 1.65rem;
  }
  .seo-article-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .seo-cta-actions {
    width: 100%;
  }
  .seo-cta-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Footer */
.site-footer {
  background: #070a12;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}

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

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

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-pill {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-desc {
    margin: 0 auto 34px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 18px 12px;
  }
  .trust-item {
    padding: 12px 14px;
    text-align: center;
    position: relative;
  }
  /* Vertical divider between left and right column */
  .trust-item:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
    display: block;
  }
  .trust-item:nth-child(even)::after {
    display: none;
  }
  /* Horizontal divider between top and bottom rows */
  .trust-item:nth-child(1)::before,
  .trust-item:nth-child(2)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.02) 100%);
  }
  .pricing-card.popular {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-trust {
    padding: 14px 8px;
  }
  .trust-item {
    padding: 10px 8px;
  }
  .trust-num {
    font-size: 1.3rem;
  }
  .trust-label {
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   Blog Archive & Single Article Styles (3-Column Grid & Smooth Animations)
   ========================================================================== */

/* Blog Hero */
.blog-hero-section {
  position: relative;
  padding: 70px 0 50px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  background: radial-gradient(ellipse at top, rgba(255, 51, 75, 0.08) 0%, transparent 70%);
}

.blog-hero-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #fff;
}

.blog-hero-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Blog Grid Header */
.blog-grid-section {
  padding: 60px 0 90px;
}

.blog-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-count-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

/* 3-Column Responsive Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-hero-title {
    font-size: 2.2rem;
  }
}

/* Blog Card Component with Smooth GPU Micro-Interactions */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              background 0.35s ease;
  will-change: transform, box-shadow;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 51, 75, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 28px rgba(255, 51, 75, 0.2);
}

/* Card Featured Media */
.blog-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #070a12;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.08);
}

.blog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 99px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.blog-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 25, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-media-overlay {
  opacity: 1;
}

.read-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 0 20px var(--primary-glow);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover .read-icon {
  transform: scale(1);
}

/* Card Content Area */
.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

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

.meta-separator {
  color: rgba(255, 255, 255, 0.2);
}

.blog-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #fff;
}

.blog-card-title a {
  color: #fff;
  transition: color 0.25s ease;
}

.blog-card:hover .blog-card-title a {
  color: #ff6b7e;
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Footer */
.blog-card-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap 0.25s ease, color 0.25s ease;
}

.blog-read-link .arrow {
  transition: transform 0.25s ease;
}

.blog-card:hover .blog-read-link {
  color: #ff6b7e;
}

.blog-card:hover .blog-read-link .arrow {
  transform: translateX(5px);
}

/* Blog Archive Bottom CTA */
.blog-archive-cta {
  margin-top: 70px;
  background: linear-gradient(135deg, rgba(255, 51, 75, 0.12) 0%, rgba(255, 190, 26, 0.08) 50%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 51, 75, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.blog-archive-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-left h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.cta-left p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 580px;
  margin: 0;
}

.cta-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Single Article Detail Page
   ========================================================================== */
.single-article-page {
  position: relative;
  padding: 40px 0 80px;
}

/* Breadcrumbs */
.article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

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

.article-breadcrumbs a:hover {
  color: var(--primary);
}

.article-breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.2);
}

.article-breadcrumbs .current {
  color: #fff;
  font-weight: 600;
}

/* Article Container */
.article-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin-bottom: 60px;
}

.article-header {
  margin-bottom: 36px;
}

.article-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.article-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

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

.author-avatar {
  font-size: 1.6rem;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.author-role {
  font-size: 0.78rem;
  color: #10b981;
  display: block;
}

.meta-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.article-featured-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  margin-bottom: 36px;
}

.article-featured-image img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

/* Article Body Typography */
.article-body {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-body h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.article-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-body h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--primary);
  border-radius: 2px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body strong {
  color: #fff;
  font-weight: 700;
}

.article-body ul, .article-body ol {
  margin: 20px 0 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-body li {
  line-height: 1.7;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.article-body th {
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
}

.article-body td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  color: #e2e8f0;
}

.article-body code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--gold);
}

/* In-Article CTA Box */
.blog-cta-box {
  margin: 36px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255, 51, 75, 0.12) 0%, rgba(255, 190, 26, 0.08) 100%);
  border: 1px solid rgba(255, 51, 75, 0.4);
  border-radius: var(--radius-md);
  text-align: center;
}

.blog-cta-box h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.blog-cta-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* Author Box & Footer */
.article-footer-cta {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 500px;
}

.author-avatar-large {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 51, 75, 0.15);
  border: 1px solid rgba(255, 51, 75, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .article-container {
    padding: 30px 20px;
  }
  .article-title {
    font-size: 1.75rem;
  }
  .article-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-back-link, .article-back-link .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Fixed Bottom Action Banner (Mobile & Desktop)
   ========================================================================== */
body {
  padding-bottom: 84px; /* Prevent bottom bar from covering footer content */
}

.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  animation: slideUpBottomBar 0.4s ease forwards;
}

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

.fixed-bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fixed-bottom-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fixed-bottom-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.fixed-bottom-text {
  display: flex;
  flex-direction: column;
}

.fixed-bottom-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.2px;
}

.fixed-bottom-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.btn-fixed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-sizing: border-box;
}

.btn-fixed .btn-icon {
  font-size: 1.05rem;
}

/* View Package Button */
.btn-fixed-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-fixed-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #fff;
}

/* Order Now Button */
.btn-fixed-primary {
  background: linear-gradient(135deg, #ff334b 0%, #e11d48 100%);
  color: #fff;
  border: 1px solid rgba(255, 51, 75, 0.4);
  box-shadow: 0 4px 18px rgba(255, 51, 75, 0.4);
}

.btn-fixed-primary:hover {
  background: linear-gradient(135deg, #ff4d63 0%, #f43f5e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 51, 75, 0.6);
  color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  body {
    padding-bottom: 74px;
  }
  .fixed-bottom-bar {
    padding: 10px 0;
  }
  .fixed-bottom-container {
    padding: 0 14px;
    gap: 10px;
  }
  .fixed-bottom-info {
    display: none; /* Keep the mobile bar clean and focused purely on CTA buttons */
  }
  .fixed-bottom-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .btn-fixed {
    width: 100%;
    padding: 11px 12px;
    font-size: 0.88rem;
    border-radius: 10px;
  }
}

/* ==========================================================================
   Floating WhatsApp Button with High-Attention Sonar Waves & Wiggle Animation
   ========================================================================== */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 86px; /* Positioned right above the fixed bottom bar */
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
}

/* Radar / Sonar Wave Ripples radiating outwards */
.whatsapp-wave-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}

.whatsapp-wave-ring.ring-1 {
  animation: whatsappSonar 3s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.whatsapp-wave-ring.ring-2 {
  animation: whatsappSonar 3s cubic-bezier(0.1, 0.8, 0.3, 1) infinite 1.4s;
}

@keyframes whatsappSonar {
  0% {
    width: 60px;
    height: 60px;
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.7);
  }
  50% {
    opacity: 0.45;
  }
  100% {
    width: 110px;
    height: 110px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0);
  }
}

/* WhatsApp Main Button Container with periodic attention "phone call" wiggle */
.whatsapp-btn-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5),
              0 0 20px rgba(37, 211, 102, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  text-decoration: none;
  animation: whatsappHeartbeatWobble 6s ease-in-out infinite;
}

/* Periodic Attention Keyframes: Gentle breathing pause + vigorous phone ring vibration */
@keyframes whatsappHeartbeatWobble {
  0%, 70%, 100% {
    transform: scale(1) rotate(0deg);
  }
  74% {
    transform: scale(1.12) rotate(-14deg);
  }
  78% {
    transform: scale(1.12) rotate(14deg);
  }
  82% {
    transform: scale(1.12) rotate(-10deg);
  }
  86% {
    transform: scale(1.12) rotate(10deg);
  }
  90% {
    transform: scale(1.06) rotate(-4deg);
  }
  94% {
    transform: scale(1.03) rotate(4deg);
  }
}

.whatsapp-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-btn-link:hover {
  transform: scale(1.15) translateY(-3px) !important;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7),
              0 0 30px rgba(37, 211, 102, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.whatsapp-btn-link:hover .whatsapp-icon-inner {
  transform: rotate(-10deg) scale(1.08);
}

/* Red Notification "+" Badge - Radiant Pulse & Attention Jump */
.whatsapp-red-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 25px;
  height: 25px;
  padding: 0 6px;
  background: linear-gradient(135deg, #ff1744 0%, #d50000 100%);
  color: #ffffff;
  border: 2px solid #0b0f19;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 14px rgba(255, 23, 68, 0.9), 0 2px 5px rgba(0, 0, 0, 0.4);
  animation: badgeAttentionBounce 3s cubic-bezier(0.28, 0.84, 0.42, 1) infinite;
  z-index: 2;
}

.whatsapp-badge-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: rgba(255, 23, 68, 0.75);
  animation: badgePingUrgent 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes badgePingUrgent {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  65%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes badgeAttentionBounce {
  0%, 75%, 100% {
    transform: translateY(0) scale(1);
  }
  80% {
    transform: translateY(-6px) scale(1.18);
  }
  85% {
    transform: translateY(0) scale(0.95);
  }
  90% {
    transform: translateY(-3px) scale(1.08);
  }
  95% {
    transform: translateY(0) scale(1);
  }
}

.whatsapp-badge-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Tooltip on Desktop Hover */
.whatsapp-tooltip-box {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translateY(-50%) translateX(12px);
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #f8fafc;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 12px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55),
              0 0 20px rgba(37, 211, 102, 0.15);
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.whatsapp-tooltip-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 7px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(15, 23, 42, 0.96);
}

.tooltip-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: dotBlink 1.5s infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.whatsapp-btn-link:hover .whatsapp-tooltip-box {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .floating-whatsapp-wrap {
    bottom: 76px; /* Positioned directly above the mobile 2-button bar */
    right: 14px;
    width: 60px;
    height: 60px;
  }
  .whatsapp-wave-ring {
    width: 52px;
    height: 52px;
  }
  .whatsapp-btn-link {
    width: 54px;
    height: 54px;
  }
  .whatsapp-btn-link svg {
    width: 30px;
    height: 30px;
  }
  .whatsapp-tooltip-box {
    display: none;
  }
  .whatsapp-red-badge {
    min-width: 22px;
    height: 22px;
    font-size: 0.82rem;
    top: -3px;
    right: -3px;
  }
}

/* ==========================================================================
   Installation & Step-by-Step Guide Page (/installation)
   ========================================================================== */
.install-page-wrapper {
  position: relative;
  padding: 50px 0 100px;
  overflow: hidden;
}

.install-bg-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  border-radius: 50%;
}

.install-bg-glow.glow-1 {
  top: 5%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, transparent 70%);
}

.install-bg-glow.glow-2 {
  top: 40%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 51, 75, 0.14) 0%, transparent 70%);
}

.install-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.install-breadcrumb a:hover {
  color: #fff;
}

.install-breadcrumb .bc-sep {
  color: rgba(255, 255, 255, 0.2);
}

.install-breadcrumb .bc-current {
  color: #60a5fa;
  font-weight: 600;
}

.install-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 46px;
  position: relative;
  z-index: 1;
}

.install-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 16px;
}

.install-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
}

.install-main-title {
  font-size: 2.85rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.install-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 740px;
  margin: 0 auto;
}

/* Prerequisites Card */
.install-prereq-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(20, 28, 48, 0.85) 0%, rgba(13, 19, 33, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 20px;
  padding: 26px 30px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.prereq-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.prereq-content h3 {
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.prereq-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.prereq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.prereq-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prereq-pill strong {
  color: #e2e8f0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.prereq-pill code {
  color: #93c5fd;
  font-family: monospace;
  font-size: 0.82rem;
  word-break: break-all;
}

/* Device Selector Tabs Navigation */
.install-tabs-nav {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 34px;
  scrollbar-width: thin;
}

.install-tabs-nav .tab-btn {
  flex: 1;
  min-width: 170px;
  background: rgba(19, 27, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  color: #94a3b8;
  position: relative;
}

.install-tabs-nav .tab-btn:hover {
  background: rgba(25, 36, 62, 0.9);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.install-tabs-nav .tab-btn.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(30, 58, 138, 0.4) 100%);
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.install-tabs-nav .tab-icon {
  font-size: 1.5rem;
}

.install-tabs-nav .tab-title {
  font-size: 0.92rem;
  font-weight: 700;
}

.install-tabs-nav .tab-badge {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #ff334b;
  color: #fff;
  padding: 2px 7px;
  border-radius: 99px;
  position: absolute;
  top: 8px;
  right: 8px;
}

/* Tab Content Visibility */
.install-tab-content {
  display: none;
  position: relative;
  z-index: 1;
}

.install-tab-content.active {
  display: block;
  animation: fadeInGuide 0.35s ease;
}

@keyframes fadeInGuide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Guide Header Strip */
.guide-header-strip {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.guide-lead-text h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.guide-lead-text p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin: 0;
}

.guide-est-time {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #93c5fd;
  white-space: nowrap;
}

/* Timeline Step Cards */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.step-card {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.step-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-2px);
}

.step-card.success-step {
  border-color: rgba(34, 197, 94, 0.35);
  background: linear-gradient(180deg, rgba(20, 27, 45, 0.9) 0%, rgba(13, 28, 22, 0.95) 100%);
}

.step-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.12);
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.success-step .step-number {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.step-body {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.step-desc:last-child {
  margin-bottom: 0;
}

.step-tip {
  background: rgba(245, 158, 11, 0.1);
  border-left: 3px solid #f59e0b;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #fcd34d;
  margin-top: 10px;
}

.code-copy-box {
  background: rgba(11, 15, 25, 0.9);
  border: 1px dashed rgba(59, 130, 246, 0.4);
  border-radius: 12px;
  padding: 12px 18px;
  margin: 12px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.code-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.code-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #60a5fa;
  font-family: monospace;
}

.code-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.step-sublist {
  padding-left: 20px;
  margin: 10px 0 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.step-sublist li {
  margin-bottom: 6px;
}

.step-sublist strong {
  color: #ffffff;
}

.step-options-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.step-opt-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
}

.step-opt-box strong {
  color: #60a5fa;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 6px;
}

.step-opt-box p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.step-success-banner {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 12px 18px;
  border-radius: 10px;
  color: #86efac;
  font-size: 0.94rem;
  font-weight: 700;
  margin-top: 12px;
}

/* Need Help / Support CTA Section */
.install-support-cta {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(20, 27, 45, 0.95) 0%, rgba(13, 18, 30, 0.98) 100%);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 24px;
  padding: 46px 36px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.support-cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.18) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.support-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.support-cta-badge {
  display: inline-block;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.support-cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.support-cta-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.support-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Mobile Responsiveness for Installation Page */
@media (max-width: 768px) {
  .install-main-title {
    font-size: 2.1rem;
  }
  .install-prereq-card {
    flex-direction: column;
    padding: 22px 20px;
  }
  .step-card {
    flex-direction: column;
    padding: 22px 18px;
    gap: 16px;
  }
  .step-number {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }
  .step-options-two {
    grid-template-columns: 1fr;
  }
  .guide-header-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .support-cta-actions {
    flex-direction: column;
  }
  .support-cta-actions .btn {
    width: 100%;
  }
}



