/* ═══════════════════════════════════════
   IPTV SELECT — HOMEPAGE STYLES
   Matches PrimeHD layout
═══════════════════════════════════════ */

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

body {
    background: #0a0a0f;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ─── NAVBAR ───────────────────────────── */
.site-header {
    background: #06060c !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    box-shadow: none !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: #a78bfa;
}

/* Desktop nav */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.navbar-nav .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

/* CTA button */
.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.navbar-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Hamburger */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.navbar-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.navbar-mobile {
    display: none;
    flex-direction: column;
    background: #09090f;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 12px 24px 20px;
}

.navbar-mobile.open {
    display: flex;
}

.mob-link {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}

.mob-link:hover { color: #fff; }

.mob-cta {
    display: block;
    margin-top: 16px;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .navbar-nav, .navbar-cta { display: none; }
    .navbar-hamburger { display: flex; }
}

/* footer */
.site-footer {
    background: #060608 !important;
    border-top: 1px solid #1e1e3a !important;
    color: #cbd5e1 !important;
}

/* hide sidebar on front page */
.home .site-sidebar,
.front-page .site-sidebar { display: none !important; }
.home .site-content,
.front-page .site-content { width: 100% !important; max-width: 100% !important; }

/* ─── HERO ─────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 50%, #0a1628 100%);
    text-align: center;
    padding: 80px 20px 60px;
    border-bottom: 1px solid #1e1e3a;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-timer-label {
    font-size: 0.9rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.countdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px 28px;
}

.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
}

.cd-block span {
    font-size: 2.2rem;
    font-weight: 800;
    color: #a78bfa;
    line-height: 1;
}

.cd-block small {
    font-size: 9px;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 4px;
}

.cd-sep {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 14px;
}

/* ─── COMPARISON ───────────────────────── */
.comparison-section {
    padding: 80px 20px;
    background: #0d0d1a;
}

.comparison-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 700px) {
    .comparison-wrap { grid-template-columns: 1fr; }
}

.comp-card {
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid #1e1e3a;
    text-align: center;
}

.old-way {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.smart-way {
    background: linear-gradient(135deg, #0f3460, #1a1a4e);
    border-color: #4f46e5;
    position: relative;
}

.comp-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.old-label { background: #dc2626; color: #fff; }
.smart-label { background: #15803d; color: #fff; }

.comp-sublabel {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 24px;
}

.comp-list { list-style: none; }
.comp-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}

.service-name { color: #cbd5e1; }
.service-price { color: #f87171; font-weight: 600; }

.comp-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
}

.total-price { font-size: 1.4rem; color: #f87171; }

.comp-yearly {
    font-size: 10px;
    letter-spacing: 3px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 8px;
}

.comp-yearly-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f87171;
    margin: 4px 0;
}

.comp-yearly-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.5;
}

.smart-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.smart-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.stat-item {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
}

.stat-icon { font-size: 1.4rem; margin-bottom: 4px; }
.stat-num { font-size: 0.95rem; font-weight: 800; color: #a78bfa; }
.stat-label { font-size: 9px; letter-spacing: 2px; color: #94a3b8; text-transform: uppercase; }

.smart-includes-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.smart-brands {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
}

.smart-brands span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.smart-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    color: #86efac;
    justify-content: center;
}

.smart-cta-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: #94a3b8;
    text-transform: uppercase;
}

.smart-price {
    font-size: 3rem;
    font-weight: 800;
    color: #4ade80;
    line-height: 1;
    margin: 6px 0;
}

.smart-price span {
    font-size: 1.2rem;
    color: #86efac;
}

.smart-desc { font-size: 0.85rem; color: #94a3b8; margin-bottom: 8px; }

.smart-save {
    display: inline-block;
    background: linear-gradient(90deg, #16a34a, #15803d);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.smart-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

.trust-item {
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.78rem;
    color: #cbd5e1;
    font-weight: 600;
    line-height: 1.4;
}

.trust-item small { color: #94a3b8; font-size: 0.7rem; font-weight: 400; }

/* ─── SECTION COMMON ────────────────────── */
.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.section-sub {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 48px;
    font-size: 1rem;
}

/* ─── PRICING ───────────────────────────── */
.pricing-section {
    padding: 80px 20px;
    background: #080810;
}

.pricing-wrap {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

@media (max-width: 800px) {
    .pricing-wrap { grid-template-columns: 1fr; max-width: 400px; }
}

.price-card {
    background: linear-gradient(135deg, #0f0f1e, #1a1a2e);
    border: 1px solid #1e1e3a;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.price-card:hover { transform: translateY(-4px); border-color: #4f46e5; }

.price-card.featured {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border-color: #6d28d9;
    transform: scale(1.04);
}

.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.price-tier-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
    min-height: 20px;
}

.popular-badge {
    color: #fbbf24;
    background: rgba(251,191,36,0.12);
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(251,191,36,0.3);
}

.best-value-badge {
    color: #4ade80;
    background: rgba(74,222,128,0.1);
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(74,222,128,0.3);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #a78bfa;
    margin-bottom: 24px;
}

.price-card.featured .plan-price { color: #c4b5fd; }

.plan-price span {
    font-size: 1rem;
    color: #6d28d9;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.plan-features li {
    padding: 7px 0;
    font-size: 0.85rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    margin-bottom: 10px;
}

.plan-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.starter-btn  { background: linear-gradient(90deg, #4f46e5, #7c3aed); color: #fff; }
.premium-btn  { background: linear-gradient(90deg, #7c3aed, #9333ea); color: #fff; }
.ultimate-btn { background: linear-gradient(90deg, #dc2626, #ea580c); color: #fff; }

.plan-small {
    font-size: 0.72rem;
    color: #94a3b8;
}

/* ─── FEATURES ──────────────────────────── */
.features-section {
    padding: 80px 20px;
    background: #0d0d1a;
}

.features-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.feature-card {
    background: linear-gradient(135deg, #0f0f1e, #1a1a2e);
    border: 1px solid #1e1e3a;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover { border-color: #4f46e5; transform: translateY(-3px); }

.feature-icon { font-size: 2.2rem; margin-bottom: 14px; }

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* ─── FAQ ───────────────────────────────── */
.faq-section {
    padding: 80px 20px;
    background: #080810;
}

.faq-wrap {
    max-width: 720px;
    margin: 0 auto 48px;
}

.faq-item {
    border: 1px solid #1e1e3a;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: #0f0f1e;
    border: none;
    color: #e2e8f0;
    padding: 18px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-q:hover { background: #1a1a2e; }
.faq-q.open { background: #1a1a2e; color: #a78bfa; }

.faq-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
    color: #94a3b8;
}

.faq-q.open .faq-arrow { transform: rotate(180deg); color: #a78bfa; }

.faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.7;
    background: #0f0f1e;
}

.faq-a.open { display: block; }

/* ─── WHATSAPP CTA ──────────────────────── */
.wa-cta {
    text-align: center;
    margin-top: 16px;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0e6b61;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.2s;
}

.wa-btn:hover { background: #055a50; transform: translateY(-2px); }

/* ─── WHATSAPP FLOAT ─────────────────────── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ─── LEAD CAPTURE SECTION ─────────────── */
.lead-capture-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1117 0%, #131a24 50%, #0d1117 100%);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lead-capture-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.lead-capture-text {
    flex: 1;
}

.lead-capture-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 60%, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-capture-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.lead-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lead-benefits li {
    padding: 6px 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.lead-benefits li span {
    margin-right: 8px;
}

.lead-capture-form-wrap {
    flex: 0 0 380px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.lead-capture-form .lead-form-group {
    margin-bottom: 16px;
}

.lead-capture-form label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    font-weight: 500;
}

.lead-capture-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-capture-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.lead-capture-form input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96,165,250,0.15);
}

.lead-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 4px;
}

.lead-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,99,235,0.4);
}

.lead-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.lead-form-feedback {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

.lead-form-feedback.success {
    background: rgba(34,197,94,0.12);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.2);
}

.lead-form-feedback.error {
    background: rgba(239,68,68,0.12);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.2);
}

.lead-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
}

@media (max-width: 768px) {
    .lead-capture-wrap {
        flex-direction: column;
        gap: 32px;
    }
    .lead-capture-form-wrap {
        flex: none;
        width: 100%;
    }
    .lead-capture-text h2 {
        font-size: 1.5rem;
    }
}

/* ─── HERO CTA BUTTONS ─────────────────── */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,99,235,0.4);
}

.hero-cta-trial {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 10px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-cta-trial:hover {
    border-color: #4ade80;
    color: #4ade80;
    background: rgba(74,222,128,0.06);
}

/* ─── SUBSCRIPTION POPUP MODAL ─────────── */
.sub-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sub-popup-overlay.is-visible {
    opacity: 1;
}

.sub-popup {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px 36px;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    color: #1a1a2e;
}

.sub-popup-overlay.is-visible .sub-popup {
    transform: translateY(0) scale(1);
}

.sub-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-popup-close:hover {
    color: #333;
}

.sub-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.sub-popup-plan {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
}

.sub-popup-price {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 28px;
}

.sub-popup-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.trial-price {
    color: #16a34a !important;
}

.trial-badge {
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-bottom: 8px;
}

.trial-badge {
    background: linear-gradient(135deg, #16a34a, #059669);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 30px;
    display: inline-block;
    width: auto;
    text-align: center;
}

.sub-popup .trial-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 12px;
}

.sub-form-group {
    margin-bottom: 18px;
}

.sub-form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.sub-input-wrap {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 14px;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sub-input-wrap:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    background: #fff;
}

.sub-input-icon {
    font-size: 1.1rem;
    color: #999;
    margin-right: 10px;
    flex-shrink: 0;
}

.sub-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 13px 0;
    font-size: 0.95rem;
    color: #333;
    outline: none;
}

.sub-input-wrap input::placeholder {
    color: #bbb;
}

.sub-submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 6px;
}

.sub-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}

.sub-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.trial-submit-btn {
    background: linear-gradient(135deg, #16a34a, #059669);
}

.trial-submit-btn:hover {
    box-shadow: 0 8px 24px rgba(22,163,74,0.4);
}

.sub-form-feedback {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

.sub-form-feedback.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.sub-form-feedback.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.sub-form-note {
    text-align: center;
    font-size: 0.82rem;
    color: #999;
    margin-top: 14px;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .sub-popup {
        padding: 32px 24px 28px;
        border-radius: 16px;
    }
    .sub-popup-title {
        font-size: 1.25rem;
    }
    .sub-popup-price {
        font-size: 1.8rem;
    }
}
 
