/* ============================================================
   GEO IPTV landing page styles (geo-iptv.php)
   Dedicated gip- prefixed classes, scoped to this page only.
   ============================================================ */

.gip-wrap { font-family: "Inter", sans-serif; color: #2f3c48; }
.gip-wrap * { box-sizing: border-box; }
.gip-wrap a { text-decoration: none; transition: all .3s ease; }
.gip-wrap img { max-width: 100%; }

/* Hero */
.gip-hero {
    background: linear-gradient(135deg, #1c66de 0%, #167e6b 100%);
    color: #fff;
    padding: 150px 0 90px;
    position: relative;
    overflow: hidden;
}
.gip-hero .gip-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gip-hero-grid { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.gip-hero-text { flex: 1 1 520px; }
.gip-hero-visual { flex: 1 1 380px; text-align: center; }
.gip-hero-badge {
    display: inline-block; background: rgba(255,255,255,.18); color: #fff;
    padding: 7px 16px; border-radius: 30px; font-size: 13px; font-weight: 600;
    letter-spacing: .5px; margin-bottom: 22px;
}
.gip-hero h1 { font-size: 46px; line-height: 1.15; color: #fff; font-weight: 800; margin: 0 0 20px; }
.gip-hero h1 span { color: #ffe08a; }
.gip-hero p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.92); margin: 0 0 30px; max-width: 560px; }
.gip-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.gip-btn {
    display: inline-block; padding: 14px 30px; border-radius: 8px;
    font-size: 15px; font-weight: 700; cursor: pointer; border: none;
}
.gip-btn-light { background: #fff; color: #1c66de; }
.gip-btn-light:hover { background: #2f3c48; color: #fff; }
.gip-btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.gip-btn-ghost:hover { background: #fff; color: #167e6b; }
.gip-hero-stats { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.gip-hero-stat b { display: block; font-size: 30px; color: #fff; font-weight: 800; }
.gip-hero-stat span { font-size: 14px; color: rgba(255,255,255,.85); }
.gip-hero-visual img { border-radius: 18px; box-shadow: 0 30px 60px rgba(0,0,0,.25); }

/* Section scaffolding */
.gip-section { padding: 80px 0; }
.gip-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gip-section-head { text-align: center; max-width: 720px; margin: 0 auto 55px; }
.gip-eyebrow { color: #1c66de; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; margin-bottom: 12px; display: block; }
.gip-section-head h2 { font-size: 34px; color: #2f3c48; font-weight: 800; margin: 0 0 16px; line-height: 1.2; }
.gip-section-head p { font-size: 16px; line-height: 1.7; color: #6b7a90; margin: 0; }
.gip-bg-light { background: #f6f8fb; }
.gip-bg-white { background: #fff; }

/* Feature cards */
.gip-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.gip-feature {
    background: #fff; border: 1px solid #eef1f6; border-radius: 14px;
    padding: 32px 26px; transition: all .3s ease;
}
.gip-feature:hover { box-shadow: 0 18px 40px rgba(28,102,222,.10); transform: translateY(-4px); }
.gip-feature-icon {
    width: 58px; height: 58px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 26px; color: #fff; margin-bottom: 20px;
}
.gip-feature h3 { font-size: 19px; color: #2f3c48; font-weight: 700; margin: 0 0 10px; }
.gip-feature p { font-size: 15px; line-height: 1.7; color: #6b7a90; margin: 0; }

/* Pricing */
.gip-pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gip-plan {
    background: #fff; border: 1px solid #eef1f6; border-radius: 16px;
    padding: 34px 26px; text-align: center; position: relative; transition: all .3s ease;
}
.gip-plan:hover { box-shadow: 0 20px 45px rgba(28,102,222,.12); transform: translateY(-5px); }
.gip-plan.gip-popular { border: 2px solid #1c66de; }
.gip-plan-tag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: #1c66de; color: #fff; font-size: 12px; font-weight: 700;
    padding: 5px 16px; border-radius: 20px; white-space: nowrap;
}
.gip-plan h3 { font-size: 18px; color: #2f3c48; font-weight: 700; margin: 0 0 6px; }
.gip-plan .gip-plan-sub { font-size: 13px; color: #9aa5b5; margin: 0 0 20px; }
.gip-plan-price { font-size: 40px; font-weight: 800; color: #1c66de; margin: 0 0 4px; }
.gip-plan-price small { font-size: 15px; font-weight: 600; color: #9aa5b5; }
.gip-plan .gip-plan-dur { font-size: 13px; color: #9aa5b5; margin-bottom: 22px; }
.gip-plan ul { list-style: none; margin: 0 0 24px; padding: 0; text-align: left; }
.gip-plan ul li { font-size: 14px; color: #5b6b7f; padding: 7px 0; border-bottom: 1px dashed #eef1f6; }
.gip-plan ul li:last-child { border-bottom: none; }
.gip-plan ul li i { color: #167e6b; margin-right: 8px; }
.gip-btn-solid { background: #1c66de; color: #fff; width: 100%; }
.gip-btn-solid:hover { background: #167e6b; }
.gip-btn-teal { background: #167e6b; color: #fff; width: 100%; }
.gip-btn-teal:hover { background: #1c66de; }

/* Devices */
.gip-devices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.gip-device {
    background: #fff; border: 1px solid #eef1f6; border-radius: 14px;
    padding: 28px 20px; text-align: center; transition: all .3s ease;
}
.gip-device:hover { box-shadow: 0 16px 36px rgba(28,102,222,.10); transform: translateY(-3px); }
.gip-device i { font-size: 40px; color: #1c66de; display: block; margin-bottom: 14px; }
.gip-device h4 { font-size: 16px; color: #2f3c48; font-weight: 700; margin: 0 0 6px; }
.gip-device p { font-size: 13px; color: #9aa5b5; margin: 0; }

/* How it works */
.gip-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: gip-step; }
.gip-step { text-align: center; position: relative; padding: 0 10px; }
.gip-step-num {
    width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
    background: linear-gradient(135deg, #1c66de, #167e6b); color: #fff;
    font-size: 26px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.gip-step h3 { font-size: 18px; color: #2f3c48; font-weight: 700; margin: 0 0 10px; }
.gip-step p { font-size: 14px; line-height: 1.7; color: #6b7a90; margin: 0; }

/* Trial / CTA */
.gip-cta {
    background: linear-gradient(135deg, #1c66de 0%, #167e6b 100%);
    border-radius: 20px; padding: 60px 40px; text-align: center; color: #fff;
}
.gip-cta h2 { color: #fff; font-size: 32px; font-weight: 800; margin: 0 0 14px; }
.gip-cta p { color: rgba(255,255,255,.92); font-size: 16px; max-width: 640px; margin: 0 auto 28px; line-height: 1.7; }

/* FAQ accordion */
.gip-faq { max-width: 820px; margin: 0 auto; }
.gip-faq-item { background: #fff; border: 1px solid #eef1f6; border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.gip-faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 20px 24px; font-size: 16px; font-weight: 700; color: #2f3c48;
    display: flex; justify-content: space-between; align-items: center;
}
.gip-faq-q .gip-faq-icon { font-size: 20px; color: #1c66de; transition: transform .3s ease; }
.gip-faq-item.gip-open .gip-faq-icon { transform: rotate(45deg); }
.gip-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.gip-faq-a p { padding: 0 24px 22px; font-size: 15px; line-height: 1.7; color: #6b7a90; margin: 0; }

/* Devices guide cards */
.gip-guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.gip-guide-card {
    background: #fff; border: 1px solid #eef1f6; border-radius: 14px;
    padding: 28px 26px; transition: all .3s ease;
}
.gip-guide-card:hover { box-shadow: 0 16px 36px rgba(28,102,222,.10); transform: translateY(-3px); }
.gip-guide-card h3 { font-size: 18px; color: #2f3c48; font-weight: 700; margin: 0 0 10px; }
.gip-guide-card p { font-size: 15px; line-height: 1.7; color: #6b7a90; margin: 0; }

/* Internet speed cards */
.gip-speed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gip-speed-card {
    background: #fff; border: 1px solid #eef1f6; border-radius: 14px;
    padding: 34px 26px; text-align: center; transition: all .3s ease;
}
.gip-speed-card:hover { box-shadow: 0 18px 40px rgba(28,102,222,.10); transform: translateY(-4px); }
.gip-speed-card.gip-speed-popular { border: 2px solid #1c66de; }
.gip-speed-card h3 { font-size: 34px; color: #1c66de; font-weight: 800; margin: 0 0 6px; }
.gip-speed-tag {
    display: inline-block; background: #eef4ff; color: #1c66de; font-size: 12px; font-weight: 700;
    padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.gip-speed-card p { font-size: 14px; line-height: 1.7; color: #6b7a90; margin: 0; }
.gip-note {
    background: #eef4ff; border-left: 4px solid #1c66de; color: #2f3c48;
    padding: 18px 22px; border-radius: 8px; font-size: 15px; line-height: 1.7;
    margin: 40px auto 0; max-width: 820px;
}

/* Setup guide */
.gip-setup { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; margin-top: 50px; }
.gip-setup-text { flex: 1 1 520px; }
.gip-setup-text h3 { font-size: 24px; color: #2f3c48; font-weight: 800; margin: 0 0 16px; }
.gip-setup-text p { font-size: 15px; line-height: 1.8; color: #6b7a90; margin: 0 0 16px; }
.gip-setup-text p a { color: #1c66de; font-weight: 600; }
.gip-setup-text ol { margin: 0 0 16px; padding-left: 20px; }
.gip-setup-text ol li { font-size: 15px; line-height: 1.9; color: #5b6b7f; }
.gip-setup-visual { flex: 1 1 380px; text-align: center; }
.gip-setup-visual img { border-radius: 16px; box-shadow: 0 24px 50px rgba(0,0,0,.12); }

/* Testimonials */
.gip-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gip-testimonial {
    background: #fff; border: 1px solid #eef1f6; border-radius: 14px;
    padding: 30px 26px; display: flex; flex-direction: column; transition: all .3s ease;
}
.gip-testimonial:hover { box-shadow: 0 18px 40px rgba(28,102,222,.10); transform: translateY(-4px); }
.gip-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.gip-testimonial p { font-size: 15px; line-height: 1.8; color: #5b6b7f; margin: 0 0 20px; flex: 1; }
.gip-testimonial-author { border-top: 1px solid #eef1f6; padding-top: 16px; }
.gip-testimonial-author strong { display: block; color: #2f3c48; font-size: 15px; }
.gip-testimonial-author span { font-size: 13px; color: #9aa5b5; }

/* About / trust */
.gip-about { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.gip-about-text { flex: 1 1 520px; }
.gip-about-text h2 { font-size: 32px; color: #2f3c48; font-weight: 800; margin: 0 0 18px; line-height: 1.2; }
.gip-about-text p { font-size: 15px; line-height: 1.8; color: #6b7a90; margin: 0 0 16px; }
.gip-about-text p a { color: #1c66de; font-weight: 600; }
.gip-about-visual { flex: 1 1 380px; text-align: center; }
.gip-about-visual img { border-radius: 16px; box-shadow: 0 24px 50px rgba(0,0,0,.12); }
.gip-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 55px; }
.gip-trust-item {
    background: #f6f8fb; border: 1px solid #eef1f6; border-radius: 14px;
    padding: 26px 22px; text-align: center; transition: all .3s ease;
}
.gip-trust-item:hover { box-shadow: 0 16px 36px rgba(28,102,222,.10); transform: translateY(-3px); }
.gip-trust-item i { font-size: 34px; color: #167e6b; display: block; margin-bottom: 14px; }
.gip-trust-item h3 { font-size: 16px; color: #2f3c48; font-weight: 700; margin: 0 0 8px; }
.gip-trust-item p { font-size: 13px; line-height: 1.7; color: #6b7a90; margin: 0; }

/* Responsive */
@media (max-width: 991px) {
    .gip-features, .gip-devices { grid-template-columns: repeat(2, 1fr); }
    .gip-pricing, .gip-steps { grid-template-columns: repeat(2, 1fr); }
    .gip-guide-grid, .gip-speed-grid, .gip-testimonials { grid-template-columns: repeat(2, 1fr); }
    .gip-trust { grid-template-columns: repeat(2, 1fr); }
    .gip-hero h1 { font-size: 36px; }
}
@media (max-width: 575px) {
    .gip-features, .gip-devices, .gip-pricing, .gip-steps,
    .gip-guide-grid, .gip-speed-grid, .gip-testimonials, .gip-trust { grid-template-columns: 1fr; }
    .gip-hero { padding: 130px 0 60px; }
    .gip-hero h1 { font-size: 30px; }
    .gip-section { padding: 55px 0; }
    .gip-section-head h2 { font-size: 26px; }
    .gip-hero-stats { gap: 24px; }
    .gip-cta { padding: 40px 22px; }
    .gip-cta h2 { font-size: 26px; }
    .gip-about-text h2 { font-size: 26px; }
}
