/* =============================================
   SimplyNet — Modern Static Site Stylesheet
   ============================================= */

/* --- Variables --- */
:root {
  --blue:       #42b7e2;
  --blue-dark:  #2196c4;
  --blue-light: #e8f7fd;
  --navy:       #0d1f2d;
  --navy-mid:   #1a3347;
  --text:       #1a2530;
  --muted:      #5a7080;
  --border:     #dde6ec;
  --white:      #ffffff;
  --bg:         #f5f9fc;
  --green:      #27ae60;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 2px 16px rgba(13,31,45,.08);
  --shadow-md:  0 4px 24px rgba(13,31,45,.13);
  --transition: .2s ease;
  --max-w:      1200px;
  --nav-h:      68px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { color: var(--blue); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--muted); }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--alt { background: var(--bg); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark p { color: rgba(255,255,255,.7); }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 12px; }
.section-sub   { font-size: 1.05rem; max-width: 560px; margin: 0 auto 48px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--blue-light); color: var(--navy); }
.btn-lg { padding: 15px 34px; font-size: 1rem; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-h);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 8px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}
.nav-logo-text span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-item { position: relative; }
.nav-item > a,
.nav-item > button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > button:hover { background: rgba(255,255,255,.1); color: var(--white); }
.nav-item > a.active,
.nav-item > button.active { color: var(--blue); }
.nav-chevron { font-size: .7rem; transition: transform .2s; }
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 8px;
  border: 1px solid var(--border);
}
.nav-item.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  color: var(--text);
  font-size: .9rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--blue-light); color: var(--blue-dark); }
.nav-dropdown-section {
  padding: 6px 14px 4px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.nav-cta {
  margin-left: 12px;
  padding: 9px 20px !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--navy);
  overflow-y: auto;
  padding: 20px 24px 40px;
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-mobile a:hover { color: var(--blue); }
.nav-mobile-section {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin: 20px 0 4px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0e3550 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(66,183,226,.12) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(66,183,226,.15);
  border: 1px solid rgba(66,183,226,.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(66,183,226,.3);
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
}
.hero-badge-icon {
  width: 32px; height: 32px;
  background: rgba(66,183,226,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: .9rem;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 340px;
}
.hero-price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.hero-price-card .plan-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.hero-price-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.hero-price-card .speed { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-price-card .speed span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.hero-price-card .price { font-size: 1.5rem; font-weight: 700; color: var(--blue-dark); margin-top: 8px; }
.hero-price-card .price sub { font-size: .75rem; vertical-align: middle; font-weight: 500; color: var(--muted); }

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-3px);
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(66,183,226,.12), var(--shadow-md);
}
.pricing-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 14px;
  border-radius: 100px;
}
.plan-name {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.plan-speed {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2px;
}
.plan-speed-unit { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan-upload { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 20px;
}
.plan-price-dollar { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.plan-price-amount { font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.plan-price-mo { font-size: .85rem; color: var(--muted); margin-bottom: 8px; padding-left: 2px; }
.plan-features {
  list-style: none;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--text);
}
.plan-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-features li.highlight { font-weight: 700; color: var(--navy); }
.plan-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Pricing tabs */
.pricing-tabs {
  display: flex;
  gap: 8px;
  background: var(--bg);
  border-radius: 10px;
  padding: 6px;
  display: inline-flex;
  margin-bottom: 40px;
}
.pricing-tab {
  padding: 8px 20px;
  border-radius: 7px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--muted);
  transition: var(--transition);
}
.pricing-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

/* =============================================
   FEATURE SECTIONS
   ============================================= */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-split.reverse .feature-visual { order: -1; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 500;
}
.feature-item::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--bg) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.feature-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.feature-icon-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.feature-icon-item .icon { font-size: 2rem; margin-bottom: 8px; }
.feature-icon-item p { font-size: .8rem; color: var(--muted); margin: 0; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--blue);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label  { font-size: .85rem; color: rgba(255,255,255,.8); margin-top: 4px; }

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  text-align: center;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card a { text-decoration: none; color: inherit; }
.service-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.service-card p { font-size: .85rem; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  border: none;
  width: 100%;
  text-align: left;
  gap: 12px;
}
.faq-question:hover { background: var(--blue-light); color: var(--blue-dark); }
.faq-chevron { font-size: .75rem; transition: transform .25s; flex-shrink: 0; color: var(--blue); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: .92rem;
  line-height: 1.7;
  color: var(--muted);
  background: var(--white);
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
   CONTACT
   ============================================= */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 48px;
}
.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  color: var(--text);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}
.contact-channel:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue-dark); }
.contact-channel-icon { font-size: 1.8rem; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(66,183,226,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.contact-info-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info-box h3 { color: var(--white); margin-bottom: 16px; }
.contact-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: .9rem;
}
.contact-info-row-icon { color: var(--blue); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-info-row p { color: rgba(255,255,255,.75); margin: 0; }
.contact-info-row strong { color: var(--white); font-weight: 600; display: block; }

/* =============================================
   BREADCRUMB
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 48px 0 40px;
}
.page-hero h1 { color: var(--white); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb-sep { font-size: .7rem; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-light);
}
.legal-content h3 { font-size: 1.05rem; color: var(--navy); margin: 24px 0 8px; }
.legal-content p,
.legal-content li { font-size: .92rem; color: var(--muted); line-height: 1.75; }
.legal-content ol,
.legal-content ul { padding-left: 20px; margin: 8px 0 12px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo-text { font-size: 1.3rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); max-width: 280px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--blue); }

/* =============================================
   NOTICE BAR
   ============================================= */
.notice-bar {
  background: #fff3cd;
  border-bottom: 1px solid #ffc107;
  padding: 10px 0;
  font-size: .85rem;
  color: #856404;
  text-align: center;
}
.notice-bar strong { font-weight: 700; }

/* =============================================
   TV CHANNEL TABLE
   ============================================= */
.channel-browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}
.channel-browse-btn:hover { background: var(--blue-dark); color: var(--white); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split.reverse .feature-visual { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 56px 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-channels { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
