/* Topbar */
.topbar {
  background: #22c55e;
  color: white;
  padding: 6px;
  font-size: 14px;
}

/* Glass Navbar */
.glass-nav {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}

/* HERO */
.hero {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0f172a);
  overflow: hidden;
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 15px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Icons */
.service-icon {
  font-size: 40px;
  color: #22c55e;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 80px 0;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.accordion-button {
  font-weight: 600;
}

.accordion-item {
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color:black;
}

section p {
  font-size: 16px;
  line-height: 1.7;
}

/* Hide on desktop */
.mobile-hero-cta{
    display: none;
}

/* Mobile only */
@media (max-width: 991.98px){

    .mobile-hero-cta{
        display: block;
        width: fit-content;
        max-width: 100%;
        margin: 20px auto 0;
        padding: 12px 30px !important;

        font-size: 16px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;

        border-radius: 50px !important;
        box-shadow: 0 8px 20px rgba(220,53,69,.25);

        transition: all .3s ease;
    }

    .mobile-hero-cta:hover{
        transform: translateY(-2px);
    }
/* Premium Mobile TV Activation Box */

.premium-mobile-activation{
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    border-radius:24px;
    padding:28px 20px;
    margin:20px 14px;
    box-shadow:0 15px 40px rgba(15,23,42,.10);
    border:1px solid rgba(37,99,235,.08);
    text-align:center;
}

.activation-icon{
    width:72px;
    height:72px;
    margin:0 auto 16px;
    border-radius:20px;
    background:linear-gradient(135deg,#1677f2,#0ea5e9);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    box-shadow:0 10px 25px rgba(22,119,242,.25);
}

.activation-badge{
    display:inline-block;
    background:#e0f2fe;
    color:#0369a1;
    font-size:13px;
    font-weight:700;
    padding:6px 14px;
    border-radius:999px;
    margin-bottom:14px;
}

.premium-title{
    font-size:28px;
    line-height:1.25;
    font-weight:800;
    color:#0f172a;
    margin-bottom:14px;
}

.premium-text{
    font-size:15px;
    line-height:1.7;
    color:#475569;
    margin-bottom:22px;
}

.premium-input{
    width:100%;
    height:56px;
    border:2px solid #dbeafe;
    border-radius:16px;
    padding:0 18px;
    text-align:center;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
    background:#fff;
    outline:none;
    margin-bottom:16px;
    transition:all .25s ease;
}

.premium-input:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.premium-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:16px;
    background:linear-gradient(90deg,#1677f2,#0ea5e9);
    color:#fff;
    font-size:17px;
    font-weight:800;
    box-shadow:0 12px 24px rgba(14,165,233,.28);
    transition:transform .2s ease, box-shadow .2s ease;
}

.premium-btn:active{
    transform:scale(.98);
}

.help-box{
    margin-top:18px;
    padding:14px 16px;
    border-radius:16px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    font-size:14px;
    color:#475569;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.help-box a{
    color:#2563eb;
    font-weight:700;
    text-decoration:none;
}

.help-box a:hover{
    text-decoration:underline;
}

/* Hide on tablet and desktop */

@media (min-width:768px){
    .premium-mobile-activation{
        display:none !important;
    }
}