/* =====================================================================
   Benapole Net — professional redesign
   Palette derived from the logo: blue (BENAPOLE), green (NET), red (wifi)
   ===================================================================== */

:root {
    --blue: #1b75bb;
    --blue-dark: #155a8f;
    --green: #2faa4a;
    --green-dark: #218a3a;
    --red: #ed1c24;
    --ink: #1d2533;
    --body: #4a5568;
    --muted: #8a95a6;
    --line: #e7ebf1;
    --bg-soft: #f5f8fc;
    --white: #ffffff;
    --radius: 14px;
    --shadow-sm: 0 4px 14px rgba(20, 40, 80, .06);
    --shadow-md: 0 14px 40px rgba(20, 40, 80, .12);
    --t: .28s cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--body);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--ink); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section { padding: 92px 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--t);
    white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(47, 170, 74, .35); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-ghost:hover { background: #fff; color: var(--blue); border-color: #fff; }
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--blue);
    color: #fff;
    margin-top: auto;
}
.btn-block:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }

/* ---------- Top bar ---------- */
.topbar {
    background: var(--ink);
    color: rgba(255, 255, 255, .8);
    font-size: 12.5px;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left a, .topbar-right a { color: rgba(255, 255, 255, .78); }
.topbar-left a:hover, .topbar-right a:hover { color: #fff; }
.topbar-left i { color: var(--green); margin-right: 6px; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-social {
    width: 26px; height: 26px; border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .1); font-size: 11px; color: #fff;
}
.topbar-social:hover { background: var(--green); color: #fff; }
.topbar-login {
    font-weight: 600; color: #fff !important;
    background: var(--green); padding: 6px 14px; border-radius: 6px;
    margin-left: 8px; font-size: 12px;
}
.topbar-login:hover { background: var(--green-dark); }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transition: var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: transparent; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 24px; }
/* logo wordmark sits in the lower half of the PNG (wifi arc on top), so nudge it up
   to optically align the "BENAPOLE NET" wordmark with the menu text */
.site-logo img { height: 44px; width: auto; transition: var(--t); transform: translateY(-7px); }
.site-header.scrolled .site-logo img { height: 40px; transform: translateY(-6px); }

.mainnav ul { display: flex; align-items: center; gap: 2px; }
.mainnav > ul > li { position: relative; }
.mainnav > ul > li > a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12.5px;
    letter-spacing: .2px;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--ink);
    padding: 9px 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 7px;
    transition: var(--t);
}
.mainnav > ul > li > a:hover { color: var(--blue); background: var(--bg-soft); }
.mainnav > ul > li > a.active { color: #fff; background: var(--blue); }
.mainnav > ul > li > a .fa-angle-down { font-size: 10px; opacity: .7; }

/* dropdown */
.has-dropdown .dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 7px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--t);
    display: block;
}
.has-dropdown::before {
    content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 10px;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: block;
    padding: 9px 13px;
    border-radius: 7px;
    font-size: 13.5px;
    color: var(--body);
    transition: var(--t);
}
.dropdown li a:hover { background: var(--bg-soft); color: var(--blue); padding-left: 17px; }

.nav-toggle { display: none; background: none; border: 0; font-size: 22px; color: var(--ink); cursor: pointer; line-height: 1; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(100deg, rgba(13, 35, 64, .9) 0%, rgba(13, 35, 64, .62) 45%, rgba(13, 35, 64, .25) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 660px; padding-top: 30px; padding-bottom: 30px; display: flex; flex-direction: column; }
.hero-content.align-left { align-items: flex-start; text-align: left; margin-left: 0; margin-right: auto; }
.hero-content.align-center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.hero-content.align-right { align-items: flex-end; text-align: right; margin-left: auto; margin-right: 0; }
.hero-eyebrow {
    display: inline-block;
    background: rgba(47, 170, 74, .9);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}
.hero-content h1 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 18px; }
.hero-content p { font-size: 18px; color: rgba(255, 255, 255, .9); margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-dots { position: absolute; bottom: 26px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.hero-dots button {
    width: 12px; height: 12px; border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    background: transparent; cursor: pointer; padding: 0; transition: var(--t);
}
.hero-dots button.active { background: var(--green); border-color: var(--green); width: 30px; border-radius: 8px; }

/* ---------- Section heading ---------- */
.site-heading { text-align: center; margin-bottom: 56px; }
.site-heading h3 {
    color: var(--green);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.site-heading h2 { font-size: 38px; font-weight: 700; text-transform: capitalize; }
.heading-bar { display: block; width: 70px; height: 4px; border-radius: 4px; margin: 18px auto 0; background: linear-gradient(90deg, var(--blue), var(--green)); }
.heading-bar.left { margin-left: 0; }

/* ---------- Pricing ---------- */
.pricing-section { background: var(--bg-soft); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}
.price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: var(--t);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.price-card.featured {
    border: 0;
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}
.price-card.featured .plan-name,
.price-card.featured .plan-price,
.price-card.featured .price-features li { color: #fff; }
.price-card.featured .price-features { border-color: rgba(255, 255, 255, .2); }
.price-card.featured .btn-block { background: var(--green); }
.price-card.featured .btn-block:hover { background: var(--green-dark); }
.popular-tag {
    position: absolute; top: 16px; right: 16px;
    background: var(--red); color: #fff;
    font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .5px;
    padding: 4px 11px; border-radius: 50px;
}
.plan-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 12px;
}
.plan-price { font-family: 'Poppins', sans-serif; font-weight: 500; color: var(--ink); font-size: 16px; }
.plan-price span:first-of-type { font-size: 42px; font-weight: 800; color: var(--blue); }
.price-card.featured .plan-price span:first-of-type { color: #fff; }
.plan-price .month { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card.featured .plan-price .month { color: rgba(255, 255, 255, .8); }
.price-features {
    margin: 24px 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-features li { font-size: 14.5px; color: var(--body); display: flex; align-items: center; justify-content: center; gap: 8px; }
.price-features li i { color: var(--green); font-size: 13px; }
.price-card.featured .price-features li i { color: #bdf0c6; }
.price-features li.speed strong { font-family: 'Poppins', sans-serif; font-size: 22px; color: var(--ink); font-weight: 700; }
.price-card.featured .price-features li.speed strong { color: #fff; }

/* ---------- Help CTA ---------- */
.help-cta {
    background: linear-gradient(100deg, var(--green-dark), var(--green));
    color: #fff;
    padding: 48px 0;
    text-align: center;
}
.help-inner h3 { color: rgba(255, 255, 255, .85); font-size: 18px; font-weight: 500; text-transform: capitalize; margin-bottom: 8px; }
.help-inner h2 { color: #fff; font-size: 30px; font-weight: 700; }

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 30px;
    transition: var(--t);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #fff;
    background: linear-gradient(150deg, var(--blue), var(--green));
    margin-bottom: 22px;
    transition: var(--t);
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.05); }
.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--body); }

/* ---------- Find us ---------- */
.findus-section { background: var(--bg-soft); }
.findus-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: center; }
.findus-info h2 { font-size: 34px; font-weight: 700; text-transform: capitalize; }
.findus-info .heading-bar { margin-top: 14px; margin-bottom: 30px; }
.office-block { margin-bottom: 26px; }
.office-block h3 { font-size: 17px; font-weight: 600; color: var(--blue); text-transform: capitalize; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.office-block p { color: var(--body); font-size: 15.5px; }
.office-block a:hover { color: var(--green); }
.findus-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.findus-map iframe { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #0f2440; color: rgba(255, 255, 255, .72); }
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 44px;
    padding: 72px 22px 56px;
}
.footer-logo { display: inline-block; background: #fff; padding: 12px 16px; border-radius: 10px; margin-bottom: 22px; }
.footer-logo img { height: 44px; }
.footer-about p { font-size: 14.5px; line-height: 1.8; }
.footer-social { display: flex; gap: 11px; margin-top: 22px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .1); color: #fff; font-size: 15px;
}
.footer-social a:hover { background: var(--green); transform: translateY(-3px); }
.footer-col h3 {
    color: #fff; font-size: 18px; font-weight: 600; text-transform: capitalize;
    margin-bottom: 24px; position: relative; padding-bottom: 12px;
}
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px; border-radius: 3px; background: var(--green); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14.5px; color: rgba(255, 255, 255, .72); position: relative; padding-left: 18px; }
.footer-col ul li a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--green); transition: var(--t); }
.footer-col ul li a:hover { color: #fff; padding-left: 23px; }

.copyright { border-top: 1px solid rgba(255, 255, 255, .1); }
.copyright-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px; font-size: 14px; flex-wrap: wrap; gap: 8px; }
.copyright a { color: var(--green); font-weight: 600; }
.copyright a:hover { color: #fff; }

/* ---------- Floating call ---------- */
.float-call {
    position: fixed; bottom: 26px; right: 26px; z-index: 99;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--green); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    box-shadow: 0 10px 26px rgba(47, 170, 74, .5);
    animation: pulse 2s infinite;
}
.float-call:hover { background: var(--green-dark); color: #fff; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(47, 170, 74, .5); }
    70% { box-shadow: 0 0 0 16px rgba(47, 170, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(47, 170, 74, 0); }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1080px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .price-card.featured { transform: none; }
}
/* Collapse to hamburger before the horizontal menu would get cramped/wrap (KEEP BELOW) */
@media (max-width: 1199px) {
    .nav-toggle { display: block; }
    .mainnav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; box-shadow: var(--shadow-md);
        max-height: 0; overflow: hidden; transition: max-height var(--t);
    }
    .mainnav.open { max-height: 620px; }
    .mainnav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px; }
    .mainnav > ul > li > a { padding: 14px 6px; border-bottom: 1px solid var(--line); white-space: normal; font-size: 13.5px; }
    .mainnav > ul > li > a.active { background: transparent; color: var(--blue); }
    .mainnav > ul > li > a.active::after { display: none; }
    .has-dropdown .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; padding: 0 0 8px 14px; min-width: auto;
    }
}
@media (max-width: 991px) {
    .section { padding: 70px 0; }
    .hero { min-height: 540px; }
    .hero-content h1 { font-size: 38px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .findus-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 580px; margin: 0 auto; }
}
@media (max-width: 680px) {
    .container { padding: 0 16px; }
    .section { padding: 56px 0; }
    .topbar { font-size: 12px; }
    .topbar-inner { justify-content: center; gap: 4px 14px; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .hero { min-height: 440px; }
    .hero-content { padding-top: 16px; padding-bottom: 16px; }
    .hero-content h1 { font-size: 29px; }
    .hero-content p { font-size: 15.5px; margin-bottom: 24px; }
    .hero-eyebrow { font-size: 12px; margin-bottom: 16px; }
    .site-heading { margin-bottom: 38px; }
    .site-heading h2 { font-size: 26px; }
    .help-cta { padding: 36px 0; }
    .help-inner h2 { font-size: 20px; }
    .copyright-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
    .hero { min-height: 400px; }
    .hero-content h1 { font-size: 25px; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* =====================================================================
   Inner pages (About / Pricing / Contact)
   ===================================================================== */
.page-banner {
    position: relative;
    background: linear-gradient(100deg, var(--blue-dark) 0%, var(--blue) 55%, var(--green) 130%);
    color: #fff;
    padding: 76px 0;
    text-align: center;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 320px; height: 320px; border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}
.page-banner::before {
    content: '';
    position: absolute; left: -40px; bottom: -90px;
    width: 240px; height: 240px; border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}
.page-banner h1 { position: relative; color: #fff; font-size: 42px; font-weight: 800; }
.breadcrumb { position: relative; display: flex; justify-content: center; gap: 10px; margin-top: 14px; font-size: 15px; font-family: 'Poppins', sans-serif; }
.breadcrumb a { color: rgba(255, 255, 255, .85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #bdf0c6; }
.breadcrumb .sep { color: rgba(255, 255, 255, .55); }

/* About */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.about-text h3 { color: var(--green); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.about-text h2 { font-size: 34px; font-weight: 700; margin-bottom: 20px; }
.about-text p { font-size: 16px; color: var(--body); margin-bottom: 16px; }
.about-points { margin-top: 24px; display: grid; gap: 14px; }
.about-points li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink); font-weight: 500; }
.about-points li i { color: #fff; background: var(--green); width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 3px; }
.about-visual { position: relative; background: linear-gradient(160deg, var(--bg-soft), #eaf2fb); border-radius: var(--radius); padding: 48px 36px; text-align: center; box-shadow: var(--shadow-sm); }
.about-visual img { max-height: 90px; margin: 0 auto 24px; }
.about-visual .ring { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 22px; background: linear-gradient(150deg, var(--blue), var(--green)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 46px; }
.about-visual h4 { font-size: 22px; margin-bottom: 6px; }
.about-visual p { color: var(--body); font-size: 15px; }

/* Contact */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 56px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: var(--t); }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card .c-icon { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; background: linear-gradient(150deg, var(--blue), var(--green)); }
.contact-card h3 { font-size: 20px; margin-bottom: 12px; }
.contact-card p, .contact-card a { font-size: 15.5px; color: var(--body); display: block; line-height: 1.8; }
.contact-card a:hover { color: var(--green); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe { display: block; }

@media (max-width: 991px) {
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 44px; }
    .page-banner { padding: 60px 0; }
    .page-banner h1 { font-size: 32px; }
}
@media (max-width: 680px) {
    .page-banner { padding: 46px 0; }
    .page-banner h1 { font-size: 26px; }
    .breadcrumb { font-size: 13.5px; }
    .about-text h2 { font-size: 28px; }
    .findus-info h2 { font-size: 28px; }
    .prose h2 { font-size: 25px; }
    .prose p { font-size: 15.5px; }
    .prose .lead { font-size: 16.5px; }
}

/* =====================================================================
   Content / document pages (Corporate, Home Internet, Coverage, Billing, BTRC)
   ===================================================================== */
.prose { max-width: 880px; margin: 0 auto; }
.prose h2 { font-size: 30px; font-weight: 700; margin-bottom: 22px; position: relative; padding-bottom: 16px; }
.prose h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 64px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--green)); }
.prose p { font-size: 16.5px; color: var(--body); margin-bottom: 18px; line-height: 1.85; }
.prose .lead { font-size: 18px; color: var(--ink); font-weight: 500; }

.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.feature-strip .fs-item { text-align: center; padding: 28px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: var(--t); }
.feature-strip .fs-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-strip .fs-item i { font-size: 30px; color: var(--green); margin-bottom: 12px; }
.feature-strip .fs-item h4 { font-size: 16px; font-weight: 600; }

.doc-images { max-width: 920px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.doc-images figure { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm); }
.doc-images img { width: 100%; border-radius: 8px; }
.doc-images figcaption { text-align: center; margin-top: 12px; font-size: 14.5px; color: var(--muted); font-family: 'Poppins', sans-serif; }
.doc-note { max-width: 920px; margin: 0 auto 36px; text-align: center; font-size: 16px; color: var(--body); }

.doc-pdf { max-width: 920px; margin: 0 auto; text-align: center; }
.doc-pdf iframe { width: 100%; height: 1150px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); background: #fff; display: block; }
.doc-pdf .btn { margin-top: 18px; }
@media (max-width: 680px) { .doc-pdf iframe { height: 70vh; } }

.coverage-wrap { display: grid; grid-template-columns: .9fr 1.4fr; gap: 44px; align-items: center; }
.coverage-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.coverage-map iframe { display: block; }

@media (max-width: 991px) {
    .feature-strip { grid-template-columns: repeat(2, 1fr); }
    .coverage-wrap { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 680px) {
    .feature-strip { grid-template-columns: 1fr; }
}

/* =====================================================================
   TV / App downloads page
   ===================================================================== */
.download-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;max-width:880px;margin:0 auto}
.download-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:38px 32px;text-align:center;transition:var(--t)}
.download-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:transparent}
.download-card .dl-icon{width:80px;height:80px;border-radius:20px;margin:0 auto 22px;display:flex;align-items:center;justify-content:center;font-size:38px;color:#fff;background:linear-gradient(150deg,var(--blue),var(--green))}
.download-card h3{font-size:22px;font-weight:700;margin-bottom:8px}
.download-card .dl-sub{font-size:14.5px;color:var(--muted);margin-bottom:6px}
.download-card .dl-size{display:inline-block;font-size:12.5px;font-weight:600;color:var(--blue);background:var(--bg-soft);padding:4px 12px;border-radius:50px;margin-bottom:22px}
.download-card .btn{width:100%;justify-content:center}
.download-note{max-width:760px;margin:44px auto 0;background:var(--bg-soft);border:1px solid var(--line);border-radius:var(--radius);padding:22px 26px}
.download-note h4{font-size:16px;margin-bottom:12px;display:flex;align-items:center;gap:9px}
.download-note h4 i{color:var(--green)}
.download-note ol{margin:0;padding-left:20px;color:var(--body);font-size:14.5px;line-height:1.9}
@media(max-width:680px){.download-grid{grid-template-columns:1fr;max-width:420px}}
