/* ============================================================
   MyCableTVBundles.com — Policy Page Styles
   ============================================================ */

/* Import base variables & header/footer styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #0A1628; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --navy:    #0A1628;
  --navy-2:  #112338;
  --orange:  #FF6B1A;
  --orange-dk: #E55800;
  --white:   #FFFFFF;
  --off-white: #F3F7FC;
  --border:  #E0E8F2;
  --muted:   #5E7A96;
  --font-h:  'Sora', sans-serif;
  --font-b:  'DM Sans', sans-serif;
  --r:       14px;
  --sh:      0 4px 24px rgba(10,22,40,0.08);
  --tr:      all 0.3s cubic-bezier(.4,0,.2,1);
  --container: 1200px;
}

h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 800; line-height: 1.2; }
p { line-height: 1.72; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* Floating CTA */
.float-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--orange); color: #fff;
  padding: 0.9rem 1.6rem; border-radius: 50px;
  font-family: var(--font-h); font-weight: 800; font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.55rem;
  box-shadow: 0 6px 28px rgba(255,107,26,0.35);
  transition: var(--tr);
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.float-cta:hover { background: var(--orange-dk); transform: scale(1.05) translateY(-2px); }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(255,107,26,0.35); }
  50%       { box-shadow: 0 6px 48px rgba(255,107,26,0.65); }
}

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0; background: var(--navy);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { font-family: var(--font-h); font-weight: 800; font-size: 1.15rem; color: #fff; line-height: 1.1; }
.logo-text .logo-orange { color: var(--orange); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-link { color: rgba(255,255,255,0.75); font-family: var(--font-h); font-size: 0.88rem; font-weight: 600; transition: var(--tr); }
.nav-link:hover { color: #fff; }
.nav-phone { color: #fff; font-family: var(--font-h); font-size: 1rem; font-weight: 800; display: flex; align-items: center; gap: 0.4rem; transition: var(--tr); }
.nav-phone:hover { color: var(--orange); }
.nav-cta { background: var(--orange); color: #fff !important; padding: 0.55rem 1.35rem; border-radius: 50px; font-size: 0.88rem; transition: var(--tr); }
.nav-cta:hover { background: var(--orange-dk); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 0.4rem; z-index: 1002; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--tr); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Policy Content */
.policy-hero {
  background: var(--navy);
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(27,79,216,0.15) 0%, transparent 70%);
}
.policy-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); position: relative; z-index: 1; }
.policy-hero p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 0.75rem; position: relative; z-index: 1; }

.policy-body { padding: 4rem 0 5rem; }
.policy-container { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.policy-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.policy-section:last-child { border-bottom: none; }
.policy-section h2 { font-family: var(--font-h); font-size: 1.4rem; color: var(--navy); margin-bottom: 1rem; }
.policy-section h3 { font-family: var(--font-h); font-size: 1.1rem; color: var(--navy); margin: 1.25rem 0 0.6rem; }
.policy-section p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.85rem; }
.policy-section ul { list-style: disc; padding-left: 1.5rem; }
.policy-section ul li { color: var(--muted); font-size: 0.95rem; line-height: 1.78; margin-bottom: 0.4rem; }
.policy-toc { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem 2rem; margin-bottom: 3rem; }
.policy-toc h3 { font-family: var(--font-h); color: var(--navy); margin-bottom: 0.85rem; font-size: 1rem; }
.policy-toc a { display: block; color: var(--orange); font-size: 0.9rem; margin-bottom: 0.35rem; transition: var(--tr); }
.policy-toc a:hover { color: var(--orange-dk); text-decoration: underline; }

/* Footer */
.footer { background: #060C18; }
.footer-top { padding: 3.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.48); font-size: 0.88rem; line-height: 1.75; margin-top: 1rem; max-width: 270px; }
.footer-col h5 { font-family: var(--font-h); color: #fff; font-size: 0.93rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: var(--tr); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.65rem; color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-phone-link { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--orange); color: #fff; padding: 0.75rem 1.5rem; border-radius: 50px; font-family: var(--font-h); font-weight: 700; font-size: 0.92rem; margin-top: 1.25rem; transition: var(--tr); }
.footer-phone-link:hover { background: var(--orange-dk); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.82rem; transition: var(--tr); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: center;
    position: fixed; inset: 0; background: var(--navy);
    z-index: 1000; padding: 6rem 2rem 3rem; gap: 1.5rem; overflow-y: auto;
  }
  .nav.open .nav-link { font-size: 1.3rem; color: rgba(255,255,255,0.85); }
  .menu-toggle { display: flex; }
}
@media (max-width: 480px){
    .policy-section {
    padding: 0 !important;
    margin-bottom: 20px !important;
}
.policy-section h2 {
    font-size: 18px;
    line-height: 30px;
}
.policy-section p {
    font-size: 14px;
    line-height: 24px;
}
}