/*
Theme Name: SBN Fiber Broadband
Theme URI: https://www.sbnbroadband.com
Author: SBN Fiber
Description: A professional broadband ISP WordPress theme for SBN Fiber — inspired by Mach1 Broadband layout. Clean, modern, and fully editable via WordPress Customizer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: sbn-fiber
Tags: custom-menu, custom-logo, featured-images, responsive-layout, full-width-template
*/

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
  --primary:        #FF6B00;
  --primary-dark:   #e05a00;
  --primary-light:  #ff8c3a;
  --secondary:      #1a2e5a;
  --secondary-dark: #0f1e3d;
  --accent:         #00c2ff;
  --white:          #ffffff;
  --light-bg:       #f5f7fc;
  --light-bg2:      #eef2f9;
  --text-dark:      #1a2e5a;
  --text-body:      #4a5568;
  --text-muted:     #718096;
  --border:         #e2e8f0;
  --success:        #38a169;
  --card-shadow:    0 4px 24px rgba(26,46,90,0.10);
  --card-shadow-hover: 0 12px 40px rgba(26,46,90,0.18);
  --radius:         12px;
  --radius-lg:      20px;
  --radius-full:    999px;
  --transition:     0.28s cubic-bezier(0.4,0,0.2,1);
  --container:      1200px;
  --header-h:       80px;
}

/* =====================================================
   RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.sbn-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.sbn-section { padding: 80px 0; }
.sbn-section-sm { padding: 56px 0; }
.sbn-section-lg { padding: 100px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-primary { color: var(--primary) !important; }

.sbn-flex        { display: flex; }
.sbn-flex-center { display: flex; align-items: center; justify-content: center; }
.sbn-grid-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sbn-grid-3      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sbn-grid-4      { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.sbn-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 800;
}
.sbn-section-title span { color: var(--primary); }
.sbn-section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}
.sbn-tag {
  display: inline-block;
  background: rgba(255,107,0,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.sbn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.sbn-btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.sbn-btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
}
.sbn-btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.sbn-btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}
.sbn-btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.sbn-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.sbn-btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.sbn-btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
}
.sbn-btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.sbn-btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* =====================================================
   TOP BAR
   ===================================================== */
.sbn-topbar {
  background: var(--secondary);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}
.sbn-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sbn-topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sbn-topbar-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  font-weight: 500;
}
.sbn-topbar-links a:hover { color: var(--primary); }
.sbn-topbar-links .icon { font-size: 1rem; }
.sbn-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sbn-topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
#sbn-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
#sbn-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.14); }

.sbn-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.sbn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sbn-logo img { height: 48px; width: auto; }
.sbn-logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: -0.02em;
}
.sbn-logo-text span { color: var(--primary); }

/* Desktop nav menu */
.sbn-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.sbn-nav-menu > li { position: relative; }
.sbn-nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.sbn-nav-menu > li > a:hover,
.sbn-nav-menu > li.current-menu-item > a,
.sbn-nav-menu > li > a.active {
  color: var(--primary);
  background: rgba(255,107,0,0.07);
}
/* Dropdown */
.sbn-nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.sbn-nav-menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sbn-nav-menu .sub-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 8px;
  transition: all var(--transition);
}
.sbn-nav-menu .sub-menu li a:hover {
  background: rgba(255,107,0,0.07);
  color: var(--primary);
}

.sbn-nav-cta { display: flex; align-items: center; gap: 12px; }
.sbn-nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.9rem;
  white-space: nowrap;
}
.sbn-nav-phone:hover { color: var(--primary); }

/* Hamburger */
.sbn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.sbn-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile nav drawer */
.sbn-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.18);
  padding: 0 0 40px;
}
.sbn-mobile-nav.open { right: 0; }
.sbn-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.sbn-mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: background var(--transition);
}
.sbn-mobile-close:hover { background: rgba(255,107,0,0.1); color: var(--primary); }
.sbn-mobile-menu { padding: 16px 0; }
.sbn-mobile-menu li a {
  display: block;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.sbn-mobile-menu li a:hover,
.sbn-mobile-menu li a.active {
  color: var(--primary);
  background: rgba(255,107,0,0.05);
  border-left-color: var(--primary);
}
.sbn-mobile-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sbn-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.sbn-overlay.show { opacity: 1; pointer-events: all; }

/* =====================================================
   HERO SLIDER
   ===================================================== */
.sbn-hero {
  position: relative;
  overflow: hidden;
  background: var(--secondary-dark);
  min-height: 560px;
}
.sbn-hero-slides { position: relative; width: 100%; }
.sbn-hero-slide {
  display: none;
  position: relative;
  min-height: 560px;
  align-items: center;
}
.sbn-hero-slide.active { display: flex; }
.sbn-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sbn-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,30,61,0.92) 0%,
    rgba(15,30,61,0.75) 50%,
    rgba(15,30,61,0.2) 100%
  );
}
.sbn-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}
.sbn-hero-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.sbn-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.sbn-hero-title span { color: var(--primary); }
.sbn-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}
.sbn-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.sbn-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.sbn-hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.sbn-hero-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}
.sbn-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.sbn-hero-nav:hover { background: var(--primary); border-color: var(--primary); }
.sbn-hero-prev { left: 20px; }
.sbn-hero-next { right: 20px; }

/* =====================================================
   QUICK ACTIONS BAR (below hero)
   ===================================================== */
.sbn-quick-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.sbn-quick-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sbn-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.sbn-quick-item:last-child { border-right: none; }
.sbn-quick-item:hover { background: rgba(255,107,0,0.04); }
.sbn-quick-item:hover .sbn-quick-icon { background: var(--primary); color: var(--white); }
.sbn-quick-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,107,0,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.sbn-quick-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.sbn-quick-title { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); }

/* =====================================================
   BROADBAND PLANS SECTION
   ===================================================== */
.sbn-plans-section { background: var(--light-bg); }
.sbn-plans-header { text-align: center; margin-bottom: 40px; }
.sbn-plans-image-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sbn-plans-image-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,46,90,0.2);
}
.sbn-plans-image-wrap img { width: 100%; height: auto; display: block; }

/* Speed filter tabs */
.sbn-speed-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.sbn-speed-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.sbn-speed-tab:hover, .sbn-speed-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(255,107,0,0.3);
}

/* Plan cards grid */
.sbn-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.sbn-plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.sbn-plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.sbn-plan-card:hover {
  border-color: var(--primary);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
}
.sbn-plan-card:hover::before { transform: scaleX(1); }
.sbn-plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(255,107,0,0.18);
}
.sbn-plan-card.featured::before { transform: scaleX(1); }
.sbn-plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sbn-plan-speed {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.sbn-plan-speed-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.sbn-plan-speed-unit { font-size: 1rem; font-weight: 700; color: var(--text-muted); }
.sbn-plan-validity {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.sbn-plan-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.sbn-plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.sbn-plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.sbn-plan-feature-icon { color: var(--success); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.sbn-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.sbn-plan-price-sym { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.sbn-plan-price-num { font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.sbn-plan-price-per { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.sbn-plan-save {
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 700;
  margin-bottom: 20px;
}
.sbn-plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  transition: all var(--transition);
}
.sbn-plan-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}

/* =====================================================
   WHY CHOOSE US — FEATURES STRIP
   ===================================================== */
.sbn-features-section { background: var(--secondary); padding: 60px 0; }
.sbn-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.sbn-feature-item { text-align: center; }
.sbn-feature-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  transition: all var(--transition);
}
.sbn-feature-item:hover .sbn-feature-icon-wrap {
  background: var(--primary);
  transform: scale(1.08);
}
.sbn-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.sbn-feature-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* =====================================================
   WHOLE-HOME WIFI SECTION
   ===================================================== */
.sbn-wifi-section { background: var(--white); }
.sbn-wifi-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
}
.sbn-wifi-image img { width: 100%; height: auto; display: block; }
.sbn-wifi-content h2 { margin-bottom: 20px; }
.sbn-wifi-content p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }
.sbn-wifi-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.sbn-wifi-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.sbn-wifi-list-icon { color: var(--success); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* =====================================================
   OTT SECTION
   ===================================================== */
.sbn-ott-section { background: var(--light-bg); }
.sbn-ott-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.sbn-ott-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.sbn-ott-tab.active, .sbn-ott-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.sbn-ott-image-wrap {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
  transition: transform var(--transition);
}
.sbn-ott-image-wrap:hover { transform: translateY(-6px); }
.sbn-ott-image-wrap img { width: 170%; max-width: none; height: auto; display: block; margin-left: -70%; }
.sbn-ott-allinone-wrap {
  max-width: 500px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
}
.sbn-ott-allinone-wrap img { width: 100%; height: auto; display: block; }
.sbn-ott-platforms-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sbn-ott-count-badge {
  background: var(--secondary);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =====================================================
   FEATURED PLAN PROMO BANNER
   ===================================================== */
.sbn-promo-section { background: var(--white); }
.sbn-promo-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.sbn-promo-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
  transition: transform var(--transition);
}
.sbn-promo-image:hover { transform: translateY(-8px) rotate(-0.5deg); }
.sbn-promo-image img { width: 100%; height: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: right center; display: block; }
.sbn-promo-content h2 { margin-bottom: 16px; }
.sbn-promo-content p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }
.sbn-promo-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.sbn-promo-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  transition: all var(--transition);
}
.sbn-promo-feature:hover { background: rgba(255,107,0,0.05); transform: translateX(4px); }
.sbn-promo-feature-icon {
  width: 40px; height: 40px;
  background: rgba(255,107,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.sbn-promo-feature-title { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.sbn-promo-feature-desc  { font-size: 0.82rem; color: var(--text-muted); }

/* =====================================================
   COVERAGE MAP SECTION
   ===================================================== */
.sbn-coverage-section { background: var(--light-bg); }
.sbn-coverage-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.sbn-coverage-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
  transition: transform var(--transition);
}
.sbn-coverage-image:hover { transform: translateY(-6px) rotate(0.4deg); }
.sbn-coverage-image img { width: 100%; height: 100%; aspect-ratio: 16 / 11; object-fit: cover; object-position: right center; display: block; }
.sbn-coverage-content h2 { margin-bottom: 16px; }
.sbn-coverage-content p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }
.sbn-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.sbn-area-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: all var(--transition);
}
.sbn-area-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255,107,0,0.05);
  transform: translateY(-2px);
}
.sbn-area-chip-dot { color: var(--primary); }

/* =====================================================
   ABOUT / COMPANY SECTION
   ===================================================== */
.sbn-about-section { background: var(--white); }
.sbn-about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
}
.sbn-about-image img { width: 100%; height: auto; display: block; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.sbn-testimonials-section { background: var(--light-bg); }
.sbn-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sbn-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.sbn-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255,107,0,0.2);
}
.sbn-testimonial-quote {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.sbn-testimonial-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.sbn-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.sbn-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.sbn-testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.sbn-testimonial-location { font-size: 0.78rem; color: var(--text-muted); }
.sbn-testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-top: 2px; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.sbn-cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.sbn-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,107,0,0.1);
  pointer-events: none;
}
.sbn-cta-inner { text-align: center; position: relative; z-index: 1; }
.sbn-cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.sbn-cta-inner p  { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.sbn-cta-actions  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.sbn-contact-section { background: var(--white); }
.sbn-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.sbn-contact-info h2 { margin-bottom: 16px; }
.sbn-contact-info p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
.sbn-contact-items { display: flex; flex-direction: column; gap: 20px; }
.sbn-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--light-bg);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.sbn-contact-item:hover { background: rgba(255,107,0,0.05); transform: translateX(4px); }
.sbn-contact-item-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,107,0,0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.sbn-contact-item-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.sbn-contact-item-value { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }

/* Contact Form */
.sbn-contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--card-shadow);
}
.sbn-form-title { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); margin-bottom: 24px; }
.sbn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sbn-form-group { margin-bottom: 18px; }
.sbn-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.sbn-form-input, .sbn-form-select, .sbn-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.sbn-form-input:focus, .sbn-form-select:focus, .sbn-form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,107,0,0.1);
}
.sbn-form-input::placeholder, .sbn-form-textarea::placeholder { color: var(--text-muted); opacity: 0.7; }
.sbn-form-textarea { min-height: 120px; resize: vertical; }
.sbn-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.sbn-form-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.sbn-form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
}
.sbn-form-response {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}
.sbn-form-response.success { background: rgba(56,161,105,0.1); border: 1px solid rgba(56,161,105,0.3); color: var(--success); }
.sbn-form-response.error   { background: rgba(229,62,62,0.1); border: 1px solid rgba(229,62,62,0.3); color: #e53e3e; }

/* =====================================================
   FOOTER
   ===================================================== */
.sbn-footer-top { background: var(--secondary-dark); padding: 64px 0 48px; }
.sbn-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.sbn-footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 16px 0 24px;
}
.sbn-footer-social { display: flex; gap: 10px; }
.sbn-footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.sbn-footer-social-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }
.sbn-footer-col-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.sbn-footer-links { display: flex; flex-direction: column; gap: 10px; }
.sbn-footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sbn-footer-links a:hover { color: var(--primary); }
.sbn-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.sbn-footer-contact-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.sbn-footer-bottom {
  background: var(--secondary-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.sbn-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.sbn-footer-bottom a { color: var(--primary); transition: opacity var(--transition); }
.sbn-footer-bottom a:hover { opacity: 0.8; }

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.sbn-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 800;
  transition: all var(--transition);
  text-decoration: none;
}
.sbn-whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.sbn-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sbn-fade-up.visible { opacity: 1; transform: translateY(0); }
.sbn-delay-1 { transition-delay: 0.1s; }
.sbn-delay-2 { transition-delay: 0.2s; }
.sbn-delay-3 { transition-delay: 0.3s; }
.sbn-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .sbn-features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .sbn-footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sbn-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .sbn-testimonials-grid { grid-template-columns: 1fr 1fr; }
  .sbn-promo-grid { grid-template-columns: 1fr; gap: 40px; }
  .sbn-coverage-grid { grid-template-columns: 1fr; gap: 40px; }
  .sbn-grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .sbn-quick-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .sbn-section { padding: 56px 0; }
  .sbn-section-sm { padding: 40px 0; }
  .sbn-topbar-links .hide-mobile { display: none; }
  .sbn-nav-menu, .sbn-nav-cta { display: none; }
  .sbn-hamburger { display: flex; }
  .sbn-features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sbn-testimonials-grid { grid-template-columns: 1fr; }
  .sbn-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sbn-quick-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .sbn-form-row { grid-template-columns: 1fr; }
  .sbn-hero-content { padding: 60px 0; }
  .sbn-hero-nav { display: none; }
  .sbn-footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .sbn-container { padding: 0 16px; }
  .sbn-quick-bar-inner { grid-template-columns: 1fr 1fr; }
  .sbn-features-grid { grid-template-columns: 1fr; }
  .sbn-area-chips { gap: 8px; }
  .sbn-cta-actions { flex-direction: column; align-items: stretch; }
  .sbn-cta-actions .sbn-btn { justify-content: center; }
  .sbn-contact-form { padding: 24px; }
  .sbn-hero-actions { flex-direction: column; }
  .sbn-hero-actions .sbn-btn { justify-content: center; }
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
*:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--primary); color: var(--white);
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: 0.9rem; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.admin-bar #sbn-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #sbn-header { top: 46px; } }
