/* =====================================================
   SMARTLINK BROADBAND - STYLE.CSS (CLEAN WHITE + GLASS)
   Author: Priyesh Chauhan
   ===================================================== */

/* =========================
   1) BRAND & GLOBAL TOKENS
   ========================= */
:root{
  /* Brand palette */
  --brand-blue: #0077ff;
  --brand-pink: #ff0066;
  --brand-dark: #051425;
  --brand-muted: #6b7280;
  --brand-white: #ffffff;

  /* Page background (clean white) */
  --page-bg: #ffffff;

  /* Effects */
  --shadow-soft: 0 2px 10px rgba(0,0,0,.06);
  --shadow-hover: 0 6px 20px rgba(0,0,0,.12);

  /* Layout */
  --radius: 12px;
  --container: 1100px;
  --header-height: 72px;

  /* Animations */
  --transition: .3s ease;
}

/* =========================
   2) RESET & BASE
   ========================= */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--brand-dark);
  background: var(--page-bg);
  line-height: 1.6;
  padding-top: var(--header-height); /* keep content clear of fixed header */
}
img{max-width:100%;height:auto;display:block}
a{color:var(--brand-blue);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--brand-pink)}
.container{max-width:var(--container);margin:0 auto;padding:1.2rem}

h1,h2,h3,h4,h5,h6{color:var(--brand-dark);font-weight:700;letter-spacing:-.2px}
h1{font-size:2.4rem;margin-bottom:1rem}
h2{font-size:1.8rem;margin:1.5rem 0 .75rem}
p{color:var(--brand-muted);margin-bottom:.8rem}

/* =========================
   3) UTILITIES
   ========================= */
.text-center{text-align:center}
.flex-center{display:flex;justify-content:center;align-items:center;gap:1rem}
.mt-2{margin-top:1rem}.mt-4{margin-top:2rem}.mt-6{margin-top:3rem}
.mb-2{margin-bottom:1rem}.mb-4{margin-bottom:2rem}.mb-6{margin-bottom:3rem}

.text-gradient{
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-blue));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.bg-gradient{background:linear-gradient(90deg,var(--brand-pink),var(--brand-blue));color:#fff}

/* Buttons 
.btn,.btn-outline{
  display:inline-block;padding:.9rem 1.5rem;border-radius:var(--radius);
  font-weight:600;letter-spacing:.3px;transition:transform var(--transition),box-shadow var(--transition),opacity var(--transition);
  text-align:center;cursor:pointer
}
.btn{background:linear-gradient(90deg,var(--brand-pink),var(--brand-blue));color:#fff;box-shadow:var(--shadow-soft)}
.btn:hover{box-shadow:var(--shadow-hover);transform:translateY(-2px)}
.btn-outline{border:2px solid var(--brand-blue);color:var(--brand-blue);background:transparent}
.btn-outline:hover{background:var(--brand-blue);color:#fff}

*/

/* ============================
   SMARTLINK BUTTON STYLES
   ============================ */

.btn,
.btn-outline {
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  padding: 0.75rem 1.75rem;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* --- Primary Gradient Button --- */
.btn {
  background: linear-gradient(90deg, #ff0066, #0077ff);
  color: #fff;
  border: none;
  box-shadow: 0 3px 15px rgba(0, 102, 255, 0.3);
}

.btn:hover {
  box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
  transform: translateY(-2px);
}

/* --- Outline Button --- */
.btn-outline {
  color: #0066ff;
  border: 2px solid #0066ff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0, 102, 255, 0.08);
  box-shadow: 0 3px 10px rgba(0, 102, 255, 0.2);
  transform: translateY(-2px);
}

/* --- Glow Effect (Optional for Primary Buttons) --- */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #ff0066, #0077ff, #ff0066);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: btnGlow 6s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover::before {
  opacity: 0.8;
}

@keyframes btnGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* --- Button Group Layout --- */
.cta-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Cards */
.card{
  background:#fff;border-radius:var(--radius);box-shadow:var(--shadow-soft);
  padding:1.2rem;transition:transform var(--transition),box-shadow var(--transition)
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}

/* Simple grid helper */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem}

/* =========================
   4) FIXED GLASSY HEADER
   ========================= */
header#mainHeader{
  position:fixed;top:0;left:0;right:0;height:var(--header-height);z-index:1000;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.06);
  box-shadow:0 2px 12px rgba(0,0,0,.05);
  transition:background .3s ease, box-shadow .3s ease;
}
header#mainHeader::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:2px;
  background:linear-gradient(90deg,var(--brand-pink),var(--brand-blue));opacity:.55
}
header#mainHeader nav{height:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:0 .75rem}
.brand img{height:48px;transition:transform .3s ease}
.brand img:hover{transform:scale(1.05)}

/* Desktop nav links */
.nav-links{display:flex;align-items:center;gap:1.1rem}
.nav-links a{
  position:relative;font-weight:600;color:var(--brand-dark);
  padding:.4rem .75rem;border-radius:6px;transition:color .25s ease
}
.nav-links a:hover{color:var(--brand-pink)}
.nav-links a::after{
  content:"";position:absolute;left:0;bottom:-4px;height:2px;width:0%;
  background:linear-gradient(90deg,var(--brand-pink),var(--brand-blue));transition:width .25s ease;border-radius:2px
}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}

/* Header CTA */
.nav-links .cta{
  background:var(--brand-pink);color:#fff;border-radius:10px;padding:.5rem 1rem;
}
.nav-links .cta:hover{opacity:.9}

/* Mobile menu toggle */
.menu-toggle{
  display:none;align-items:center;justify-content:center;gap:6px;
  width:38px;height:32px;border-radius:8px;cursor:pointer;
  background:rgba(255,255,255,.35);border:1px solid rgba(0,0,0,.06);
  transition:all .3s ease;
}
.menu-toggle span{
  width:24px;height:3px;background:linear-gradient(90deg,var(--brand-pink),var(--brand-blue));
  border-radius:3px;transition:all .3s ease
}
.menu-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile dropdown */
@media (max-width:768px){
  .menu-toggle{display:flex}
  .nav-links{
    position:fixed;top:var(--header-height);left:0;right:0;z-index:999;
    flex-direction:column;align-items:center;
    background:rgba(255,255,255,.95);backdrop-filter:blur(12px);
    border-bottom-left-radius:10px;border-bottom-right-radius:10px;
    border-top:1px solid rgba(255,255,255,.35);
    box-shadow:0 14px 30px rgba(0,0,0,.12);
    max-height:0;opacity:0;overflow:hidden;transition:max-height .35s ease, opacity .2s ease, padding .2s ease
  }
  .nav-links.show{max-height:70vh;opacity:1;padding:.75rem 0}
  .nav-links a{width:100%;text-align:center;padding:.65rem 1rem;font-size:1.05rem}
}

/* Solidify on scroll (JS toggles .scrolled if needed) */
header#mainHeader.scrolled{
  background:rgba(255,255,255,.98);box-shadow:0 4px 18px rgba(0,0,0,.1)
}

/* =========================
   5) PAGE SECTIONS
   ========================= */
.hero{text-align:center;padding:4rem 1rem}
.hero h1{
  background:linear-gradient(90deg,var(--brand-blue),var(--brand-pink));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;margin-bottom:1rem
}
.hero p{max-width:720px;margin:0 auto 1.5rem}

.plan-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1rem;margin-top:1.25rem}

/* Forms */
form{display:grid;gap:1rem;margin:2rem 0}
form input,form textarea,form select{
  padding:.9rem;border:1px solid #e5e7eb;border-radius:8px;font-size:1rem;width:100%;
}
form button{justify-self:start}

/* Coverage list */
.coverage-list{
  list-style:none;padding:0;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:.6rem
}
.coverage-list li{
  background:#fff;border-radius:8px;text-align:center;padding:.65rem;
  box-shadow:0 2px 6px rgba(0,0,0,.05)
}

/* =========================
   6) FOOTER
   ========================= */
footer{
  background:#fff;color:#334155;padding:3rem 1rem 2rem;border-top:1px solid #e5e7eb;
  font-size:.95rem;line-height:1.6
}
.footer-wrapper{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2rem;align-items:flex-start
}
.footer-column{text-align:left}
.footer-logo{height:55px;margin-bottom:1rem}
.footer-column h4{color:var(--brand-pink);margin-bottom:.75rem;font-weight:700}
.footer-column p{color:#475569;margin-bottom:.6rem}
.footer-column ul{list-style:none;padding:0}
.footer-column li{margin-bottom:.4rem}
.footer-column a{color:var(--brand-dark);transition:color var(--transition)}
.footer-column a:hover{color:var(--brand-pink)}

.footer-bottom{
  text-align:center;border-top:1px solid #e5e7eb;padding-top:1.4rem;margin-top:2rem
}
.footer-bottom p{color:#64748b;margin-bottom:.8rem;font-size:.9rem}

/* Social links (clamped icon size) */
.social-links{display:flex;justify-content:center;align-items:center;gap:1.1rem;flex-wrap:wrap}
.social-links a{
  display:inline-flex;align-items:center;gap:.4rem;
  color:var(--brand-blue);font-weight:500;transition:all .25s ease;
  font-size:.95rem; line-height:1;
}
.social-links a:hover{color:var(--brand-pink);transform:translateY(-2px)}
.social-icon{
  width:18px;height:18px;flex:0 0 18px;stroke:currentColor;vertical-align:middle;
}

/* Footer mobile */
@media (max-width:768px){
  .footer-wrapper{text-align:center;grid-template-columns:1fr}
  .footer-column{text-align:center}
  .footer-logo{margin:0 auto 1rem}
}

/* =========================
   7) SECTION TITLE
   ========================= */
.section-title{
  font-size:2rem;margin-bottom:1.5rem;
  background:linear-gradient(90deg,var(--brand-pink),var(--brand-blue));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;text-align:center
}

/* =========================================================
   8) PLANS PAGE — CLEAN, PROFESSIONAL + SUBTLE ANIMATIONS
   ========================================================= */

/* Feature strip (Free Router / No Data Limit / 24×7) */
.plans-feature-strip{
  display:flex;justify-content:center;align-items:center;gap:1.5rem;
  background: #fff;
  border:1px solid #e5e9f0;border-radius:999px;padding:.6rem 1.2rem;
  font-weight:600;color:#0f172a;font-size:.95rem;margin:1.2rem auto;max-width:600px;
  box-shadow:0 1px 6px rgba(0,0,0,0.04);
}
.plans-feature-strip span{display:flex;align-items:center;gap:.3rem}

/* Plan picker */
.plan-picker{text-align:center;margin:2.5rem 0 1rem}
.picker-title{font-size:1.25rem;font-weight:700;color:#0f172a;margin-bottom:1rem}
.picker-options{
  display:inline-flex;flex-wrap:wrap;justify-content:center;background:#fff;
  border-radius:999px;border:1px solid #e5e9f0;box-shadow:0 2px 6px rgba(0,0,0,0.04);
  padding:3px;position:relative;overflow:visible;isolation:isolate;
}
.picker-btn{
  position:relative;background:transparent;border:none;padding:.8rem 1.4rem;
  font-weight:600;font-size:.95rem;color:#1e293b;cursor:pointer;transition:all .3s ease;
  min-width:110px;border-radius:999px;z-index:1;
}
.picker-btn:hover{background:rgba(0,119,255,0.08)}
.picker-btn.yearly{background:#fff;overflow:visible}
.picker-btn.active{
  color:#fff !important;font-weight:700;border:none;
  background:linear-gradient(90deg,var(--brand-pink),var(--brand-blue));
  box-shadow:0 0 10px rgba(0,119,255,0.25),inset 0 0 1px rgba(255,255,255,0.3);
  animation:pulseGlow 6s ease-in-out infinite;border-radius:999px;
}
.save-badge{
  position:absolute;top:-10px;right:10px;background:var(--brand-pink);color:#fff;
  font-size:.65rem;padding:2px 6px;border-radius:10px;font-weight:700;
  letter-spacing:.3px;box-shadow:0 1px 4px rgba(0,0,0,0.15);z-index:5;
}
.picker-note{color:#64748b;font-size:.9rem;margin-top:.6rem;text-align:center}

/* Glow animation */
@keyframes pulseGlow {
  0%,100%{box-shadow:0 0 10px rgba(0,119,255,0.25),0 0 20px rgba(255,0,102,0.15),inset 0 0 1px rgba(255,255,255,0.3)}
  50%{box-shadow:0 0 16px rgba(0,119,255,0.35),0 0 28px rgba(255,0,102,0.25),inset 0 0 2px rgba(255,255,255,0.4)}
}

/* Plans grid and cards */
.plans-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem;margin-top:2rem
}
.plan-card{
  background:#fff;border-radius:18px;padding:2rem 1.5rem;border:1px solid #e5e9f0;
  box-shadow:0 4px 20px rgba(0,0,0,0.05);transition:all .35s ease;
  animation:planGlow 6s ease-in-out infinite;
}
.plan-card:hover{transform:translateY(-6px);box-shadow:0 8px 28px rgba(0,0,0,0.1)}
.plan-card.recommended{border:2px solid rgba(0,119,255,0.15);box-shadow:0 0 30px rgba(0,119,255,0.08)}

.plan-head{text-align:center;margin-bottom:1rem}
.plan-name{font-size:1.6rem;font-weight:800;letter-spacing:.3px;margin-bottom:.3rem}
.plan-name.lite{
  background:linear-gradient(90deg,#ff0066,#8b5cf6);-webkit-background-clip:text;-webkit-text-fill-color:transparent
}
.plan-name.prime{
  background:linear-gradient(90deg,#0077ff,#9333ea);-webkit-background-clip:text;-webkit-text-fill-color:transparent
}
.plan-name.max{
  background:linear-gradient(90deg,#ff7e00,#0077ff);-webkit-background-clip:text;-webkit-text-fill-color:transparent
}
.plan-meta{color:#64748b;font-size:.95rem}

/* Plan blocks */
.plan-block{
  background:#fff;border:1px solid #e5e9f0;border-radius:14px;padding:1rem;margin-top:1rem;transition:all .3s ease
}
.plan-block:hover{background:#f7fbff;border-color:rgba(0,119,255,.2)}
.block-title{
  font-size:1rem;font-weight:700;color:#0f172a;display:flex;align-items:center;gap:.4rem;margin-bottom:.6rem
}
.block-title span{font-size:1.1rem}
/*
.speed-list{list-style:none;padding:0;margin:0}
.speed-list li{
  display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;
  padding:.65rem 0;border-bottom:1px dashed #e2e8f0;font-size:.95rem;position:relative
}
.speed-list li:last-child{border-bottom:none}
.speed-list em{font-style:normal;color:#1e293b;font-weight:500;flex:1}
.speed-list strong{
  color:var(--brand-blue);font-weight:700;font-size:1.05rem;line-height:1.2;flex-basis:100%;text-align:right;
  transition:color .3s ease;margin-bottom:2px;display:block
}
.speed-list li:hover strong{color:var(--brand-pink)}
.speed-list small,.speed-list .effective,.speed-list .effective-price{
  display:block;width:100%;text-align:right;font-size:.8rem;font-weight:500;color:#6b7280;
  margin-top:3px;line-height:1.3;opacity:.9
}*/
/* ---------------------------
   SPEED LIST (aligned columns)
   Works with: 
   <li><em>Speed</em><strong>₹Price</strong><small class="effective-price">₹X/month effective</small></li>
---------------------------- */
.speed-list{list-style:none;margin:0;padding:0}

.speed-list li{
  display:grid;
  grid-template-columns: 1fr auto;    /* left = speed, right = price column */
  grid-auto-rows: min-content;
  row-gap: 4px;                       /* gap between price and effective line */
  align-items:center;
  padding:.70rem 0;
  border-bottom:1px dashed #e2e8f0;
  font-size:.95rem;
}
.speed-list li:last-child{border-bottom:none}

/* left column (speed) */
.speed-list em{
  grid-column:1;
  font-style:normal;
  color:#1e293b;
  font-weight:500;
}

/* right column (price) */
.speed-list strong{
  grid-column:2;
  justify-self:end;
  color:var(--brand-blue);
  font-weight:700;
  font-size:1.05rem;
  line-height:1.2;
  transition:color .3s ease;
}

/* right column (effective price below) */
.speed-list small,
.speed-list .effective-price{
  grid-column:2;
  justify-self:end;
  display:block;
  font-size:.8rem;
  font-weight:500;
  margin-top:2px;
  line-height:1.3;
  opacity:.9;
  color:#6b7280; /* fallback for non-gradient */
}

/* keep your existing gradient for .effective-price */
.speed-list .effective-price{
  background:linear-gradient(90deg,var(--brand-pink),var(--brand-blue),var(--brand-pink));
  background-size:200% auto;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:gradientFlow 10s ease-in-out infinite;
  letter-spacing:.2px;
}

/* hover tint on the main price only
.plan-card:hover .speed-list strong{color:var(--brand-pink)}

.effective-price{
  background:linear-gradient(90deg,var(--brand-pink),var(--brand-blue),var(--brand-pink));background-size:200% auto;
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;animation:gradientFlow 10s ease-in-out infinite;
  letter-spacing:.2px
}*/
.plan-card:hover .speed-list strong{color:var(--brand-pink)} small{background:linear-gradient(90deg,var(--brand-pink),var(--brand-blue),var(--brand-pink));background-size:200% auto;-webkit-background-clip:text;-webkit-text-fill-color:transparent;animation:gradientFlow 8s ease-in-out infinite}
 
/* Gradient shimmer animation */
@keyframes gradientFlow {
  0%{background-position:0% center}
  50%{background-position:100% center}
  100%{background-position:0% center}
}

/* Feature Matrix */
.feature-matrix{margin:3rem 0 2rem}
.matrix-title{text-align:center;font-weight:800;margin-bottom:1.2rem;font-size:1.4rem}
.matrix-table{border:1px solid #e8edf5;border-radius:14px;overflow:hidden}
.m-row{display:grid;grid-template-columns:2fr 1fr 1fr 1fr}
.m-head{background:linear-gradient(90deg,#f9fbff,#f3f6ff);color:#0f172a;font-weight:700}
.m-cell{padding:.8rem;border-bottom:1px solid #e8edf5;text-align:center;font-size:.95rem;color:#1e293b}
.m-row:last-child .m-cell{border-bottom:none}
.m-cell:first-child{text-align:left;font-weight:600;color:#0f172a}
.matrix-note{text-align:center;color:#6b7280;font-size:.9rem;margin-top:.8rem}

/* CTA block */
.cta-center{display:flex;gap:.75rem;justify-content:center;margin:2rem 0;text-align:center}

/* =========================
   9) OTT COLLAPSIBLE
   ========================= */
.ott-section{
  margin-top:1rem;background:#fff;border:1px solid #e5e9f0;border-radius:14px;padding:1rem;text-align:center
}
.ott-summary{font-size:.95rem;color:#1e293b;margin-bottom:.6rem;font-weight:600}
.ott-summary strong{color:#0077ff}

.ott-toggle{
  background:linear-gradient(90deg,#0077ff,#ff0066);color:#fff;border:none;
  padding:.5rem 1rem;border-radius:25px;cursor:pointer;font-weight:600;font-size:.85rem;transition:all .3s ease
}
.ott-toggle:hover{opacity:.9;transform:scale(1.02)}

.ott-panel{margin-top:.8rem;background:#fff;border:1px solid #e8edf5;border-radius:12px;padding:1rem}
.ott-panel[hidden]{display:none}

.ott-tags{
  display:flex;flex-wrap:wrap;justify-content:center;gap:.4rem;margin:0;padding:0;list-style:none
}
.ott-tags li{
  background:#f3f6ff;border:1px solid #dee6ff;border-radius:50px;
  padding:.35rem .75rem;font-size:.85rem;color:#1e293b
}
.only-prime{background:#eef7ff;color:#0063ff;border-color:#cde2ff}
.only-max{background:#fff5eb;color:#ff7e00;border-color:#ffd6b3}

/* =========================
   10) ANIMATIONS (SUBTLE)
   ========================= */
@keyframes borderSweep {
  0%{background:linear-gradient(#fff,#fff) padding-box,conic-gradient(from 0deg,#ff0066,#0077ff,#ff0066) border-box}
  100%{background:linear-gradient(#fff,#fff) padding-box,conic-gradient(from 360deg,#ff0066,#0077ff,#ff0066) border-box}
}

@keyframes planGlow {
  0%,100%{box-shadow:0 4px 20px rgba(0,0,0,0.05)}
  50%{box-shadow:0 6px 24px rgba(0,0,0,0.08)}
}

.fade-in{opacity:0;transform:translateY(20px);animation:fadeInUp .8s ease forwards}
@keyframes fadeInUp{to{opacity:1;transform:translateY(0)}}

/* =========================
   11) RESPONSIVE TWEAKS
   ========================= */
@media (max-width:768px){
  .plans-grid{grid-template-columns:1fr}
  .picker-btn{min-width:46%}
  .footer-wrapper{text-align:center;grid-template-columns:1fr}
  .footer-column{text-align:center}
  .footer-logo{margin:0 auto 1rem}
}
@media (max-width:480px){
  .picker-btn{min-width:100%}
}

/* =========================
   GST Toggle (Smartlink Style)
   ========================= */
.gst-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem auto 2rem;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #222;
  font-weight: 500;
}

.gst-toggle label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
}

.gst-toggle strong {
  color: var(--brand-blue, #0073e6);
  font-weight: 600;
}

/* Custom Switch */
.gst-toggle input[type="checkbox"] {
  appearance: none;
  width: 42px;
  height: 22px;
  border-radius: 22px;
  background: #ccc;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gst-toggle input[type="checkbox"]::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s ease;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.gst-toggle input[type="checkbox"]:checked {
  background: var(--brand-pink, #e91e63);
}

.gst-toggle input[type="checkbox"]:checked::before {
  transform: translateX(20px);
}

/* ================== FAQ SNIPPET ================== */
.faq-snippet,.faq-page {
  margin: 4rem auto;
  padding: 2.5rem 2rem;
  max-width: 900px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(230, 230, 230, 0.8);
}

.faq-page{padding:0 1rem}

.faq-hero{text-align:center;margin-bottom:2.5rem}
.faq-hero .section-subtitle{color:#555;max-width:720px;margin:.8rem auto;line-height:1.6;font-size:1.05rem}

.glass-box{background:rgba(255,255,255,.85);border-radius:18px;box-shadow:0 6px 20px rgba(0,0,0,.06);backdrop-filter:blur(10px);padding:2rem}

.faq-snippet h2.section-title,.faq-page h2.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff0077, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.8rem;
}

.faq-snippet-list,.faq-list {
  details {
    margin-bottom: 1rem;
    background: #f9f9fb;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor:pointer;
  }

  details[open] {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  summary {
    font-weight: 600;
    font-size: 1.05rem;
    color: #222;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
  }

  summary::-webkit-details-marker {
    display: none;
  }

  details[open] summary {
    color: #0066ff;
  }

  p {
    margin-top: 0.6rem;
    color: #444;
    line-height: 1.6;
    font-size: .97rem;
  }

  a {
    color: #0066ff;
    text-decoration: none;
    font-weight: 500;
  }

  a:hover {
    text-decoration: underline;
  }
}

.faq-snippet .btn-outline,.faq-page .btn-outline {
  display: inline-block;
  margin-top: 1.8rem;
  border: 2px solid #0077ff;
  color: #0077ff;
  padding: 0.6rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.faq-snippet .btn-outline:hover,.faq-page .btn-outline:hover {
  background: linear-gradient(90deg, #ff0077, #0077ff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-page .cta-center{margin-top:3rem}

/* ================== Enhanced FAQ Answers ================== */
.faq-snippet-list .faq-answer,.faq-list .faq-answer {
  margin-top: 0.6rem;
  margin-left: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.faq-snippet-list .faq-answer li,.faq-list .faq-answer li {
  position: relative;
  margin-bottom: 0.4rem;
  padding-left: 1.6rem;
  color: #444;
  line-height: 1.6;
}

.faq-snippet-list .faq-answer li::before,.faq-list .faq-answer li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 1rem;
  opacity: 0.85;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

.gradient-text{background:linear-gradient(90deg,#ff0077,#0066ff);-webkit-background-clip:text;-webkit-text-fill-color:transparent}


/* ============================
   SMARTLINK COVERAGE PAGE
   ============================ */

.coverage-page {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.coverage-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.coverage-hero .section-subtitle {
  color: #555;
  max-width: 720px;
  margin: 1rem auto;
  line-height: 1.6;
  font-size: 1.05rem;
}

.coverage-section,
.coverage-expansion {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.coverage-section h2,
.coverage-expansion h2 {
  color: #0066ff;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.coverage-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1.5rem;
}

.coverage-area {
  background: #fff;
  border: 1px solid rgba(230, 230, 230, 0.9);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}

.coverage-area:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.coverage-area h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #222;
}

.coverage-area p {
  color: #444;
  font-size: 0.96rem;
  line-height: 1.6;
}

.coverage-expansion .feature-list {
  margin: 1rem 0 1rem 1rem;
  list-style: none;
}

.coverage-expansion .feature-list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.coverage-expansion .feature-list li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.coverage-seo {
  margin-top: 3rem;
  padding: 1.5rem;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.coverage-seo h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #222;
}

.coverage-seo p {
  color: #555;
  line-height: 1.7;
  font-size: 0.97rem;
}
/* ============================
   MAP SECTION STYLING
   ============================ */

.coverage-map {
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.coverage-map h2 {
  font-size: 1.3rem;
  color: #0066ff;
  margin-bottom: 1rem;
}

.coverage-map .coverage-intro {
  color: #555;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: scale(1.01);
}
/* ============================
   SMARTLINK BUSINESS PAGE
   ============================ */

.business-page {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.business-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.business-hero .section-subtitle {
  max-width: 750px;
  margin: 1rem auto;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

.business-services,
.industries,
.business-benefits {
  margin-bottom: 3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.business-services h2,
.industries h2,
.business-benefits h2 {
  color: #0066ff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(235, 235, 235, 0.9);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.96rem;
  color: #444;
  line-height: 1.6;
}

.industry-list,
.benefit-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
}

.industry-list li,
.benefit-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.3rem;
}

.industry-list li::before,
.benefit-list li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

.business-seo {
  margin-top: 3rem;
  padding: 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  background: #fafafa;
}

.business-seo h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #222;
}

.business-seo p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.7;
}
/* ============================
   REQUEST A QUOTE FORM
   ============================ */

.quote-section {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  text-align: center;
  backdrop-filter: blur(10px);
}

.quote-section h2 {
  color: #0066ff;
  margin-bottom: 1rem;
}

.quote-section p {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.quote-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(230, 230, 230, 0.9);
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  color: #222;
  outline: none;
  transition: all 0.25s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.quote-form .btn {
  margin-top: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}
/* ============================
   SUCCESS POPUP
   ============================ */
.form-success {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.form-success.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

.success-box {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 2.5rem;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: fadeInScale 0.4s ease forwards;
}

.success-box .checkmark {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.6rem;
}

.success-box h3 {
  margin-bottom: 0.5rem;
  color: #0066ff;
}

.success-box p {
  color: #444;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ============================
   CONTACT PAGE STYLING
   ============================ */
.contact-page {
  margin-top: 2rem;
}

.contact-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.contact-hero p {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  flex: 1;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
  outline: none;
}

.contact-form .agree {
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #555;
}

.contact-form .agree a {
  color: #0066ff;
  text-decoration: none;
  font-weight: 500;
}

.contact-form .agree a:hover {
  text-decoration: underline;
}

.contact-info {
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  color: #222;
}

.contact-info a {
  color: #0066ff;
  text-decoration: none;
}

.map-wrap {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* Consent (checkbox) — clean, aligned, on-brand */
.form-consent {
  margin: 0.25rem 0 1rem;
}

.consent-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: #f9fbff;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.consent-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #0077ff;          /* brand blue tick */
  margin: 0;                       /* remove default offset */
}

.consent-box span {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.35;
}

.consent-box a {
  color: #0077ff;
  font-weight: 600;
  text-decoration: none;
}

.consent-box a:hover {
  text-decoration: underline;
}

/* If the old class exists, neutralize it (safe override) */
.contact-form .agree { display: none; }

@media (max-width: 480px) {
  .consent-box { align-items: flex-start; }
}
/* ============================
   FLOATING WHATSAPP BUTTON
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: linear-gradient(135deg, #ff007a, #0066ff);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: floatUp 0.5s ease-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #ff3399, #0088ff);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(100%) invert(1);
}

/* Entrance animation */
@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
}

/* ============================
   FLOATING WHATSAPP BUTTON (AUTHENTIC STYLE)
   ============================ */
/* ============================
   FLOATING WHATSAPP BUTTON (AUTHENTIC + AUTO HIDE)
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #25D366; /* WhatsApp green */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  animation: floatUp 0.6s ease-out;
}

/* Pulse ring animation */
.whatsapp-pulse {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulseRing 6s infinite;
  z-index: -1;
}

/* Logo */
.whatsapp-float img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}

/* Scroll Hide / Show */
.whatsapp-float.hidden {
  opacity: 0;
  transform: translateY(60px);
  pointer-events: none;
}

/* Floating entry animation */
@keyframes floatUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Soft pulse */
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  40% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Mobile size */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-pulse {
    width: 56px;
    height: 56px;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}
/* Glass-style reusable section */
.glass-section {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-section h2 {
  margin-bottom: 1rem;
}

/* SEO section consistency */
.seo-section {
  border-left: 4px solid var(--brand-blue, #0077ff);
  background: rgba(255, 255, 255, 0.9);
}

/* Lists */
.point-list, .highlight-list, .feature-list {
  list-style: none;
  padding-left: 0;
}

.point-list li, .highlight-list li, .feature-list li {
  padding: 0.6rem 0;
  line-height: 1.6;
}
/* ===============================
   GLOBAL TYPOGRAPHY SYSTEM
   Ensures consistent font sizes & hierarchy across all pages
================================= */
html {
  font-size: 16px; /* Base size — adjusts with viewport naturally */
}

body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  color: #1d1d1f;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

/* Page title (hero) */
h1.section-title {
  font-size: 2rem; /* 32px */
  margin-bottom: 1rem;
}

/* Section headers (like Our Story, Why Choose Smartlink) */
h2 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 1.2rem;
}

/* Subheaders inside cards (h3) */
h3 {
  font-size: 1.1rem; /* 17.6px */
  margin-bottom: 0.4rem;
}

/* Paragraphs & default text */
p, li {
  font-size: 1rem; /* 16px */
  line-height: 1.7;
  color: #444;
}

/* Lists inside cards (like benefits, industries) */
ul li {
  margin-bottom: 0.4rem;
}

/* Section subtitle (hero paragraph) */
.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto;
}

/* Buttons */
.btn, .btn-outline {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* SEO Section (for subtle smaller tone) */
.about-seo p,
.business-seo p {
  font-size: 0.97rem;
  color: #555;
}

/* Headings with emoji alignment */
h2, h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.coverage-section {
  text-align: center;
  padding: 3rem 2rem;
}

.coverage-sub {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 2rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.coverage-item {
  padding: .9rem 1rem;
  border: 1px solid #e2e8f0;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  transition: all .25s ease;
}

.coverage-item:hover {
  background: #f7fbff;
  border-color: rgba(0,119,255,0.25);
  transform: translateY(-2px);
}

.coverage-item.highlight {
  border-color: #4ade80;
  background: #f0fdf4;
  font-weight: 700;
  color: #166534;
}

.large-btn {
  padding: .9rem 2rem;
  font-size: 1rem;
}

@media (max-width: 600px){
  .coverage-grid { gap: .7rem; }
  .coverage-item { font-size: .9rem; }
}
.coverage-pro {
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, var(--brand-pink), var(--brand-blue));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 22px;
}
#fiberMesh {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.15;
  pointer-events: none;
}
.availability-box {
  text-align: center;
  padding: 1.5rem;
  margin-top: 1.2rem;
}

.availability-input input,
.availability-phone input {
  width: 100%;
  padding: .9rem 1rem;
  margin-bottom: .6rem;
  border-radius: 10px;
  border: 1px solid #d0d7e3;
  font-size: .95rem;
}

.availability-phone.hidden {
  display: none;
}

.small-btn {
  padding: .7rem 1.2rem;
  font-size: .9rem;
  width: 100%;
  border-radius: 12px;
  margin-top: .3rem;
}

.availability-status {
  margin-top: .8rem;
  font-size: .9rem;
}
.ott-logos {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.8rem 0;
  padding: 0;
  list-style: none;
}

.ott-logos li {
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 14px;
  border: 1px solid #e5e9f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
  transition: all 0.2s ease;
}

.ott-logos li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 119, 255, .18);
  border-color: rgba(0,119,255, .25);
}

.ott-logos img {
  width: 52px;
  height: auto;
  display: block;
  object-fit: contain;
}
.coverage-pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Fiber mesh animated bg */
#fiberMesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .12;
  pointer-events: none;
}

.coverage-left {
  z-index: 2;
}

.coverage-list {
  list-style: none;
  margin: 1.6rem 0;
  padding: 0;
}
.coverage-list li {
  font-size: 1.15rem;
  margin: .55rem 0;
  font-weight: 500;
  color: #0f172a;
}
.coverage-list li.new {
  color: var(--brand-pink);
}

/* Right Form */
.connect-card {
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  z-index: 3;
}

.gradient-card {
  background: linear-gradient(90deg, #ff0077, #0077ff);
  color: #fff;
}

.connect-card input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  margin-top: 1rem;
  font-size: 1rem;
}
.connect-card input:focus {
  outline: 2px solid #fff;
}

.small-note {
  font-size: .85rem;
  opacity: .85;
  margin-top: .4rem;
}

.filled-btn {
  width: 100%;
  margin-top: .6rem;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  color: #0077ff;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.filled-btn:hover {
  background: #f2f6ff;
}

/* Responsive */
@media (max-width: 900px) {
  .coverage-pro {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .connect-card {
    margin-top: 2rem;
  }
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
  z-index: 2;
}

.coverage-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid #e5e9f0;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: all .3s ease;
  display: flex;
  align-items: center;
  gap: .6rem;
  backdrop-filter: blur(8px);
  color: #0f172a;
}

.coverage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 119, 255, 0.25);
  box-shadow: 0 10px 25px rgba(0,119,255,0.08);
}

.coverage-card.new {
  color: var(--brand-pink);
}
.coverage-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  justify-items: center;
}

.location-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid #e5e9f0;
  border-radius: 18px;
  padding: .9rem;
  width: 100%;
  max-width: 180px;
  text-align: center;
  font-size: .95rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  transition: .25s ease;
  backdrop-filter: blur(6px);
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,119,255,0.3);
  box-shadow: 0 8px 25px rgba(0,119,255,0.08);
}

.loc-icon {
  font-size: 1.3rem;
  background: rgba(255,255,255,0.85);
  padding: .4rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}

.location-card.new {
  color: var(--brand-pink);
}
