/* =============================================
   3D WIRELESS PLUS — LANDING PAGE STYLES
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #e07b00;
  --orange-light: #f59e0b;
  --dark: #0f1118;
  --dark-card: #1a1c2e;
  --dark-mid: #252738;
  --text: #1a1a2a;
  --text-muted: #6b7280;
  --bg: #f5f5f7;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
}

/* ---- DARK MODE ---- */
body.dark {
  --bg: #0d0f1a;
  --white: #161928;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --border: #2a2c3e;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.55);
}
body.dark .top-bar { background: #07080f; }
body.dark .navbar { background: var(--white); border-bottom-color: var(--border); }
body.dark .nav-links a { color: var(--text); }
body.dark .nav-links a:hover,
body.dark .nav-links a.active { color: var(--orange); }
body.dark .tech-specs { background: var(--bg); }
body.dark .specs-container { background: var(--white); }
body.dark .specs-container h2 { color: var(--text); }
body.dark .spec-detail p { color: var(--text-muted); }
body.dark .about-content h2,
body.dark .about-item h4 { color: var(--text); }
body.dark .services-section { background: var(--bg); }
body.dark .service-card { background: var(--white); }
body.dark .service-card h3 { color: var(--text); }
body.dark .hiw-step h3 { color: var(--text); }
body.dark .pkg-card:not(.featured) h3 { color: var(--text); }
body.dark .pkg-card:not(.featured) .amount,
body.dark .pkg-card:not(.featured) .currency,
body.dark .pkg-card:not(.featured) .period { color: var(--orange); }
body.dark .testimonial-card > p { color: var(--text-muted); }
body.dark .testimonial-card strong { color: var(--text); }
body.dark .partners { background: var(--bg); }
body.dark .partner-logo { filter: brightness(0) invert(0.7); }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg { width: 14px; height: 14px; }
.top-bar-item a { color: #ccc; transition: color 0.2s; }
.top-bar-item a:hover { color: var(--orange); }
.top-bar-whatsapp svg { fill: #25d366; width: 14px; height: 14px; }
.top-bar-whatsapp a { color: #ccc; }
.wa-badge {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.top-bar-right { display: flex; gap: 12px; align-items: center; }
.social-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #333;
  border-radius: 50%;
  color: #aaa;
  transition: all 0.2s;
}
.social-icon svg { width: 13px; height: 13px; }
.social-icon:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-link { flex-shrink: 0; }
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav-links li a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--text);
  background: var(--bg);
}
.nav-links li a.active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
  border-radius: 0;
  background: none;
}
/* Hamburger lines always dark */
.hamburger span { background: var(--text); }
.btn-fiber {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-fiber:hover { background: #c96e00; transform: translateY(-1px); }

/* Dark mode toggle button */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50px;
  width: 42px;
  height: 24px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
  padding: 0;
}
.theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform 0.3s, background 0.3s;
}
body.dark .theme-toggle { border-color: var(--orange); background: rgba(224,123,0,0.15); }
body.dark .theme-toggle::after { transform: translateX(18px); background: var(--orange); }
.toggle-icon {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  stroke: var(--text-muted);
  transition: opacity 0.3s;
}
.toggle-sun  { right: 4px; }
.toggle-moon { left: 4px; opacity: 0; }
body.dark .toggle-sun  { opacity: 0; }
body.dark .toggle-moon { opacity: 1; stroke: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.mobile-menu.open {
  display: block;
  max-height: 400px;
  padding: 16px 24px;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s;
}
.mobile-menu ul li a:hover { background: var(--bg); color: var(--orange); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,20,38,0.72) 0%,
    rgba(9,20,38,0.55) 50%,
    rgba(9,20,38,0.80) 100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-inner h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 12px 0 20px;
}
.hero-tag { margin-bottom: 4px; }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 0 32px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

/* Mini stats row in hero */
.hero-mini-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 20px 32px;
  background: rgba(11,28,48,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
}
.hero-mini-stat { text-align: center; }
.hero-mini-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-mini-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-mini-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}


.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-content h1 .orange { color: var(--orange); }
.hero-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #c96e00; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,123,0,0.35); }
.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.hero .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}
.hero .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ---- FEATURES STRIP ---- */
.features {
  background: var(--white);
  padding: 0;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature-card {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-card.light { background: var(--white); }
.feature-card.dark { background: var(--dark-card); border-radius: var(--radius); margin: 20px 0; }
.feature-card.dark h3 { color: #fff; }
.feature-card.dark p { color: #9ca3af; }
.feature-icon-wrap {
  width: 44px; height: 44px;
  background: var(--bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon-wrap svg { width: 22px; height: 22px; stroke: var(--orange); }
.feature-icon-wrap.orange { background: rgba(224,123,0,0.15); }
.feature-icon-wrap.orange svg { stroke: var(--orange); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ---- HOW IT WORKS ---- */
/* ── Slow Internet Section ────────────────────────────────── */
.slow-internet-section {
  background: var(--bg);
  padding: 80px 24px;
}
.slow-internet-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}
.slow-internet-text {
  flex: 1;
}
.slow-internet-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.25;
}
.slow-internet-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 28px;
}
.slow-internet-img {
  flex: 1;
  display: flex;
  justify-content: center;
}
.slow-internet-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
@media (max-width: 768px) {
  .slow-internet-inner {
    flex-direction: column-reverse;
    gap: 32px;
  }
  .slow-internet-img img { max-width: 100%; }
}

.how-it-works {
  background: var(--white);
  padding: 80px 24px;
}
.hiw-container {
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-header {
  text-align: center;
  margin-bottom: 56px;
}
.hiw-header h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.hiw-header p { color: var(--text-muted); }
.hiw-steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.hiw-step {
  flex: 1;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hiw-plan-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  text-align: left;
  width: 100%;
}
.hiw-plan-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.hiw-plan-list li:last-child { border-bottom: none; }
.hiw-step:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.hiw-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  transition: opacity 0.25s;
}
.hiw-step:hover .hiw-num { opacity: 1; }
.hiw-step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.hiw-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.hiw-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--orange);
  opacity: 0.4;
}
.hiw-arrow svg { width: 28px; height: 28px; }

@media (max-width: 768px) {
  .hiw-steps { flex-direction: column; }
  .hiw-arrow { padding-top: 0; transform: rotate(90deg); align-self: center; }
}

/* ---- TECH SPECS ---- */
.tech-specs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.specs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 56px;
  box-shadow: var(--shadow);
}
.specs-left h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 36px;
  color: var(--text);
}
.specs-list { display: flex; flex-direction: column; gap: 28px; }
.specs-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.spec-icon {
  width: 40px; height: 40px;
  background: rgba(224,123,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.spec-icon svg { width: 18px; height: 18px; stroke: var(--orange); }
.spec-detail strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.spec-detail p { font-size: 0.84rem; color: var(--text-muted); }

/* Speed Card */
.speed-card {
  background: var(--dark-card);
  border-radius: 20px;
  padding: 48px 32px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.speed-ring-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
}
.ring-svg { width: 100%; height: 100%; }
.speed-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.speed-num {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.speed-unit {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 4px;
}
.speed-caption {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ---- PACKAGES ---- */
.packages {
  padding: 80px 24px;
  background-color: var(--bg);
}
.packages-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.packages-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.packages-header p { color: var(--text-muted); }
/* ---- Infinite marquee ---- */
.pkg-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  /* fade edges for a polished look */
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pkg-marquee::-webkit-scrollbar { display: none; }

.pkg-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: pkg-scroll 30s linear infinite;
  will-change: transform;
}

/* Pause on hover so users can read cards */
.pkg-marquee:hover .pkg-track,
.pkg-marquee.is-paused .pkg-track {
  animation-play-state: paused;
}

/* Mobile: narrower cards + tighter edge fade */
@media (max-width: 768px) {
  .pkg-marquee {
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  }
  .pkg-track .pkg-card {
    flex: 0 0 250px;
    width: 250px;
    margin-right: 16px;
  }
  .pkg-track {
    gap: 0;
  }
}

/* Each card has a fixed width so the loop maths work.
   margin-right (not gap) keeps -50% exactly = one set width. */
.pkg-track .pkg-card {
  flex: 0 0 300px;
  width: 300px;
  margin-right: 24px;
}

@keyframes pkg-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 2px solid transparent;
  position: relative;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}
.pkg-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pkg-card.featured {
  border-color: var(--orange);
  background: var(--dark-card);
}
.pkg-card.featured h3,
.pkg-card.featured .price-range { color: #fff; }
.pkg-card.featured .pkg-desc,
.pkg-card.featured .pkg-features li { color: #9ca3af; }
.pkg-card.featured .pkg-features svg { stroke: var(--orange); }
.pkg-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.pkg-price { margin-bottom: 12px; }
.price-range {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}
.currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  vertical-align: top;
  line-height: 1.8;
}
.amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.pkg-card.featured .amount { color: #fff; }
.period {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pkg-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}
.pkg-features svg { width: 16px; height: 16px; stroke: #22c55e; flex-shrink: 0; }
.pkg-btn-orange {
  display: block;
  text-align: center;
  background: var(--orange);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.pkg-btn-orange:hover { background: #c96e00; }
.pkg-btn-dark {
  display: block;
  text-align: center;
  background: var(--dark);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.pkg-btn-dark:hover { background: #252738; }

/* ---- SERVICES SECTION ---- */
.services-section {
  padding: 80px 24px;
  background: var(--white);
}
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.services-header h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.services-header p { color: var(--text-muted); }
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-img-wrap {
  height: 180px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-card h3,
.service-card p,
.service-link {
  padding: 0 24px;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.service-link {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--orange);
  padding-bottom: 20px;
  transition: gap 0.2s;
}
.service-link:hover { opacity: 0.8; }

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 80px 24px;
  background: var(--bg);
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 420px;
  box-shadow: var(--shadow-md);
}

/* ------- About Us auto-flip card ------- */
.about-flip-wrap {
  width: 100%;
  perspective: 1200px;
  border-radius: 20px;
}
.about-flip-inner {
  position: relative;
  width: 100%;
  height: 420px;
  transform-style: preserve-3d;
  animation: about-auto-flip 6s linear infinite;
  border-radius: 20px;
}
.about-flip-front,
.about-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-flip-back {
  transform: rotateY(180deg);
}
.about-flip-front img,
.about-flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes about-auto-flip {
  0%   { transform: rotateY(0deg); }
  45%  { transform: rotateY(0deg); }
  48%  { transform: rotateY(180deg); }
  93%  { transform: rotateY(180deg); }
  96%  { transform: rotateY(360deg); }
  100% { transform: rotateY(360deg); }
}
.about-content .section-tag { margin-bottom: 8px; }
.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.about-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.about-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.about-icon {
  width: 44px; height: 44px;
  background: rgba(224,123,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-icon svg { width: 20px; height: 20px; stroke: var(--orange); }
.about-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.about-item p { font-size: 0.84rem; color: var(--text-muted); }

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--bg);
  padding: 80px 24px;
}
.testimonials-container { max-width: 1200px; margin: 0 auto; }
.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.testimonials-header h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.testimonials-header p { color: var(--text-muted); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars {
  font-size: 1.1rem;
  color: var(--orange);
  letter-spacing: 2px;
}
.testimonial-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-card > p::before { content: '\201C'; }
.testimonial-card > p::after  { content: '\201D'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background-color: var(--dark);
  padding: 60px 24px;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.84rem;
  color: #9ca3af;
  font-weight: 500;
}

/* ---- PARTNERS ---- */
.partners {
  background: var(--white);
  padding: 48px 24px;
  text-align: center;
}
.partners-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.partners-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.2s;
}
.partners-logos img:hover { filter: grayscale(0) opacity(1); }
body.dark .partners-logos img {
  filter: opacity(0.75);
}
body.dark .partners-logos img:hover {
  filter: opacity(1);
}

/* ---- FOOTER ---- */
.footer {
  background-color: var(--dark);
  color: #9ca3af;
  padding: 64px 24px 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1f2130;
}
.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 320px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  transition: opacity 0.2s;
}
.footer-contact svg { width: 16px; height: 16px; }
.footer-contact a:hover { opacity: 0.8; }
.footer-wa { color: #25d366 !important; margin-top: 6px; }
.footer-wa svg { fill: #25d366; stroke: none; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: #6b7280;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 0.8rem;
  color: #4b5563;
}

/* ---- STICKY CTA BAR ---- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark-card);
  border-top: 2px solid var(--orange);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
}
.sticky-cta p strong { color: #fff; }
.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.sticky-cta-btn svg { width: 16px; height: 16px; }
.sticky-cta-btn:hover { background: #c96e00; }
.sticky-cta-close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.sticky-cta-close:hover { color: #fff; }
@media (max-width: 600px) {
  .sticky-cta { flex-direction: column; gap: 10px; padding: 16px 40px 16px 16px; }
  .sticky-cta p { text-align: center; font-size: 0.82rem; }
}

/* ---- SCROLL-IN ANIMATIONS ---- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.65s ease calc(var(--delay, 0ms)), transform 0.65s ease calc(var(--delay, 0ms));
}
[data-animate="fade-up"]   { transform: translateY(36px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].visible     { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  /* packages now handled by carousel JS */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .btn-fiber { display: none; }
  .hamburger { display: flex; }

  /* ---- Hero: collapse to single column, hide the device card ---- */
  /* On mobile swap the heavy video for the static poster — zero lag */
  .hero-bg-video { display: none; }
  .hero {
    padding: 48px 0 40px;
    background-image: url('images/hero-poster.jpg');
    background-size: cover;
    background-position: center;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 0;
  }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }

  /* ---- Reduce section vertical padding on mobile ---- */
  .how-it-works   { padding: 56px 24px; }
  .packages       { padding: 56px 24px; }
  .services-section { padding: 56px 24px; }
  .about-section  { padding: 56px 24px; }
  .testimonials   { padding: 56px 24px; }
  .stats-strip    { padding: 44px 24px; }
  .tech-specs     { padding: 56px 24px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card.dark { margin: 0; }

  .specs-container {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 40px;
  }

  /* packages carousel is responsive via JS */

  .services-grid { grid-template-columns: 1fr; }
  .services-grid { max-width: 100%; padding: 0; }

  .about-container { grid-template-columns: 1fr; gap: 40px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .top-bar-right { display: none; }
  /* Hide hours on small screens — show only call & WhatsApp */
  .top-bar-item:first-child { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }

  /* ---- Stats strip: prevent long stat values from wrapping ---- */
  .stat-num { font-size: 1.55rem; white-space: nowrap; }

  /* ---- Hero mini-stats: tighten gap to prevent stat line-wrap ---- */
  .hero-mini-stats { gap: 12px; }
  .hero-mini-num { font-size: 1.25rem; white-space: nowrap; }
}

/* =============================================================
   REFUND SECTION
   ============================================================= */
.refund-section {
  padding: 80px 24px;
  background: var(--bg);
}
.refund-container {
  max-width: 800px;
  margin: 0 auto;
}
.refund-header {
  text-align: center;
  margin-bottom: 48px;
}
.refund-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 8px 0 12px;
}
.refund-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}
.refund-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rf-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rf-two {
  flex-direction: row;
  gap: 20px;
}
.rf-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rf-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.rf-req { color: var(--orange); }
.rf-field input,
.rf-field select,
.rf-field textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.rf-field input:focus,
.rf-field select:focus,
.rf-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.rf-field textarea { resize: vertical; }
.rf-submit-row { align-items: flex-start; }
.rf-captcha-row { padding: 4px 0 8px; }
.rf-captcha-row .g-recaptcha { display: inline-block; }
.rf-privacy-row { padding: 4px 0 8px; }
.rf-privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.rf-privacy-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}
.rf-submit {
  min-width: 180px;
  cursor: pointer;
}
.rf-note {
  text-align: center;
  color: #22c55e;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* Dark mode refund form */
body.dark .refund-form {
  background: var(--dark-card);
}
body.dark .rf-field label,
body.dark .rf-privacy-label {
  color: #e2e8f0;
}
body.dark .rf-field input,
body.dark .rf-field select,
body.dark .rf-field textarea {
  background: #1c1e2f;
  border-color: rgba(255,255,255,0.1);
  color: #f1f5f9;
}

/* Mobile */
@media (max-width: 600px) {
  .rf-two { flex-direction: column; }
  .refund-form { padding: 28px 20px; }
}

/* =============================================================
   WIFI PULSE ANIMATION — Hero Visual
   Scene: 280×210px, router centered with radiating rings
   ============================================================= */
.wifi-scene {
  width: 100%;
  max-width: 280px;
  height: 210px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

/* ------- LED top bar ------- */
.ws-topbar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px 7px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}
.ws-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1e2030;
  flex-shrink: 0;
}
.ws-pwr { background: #22c55e; box-shadow: 0 0 5px rgba(34,197,94,0.8); }
.ws-wl1 { animation: ws-blink 2.8s ease-in-out infinite; }
.ws-wl2 { animation: ws-blink 2.8s ease-in-out infinite 0.45s; }
.ws-wl3 { animation: ws-blink 2.8s ease-in-out infinite 0.9s; }
@keyframes ws-blink {
  0%, 50%, 100% { background: #1e2030; box-shadow: none; }
  58%, 75%      { background: #e07b00; box-shadow: 0 0 6px rgba(224,123,0,0.9); }
}
.ws-brand {
  margin-left: auto;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: rgba(224,123,0,0.65);
}

/* ------- Signal stage: rings + router icon ------- */
.ws-stage {
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Expanding pulse rings */
.ws-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(224,123,0,0.55);
  width: 56px;
  height: 56px;
  animation: ws-expand 2.4s ease-out infinite;
}
.ws-ring:nth-child(1) { animation-delay: 0s; }
.ws-ring:nth-child(2) { animation-delay: 0.8s; }
.ws-ring:nth-child(3) { animation-delay: 1.6s; }
@keyframes ws-expand {
  0%   { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(3.4); opacity: 0; }
}

/* Router icon */
.ws-router-icon {
  position: relative;
  z-index: 4;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1c1e2f 0%, #0e101c 100%);
  border: 2px solid rgba(224,123,0,0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(224,123,0,0.25), 0 4px 16px rgba(0,0,0,0.4);
  animation: ws-router-glow 2.4s ease-in-out infinite;
}
@keyframes ws-router-glow {
  0%, 100% { box-shadow: 0 0 14px rgba(224,123,0,0.2), 0 4px 16px rgba(0,0,0,0.4); }
  40%      { box-shadow: 0 0 28px rgba(224,123,0,0.5), 0 4px 20px rgba(0,0,0,0.4); }
}
.ws-router-icon svg { color: #e07b00; }

/* Antenna bumps */
.ws-router-icon::before,
.ws-router-icon::after {
  content: '';
  position: absolute;
  top: -10px;
  width: 3px;
  height: 10px;
  background: rgba(224,123,0,0.6);
  border-radius: 2px 2px 0 0;
}
.ws-router-icon::before { left: 12px; }
.ws-router-icon::after  { right: 12px; }

/* Speed badge */
.ws-speed-badge {
  position: absolute;
  bottom: 8px;
  right: 12px;
  background: rgba(224,123,0,0.15);
  border: 1px solid rgba(224,123,0,0.35);
  border-radius: 10px;
  padding: 3px 9px;
  font-size: 9px;
  font-weight: 800;
  color: #e07b00;
  letter-spacing: 0.4px;
  z-index: 5;
  animation: ws-badge-pulse 2.4s ease-in-out infinite;
}
@keyframes ws-badge-pulse {
  0%, 100% { opacity: 0.7; }
  40%      { opacity: 1; }
}

/* ------- Connected devices strip ------- */
.ws-devices {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 14px 10px;
  background: rgba(0,0,0,0.22);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-radius: 0 0 12px 12px;
  flex-shrink: 0;
}
.ws-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ws-device-icon {
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ws-device-icon svg { color: rgba(255,255,255,0.55); }
/* Online dot */
.ws-device-icon::after {
  content: '';
  position: absolute;
  top: -3px; right: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 5px rgba(34,197,94,0.8);
  animation: ws-dev-pulse 2.4s ease-in-out infinite;
}
.ws-device:nth-child(1) .ws-device-icon::after { animation-delay: 0s; }
.ws-device:nth-child(2) .ws-device-icon::after { animation-delay: 0.6s; }
.ws-device:nth-child(3) .ws-device-icon::after { animation-delay: 1.2s; }
@keyframes ws-dev-pulse {
  0%, 60%, 100% { opacity: 1; }
  30%            { opacity: 0.3; }
}
.ws-device-lbl {
  font-size: 7.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ── Privacy Policy Modal ─────────────────────────────────── */
.pp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.pp-box {
  background: var(--card-bg, #fff);
  color: var(--text-main, #111);
  border-radius: 12px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}
.pp-header {
  padding: 20px 24px 12px;
  border-bottom: 1px solid var(--border, #e5e5e5);
  display: flex;
  justify-content: center;
}
.pp-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.pp-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
  line-height: 1.7;
  font-size: 0.92rem;
}
.pp-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--accent, #e07b00);
  text-align: center;
  letter-spacing: 0.5px;
}
.pp-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 18px 0 6px;
  color: var(--text-main, #111);
}
.pp-body p { margin: 0 0 10px; }
.pp-body ul {
  margin: 0 0 10px 20px;
  padding: 0;
}
.pp-body ul li { margin-bottom: 4px; }
.pp-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0;
}
.pp-contact-card {
  background: var(--bg-secondary, #f4f4f4);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.85rem;
}
.pp-contact-card strong {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--accent, #e07b00);
}
.pp-consent-note {
  margin-top: 16px;
  font-size: 0.88rem;
  font-style: italic;
  border-top: 1px solid var(--border, #e5e5e5);
  padding-top: 12px;
}
.pp-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border, #e5e5e5);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.pp-btn {
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.pp-btn:hover { opacity: 0.85; }
.pp-btn-close {
  background: var(--bg-secondary, #e5e5e5);
  color: var(--text-main, #111);
}
.pp-btn-agree {
  background: var(--accent, #e07b00);
  color: #fff;
}
@media (max-width: 540px) {
  .pp-contacts { grid-template-columns: 1fr; }
  .pp-footer { flex-direction: column-reverse; }
  .pp-btn { width: 100%; text-align: center; }
}
