/*
Theme Name: IPTV24 Deutschland
Description: Custom theme for IPTV24 Deutschland (DACH target), inspired by Midnight Broadcast and Antigravity principles.
Version: 1.1.0
Author: IPTV24
Text Domain: iptv24
*/

:root {
  --bg: #03070c;
  --panel: rgba(10, 18, 29, 0.4); /* Glass base */
  --panel-2: rgba(13, 23, 36, 0.5);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-highlight: rgba(255, 255, 255, 0.12);
  --line: rgba(151, 199, 224, 0.08);
  --line-strong: rgba(151, 199, 224, 0.15);

  --text-primary: #f0f6fc;
  --text-secondary: #8b9eb0;
  --text-faint: #4b5e70;

  --cyan: #1fd3f7;
  --cyan-deep: #0e8df2;
  --cyan-glow: rgba(31, 211, 247, 0.40);
  
  --grad-brand: linear-gradient(135deg, #36e5ff 0%, #1cc4f4 48%, #0e8df2 100%);
  --grad-text: linear-gradient(110deg, #6eefff 0%, #1fd3f7 45%, #4f9ef9 100%);

  --font-display: "Bricolage Grotesque", "Instrument Sans", sans-serif;
  --font-body: "Instrument Sans", "Segoe UI", sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --container: 1200px;
  --nav-h: 80px;
  --section-pad: clamp(80px, 10vw, 120px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Weightless shadows */
  --shadow-float: 0 30px 60px -20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(31, 211, 247, 0.05);
  --shadow-hover: 0 40px 80px -20px rgba(0, 0, 0, 0.9), 0 0 60px rgba(31, 211, 247, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Atmospheric 3D Background */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: 
    radial-gradient(1200px circle at 80% -10%, rgba(14, 141, 242, 0.15), transparent 60%),
    radial-gradient(1000px circle at -10% 30%, rgba(31, 211, 247, 0.1), transparent 50%),
    radial-gradient(1400px circle at 50% 120%, rgba(14, 141, 242, 0.12), transparent 60%),
    var(--bg);
}
.site-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 0%, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, rgba(0,0,0,0.6), transparent 70%);
  transform: perspective(1000px) rotateX(60deg) scale(2);
  transform-origin: top center;
  opacity: 0.5;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease-out); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1;}
.section { padding: var(--section-pad) 0; position: relative; }
.text-center { text-align: center; }

h1, h2, h3, .pricing-price {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 700;
}
.text-cyan, .highlight {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(31, 211, 247, 0.2));
}

/* Glass Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 14px; font-weight: 600;
  transition: all 0.4s var(--ease-elastic);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 12px 30px -10px var(--cyan-glow), inset 0 1px 1px rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover { 
  transform: translateY(-4px) scale(1.02); 
  box-shadow: 0 20px 40px -10px var(--cyan-glow), inset 0 1px 1px rgba(255,255,255,0.4);
}

.btn-secondary {
  border: 1px solid var(--glass-highlight);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.5);
}
.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(31, 211, 247, 0.6);
  background: rgba(31, 211, 247, 0.08);
  box-shadow: 0 15px 30px -10px rgba(31, 211, 247, 0.2);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* Navbar - Glassmorphism */
.navbar { 
  position: fixed; top: 0; left: 0; right: 0; z-index: 90; 
  background: rgba(3, 7, 12, 0.5); 
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border); 
  transition: all 0.4s var(--ease-out);
}
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; display: block; flex-shrink: 0; }
/* Nav Brand Group - Logo + Status Pill Side by Side */
.nav-brand-group { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a { 
  padding: 8px 16px; color: var(--text-secondary); font-size: 0.95rem; font-weight: 500;
  border-radius: 10px; transition: all 0.3s var(--ease-out); white-space: nowrap;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-links .nav-cta { 
  background: var(--grad-brand); color: #fff; border-radius: 10px; 
  box-shadow: 0 4px 15px var(--cyan-glow); margin-left: 10px; flex-shrink: 0;
}
.nav-links .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--cyan-glow); }

@media (max-width: 1240px) and (min-width: 901px) {
  .nav-links { gap: 4px; }
  .nav-links a { padding: 6px 10px; font-size: 0.86rem; }
  .nav-links .nav-cta { padding: 8px 14px; font-size: 0.86rem; margin-left: 4px; }
  .server-status-pill { padding: 4px 8px; font-size: 0.72rem; }
}

/* Hero */
.hero { padding: calc(var(--nav-h) + 100px) 0 80px; text-align: center; perspective: 1000px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); max-width: 900px; margin: 0 auto 24px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 650px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 20px; justify-content: center; }

/* GSAP Animated Elements Class */
.gsap-fade-up { /* Initial state managed by GSAP to avoid 0 to 0 animation */ }

/* Glass Cards - The core antigravity vibe */
.glass-card {
  background: var(--panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, -20%), rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none; opacity: 0; transition: opacity 0.5s;
}
.glass-card:hover {
  border-color: var(--glass-highlight);
  box-shadow: var(--shadow-hover);
}
.glass-card:hover::before { opacity: 1; }

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 50px; perspective: 1200px; }
.pricing-card { @extend .glass-card; padding: 40px 30px; text-align: center; display: flex; flex-direction: column; }
.pricing-card.featured { 
  border-color: rgba(31, 211, 247, 0.4); 
  background: linear-gradient(180deg, rgba(14, 141, 242, 0.1), var(--panel));
  box-shadow: 0 0 50px -15px var(--cyan-glow), var(--shadow-float);
  transform: translateZ(20px);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 80px -15px var(--cyan-glow), var(--shadow-hover);
}

.pricing-duration { font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-price { font-size: 3rem; color: var(--text-primary); margin-bottom: 20px; text-shadow: 0 4px 20px rgba(255,255,255,0.1); }
.pricing-features { margin: 20px 0 30px; text-align: left; flex-grow: 1; }
.pricing-features li { padding: 12px 0; border-bottom: 1px solid var(--glass-border); font-size: 0.95rem; color: var(--text-secondary); display: flex; gap: 10px; align-items: center; }
.pricing-features li::before { content: "✦"; color: var(--cyan); font-size: 0.8rem; }
.pricing-toggle { display: flex; justify-content: center; gap: 15px; align-items: center; margin: 30px 0 20px; }
.toggle-switch { width: 60px; height: 32px; background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border); border-radius: 16px; position: relative; cursor: pointer; transition: all 0.3s; box-shadow: inset 0 2px 5px rgba(0,0,0,0.5); }
.toggle-switch::after { content: ''; position: absolute; left: 4px; top: 4px; width: 22px; height: 22px; background: var(--grad-brand); border-radius: 50%; transition: left 0.4s var(--ease-elastic), box-shadow 0.3s; box-shadow: 0 0 10px var(--cyan-glow); }
.toggle-switch.active::after { left: 32px; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 50px; perspective: 1000px; }
.feature-card { padding: 40px; text-align: left; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #fff; }
.feature-card p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }

/* Devices */
.devices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 50px; }
.device-card { padding: 30px; text-align: center; }

/* FAQ */
.faq-list { max-width: 800px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-q { padding: 24px 0; font-size: 1.15rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; transition: color 0.3s; }
.faq-q:hover { color: var(--cyan); }
.faq-a { padding-bottom: 24px; color: var(--text-secondary); line-height: 1.7; }
details.faq-item:not([open]) .faq-a { display: none; }
details.faq-item[open] .faq-a, .faq-item.active .faq-a { display: block; animation: fadeIn 0.3s var(--ease-out); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Footer */
.footer { border-top: 1px solid var(--glass-border); padding: 80px 0 40px; margin-top: 80px; position: relative; overflow: hidden; background: rgba(0,0,0,0.3); backdrop-filter: blur(10px); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 50px; margin-bottom: 60px; }
.footer-col h4 { font-family: var(--font-display); margin-bottom: 25px; color: var(--text-primary); font-size: 1.2rem; }
.footer-links a { display: block; color: var(--text-secondary); margin-bottom: 12px; font-size: 0.95rem; }
.footer-links a:hover { color: var(--cyan); transform: translateX(5px); }

/* Footer Trust Bar */
.footer-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px 30px;
    margin: 45px 0 35px;
    background: rgba(9, 17, 30, 0.75);
    border: 1px solid rgba(31, 211, 247, 0.15);
    border-radius: 18px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}
.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
}
.footer-trust-item:hover {
    transform: translateY(-2px);
}
.footer-trust-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(31, 211, 247, 0.08);
    border: 1px solid rgba(31, 211, 247, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
.footer-trust-item:hover .footer-trust-icon-box {
    border-color: rgba(31, 211, 247, 0.5);
    background: rgba(31, 211, 247, 0.14);
    box-shadow: 0 0 15px rgba(31, 211, 247, 0.2);
}
.footer-trust-content {
    min-width: 0;
}
.footer-trust-content strong {
    display: block;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}
.footer-trust-content span {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.35;
    word-break: break-word;
}

@media (max-width: 1024px) {
    .footer-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 24px;
        padding: 22px 24px;
    }
}
@media (max-width: 640px) {
    .footer-trust-bar {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 16px;
        margin: 35px 0 25px;
        border-radius: 14px;
    }
    .footer-trust-item {
        gap: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .footer-trust-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    .footer-trust-icon-box {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
        border-radius: 10px;
    }
    .footer-trust-content strong {
        font-size: 0.88rem;
    }
    .footer-trust-content span {
        font-size: 0.78rem;
    }
}

/* Language Switcher */
.lang-switcher { display: flex; gap: 8px; background: rgba(0,0,0,0.3); padding: 4px; border-radius: 12px; border: 1px solid var(--glass-border); }
.lang-switcher a { font-size: 0.85rem; text-transform: uppercase; padding: 6px 12px; border-radius: 8px; transition: all 0.3s; }
.lang-switcher a.active { background: var(--cyan-glow); color: #fff; box-shadow: inset 0 0 10px rgba(255,255,255,0.2); }

/* Navigation Hamburger Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 11px 9px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--cyan);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}


/* Ensure glass card classes apply to cards */
.feature-card, .pricing-card, .device-card {
  background: var(--panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  transition: box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature-card:hover, .pricing-card:hover, .device-card:hover {
  border-color: var(--glass-highlight);
  box-shadow: var(--shadow-hover);
}
/* Hero Visual Additions */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}
.hero-content h1 { margin-inline: 0; }
.hero-content p { margin-inline: 0; }
.hero-actions { justify-content: flex-start; }

.hero-visual {
    flex: 1;
    position: relative;
    height: auto;
    perspective: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.floating-ui-group {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(-20deg);
}

.float-card {
    position: absolute;
    background: rgba(13, 23, 36, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(31, 211, 247, 0.1);
    overflow: hidden;
    padding: 24px;
}
.card-glow {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(31, 211, 247, 0.1), transparent 50%);
    pointer-events: none;
}
.card-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }

.ui-skeleton { height: 12px; border-radius: 6px; background: rgba(255, 255, 255, 0.05); }
.line-short { width: 40%; }
.line-medium { width: 70%; }
.line-long { width: 90%; }
.line-full { width: 100%; }
.ui-circle { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)); box-shadow: 0 0 15px var(--cyan-glow); margin-top: auto; }
.mt-2 { margin-top: 12px; }
.font-bold { font-weight: bold; }

.card-1 {
    width: 260px; height: 320px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) translateZ(40px);
    animation: float 6s ease-in-out infinite;
}
.card-2 {
    width: 220px; height: 160px;
    top: 20%; left: 10%;
    transform: translateZ(80px);
    animation: float 7s ease-in-out infinite 1s;
    background: rgba(31, 211, 247, 0.05);
}
.card-3 {
    width: 180px; height: 120px;
    bottom: 20%; right: 5%;
    transform: translateZ(120px);
    animation: float 5s ease-in-out infinite 2s;
    border-color: rgba(31, 211, 247, 0.3);
}

.hero-blur-orb {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: var(--cyan);
    filter: blur(120px);
    opacity: 0.15;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) translateZ(-100px);
}
.orb-2 {
    background: var(--cyan-deep);
    width: 200px; height: 200px;
    top: 20%; left: 80%;
    opacity: 0.2;
}

@keyframes float {
    0% { transform: translateY(0) translateZ(var(--tz, 40px)); }
    50% { transform: translateY(-20px) translateZ(var(--tz, 40px)); }
    100% { transform: translateY(0) translateZ(var(--tz, 40px)); }
}
.card-1 { --tz: 40px; }
.card-2 { --tz: 80px; }
.card-3 { --tz: 120px; }

@media (max-width: 900px) {
    .navbar {
        padding: 12px 0;
    }
    .nav-inner {
        position: relative;
    }
    .nav-brand-group {
        gap: 8px !important;
    }
    .nav-logo img {
        height: 34px !important;
    }
    .server-status-pill {
        padding: 6px 10px;
    }
    .server-status-pill .status-text {
        font-size: 0.72rem;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(6, 11, 22, 0.98) !important;
        border: 1px solid rgba(0, 242, 254, 0.25) !important;
        border-radius: 20px;
        padding: 24px 20px;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 242, 254, 0.12);
        gap: 12px;
        z-index: 1000;
    }
    .nav-links.nav-open {
        display: flex !important;
    }
    .nav-links a {
        font-size: 1.15rem !important;
        font-weight: 700 !important;
        color: #f8fafc !important;
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        text-align: center;
        border-radius: 10px;
        transition: all 0.2s ease;
    }
    .nav-links a:hover {
        color: var(--cyan) !important;
        background: rgba(0, 242, 254, 0.08);
    }
    .nav-links .nav-cta {
        margin-top: 10px !important;
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
        border-bottom: none !important;
        color: #fff !important;
        font-weight: 800 !important;
        box-shadow: 0 4px 20px var(--cyan-glow);
    }
    .hero {
        padding: 110px 0 50px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    .hero h1 {
        font-size: clamp(2.1rem, 7vw, 2.8rem);
        line-height: 1.15;
    }
    .hero p {
        font-size: 1rem;
        line-height: 1.55;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 25px auto 0;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    .hero-visual {
        display: flex !important;
        width: 100%;
        max-width: 480px;
        height: auto !important;
        min-height: auto !important;
        margin: 15px auto 0;
        perspective: none !important;
    }
    .hero-image-container {
        max-width: 100% !important;
    }
    .hero-image-container img {
        max-height: 420px;
        object-fit: contain;
    }
    .devices-banner-section {
        padding: 10px 0 35px !important;
    }
    .devices-banner-section div[style*="border-radius: 20px"] {
        padding: 18px 16px !important;
        border-radius: 16px !important;
    }
    .devices-banner-section img {
        max-height: 60px !important;
    }
    .section {
        padding: 50px 0;
    }
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-card {
        padding: 30px 22px;
    }
    .pricing-card.featured {
        transform: none !important;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .feature-card {
        padding: 26px 20px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .step-card {
        padding: 26px 20px;
    }
    .channels-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer {
        padding: 50px 0 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .server-status-pill .status-text {
        display: none;
    }
    .server-status-pill {
        padding: 8px;
        border-radius: 50%;
    }
    .nav-logo img {
        height: 32px !important;
    }
    .hero {
        padding: 95px 0 35px;
    }
    .hero h1 {
        font-size: 1.95rem;
    }
    .pricing-price {
        font-size: 2.4rem;
    }
    .floating-wa {
        bottom: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
    }
}

/* Floating WhatsApp Widget */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s var(--ease-elastic);
}
.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Utilities for new sections */
.mb-2 { margin-bottom: 15px; }
.step-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
    padding: 40px 30px;
    border: 1px solid var(--glass-border);
}

/* ---------------- Blog & Post Styles ---------------- */
.blog-hero {
    padding: 140px 0 60px;
}
.badge-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(31, 211, 247, 0.1);
    border: 1px solid var(--glass-highlight);
    border-radius: 9999px;
    color: var(--cyan);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.blog-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.blog-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Blog Archive Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 32px;
    margin: 40px 0 80px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-highlight);
    box-shadow: var(--shadow-hover);
}
.blog-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #060b13;
}
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-media img {
    transform: scale(1.05);
}
.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(3, 7, 12, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}
.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}
.blog-card-title a {
    color: #fff;
    transition: color 0.2s;
}
.blog-card-title a:hover {
    color: var(--cyan);
}
.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.blog-read-more {
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-read-more:hover {
    text-decoration: underline;
}

/* ---------------- Single Post Layout ---------------- */
.single-post-layout {
    padding-top: 120px;
}
.post-header {
    max-width: 860px;
    margin: 0 auto 30px;
    text-align: center;
}
.post-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.post-breadcrumbs a {
    color: var(--text-secondary);
}
.post-breadcrumbs a:hover {
    color: var(--cyan);
}
.post-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.post-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    letter-spacing: -0.02em;
}
.post-featured-media {
    max-width: 1000px;
    margin: 0 auto 50px;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
}
.post-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 80px;
}
@media (max-width: 900px) {
    .post-layout-grid {
        grid-template-columns: 1fr;
    }
}

.post-content {
    padding: 44px;
    color: #cfd9e8;
    font-size: 1.08rem;
    line-height: 1.85;
}
.post-content h2 {
    font-size: 1.75rem;
    color: #fff;
    margin: 36px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}
.post-content h3 {
    font-size: 1.35rem;
    color: #e2e8f0;
    margin: 28px 0 14px;
}
.post-content p {
    margin-bottom: 20px;
}
.post-content ul, .post-content ol {
    margin: 0 0 24px 20px;
}
.post-content li {
    margin-bottom: 8px;
}
.post-content strong {
    color: #fff;
}
.post-content blockquote {
    border-left: 3px solid var(--cyan);
    padding: 14px 20px;
    margin: 24px 0;
    background: rgba(31, 211, 247, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: #e2e8f0;
}
.inline-post-img {
    margin: 36px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.inline-post-img img {
    width: 100%;
    height: auto;
    display: block;
}
.inline-post-img figcaption {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.4);
}

/* In-Article WhatsApp CTA Box */
.article-cta-box {
    margin-top: 40px;
    padding: 30px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(14, 141, 242, 0.08));
    border: 1px solid rgba(37, 211, 102, 0.3);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.article-cta-box .cta-icon {
    font-size: 2rem;
}
.article-cta-box h3 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 1.3rem;
}
.article-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

/* Post Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sidebar-widget {
    padding: 30px;
}
.sidebar-widget h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.sidebar-widget h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}
.sidebar-widget p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}
.sidebar-checklist {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
.sidebar-checklist li {
    font-size: 0.92rem;
    color: #e2e8f0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-checklist li span {
    color: var(--cyan);
    font-weight: bold;
}
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}
.sidebar-recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-recent-posts li {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sidebar-recent-posts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.sidebar-recent-posts a {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.4;
    transition: color 0.2s;
    margin-bottom: 4px;
}
.sidebar-recent-posts a:hover {
    color: var(--cyan);
}
.sidebar-recent-posts .recent-date {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Live Server Status Pill */
.server-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #4ade80;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseDot 2s infinite ease-in-out;
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px #22c55e; }
    50% { transform: scale(1.3); opacity: 0.7; box-shadow: 0 0 16px #4ade80; }
}
@media (max-width: 640px) {
    .server-status-pill { display: none; }
}

/* ---------------- Enhanced Pricing Cards (Matching Reference) ---------------- */
.pricing-plan-badge {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 6px;
}
.pricing-plan-badge.popular {
    color: var(--cyan);
    text-shadow: 0 0 15px rgba(31, 211, 247, 0.4);
}
.popular-duration-pill {
    display: inline-block;
    padding: 3px 14px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 6px;
    color: #c084fc;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.pricing-features {
    margin: 18px 0 25px;
    padding: 0;
    list-style: none;
    text-align: left;
    flex-grow: 1;
}
.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li strong {
    color: #ffffff;
    font-weight: 700;
}
.pricing-features li::before {
    display: none !important;
}
.feat-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(31, 211, 247, 0.15);
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 900;
}
.pricing-card.featured .feat-check {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

/* Pricing Features Text Optimization */
.pricing-features li {
    font-size: 0.82rem !important;
    gap: 8px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
}
.pricing-features li strong {
    white-space: nowrap !important;
}

/* ---------------- Homepage Overhaul & WCAG 2.2 AA Styles ---------------- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(31, 211, 247, 0.08);
    border: 1px solid rgba(31, 211, 247, 0.25);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.badge-flag {
    font-size: 1.1rem;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 580px;
}
.hero-microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}
.microcopy-item {
    font-size: 0.85rem;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.microcopy-item .check-icon {
    color: #10b981;
    font-weight: 700;
}
.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 242, 254, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Trust Bar Section */
.trust-bar-section {
    margin-top: -30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}
.trust-bar-card {
    padding: 24px 32px;
    background: rgba(9, 17, 30, 0.75);
    border: 1px solid rgba(31, 211, 247, 0.15);
}
.trust-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}
.trust-text strong {
    display: block;
    color: #f1f5f9;
    font-size: 0.95rem;
    line-height: 1.3;
}
.trust-text span {
    color: #94a3b8;
    font-size: 0.82rem;
    line-height: 1.3;
}
.trust-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 16px;
    padding-top: 12px;
    text-align: center;
    color: #64748b;
    font-size: 0.78rem;
}

/* Compatibility Selector */
.compatibility-section {
    padding: 60px 0;
}
.device-selector-wrapper {
    max-width: 920px;
    margin: 40px auto 0;
}
.device-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}
.device-pill {
    background: rgba(13, 23, 36, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px 18px;
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
}
.device-pill:hover, .device-pill:focus-visible {
    border-color: var(--cyan);
    background: rgba(31, 211, 247, 0.08);
    color: #fff;
    transform: translateY(-2px);
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}
.device-pill.active {
    border-color: var(--cyan);
    background: linear-gradient(135deg, rgba(31, 211, 247, 0.18) 0%, rgba(14, 141, 242, 0.22) 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(31, 211, 247, 0.25);
}
.pill-icon {
    font-size: 1.5rem;
}
.device-pill span {
    font-weight: 700;
    font-size: 0.95rem;
}
.device-pill small {
    font-size: 0.75rem;
    color: #94a3b8;
}
.device-result-card {
    padding: 36px 32px;
    border: 1px solid rgba(31, 211, 247, 0.25);
    background: rgba(10, 18, 30, 0.9);
}
.badge-status-compat {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.device-result-meta h3 {
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 8px;
}
.device-result-meta p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}
.device-result-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.spec-block .spec-label {
    display: block;
    font-size: 0.78rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.spec-block strong {
    color: #f1f5f9;
    font-size: 1rem;
}
.device-result-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Feature Cards Icons */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

/* Channel Category Cards */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.channel-category-card {
    padding: 32px 24px;
    text-align: left;
}
.category-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}
.channel-category-card h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}
.channel-category-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}
.channels-disclaimer {
    margin-top: 30px;
    color: #64748b;
}

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

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.step-card {
    padding: 32px 24px;
    text-align: center;
}
.step-number {
    width: 48px;
    height: 48px;
    background: var(--grad-brand);
    color: #03070c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 18px;
    box-shadow: 0 0 20px var(--cyan-glow);
}
.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #fff;
}
.step-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Pricing Selector (Accessible Radiogroup) */
.pricing-toggle-wrap {
    text-align: center;
    margin: 30px 0 40px;
}
.pricing-selector {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 23, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 5px;
    border-radius: 999px;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.pricing-radio-btn {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 999px;
    transition: all 0.25s var(--ease-out);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}
.pricing-radio-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.pricing-radio-btn.active,
.pricing-radio-btn[aria-checked="true"] {
    color: #03070c;
    background: var(--grad-brand);
    font-weight: 800;
    box-shadow: 0 0 16px var(--cyan-glow);
}
.pricing-radio-btn:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 2px;
}
.toggle-hint {
    color: #cbd5e1;
    font-size: 0.88rem;
    margin-top: 12px;
}
.pricing-monthly-equiv {
    font-size: 0.88rem;
    color: #94a3b8;
    margin-bottom: 16px;
}
.pricing-monthly-equiv strong {
    color: #f1f5f9;
    font-size: 1.05rem;
}
.pricing-duration-sub {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 14px;
}
.popular-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--grad-brand);
    color: #03070c;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(31, 211, 247, 0.4);
}

/* Reviews Aggregate Badge */
.aggregate-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(31, 211, 247, 0.08);
    border: 1px solid rgba(31, 211, 247, 0.25);
    padding: 8px 20px;
    border-radius: 999px;
    margin: 16px 0 10px;
}
.rating-val {
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
}
.rating-divider {
    color: var(--cyan);
}
.rating-count {
    color: #cbd5e1;
    font-size: 0.9rem;
}
.methodology-note {
    color: #64748b;
    margin-bottom: 40px;
}
.testimonial-quote {
    font-style: italic;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}
.author-meta {
    color: #94a3b8;
    font-size: 0.82rem;
}

/* Accessible FAQ with HTML5 Details */
.faq-list {
    max-width: 820px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
details.faq-item {
    padding: 0;
    transition: border-color 0.3s ease;
}
details.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    min-height: 44px;
}
details.faq-item summary::-webkit-details-marker {
    display: none;
}
details.faq-item summary:hover, details.faq-item summary:focus-visible {
    color: var(--cyan);
}
.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
details.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}
details.faq-item .faq-a {
    padding: 0 28px 24px 28px;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
}
details.faq-item:not([open]) .faq-a {
    display: none;
}
details.faq-item[open] .faq-a {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 60px 0;
}
.cta-banner-card {
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(31, 211, 247, 0.25);
    background: linear-gradient(180deg, rgba(14, 141, 242, 0.1) 0%, rgba(10, 18, 30, 0.9) 100%);
}
.cta-banner-content {
    max-width: 750px;
    margin: 0 auto;
}
.cta-banner-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: #fff;
    margin: 16px 0;
}
.cta-banner-content p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}
.cta-banner-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating WhatsApp Widget Styling */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-wa:hover, .floating-wa:focus-visible {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    outline: 2px solid #fff;
    outline-offset: 2px;
}
@media (max-width: 640px) {
    .floating-wa {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
    }
}

/* ============================================================
   WCAG 2.2 AA Global Focus Ring & Contrast Adjustments
   ============================================================ */
*:focus-visible {
    outline: 3px solid #1fd3f7 !important;
    outline-offset: 3px !important;
}

.channels-disclaimer,
.trust-disclaimer,
.methodology-note,
.footer-disclaimer,
.author-meta {
    color: #94a3b8 !important;
}
.pricing-features li,
.spec-block strong,
.testimonial-quote {
    color: #cbd5e1 !important;
}

/* ============================================================
   Hero Section Layout & Compact Mobile Presentation
   ============================================================ */
.hero-primary-cta-wrap {
    margin-bottom: 20px;
}
.hero-secondary-cta-wrap {
    margin-top: 20px;
    text-align: center;
}
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
}

/* Tablet & Mobile Breakpoint (<= 900px) */
@media (max-width: 900px) {
    .hero {
        padding: 105px 0 40px !important;
    }
    .hero-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 24px !important;
    }
    .hero-content {
        max-width: 100% !important;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: clamp(2rem, 6.5vw, 2.7rem) !important;
        margin-left: auto;
        margin-right: auto;
        max-width: 720px;
    }
    .hero-subtitle {
        font-size: 1.05rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 540px !important;
        margin-bottom: 24px !important;
    }
    .hero-primary-cta-wrap {
        width: 100%;
        max-width: 360px;
        margin: 0 auto 16px;
    }
    .hero-primary-cta-wrap .btn {
        width: 100%;
    }
    .hero-microcopy {
        justify-content: center !important;
        margin-top: 0 !important;
        margin-bottom: 24px !important;
    }
    .hero-visual {
        width: 100% !important;
        max-width: 500px !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }
    .hero-secondary-cta-wrap {
        width: 100%;
        max-width: 360px;
        margin: 20px auto 0 !important;
    }
    .hero-secondary-cta-wrap .btn {
        width: 100%;
    }
    .trust-bar-section {
        margin-top: 0 !important;
        margin-bottom: 30px !important;
    }
}

/* Compact Smartphone Presentation (<= 640px)
   Order: Eyebrow -> H1 -> 2-line Subcopy -> Primary CTA above fold -> Reassurance -> Image -> Secondary CTA */
@media (max-width: 640px) {
    .hero {
        padding: 92px 0 32px !important;
    }
    .hero-badge {
        padding: 5px 14px;
        font-size: 0.78rem;
        margin-bottom: 14px;
    }
    .hero-title {
        font-size: clamp(1.75rem, 7.5vw, 2.2rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
        max-width: 380px !important;
        margin-bottom: 20px !important;
    }
    .hero-primary-cta-wrap {
        width: 100%;
        max-width: 340px;
        margin: 0 auto 16px !important;
    }
    .hero-primary-cta-wrap .btn {
        min-height: 48px;
        font-size: 1rem;
        padding: 14px 20px;
    }
    .hero-microcopy {
        gap: 8px 12px !important;
        margin-bottom: 22px !important;
        font-size: 0.8rem !important;
    }
    .hero-visual {
        max-width: 420px !important;
    }
    .hero-main-img {
        border-radius: 18px;
    }
    .hero-secondary-cta-wrap {
        max-width: 340px;
        margin-top: 18px !important;
    }
    .hero-secondary-cta-wrap .btn {
        min-height: 46px;
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    /* Pricing Radiogroup touch targets */
    .pricing-selector {
        width: 100%;
        max-width: 340px;
        display: flex;
        justify-content: stretch;
    }
    .pricing-radio-btn {
        flex: 1;
        padding: 10px 12px;
        font-size: 0.88rem;
        text-align: center;
    }
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Device pills wrapping & scrolling */
    .device-pills {
        gap: 8px;
    }
    .device-pill {
        min-width: 130px;
        padding: 10px 12px;
    }
}

/* Ultra-compact screen (<= 390px, e.g. iPhone 12/13/14 mini, 360px Android) */
@media (max-width: 390px) {
    .hero {
        padding: 86px 0 28px !important;
    }
    .hero-title {
        font-size: 1.7rem !important;
    }
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    .hero-primary-cta-wrap .btn,
    .hero-secondary-cta-wrap .btn {
        padding: 13px 16px;
        font-size: 0.95rem;
    }
    .device-pill {
        min-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
    }
}

/* iPhone SE 1st gen / narrowest screen (<= 320px) */
@media (max-width: 320px) {
    .hero {
        padding: 76px 0 20px !important;
    }
    .hero-badge {
        font-size: 0.72rem;
        padding: 4px 10px;
    }
    .hero-title {
        font-size: 1.45rem !important;
    }
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    .pricing-radio-btn {
        font-size: 0.8rem;
        padding: 8px 6px;
    }
}


