/* ZienStream – main styles (dark theme, Epix-style) */
:root {
  --bg-dark: #0b0f1a;
  --bg-card: #131922;
  --bg-card-hover: #1a2232;
  --accent: #FF7E00;
  --accent-hover: #ff9222;
  --accent-soft: rgba(255, 126, 0, 0.15);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-padding-x: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg-dark); color: var(--text); line-height: 1.6; overflow-x: hidden; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.5rem var(--container-padding-x); min-height: 56px;
  display: flex; align-items: center;
  background: rgba(11, 15, 26, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
}
.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
}
.logo { display: inline-flex; align-items: center; justify-self: start; min-width: 0; }
.logo-img { height: 44px; width: auto; max-height: 44px; object-fit: contain; }
.header .logo-img { height: 48px; max-height: 48px; }
.footer .logo-img { height: 40px; }

.nav { display: flex; align-items: center; gap: 1rem; justify-self: center; }
.nav a { font-weight: 500; font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s; }
.nav a:hover { color: var(--accent); }
.header-right { display: flex; align-items: center; gap: 0.5rem; justify-self: end; }
.nav-contact-btn { background: var(--accent) !important; color: white !important; padding: 0.45rem 1rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; white-space: nowrap; }
.nav-contact-btn:hover { background: var(--accent-hover) !important; color: white !important; }
.menu-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.35rem; cursor: pointer; padding: 0.5rem; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; flex-shrink: 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; font-weight: 600; font-size: 0.95rem; border-radius: var(--radius); transition: all 0.2s; cursor: pointer; border: none; font-family: var(--font); }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 10px 25px rgba(255, 126, 0, 0.35); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-hero-secondary { background: rgba(255, 255, 255, 0.12); color: var(--text); border: 1px solid rgba(255, 255, 255, 0.2); }
.btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.18); color: var(--text); border-color: rgba(255, 255, 255, 0.3); }

/* Hero */
.hero {
  min-height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 6rem var(--container-padding-x) 3rem; position: relative; overflow: hidden;
  background: var(--bg-dark) url('https://pub-b283e7eb130145db93d6d91eef7ce787.r2.dev/backgroundepix/netflix-1536x864.jpg') center/cover no-repeat;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,15,26,0.7) 0%, rgba(11,15,26,0.85) 50%, rgba(11,15,26,0.95) 100%); pointer-events: none; }
.hero-content { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.hero-title { font-size: clamp(2rem, 5.5vw, 3.5rem); font-weight: 800; line-height: 1.25; margin-bottom: 1rem; letter-spacing: -0.02em; color: var(--text); display: block; }
.hero-title-brand, .hero-title-rest { display: block; font-weight: inherit; font-size: inherit; }
.hero-desc { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 0.25rem; }
.hero-features { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem 2.5rem; margin-top: 1.5rem; padding-top: 0.5rem; }
.hero-feature-item { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text); font-size: 1.1rem; font-weight: 500; }
.hero-feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(255, 126, 0, 0.4)); }
.hero-feature-icon svg { width: 100%; height: 100%; }

/* Stats strip */
.stats-strip { display: none; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 720px; margin: -1.75rem auto 0; padding: 0 var(--container-padding-x); position: relative; z-index: 2; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; transition: all 0.3s; }
.stat-card:hover { background: var(--bg-card-hover); border-color: var(--accent); transform: translateY(-4px); }
.stat-card strong { display: block; font-size: 1.25rem; color: var(--accent); margin-bottom: 0.25rem; font-weight: 700; }
.stat-card span { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }

/* Sections */
.section { padding: 4rem var(--container-padding-x); max-width: 1280px; margin: 0 auto; }
/* Bring Explore Content close to hero */
.stats-strip + .section { padding-top: 1.5rem; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; color: var(--text); }
.section-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 1rem; }

/* Category slider */
.category-slider-section { overflow: hidden; }
.category-slider-wrap { position: relative; max-width: 100%; margin: 0 auto 0.5rem; padding: 0 3rem; }
/* Less top padding when a slider section follows another (title closer to section above) */
.category-slider-section + .category-slider-section { padding-top: 0.75rem; }
.category-slider-prev, .category-slider-next, .category-labels-prev, .category-labels-next { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-card); color: var(--text); font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.2s; }
.category-slider-prev:hover, .category-slider-next:hover { border-color: var(--accent); color: var(--accent); }
.category-slider-prev, .category-labels-prev { left: 0.5rem; }
.category-slider-next, .category-labels-next { right: 0.5rem; }
.category-slider { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0.5rem 0; -webkit-overflow-scrolling: touch; }
.category-slider::-webkit-scrollbar { display: none; }
.category-slider .category-card { flex: 0 0 220px; min-width: 220px; width: 220px; height: 330px; scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; background: var(--bg-card); position: relative; }
.category-slider .category-card img { width: 100%; height: 100%; object-fit: cover; }
.category-card-labeled .category-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.75rem 1rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff; font-weight: 700; font-size: 0.95rem; }

/* Steps */
.steps-section { background: var(--bg-card); padding: 4rem var(--container-padding-x); width: 100%; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 960px; margin: 0 auto; }
.step-card { text-align: center; padding: 0 0.5rem; }
.step-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(255, 126, 0, 0.1);
  border: 2px solid rgba(255, 126, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { width: 32px; height: 32px; color: var(--accent); }
.step-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; max-width: 260px; margin-left: auto; margin-right: auto; }
.steps-title { font-size: clamp(1.5rem, 3vw, 2rem); }
.steps-title-accent { color: var(--accent); }

/* Payment */
.payment-section { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; }
.payment-ssl { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 1.5rem; }
.payment-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 2rem; }
.payment-card-item { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.payment-logo { display: inline-flex; align-items: center; justify-content: center; padding: 0.65rem 0.9rem; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; color: #333; font-size: 0.8rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.payment-card-item:hover .payment-logo { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(255, 126, 0, 0.15); }
.payment-logo img { width: 44px; height: 28px; object-fit: contain; }
.payment-logo svg { width: 44px; height: 28px; object-fit: contain; display: block; }
.payment-card-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); position: relative; padding-top: 0.35rem; }
.payment-card-label::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 24px; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); border-radius: 1px; opacity: 0.8; }
.payment-card-item:hover .payment-card-label { color: var(--accent); }
.payment-card-item:hover .payment-card-label::before { opacity: 1; width: 32px; }

/* Features */
.section-title-accent { color: var(--accent); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.feature-card {
  background: #282828;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover { border-color: rgba(255, 126, 0, 0.4); }
.feature-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.feature-card-icon svg { width: 100%; height: 100%; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; color: #fff; }
.feature-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* Quality */
.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 960px; margin: 0 auto; }
.quality-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s; }
.quality-card:hover { border-color: var(--accent); }
.quality-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.quality-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* Pricing – exact match to reference (charcoal cards, orange accents, green checkmarks) */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1140px; margin: 0 auto; }
.pricing-card {
  position: relative;
  background: #282a36;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.pricing-card:hover { border-color: rgba(255,95,0,0.4); }
.pricing-card .plan-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.save-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #FF5F00;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  z-index: 1;
}
.pricing-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; color: #fff; }
.pricing-card .subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF5F00;
  margin-bottom: 0.35rem;
  text-align: center;
}
.pricing-card .guarantee { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pricing-card .btn {
  width: 100%;
  background: #FF5F00;
  color: #fff;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}
.pricing-card .btn:hover { background: #e55500; color: #fff; }
.pricing-card ul {
  list-style: none;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-grow: 1;
}
.pricing-card ul li { padding: 0.35rem 0; color: #fff; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.pricing-card ul li::before { content: '✓'; color: #22c55e; font-weight: 700; }

/* Testimonials */
.testimonials { padding: 3rem 0; }
.testimonials-slider-wrap { position: relative; max-width: 1140px; margin: 0 auto; padding: 0 3rem; }
.testimonial-prev, .testimonial-next { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-card); color: var(--text); font-size: 1.35rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.2s; }
.testimonial-prev:hover, .testimonial-next:hover { border-color: var(--accent); color: var(--accent); }
.testimonial-prev { left: -1.5rem; }
.testimonial-next { right: 0; }
.testimonials-slider { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0.5rem 3.5rem; }
.testimonials-slider::-webkit-scrollbar { display: none; }
.testimonials-slider .testimonial-card { flex: 0 0 min(320px, 85%); scroll-snap-align: start; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: all 0.3s; }
.testimonial-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; font-style: italic; line-height: 1.65; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card .avatar { width: 44px; height: 44px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: white; }
.testimonial-card .name { font-weight: 600; display: block; }
.testimonial-card .role { font-size: 0.8rem; color: var(--text-muted); display: block; }
.review-cta { text-align: center; padding: 2.5rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-top: 1.5rem; }
.review-cta h3 { margin-bottom: 0.5rem; }
.review-cta p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.95rem; }

/* Devices */
.devices-section { text-align: center; padding: 3rem var(--container-padding-x); }
.devices-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin: 2rem 0; }
.device-item { width: 90px; text-align: center; color: var(--text-muted); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.device-item:hover { color: var(--accent); }
.device-item span { font-size: 1.75rem; opacity: 0.9; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.5rem; overflow: hidden; transition: all 0.3s; }
.faq-item summary { padding: 1rem 1.25rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--accent); font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item div { padding: 0 1.25rem 1rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* Contact */
.contact-section { text-align: center; padding: 3rem var(--container-padding-x); }
.contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.25rem; }
.contact-links a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); font-weight: 500; font-size: 0.95rem; transition: all 0.2s; }
.contact-links a:hover { border-color: var(--accent); color: var(--accent); }
.contact-link-icon { display: inline-flex; flex-shrink: 0; }
.contact-link-icon svg { width: 22px; height: 22px; }
.contact-link-wa:hover { color: #25D366; border-color: #25D366; }
.contact-link-wa:hover .contact-link-icon { color: #25D366; }
.footer-link-icon { display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-icon { display: inline-flex; flex-shrink: 0; color: var(--text-muted); }
.footer-icon svg { width: 18px; height: 18px; }
.footer ul li a[href*="wa.me"]:hover { color: #25D366; }
.footer ul li a[href*="wa.me"]:hover .footer-icon { color: #25D366; }

/* Footer */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 3rem var(--container-padding-x) 1.5rem; margin-top: 3rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; max-width: 280px; }
.footer h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.4rem; }
.footer ul a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* Page hero (inner pages) */
.page-hero { padding: 6rem var(--container-padding-x) 3rem; text-align: center; background: linear-gradient(135deg, var(--bg-dark) 0%, #131922 50%, var(--bg-dark) 100%); }
.page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 0.5rem; }
.page-hero-lead { color: #fff; }
.page-hero-accent { color: var(--accent); }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1rem; }
.page-hero-back { margin-bottom: 1rem; }
.page-hero-back a { color: var(--text-muted); font-size: 0.95rem; }
.page-hero-back a:hover { color: var(--accent); }
.page-hero-desc { margin-top: 0.5rem; }
.faq-hero-lead { color: #F8F2FF; }
.faq-hero-gradient {
  background: linear-gradient(90deg, #FF7F00, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Tablet: 2 columns for features, smaller slider cards */
@media (max-width: 991px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .section { padding: 3rem var(--container-padding-x); }
  .category-slider .category-card { flex: 0 0 190px; min-width: 190px; width: 190px; height: 285px; }
  .category-slider-wrap { padding: 0 2rem; }
}

/* iPad & tablets (768px–1024px): bigger, clearer text and controls like reference */
@media (min-width: 768px) and (max-width: 1024px) {
  body { font-size: 18px; }
  .nav a { font-size: 1.12rem; }
  .nav-contact-btn { font-size: 1.05rem; padding: 0.6rem 1.25rem; }
  .hero-title { font-size: clamp(2.75rem, 7vw, 4.25rem); line-height: 1.22; }
  .hero-desc { font-size: 1.4rem; line-height: 1.7; }
  .hero-buttons .btn { font-size: 1.1rem; padding: 0.9rem 1.75rem; min-height: 52px; }
  .hero-feature-item { font-size: 1.35rem; }
  .hero-feature-icon { width: 32px; height: 32px; }
  .section-header h2 { font-size: 2rem; }
  .section-header p { font-size: 1.15rem; }
  .steps-title { font-size: 1.9rem; }
  .step-card h3 { font-size: 1.25rem; }
  .step-card p { font-size: 1.05rem; }
  .feature-card h3 { font-size: 1.2rem; }
  .feature-card p { font-size: 1.02rem; }
  .pricing-card h3 { font-size: 1.5rem; }
  .pricing-card .subtitle { font-size: 1.05rem; }
  .pricing-card .price { font-size: 2.35rem; }
  .pricing-card .guarantee { font-size: 0.95rem; }
  .pricing-card ul li { font-size: 1.02rem; }
  .pricing-card .btn { font-size: 1.05rem; padding: 0.85rem 1.5rem; }
  .payment-ssl { font-size: 1.02rem; }
  .testimonial-card p { font-size: 1.05rem; }
  .testimonial-card .name { font-size: 1.02rem; }
  .faq-item summary { font-size: 1.08rem; padding: 1rem 1.15rem; }
  .faq-item div { font-size: 1.05rem; }
  .page-hero h1 { font-size: 2.25rem; }
  .page-hero p, .page-hero-desc { font-size: 1.15rem; }
  .contact-links a { font-size: 1.08rem; }
  .footer h4 { font-size: 1rem; }
  .footer ul a { font-size: 1rem; }
  .btn { font-size: 1.05rem; padding: 0.85rem 1.6rem; }
  .category-card-labeled .category-label { font-size: 1.05rem; padding: 0.85rem 1rem; }
}

/* Mobile: single column, hamburger menu, touch-friendly */
@media (max-width: 767px) {
  :root { --container-padding-x: 16px; }
  body { font-size: 15px; }
  .header { padding: 0.5rem 16px; min-height: 52px; }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .logo { justify-self: unset; }
  .header .logo-img { height: 40px; max-height: 40px; }
  .nav { display: none; justify-self: unset; }
  .menu-toggle { display: flex; }
  .header-right { justify-self: unset; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1rem 16px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav.open a {
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav.open a:last-child { border-bottom: none; }
  .hero { padding: 5rem 16px 2.5rem; min-height: 80vh; }
  .hero-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .hero-desc { font-size: 1rem; }
  .hero-features { display: none; }
  .section { padding: 2.5rem 16px; }
  .section-header { margin-bottom: 1.75rem; }
  .section-header h2 { font-size: 1.5rem; }
  .stats-strip { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-card { padding: 0 0.25rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .feature-card { padding: 1.5rem 1rem; }
  .quality-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pricing-card { padding: 1.5rem 1rem; }
  .pricing-card .price { font-size: 2rem; }
  .payment-section { padding: 1.5rem 1rem; }
  .payment-logos { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .testimonials-slider-wrap { padding: 0 1rem; }
  .testimonial-prev, .testimonial-next { width: 36px; height: 36px; font-size: 1.1rem; }
  .testimonials-slider .testimonial-card { flex: 0 0 min(280px, 90%); }
  .faq-item summary { padding: 0.85rem 1rem; font-size: 0.95rem; }
  .contact-links { flex-direction: column; }
  .contact-links a { width: 100%; justify-content: center; min-height: 48px; }
  .footer { padding: 2rem 16px 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer-brand { text-align: center; }
  .footer-brand p { max-width: none; margin-left: auto; margin-right: auto; }
  .category-slider .category-card { flex: 0 0 160px; min-width: 160px; width: 160px; height: 240px; }
  .category-slider-wrap { padding: 0 1rem; }
  .page-hero { padding: 4.5rem 16px 2rem; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero p, .page-hero-desc { font-size: 0.95rem; }
  .btn { padding: 0.85rem 1.25rem; min-height: 48px; }
}

/* Small phones */
@media (max-width: 480px) {
  :root { --container-padding-x: 12px; }
  .header { padding: 0.4rem 12px; }
  .header .logo-img { height: 36px; max-height: 36px; }
  .nav-contact-btn { padding: 0.4rem 0.75rem; font-size: 0.8rem; }
  .section { padding: 2rem 12px; }
  .hero { padding: 4.5rem 12px 2rem; }
  .pricing-card .price { font-size: 1.75rem; }
  .category-slider .category-card { flex: 0 0 140px; min-width: 140px; width: 140px; height: 210px; }
  .nav.open { padding: 1rem 12px; }
}

/* Floating WhatsApp button – site orange (same dimensions & effects) */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25), 0 2px 5px rgba(255, 126, 0, 0.3);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.35;
  animation: whatsapp-pulse 2s ease-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 3px 3px 14px rgba(0, 0, 0, 0.3), 0 10px 25px rgba(255, 126, 0, 0.35);
  background-color: var(--accent-hover);
}
.whatsapp-float:active {
  transform: scale(1.02);
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(1.4); opacity: 0; }
}

