/* ===== TVNet Boss Cloud — main stylesheet ===== */

:root {
  --bg: #ffffff;
  --fg: #0f1424;
  --muted-fg: #5a6478;
  --border: #e5e8ef;
  --secondary: #f3f5fa;
  --primary: #1b2a6b;          /* deep blue */
  --primary-glow: #3a5cff;
  --primary-fg: #ffffff;
  --neon: #2ee8a5;             /* neon green */
  --neon-deep: #1ab891;
  --shadow-elegant: 0 20px 60px -20px rgba(27, 42, 107, 0.35);
  --shadow-glow: 0 0 40px rgba(46, 232, 165, 0.55);
  --radius: 14px;
  --gradient-hero: linear-gradient(135deg, #0c1230 0%, #1b2a6b 60%, #1f4ea8 100%);
  --gradient-cta: linear-gradient(135deg, #2ee8a5 0%, #2ec3e8 100%);
  --gradient-deep: linear-gradient(180deg, #0e163a 0%, #1b2a6b 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--fg); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient-deep); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-elegant);
}
.brand-accent { color: var(--primary); }
.header-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--primary-fg);
  padding: 10px 16px; border-radius: 10px; font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-elegant);
  transition: filter .2s;
}
.header-call:hover { filter: brightness(1.1); }
.header-call-text-mobile { display: none; }
@media (max-width: 640px) {
  .header-call-text { display: none; }
  .header-call-text-mobile { display: inline; }
  .header-call { padding: 8px 12px; }
}

/* ===== Buttons ===== */
.btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gradient-cta); color: #0f1424;
  border-radius: 12px; font-weight: 800; letter-spacing: -0.01em;
  box-shadow: var(--shadow-glow);
  transition: transform .2s, box-shadow .2s, filter .2s;
  border: none; cursor: pointer;
}
.btn-call:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-call-lg { height: 54px; padding: 0 26px; font-size: 16px; }
.btn-call-xl { height: 62px; padding: 0 32px; font-size: 18px; }
@media (max-width: 480px) {
  .btn-call-lg, .btn-call-xl { width: 100%; }
}

/* ===== Hero ===== */
.hero {
  position: relative; isolate: isolate;
  background: var(--gradient-hero) center/cover no-repeat;
  color: #fff; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,18,48,0.85), rgba(31,78,168,0.65)), rgba(0,0,0,0.3);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; padding: 88px 20px 110px; max-width: 900px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px; font-weight: 600; backdrop-filter: blur(8px);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); animation: pulse 1.5s infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }
.hero-heading { margin-top: 24px; font-size: clamp(34px, 5vw, 60px); }
.hero-sub { margin-top: 18px; font-size: 18px; color: rgba(255,255,255,0.88); max-width: 640px; }
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-cta-note { font-size: 14px; color: rgba(255,255,255,0.8); }
.hero-features {
  margin-top: 40px; display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr);
}
.hero-features li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  font-size: 14px; font-weight: 500;
}
.feature-icon { color: var(--neon); font-size: 18px; line-height: 1; }
@media (max-width: 768px) { .hero-features { grid-template-columns: 1fr; } }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-light { background: var(--bg); }
.section-muted { background: var(--secondary); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.eyebrow { color: var(--primary); font-weight: 700; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(28px, 3.5vw, 40px); }

/* Two col */
.two-col { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr 1fr; }
.two-col + .two-col { margin-top: 80px; }
.two-col h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 16px; }
.two-col p { color: var(--muted-fg); font-size: 17px; }
.two-col img { border-radius: 18px; box-shadow: var(--shadow-elegant); }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col-reverse .col-image { order: 2; }
}
.check-list { margin: 24px 0 28px; display: grid; gap: 10px; }
.check-list li { padding-left: 26px; position: relative; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--primary); font-weight: 800;
}

/* Grid cards */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); border-color: rgba(27,42,107,0.25); }
.card h3 { font-size: 19px; margin: 18px 0 8px; }
.card p { color: var(--muted-fg); font-size: 15px; }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gradient-deep); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; box-shadow: var(--shadow-elegant);
}
.card-center { text-align: center; }
.card-icon-soft {
  margin: 0 auto;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--secondary); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; font-size: 22px;
}
.center-cta { margin-top: 48px; display: flex; justify-content: center; }

/* Urgency */
.urgency { position: relative; isolate: isolate; background: var(--gradient-deep) center/cover no-repeat; color: #fff; overflow: hidden; }
.urgency-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,22,58,0.92), rgba(27,42,107,0.92)); z-index: 0; }
.urgency-inner { position: relative; z-index: 1; max-width: 800px; text-align: center; }
.urgency-inner h2 { font-size: clamp(30px, 4vw, 48px); margin: 24px 0 16px; }
.urgency-inner p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.badge-light { background: rgba(255,255,255,0.1); color: #fff; }

/* Final CTA */
.final-cta {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--gradient-deep); color: #fff;
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-elegant);
}
.final-cta-image { min-height: 360px; background-size: cover; background-position: center; }
.final-cta-text { padding: 44px; }
.final-cta-text h2 { font-size: clamp(26px, 3vw, 38px); }
.final-cta-text p { color: rgba(255,255,255,0.85); margin-top: 12px; font-size: 17px; }
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.benefits li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.benefits li span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.1); color: var(--neon);
}
.open-hours { margin-top: 14px; color: rgba(255,255,255,0.7); font-size: 14px; }
@media (max-width: 900px) { .final-cta { grid-template-columns: 1fr; } .benefits { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: var(--secondary); border-top: 1px solid var(--border); padding: 48px 0; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 800; }
.footer-phone:hover { text-decoration: underline; }
.footer-disclaimer { margin-top: 28px; color: var(--muted-fg); font-size: 12px; line-height: 1.7; display: grid; gap: 8px; }
.footer-widgets { margin-bottom: 28px; }

/* Floating call button */
.floating-call {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 22px; border-radius: 999px;
  background: var(--gradient-cta); color: #0f1424; font-weight: 800;
  box-shadow: var(--shadow-glow); animation: ring 2s infinite;
}
.floating-call:hover { transform: translateY(-2px); }
.floating-call-text-mobile { display: none; }
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(46,232,165,0.7); }
  70% { box-shadow: 0 0 0 18px rgba(46,232,165,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,232,165,0); }
}
@media (max-width: 640px) {
  .floating-call-text { display: none; }
  .floating-call-text-mobile { display: inline; }
  .floating-call { height: 52px; padding: 0 18px; }
}
