/* ===========================
   ORBI SETUP — style.css
   Light professional theme
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --clr-bg: #ffffff;
  --clr-bg2: #f5f7fa;
  --clr-bg3: #eef1f6;
  --clr-card: #ffffff;
  --clr-border: #e2e6ed;
  --clr-blue: #0066cc;
  --clr-blue-dark: #004fa3;
  --clr-blue-light: #e8f2ff;
  --clr-white: #ffffff;
  --clr-text: #3a4555;
  --clr-heading: #1a2332;
  --clr-muted: #6b7a8d;
  --clr-green: #16a34a;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 10px;
  --transition: 0.2s ease;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.08);
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { color: var(--clr-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-blue-dark); }

/* ===========================
   CTA BUTTON — AGENT
   =========================== */
.btn-agent {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--clr-blue);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 14px 28px 10px;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,102,204,0.25);
  text-align: center;
  line-height: 1.3;
}

.btn-agent:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,102,204,0.35);
  background: var(--clr-blue-dark);
}

.btn-agent:active { transform: translateY(0); }

.btn-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}

.btn-agent-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--clr-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22,163,74,0.7);
  animation: pulse-dot 1.5s infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

.btn-agent-hero {
  font-size: 1.05rem;
  padding: 16px 36px 12px;
  border-radius: 8px;
  min-width: 280px;
}

.btn-agent-sm {
  font-size: 0.82rem;
  padding: 10px 18px 7px;
}

.btn-agent-secondary {
  background: transparent;
  border: 2px solid var(--clr-blue);
  color: var(--clr-blue);
  box-shadow: none;
}

.btn-agent-secondary:hover {
  background: var(--clr-blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,102,204,0.25);
}

.btn-agent-mobile {
  width: 100%;
  font-size: 1rem;
  margin-top: 12px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.3);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--clr-green);
  margin-bottom: 4px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--clr-green);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.netgear-logo {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  margin-left: 24px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  transition: color var(--transition);
}

.header-nav a:hover { color: var(--clr-blue); }

.header-cta { margin-left: auto; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-heading);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 24px 20px;
  border-top: 1px solid var(--clr-border);
  background: #fff;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
}

/* ===========================
   HERO
   =========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--clr-bg2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.08;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(245,247,250,0.97) 0%,
    rgba(245,247,250,0.9) 50%,
    rgba(245,247,250,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--clr-blue);
  background: var(--clr-blue-light);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-heading);
  margin-bottom: 20px;
}

.hero-title-accent {
  color: var(--clr-blue);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--clr-text);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions { margin-bottom: 40px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--clr-muted);
  font-weight: 500;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--clr-blue);
  flex-shrink: 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-height: 440px;
  width: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.1));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===========================
   SECTION COMMONS
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: var(--clr-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===========================
   SETUP STEPS
   =========================== */
.setup-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

.setup-steps {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-blue);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-blue-light);
  border-radius: 12px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--clr-blue);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-heading);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--clr-border);
  margin-top: 60px;
  font-weight: 300;
}

.setup-cta {
  text-align: center;
  margin-top: 56px;
}

.setup-cta p {
  font-size: 1rem;
  color: var(--clr-muted);
  margin-bottom: 20px;
}

/* ===========================
   WIFI 7 SECTION
   =========================== */
.wifi7-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--clr-heading);
  color: #fff;
}

.wifi7-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wifi7-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.wifi7-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,0.95) 0%, rgba(26,35,50,0.85) 100%);
}

.wifi7-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wifi7-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.2;
}

.wifi7-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.wifi7-feat strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.wifi7-feat p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.wifi7-visual {
  display: flex;
  justify-content: center;
}

.wifi7-visual img {
  max-width: 360px;
}

/* ===========================
   BACKHAUL
   =========================== */
.backhaul-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--clr-bg2);
}

.backhaul-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.backhaul-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
}

.backhaul-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245,247,250,0.95);
}

.backhaul-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.backhaul-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}

.backhaul-text p {
  font-size: 1rem;
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.backhaul-stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}

.backhaul-stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-top: 6px;
}

.backhaul-visual {
  display: flex;
  justify-content: center;
}

.backhaul-visual img {
  max-width: 440px;
  border-radius: var(--radius);
}

/* ===========================
   TECHNOLOGY
   =========================== */
.tech-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.tech-card:hover {
  box-shadow: var(--shadow-lg);
}

.tech-img {
  height: 200px;
  overflow: hidden;
}

.tech-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-body {
  padding: 24px;
}

.tech-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-heading);
  margin-bottom: 10px;
}

.tech-body p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ===========================
   LIFESTYLE
   =========================== */
.lifestyle-section {
  position: relative;
  overflow: hidden;
}

.lifestyle-img-wrap {
  position: relative;
}

.lifestyle-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.8) 0%, transparent 60%);
}

.lifestyle-badge {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 20px 28px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}

.badge-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-heading);
  text-align: center;
  line-height: 1.25;
}

/* ===========================
   APP SECTION
   =========================== */
.app-section {
  padding: 100px 0;
  background: var(--clr-bg2);
}

.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.app-visual { position: relative; }

.app-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.app-icon-wrap {
  margin-bottom: 20px;
}

.app-icon {
  height: 56px;
  width: auto;
  border-radius: 14px;
}

.app-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}

.app-text > p {
  font-size: 1rem;
  color: var(--clr-text);
  margin-bottom: 28px;
  line-height: 1.7;
}

.app-features-list {
  list-style: none;
  margin-bottom: 36px;
}

.app-features-list li {
  font-size: 0.92rem;
  color: var(--clr-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--clr-border);
}

.app-features-list li:last-child { border-bottom: none; }

/* ===========================
   AWARDS
   =========================== */
.awards-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

.awards-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.award-card {
  text-align: center;
}

.award-card img {
  max-height: 100px;
  width: auto;
  margin: 0 auto 16px;
  border-radius: 8px;
}

.award-card p {
  font-size: 0.9rem;
  color: var(--clr-muted);
}

.award-card strong { color: var(--clr-heading); }

.award-card-center img.award-product {
  max-height: 300px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.1));
}

.pcmag-badge {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  display: inline-block;
}

.pcmag-icon {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  background: #c00;
  border-radius: 8px;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 12px;
  line-height: 1.2;
}

.pcmag-stars {
  font-size: 1.2rem;
  color: #f59e0b;
  margin-bottom: 8px;
}

.pcmag-badge p {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--clr-text);
  font-weight: 600;
}

/* ===========================
   FINAL CTA
   =========================== */
.final-cta-section {
  padding: 100px 0;
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.final-cta-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-heading);
  margin-bottom: 12px;
  line-height: 1.2;
}

.final-cta-text p {
  font-size: 1rem;
  color: var(--clr-muted);
  max-width: 480px;
  line-height: 1.65;
}

.final-cta-btn { text-align: center; }

.cta-reassurance {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-top: 12px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--clr-heading);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding: 72px 24px 60px;
}

.footer-netgear-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal a:hover { color: #fff; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
  .wifi7-content { grid-template-columns: 1fr; }
  .wifi7-visual { display: flex; justify-content: center; }
  .backhaul-content { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; text-align: center; }
  .award-card-center img.award-product { max-height: 200px; }
}

@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-inner { padding: 12px 16px; }

  .hero-section { padding: 100px 0 60px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-desc { font-size: 1rem; }
  .btn-agent-hero { min-width: 260px; font-size: 1rem; }
  .hero-trust { gap: 12px; }

  .setup-section { padding: 60px 0; }
  .setup-steps { flex-direction: column; align-items: center; gap: 16px; }
  .step-card { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); margin-top: 0; }

  .wifi7-features { grid-template-columns: 1fr; }

  .tech-section { padding: 60px 0; }
  .tech-grid { grid-template-columns: 1fr; }

  .lifestyle-img-wrap img { height: 280px; }
  .lifestyle-badge { left: 20px; padding: 12px 18px; }
  .badge-text { font-size: 1rem; }

  .app-section { padding: 60px 0; }
  .app-inner { grid-template-columns: 1fr; gap: 40px; }
  .app-text h2 { font-size: 1.6rem; }

  .final-cta-section { padding: 60px 0; }
  .final-cta-inner { flex-direction: column; text-align: center; gap: 36px; }
  .final-cta-text p { margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 16px 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.5rem; }
  .wifi7-text h2 { font-size: 1.5rem; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .awards-grid { grid-template-columns: 1fr; }
}
