:root {
  --black:    #0A0A0F;
  --black2:   #111118;
  --white:    #FFFFFF;
  --gray:     #888888;
  --gray-lt:  #CCCCCC;
  --border:   rgba(255,255,255,0.08);
  --muted:    #888;
  --radius:   16px;
  --radius-sm:10px;
  --ff-head:  'Bricolage Grotesque', sans-serif;
  --ff-body:  'Outfit', sans-serif;
  --ff-mono:  'JetBrains Mono', monospace;
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-soft: cubic-bezier(.2,.8,.2,1);
  --duration-fast: 160ms;
  --duration: 220ms;
  
  /* Black/White theme accents - no blue */
  --primary: #000000;
  --primary-soft: rgba(255,255,255,0.08);
  --button-text: #ffffff;
  --surface: #111118;
  --heading: #ffffff;
  --field-text: #ffffff;
  --field-placeholder: rgba(255,255,255,0.4);
  --hover-bg: rgba(255,255,255,0.07);
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html {
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family:var(--ff-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  min-height:100dvh;
  overflow-x:hidden;
  overscroll-behavior-x:none;
  text-rendering:optimizeLegibility;
}
body.nav-open { overflow:hidden; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; }
button,
input,
select,
textarea { font:inherit; }
a,
button,
input,
select,
textarea,
[role="button"] {
  -webkit-tap-highlight-color:transparent;
}
a,
button,
[role="button"] {
  touch-action:manipulation;
}
.usp-banner {
  background:#000000;
  color:#ffffff;
  overflow:hidden;
  height:36px;
  display:flex;
  align-items:center;
  border-bottom:1px solid #000000;
}
.usp-track {
  display:flex;
  animation:ticker 28s linear infinite;
  white-space:nowrap;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.usp-item {
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 32px;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#ffffff;
  background:transparent;
  border:0;
  box-shadow:none;
}
.usp-item strong,
.usp-item span {
  background:transparent;
  color:inherit;
  border:0;
  box-shadow:none;
  padding:0;
}
.dot {
  width:6px; height:6px;
  background:#c7c7c7;
  border-radius:50%;
  opacity:0.6;
}
.dot.pulse {
  animation:pulse 2s infinite;
  background:#c7c7c7;
  opacity:1;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
nav {
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,10,15,0.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.nav-inner {
  max-width:1280px;
  margin:0 auto;
  padding:0 28px;
  height:66px;
  display:flex;
  align-items:center;
  gap:32px;
}
.nav-logo {
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--ff-head);
  font-weight:700;
  font-size:1.2rem;
}
.nav-logo-icon { width:36px; height:36px; }
img.nav-logo-icon { object-fit:contain; border-radius:8px; }
.nav-logo-text span { color:var(--white); }
.nav-links {
  display:flex;
  list-style:none;
  gap:4px;
  margin-left:auto;
}
.nav-links a {
  padding:6px 14px;
  border-radius:8px;
  font-size:0.9rem;
  font-weight:500;
  color:var(--muted);
  transition:all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color:var(--white);
  background:rgba(255,255,255,0.07);
}
.nav-dropdown {
  position:relative;
}

.nav-dropdown-toggle {
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  border-radius:8px;
  font-size:0.9rem;
  font-weight:500;
  color:var(--muted);
  background:none;
  border:none;
  cursor:pointer;
  transition:all .2s;
}

.nav-dropdown-toggle:hover {
  color:var(--white);
  background:rgba(255,255,255,0.07);
}

.nav-dropdown-toggle i:last-child {
  font-size:0.75rem;
  transition:transform .2s;
}

.nav-dropdown-toggle.active i:last-child {
  transform:rotate(180deg);
}

.nav-dropdown-menu {
  position:absolute;
  top:100%;
  left:0;
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:8px;
  margin-top:8px;
  min-width:180px;
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  transition:all .2s;
  z-index:1000;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.nav-dropdown-item {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  color:var(--muted);
  border-bottom:1px solid var(--border);
  transition:all .2s;
  font-size:0.88rem;
}

.nav-dropdown-item:last-child {
  border-bottom:none;
}

.nav-dropdown-item:hover {
  color:var(--white);
  background:var(--primary-soft);
  border-left:3px solid var(--white);
  padding-left:13px;
}

.nav-dropdown-item i {
  width:16px;
  text-align:center;
}

.nav-cta {
  margin-left:8px;
  background:var(--primary);
  color:var(--button-text);
  padding:8px 18px;
  border-radius:8px;
  font-size:0.88rem;
  font-weight:600;
  transition:background .2s;
  white-space:nowrap;
}
.nav-cta:hover { background:#111118; }
.nav-toggle {
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  width:42px;
  height:42px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.16);
  border-radius:10px;
  cursor:pointer;
  padding:0;
  margin-left:auto;
  touch-action:manipulation;
}
.nav-toggle span {
  width:22px;
  height:2.5px;
  background:var(--surface);
  border-radius:2px;
  transition:transform .2s, opacity .2s;
  box-shadow:0 0 0 1px rgba(255,255,255,0.04);
}
.nav-toggle.active span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
@media(max-width:768px) {
  .nav-toggle { display:flex; }
  .nav-links { display:none; position:absolute; top:66px; left:0; right:0; background:rgba(10,10,15,0.98); flex-direction:column; padding:16px 28px; gap:8px; border-bottom:1px solid var(--border); z-index:99; }
  .nav-links.open { display:flex !important; }
  .nav-links a { display:block; padding:10px 12px; }
  .nav-cta { display:block; margin-top:8px; width:100%; text-align:center; }
  
  /* Mobile dropdown */
  .nav-dropdown-menu {
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    background:rgba(17,17,24,0.8);
    border:none;
    box-shadow:none;
    margin:8px 0 0 0;
    min-width:auto;
  }
  
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity:1;
    visibility:visible;
  }
  
  .nav-dropdown-menu.open {
    display:flex;
    flex-direction:column;
  }
  
  .nav-dropdown-item {
    padding:8px 12px;
  }
  
  .nav-dropdown-item:hover {
    border-left:3px solid var(--white);
    padding-left:9px;
  }
}
.hero {
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  padding:60px 20px;
  max-width:100%;
}
.hero-grid-bg {
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,0,0,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size:44px 44px;
  opacity:.58;
  pointer-events:none;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
}
.hero-glow {
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0,0,0,0.08) 0%, transparent 70%);
}
.hero-inner { position:relative; z-index:1; max-width:860px; margin:0 auto; padding:0 20px; }
.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.06);
  border:1px solid var(--border);
  padding:6px 16px;
  border-radius:50px;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--white);
  margin-bottom:28px;
}
.hero-title {
  font-family:var(--ff-head);
  font-size:clamp(2.8rem, 6vw, 5.5rem);
  font-weight:800;
  line-height:1.05;
  letter-spacing:-.02em;
  margin-bottom:20px;
}
.gradient-text {
  background:linear-gradient(135deg, var(--white) 0%, var(--gray-lt) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-sub {
  font-size:1.1rem;
  color:var(--muted);
  margin-bottom:28px;
  letter-spacing:.02em;
}
.hero-usps {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:32px;
}
.usp-pill {
  background:var(--primary-soft);
  border:1px solid var(--border);
  color:var(--white);
  padding:6px 14px;
  border-radius:50px;
  font-size:0.82rem;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
}
.hero-ctas {
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.btn-primary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--primary);
  color:var(--button-text);
  padding:13px 28px;
  border-radius:10px;
  font-weight:600;
  font-size:0.95rem;
  transition:all .2s;
  border:none;
  cursor:pointer;
  text-align:center;
  min-height:44px;
  visibility:visible;
  opacity:1;
}
.btn-primary:hover { background:#111118; transform:translateY(-1px); }
.btn-outline {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  color:var(--white);
  padding:12px 26px;
  border-radius:10px;
  font-weight:600;
  font-size:0.95rem;
  border:1px solid var(--border);
  transition:all .2s;
  cursor:pointer;
  text-align:center;
  min-height:44px;
  visibility:visible;
  opacity:1;
}
.btn-outline:hover { border-color:rgba(255,255,255,0.3); background:rgba(255,255,255,0.05); }
.btn-sm { padding:8px 18px; font-size:0.85rem; }
.btn-block { width:100%; justify-content:center; }
.hero-partners {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
}
.partner-chip {
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  padding:5px 12px;
  border-radius:6px;
  font-size:0.72rem;
  color:var(--muted);
  font-family:var(--ff-mono);
}
.hero-content {
  position:relative;
  z-index:1;
  max-width:900px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--primary-soft);
  border:1px solid var(--border);
  padding:8px 18px;
  border-radius:50px;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--white);
  margin-bottom:28px;
}

.hero-title {
  font-family:var(--ff-head);
  font-size:clamp(2.2rem, 5vw, 4.5rem);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-.02em;
  margin-bottom:18px;
}

.hero-desc {
  font-size:clamp(0.95rem, 2vw, 1.1rem);
  color:var(--muted);
  margin-bottom:28px;
  letter-spacing:.01em;
  line-height:1.6;
  max-width:720px;
}

.hero-actions {
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:40px;
  width:100%;
}

.btn-hero-primary,
.btn-hero-secondary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 26px;
  border-radius:10px;
  font-weight:600;
  font-size:0.95rem;
  transition:all .2s;
  border:none;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
  white-space:nowrap;
  min-width:0;
  min-height:44px;
  visibility:visible;
  opacity:1;
}

.btn-hero-primary {
  background:var(--primary);
  color:var(--button-text);
}

.btn-hero-primary:hover {
  background:#111118;
  transform:translateY(-1px);
}

.btn-hero-secondary {
  background:transparent;
  color:var(--white);
  border:1px solid var(--border);
}

.btn-hero-secondary:hover {
  border-color:rgba(255,255,255,0.3);
  background:rgba(255,255,255,0.05);
}

.hero-stats {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
  gap:20px;
  width:100%;
  max-width:600px;
  margin:0 auto;
}

.hero-stat {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  padding:16px 12px;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:12px;
  text-align:center;
}

.hero-stat strong {
  font-size:clamp(1.8rem, 4vw, 2.4rem);
  font-weight:800;
  color:var(--white);
  font-family:var(--ff-head);
}

.hero-stat span {
  font-size:0.8rem;
  color:var(--muted);
  font-weight:500;
}

@media(max-width:768px) {
  .hero {
    min-height:auto;
    padding:50px 16px;
  }

  .hero-content {
    padding:0 16px;
  }

  .hero-badge {
    margin-bottom:20px;
    font-size:0.72rem;
    padding:6px 14px;
  }

  .hero-title {
    font-size:clamp(1.8rem, 5vw, 3rem);
    margin-bottom:16px;
  }

  .hero-desc {
    font-size:0.95rem;
    margin-bottom:24px;
  }

  .hero-actions {
    gap:10px;
    margin-bottom:32px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding:10px 20px;
    font-size:0.88rem;
    flex:1;
    min-width:140px;
  }

  .hero-stats {
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
    margin-top:28px;
  }

  .hero-stat {
    padding:14px 10px;
    gap:6px;
  }

  .hero-stat strong {
    font-size:1.6rem;
  }

  .hero-stat span {
    font-size:0.75rem;
  }
}

@media(max-width:480px) {
  .hero {
    padding:40px 12px;
  }

  .hero-content {
    padding:0 12px;
  }

  .hero-actions {
    flex-direction:column;
    gap:8px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width:100%;
    flex:none;
  }

  .hero-stats {
    grid-template-columns:1fr;
    margin-top:24px;
  }
}
.section { padding:60px 20px; }
.section-dark { background:var(--black2); }
.container { max-width:1200px; margin:0 auto; padding:0 20px; }
.container-narrow { max-width:900px; margin:0 auto; padding:0 20px; }
.section-head {
  text-align:center;
  margin-bottom:56px;
}
.section-label {
  display:inline-block;
  background:var(--primary-soft);
  color:var(--white);
  border:1px solid var(--border);
  padding:4px 14px;
  border-radius:50px;
  font-size:0.76rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.section-head h2 {
  font-family:var(--ff-head);
  font-size:clamp(1.8rem, 4vw, 2.8rem);
  font-weight:800;
  line-height:1.2;
}
.section-cta { text-align:center; margin-top:40px; }
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:24px;
  max-width:1200px;
  margin:0 auto;
}
@media(max-width:960px) { .services-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px) { .services-grid { grid-template-columns:1fr; } }
.service-card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 24px;
  transition:border-color .2s, transform .2s;
}
.service-card:hover { border-color:rgba(0,0,0,0.12); transform:translateY(-3px); }
.service-icon {
  width:44px; height:44px;
  background:var(--primary-soft);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  color:var(--white);
  font-size:1.2rem;
}
.service-card h3 { font-size:1rem; font-weight:700; margin-bottom:8px; }
.service-card p { font-size:0.88rem; color:var(--muted); line-height:1.55; }
.products-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:24px;
  max-width:1200px;
  margin:0 auto;
}
@media(max-width:900px) { .products-grid { grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:16px; } }
@media(max-width:600px) { .products-grid { grid-template-columns:1fr; } }
.product-card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  transition:border-color .25s, transform .25s;
}
.product-card:hover { border-color:rgba(0,0,0,0.15); transform:translateY(-4px); }
.product-badge {
  position:absolute;
  top:16px; right:16px;
  background:var(--primary);
  color:var(--button-text);
  font-size:0.7rem;
  font-weight:700;
  padding:3px 10px;
  border-radius:50px;
  letter-spacing:.06em;
}
.product-icon {
  font-size:2rem;
  color:var(--white);
}
.product-card-media {
  width:100%;
  aspect-ratio:16 / 10;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:4px;
}
.product-card-media img {
  width:100%;
  height:100%;
  object-fit:contain;
  padding:14px;
}
.product-card-icon-fallback {
  width:86px;
  height:86px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-soft);
  border:1px solid var(--border);
  color:var(--white);
}
.product-card-icon-fallback i {
  font-size:2.55rem;
  line-height:1;
}
.product-card h3 { font-family:var(--ff-head); font-size:1.25rem; font-weight:800; }
.product-tagline { color:var(--white); font-size:0.85rem; font-weight:600; }
.product-desc { color:var(--muted); font-size:0.88rem; line-height:1.55; }
.product-features { list-style:none; display:flex; flex-direction:column; gap:6px; }
.product-features li { display:flex; align-items:center; gap:8px; font-size:0.85rem; color:rgba(255,255,255,0.75); }
.product-features li i { color:var(--white); font-size:0.7rem; }
.product-card-features {
  margin-bottom:0;
}
.product-card-feature-extra[hidden] {
  display:none !important;
}
.product-feature-toggle {
  width:fit-content;
  padding:0;
  border:0;
  background:transparent;
  color:var(--white);
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:0.82rem;
  font-weight:700;
  line-height:1.2;
  cursor:pointer;
  align-self:flex-start;
}
.product-feature-toggle:hover,
.product-feature-toggle:focus-visible {
  color:var(--heading);
}
.product-feature-toggle i {
  font-size:0.72rem;
  transition:transform .2s ease;
}
.product-feature-toggle[aria-expanded="true"] i {
  transform:rotate(180deg);
}
.product-detail-features {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  column-gap:18px;
  row-gap:8px;
  width:100%;
}
.product-detail-features li {
  min-width:0;
  align-items:flex-start;
  overflow-wrap:anywhere;
}
.product-detail-features li i {
  flex:0 0 auto;
  margin-top:.35em;
}
.product-price { display:flex; align-items:baseline; gap:10px; margin-top:4px; }
.price-old { color:var(--muted); text-decoration:line-through; font-size:0.95rem; }
.price-current { font-size:1.6rem; font-weight:800; font-family:var(--ff-head); color:var(--white); }
.price-now { font-size:1.6rem; font-weight:800; font-family:var(--ff-head); color:var(--white); }
.product-actions { display:flex; gap:10px; margin-top:auto; flex-wrap:wrap; }
.btn-buy,
.btn-details {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 16px;
  border-radius:8px;
  font-size:0.88rem;
  font-weight:600;
  transition:all .2s;
  border:none;
  cursor:pointer;
  text-decoration:none;
  flex:1;
  justify-content:center;
  text-align:center;
  min-height:44px;
  visibility:visible;
  opacity:1;
}

.btn-buy {
  background:var(--primary);
  color:var(--button-text);
}

.btn-buy:hover {
  background:#111118;
}

.btn-details {
  background:var(--primary-soft);
  color:var(--white);
  border:1px solid var(--border);
}

.btn-details:hover {
  background:rgba(0,0,0,0.08);
}
.product-icon-wrap {
  width:52px;
  height:52px;
  background:var(--primary-soft);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:8px;
}

.product-icon {
  font-size:1.8rem;
  color:var(--white);
}

.product-name {
  font-family:var(--ff-head);
  font-size:1.1rem;
  font-weight:800;
  margin-bottom:4px;
}
.product-detail-media {
  width:100%;
  aspect-ratio:16 / 9;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:24px;
}

.product-detail-media img {
  width:100%;
  height:100%;
  object-fit:contain;
  padding:18px;
  border-radius:10px;
}

.product-detail-icon-fallback {
  width:120px;
  height:120px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-soft);
  border:1px solid var(--border);
  color:var(--white);
}

.product-detail-icon-fallback i {
  font-size:3.2rem;
  line-height:1;
}

.product-description-wrap {
  position:relative;
  margin-bottom:28px;
}

.product-description-html {
  position:relative;
  color:#aaa;
  line-height:1.8;
  margin-bottom:0;
  overflow-wrap:anywhere;
}

.product-description-wrap.is-collapsed .product-description-html {
  max-height:280px;
  overflow:hidden;
}

.product-description-wrap.is-collapsed .product-description-html::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:74px;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(10,10,15,0), var(--black) 84%);
}

.product-description-wrap.is-expanded .product-description-html {
  max-height:none;
  overflow:visible;
}

.product-description-more {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  margin-top:12px;
  padding:9px 14px;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--primary-soft);
  color:var(--white);
  font:inherit;
  font-size:.86rem;
  font-weight:700;
  cursor:pointer;
}

.product-description-more[hidden] {
  display:none;
}

.product-description-more:hover {
  background:rgba(0,0,0,0.08);
}

.product-description-html :where(p, ul, ol, blockquote, table, pre) {
  margin-bottom:14px;
}

.product-description-html :where(h2, h3, h4) {
  color:var(--white);
  font-weight:800;
  line-height:1.25;
  margin:20px 0 10px;
}

.product-description-html h2 {
  font-size:1.35rem;
}

.product-description-html h3 {
  font-size:1.15rem;
}

.product-description-html ul,
.product-description-html ol {
  padding-left:22px;
}

.product-description-html li {
  margin-bottom:7px;
}

.product-description-html a {
  color:var(--white);
  text-decoration:none;
}

.product-description-html a:hover {
  text-decoration:underline;
}

.product-description-html img,
.product-description-html video,
.product-description-html iframe {
  max-width:100%;
  height:auto;
  border-radius:10px;
}

.product-description-html table {
  width:100%;
  border-collapse:collapse;
  display:block;
  overflow-x:auto;
}

.product-description-html th,
.product-description-html td {
  border:1px solid var(--border);
  padding:10px;
  text-align:left;
}

.product-description-html blockquote {
  border-left:3px solid var(--white);
  padding-left:14px;
  color:rgba(255,255,255,.78);
}

.product-description-html pre,
.product-description-html code {
  font-family:var(--ff-mono);
}

.product-description-html pre {
  overflow-x:auto;
  padding:12px;
  border:1px solid var(--border);
  border-radius:10px;
  background:rgba(255,255,255,.04);
}

.security-trust-strip {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin:24px 0;
}

.card .security-trust-strip {
  grid-template-columns:1fr;
}

.security-trust-item {
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  padding:13px 14px;
  border:1px solid rgba(34,197,94,.24);
  border-radius:10px;
  background:linear-gradient(135deg, rgba(34,197,94,.09), rgba(0,0,0,0.03));
}

.security-trust-icon {
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  border-radius:50%;
  background:rgba(34,197,94,.14);
  color:#86efac;
}

.security-trust-item strong,
.security-trust-item small {
  display:block;
  overflow-wrap:anywhere;
}

.security-trust-item strong {
  font-size:.9rem;
  margin-bottom:2px;
}

.security-trust-item small {
  color:var(--muted);
  font-size:.76rem;
  line-height:1.35;
}

.product-faq-section {
  margin-top:42px;
}

.product-faq-list {
  display:grid;
  gap:10px;
}

.product-faq-item {
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--black2);
  overflow:hidden;
}

.product-faq-item summary {
  cursor:pointer;
  padding:15px 16px;
  font-weight:700;
  color:var(--white);
  list-style:none;
}

.product-faq-item summary::-webkit-details-marker {
  display:none;
}

.product-faq-item summary::after {
  content:'+';
  float:right;
  color:var(--white);
  font-weight:800;
}

.product-faq-item[open] summary::after {
  content:'-';
}

.product-faq-item p {
  padding:0 16px 16px;
  color:rgba(255,255,255,.72);
  line-height:1.65;
  font-size:.92rem;
}

.product-reviews-grid {
  column-count:3;
  column-gap:16px;
}

.product-reviews-grid > .product-review-card {
  display:inline-block;
  width:100%;
  margin:0 0 16px;
  vertical-align:top;
  break-inside:avoid;
  page-break-inside:avoid;
  -webkit-column-break-inside:avoid;
}

.product-reviews-grid > .product-review-card[hidden] {
  display:none !important;
}

.product-reviews-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.product-reviews-head h2 {
  font-size:1.3rem;
  font-weight:700;
}

.product-reviews-head span {
  color:var(--muted);
  font-size:.86rem;
}

.product-review-card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px;
}

.product-reviews-more,
.product-reviews-pager {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.product-reviews-more .btn-details,
.product-reviews-pager .btn-details {
  border:0;
  cursor:pointer;
  width:auto;
  min-width:118px;
}

.product-reviews-pager .btn-details:disabled {
  opacity:.48;
  cursor:not-allowed;
}

.product-reviews-pager-status {
  min-width:150px;
  color:var(--muted);
  font-size:.86rem;
  text-align:center;
}

.product-reviews-page-numbers {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
}

.product-reviews-page-number {
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  border-radius:8px;
  background:rgba(255,255,255,.04);
  color:var(--white);
  font:inherit;
  font-size:.86rem;
  font-weight:700;
  cursor:pointer;
}

.product-reviews-page-number:hover,
.product-reviews-page-number.is-active {
  border-color:var(--border);
  background:var(--primary-soft);
  color:var(--heading);
}

.product-reviews-page-ellipsis {
  min-width:22px;
  color:var(--muted);
  text-align:center;
}

.product-review-stars {
  color:#fbbf24;
  display:flex;
  gap:3px;
  margin-bottom:10px;
  font-size:.82rem;
}

.product-review-stars .muted {
  color:rgba(255,255,255,0.18);
}

.product-review-card h3 {
  font-size:1rem;
  font-weight:700;
  margin-bottom:8px;
}

.product-review-card p {
  color:rgba(255,255,255,0.72);
  font-size:.9rem;
  line-height:1.6;
}

.product-review-card small {
  display:block;
  margin-top:12px;
  color:var(--muted);
  font-size:.78rem;
}

.product-review-reply {
  margin-top:14px;
  padding:12px;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--primary-soft);
}

.product-review-reply strong {
  display:flex;
  align-items:center;
  gap:7px;
  color:var(--white);
  font-size:.82rem;
  margin-bottom:6px;
}

.product-review-reply p {
  margin:0;
  font-size:.86rem;
  color:rgba(255,255,255,.78);
}

.product-review-reply-reviewer {
  margin-left:16px;
  border-color:rgba(34,197,94,.28);
  background:rgba(34,197,94,.08);
}

.product-review-reply-reviewer strong {
  color:#86efac;
}

.product-review-note,
.product-review-alert {
  margin-top:12px;
  padding:10px 12px;
  border-radius:9px;
  font-size:.82rem;
  line-height:1.5;
}

.product-review-note {
  border:1px solid rgba(251,191,36,.25);
  color:#fcd34d;
  background:rgba(251,191,36,.08);
}

.product-review-alert-success {
  margin-bottom:16px;
  border:1px solid rgba(34,197,94,.28);
  color:#86efac;
  background:rgba(34,197,94,.08);
}

.product-review-alert-error {
  border:1px solid rgba(239,68,68,.3);
  color:#fecaca;
  background:rgba(239,68,68,.09);
}

.product-review-answer {
  margin-top:12px;
}

.product-review-answer summary {
  cursor:pointer;
  color:var(--white);
  font-size:.82rem;
  font-weight:700;
}

.product-review-answer form {
  display:grid;
  gap:9px;
  margin-top:10px;
}

.product-review-answer input,
.product-review-answer select,
.product-review-answer textarea {
  width:100%;
  border:1px solid var(--border);
  border-radius:8px;
  background:rgba(255,255,255,.04);
  color:var(--white);
  padding:10px 11px;
  font:inherit;
  font-size:.86rem;
}

.product-review-answer textarea {
  resize:vertical;
}

.product-review-answer .btn-details {
  border:0;
  width:100%;
  cursor:pointer;
}

.review-honeypot {
  position:absolute !important;
  left:-10000px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

@media (max-width:900px) {
  .product-reviews-grid {
    column-count:2;
  }
}

@media (max-width:640px) {
  .product-reviews-grid {
    column-count:1;
  }
}

@media (max-width:520px) {
  .product-description-wrap.is-collapsed .product-description-html {
    max-height:220px;
  }

  .product-description-more {
    width:100%;
  }

  .security-trust-strip {
    grid-template-columns:1fr;
  }

  .product-reviews-pager {
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .product-reviews-page-numbers,
  .product-reviews-pager-status {
    grid-column:1 / -1;
  }

  .product-reviews-pager-status {
    order:-1;
    min-width:0;
  }

  .product-reviews-pager .btn-details {
    width:100%;
    min-width:0;
  }
}

body.product-demo-open {
  overflow:hidden;
}

.product-demo-modal[hidden] {
  display:none;
}

.product-demo-modal {
  position:fixed;
  inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.product-demo-backdrop {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.74);
  backdrop-filter:blur(8px);
}

.product-demo-dialog {
  position:relative;
  width:min(100%, 940px);
  max-height:min(90vh, 820px);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  background:#0A0A0F;
  box-shadow:0 24px 70px rgba(0,0,0,.48);
}

.product-demo-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  border-bottom:1px solid var(--border);
}

.product-demo-head h2 {
  font-size:1.08rem;
  line-height:1.25;
}

.product-demo-head p {
  color:var(--muted);
  font-size:.84rem;
  margin-top:3px;
}

.product-demo-close {
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 38px;
  border:1px solid var(--border);
  border-radius:9px;
  background:rgba(255,255,255,.06);
  color:var(--white);
  cursor:pointer;
}

.product-demo-body {
  padding:18px;
  overflow:auto;
}

.product-demo-preview {
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--surface);
}

.product-demo-frame {
  width:100%;
  min-height:420px;
  display:block;
  border:0;
  background:var(--surface);
}

.product-demo-links {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.product-demo-links .btn-details {
  width:auto;
}

.product-demo-code-window {
  margin-top:14px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:10px;
  background:rgba(255,255,255,.04);
}

.product-demo-tabs {
  display:flex;
  align-items:center;
  gap:6px;
  padding:10px;
  border-bottom:1px solid var(--border);
}

.product-demo-tabs button {
  min-height:34px;
  padding:7px 14px;
  border:1px solid var(--border);
  border-radius:8px;
  background:rgba(255,255,255,.05);
  color:var(--muted);
  cursor:pointer;
  font-size:.82rem;
  font-weight:700;
}

.product-demo-tabs button.active {
  color:var(--heading);
  border-color:rgba(0,0,0,0.15);
  background:rgba(0,0,0,0.1);
}

.product-demo-code-panel {
  display:none;
}

.product-demo-code-panel.active {
  display:block;
}

.product-demo-code-panel pre {
  max-height:360px;
  overflow:auto;
  margin:0;
  padding:14px;
  color:#d1d5db;
  font-size:.82rem;
  line-height:1.55;
  white-space:pre-wrap;
  word-break:break-word;
}

.product-demo-code {
  margin-top:14px;
  border:1px solid var(--border);
  border-radius:10px;
  background:rgba(255,255,255,.04);
  overflow:hidden;
}

.product-demo-code summary {
  padding:12px 14px;
  cursor:pointer;
  color:var(--white);
  font-weight:700;
  font-size:.86rem;
}

.product-demo-code pre {
  max-height:360px;
  overflow:auto;
  margin:0;
  padding:14px;
  border-top:1px solid var(--border);
  color:#d1d5db;
  font-size:.82rem;
  line-height:1.55;
  white-space:pre-wrap;
  word-break:break-word;
}

.billing-options {
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:18px 0;
}

.billing-option {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:11px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  background:rgba(255,255,255,0.035);
  transition:border-color .18s var(--ease), background .18s var(--ease);
}

.billing-option:hover,
.billing-option.active {
  border-color:var(--border);
  background:var(--primary-soft);
}

.billing-option strong,
.billing-option b {
  font-size:.9rem;
}

.billing-option small {
  display:block;
  color:var(--muted);
  font-size:.74rem;
  line-height:1.35;
  margin-top:2px;
}

.billing-option b {
  color:var(--white);
  white-space:nowrap;
}

.checkout-billing-badge {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--primary-soft);
  margin-bottom:14px;
}

.checkout-billing-badge span {
  font-weight:700;
  font-size:.88rem;
}

.checkout-billing-badge small {
  color:var(--white);
  font-size:.78rem;
}

.section-pad {
  padding:60px 20px;
  max-width:100%;
}

@media(max-width:768px) {
  .section-pad {
    padding:48px 16px;
  }
}

@media(max-width:480px) {
  .section-pad {
    padding:40px 12px;
  }
}

.section-inner {
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:12px;
  padding:28px;
  color:var(--white);
}

@media(max-width:768px) {
  .section-inner {
    padding:0 16px;
  }
}

@media(max-width:480px) {
  .section-inner {
    padding:0 12px;
  }
}

@media(max-width:640px) {
  #checkoutForm {
    grid-template-columns:1fr !important;
  }

  .card {
    padding:20px;
  }

  .checkout-grid {
    gap:18px;
  }

  .nav-inner {
    padding:0 16px;
    gap:12px;
  }

  .nav-logo-text {
    font-size:1rem;
  }

  .nav-cta {
    display:none;
  }
}

.section-header {
  text-align:center;
  margin-bottom:48px;
}

.section-eyebrow {
  display:inline-block;
  background:var(--primary-soft);
  color:var(--white);
  border:1px solid var(--border);
  padding:6px 16px;
  border-radius:50px;
  font-size:0.76rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.section-title {
  font-family:var(--ff-head);
  font-size:clamp(1.8rem, 4vw, 2.8rem);
  font-weight:800;
  line-height:1.2;
  margin-bottom:14px;
}

.section-subtitle {
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.6;
  max-width:720px;
  margin:0 auto;
}
.partners-section {
  padding:58px 20px;
  background:rgba(17,17,24,0.62);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.partners-header {
  max-width:720px;
  margin:0 auto 28px;
  text-align:center;
}

.partners-label {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.partners-header h2 {
  font-family:var(--ff-head);
  font-size:clamp(1.7rem, 3vw, 2.4rem);
  font-weight:800;
  line-height:1.16;
  margin-bottom:10px;
}

.partners-header p {
  color:var(--muted);
  font-size:1rem;
  line-height:1.6;
}

.partners-track {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
  max-width:1080px;
  margin:0 auto;
}

.tech-partner-card {
  min-height:72px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background:rgba(255,255,255,0.045);
  border:1px solid var(--border);
  border-radius:10px;
  color:rgba(255,255,255,0.82);
  transition:border-color .2s, background .2s, transform .2s;
}

.tech-partner-card:hover {
  border-color:var(--border);
  background:var(--primary-soft);
  transform:translateY(-2px);
}

.tech-partner-card span {
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  background:var(--primary-soft);
  color:var(--white);
  font-size:1.05rem;
}

.tech-partner-card strong {
  font-size:0.9rem;
  line-height:1.35;
  font-weight:700;
}

@media(max-width:768px) {
  .partners-section {
    padding:42px 16px;
  }

  .partners-track {
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }

  .tech-partner-card {
    align-items:flex-start;
    min-height:86px;
    flex-direction:column;
  }
}

@media(max-width:520px) {
  .partners-track {
    grid-template-columns:1fr;
  }

  .tech-partner-card {
    min-height:0;
    flex-direction:row;
    align-items:center;
  }
}
.usp-section {
  padding:60px 20px;
  background:rgba(17,17,24,0.5);
}

.usp-cards {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
  max-width:1200px;
  margin:0 auto;
}

@media(max-width:900px) {
  .usp-cards {
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .usp-cards {
    grid-template-columns:1fr;
  }

  .usp-section {
    padding:48px 16px;
  }
}

.usp-card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:28px 24px;
  text-align:center;
  transition:border-color .2s, transform .2s;
}

.usp-card:hover {
  border-color:var(--border);
  transform:translateY(-2px);
}

.usp-icon {
  font-size:2rem;
  color:var(--white);
  margin-bottom:12px;
  display:flex;
  justify-content:center;
}

.usp-card h4 {
  font-size:1rem;
  font-weight:700;
  margin-bottom:8px;
}

.usp-card p {
  font-size:0.88rem;
  color:var(--muted);
  line-height:1.6;
}
.cta-section {
  padding:70px 28px;
  background:linear-gradient(135deg, var(--primary-soft) 0%, rgba(0,0,0,0.03) 100%);
  border-top:1px solid rgba(0,0,0,0.06);
  border-bottom:1px solid rgba(0,0,0,0.06);
  text-align:center;
}

@media(max-width:768px) {
  .cta-section {
    padding:50px 20px;
  }
}

@media(max-width:480px) {
  .cta-section {
    padding:40px 16px;
  }
}
.why-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  max-width:900px;
  margin:0 auto;
}
@media(max-width:620px) { .why-grid { grid-template-columns:1fr; } }
.why-card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:24px 26px;
  display:flex;
  align-items:flex-start;
  gap:18px;
}
.why-card > i { font-size:1.5rem; color:var(--white); margin-top:2px; flex-shrink:0; }
.why-card h4 { font-size:1rem; font-weight:700; margin-bottom:6px; }
.why-card p { font-size:0.87rem; color:var(--muted); line-height:1.55; }
.countries-grid {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  max-width:700px;
  margin:0 auto;
}
.country-chip {
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  padding:8px 18px;
  border-radius:50px;
  font-size:0.9rem;
  font-weight:500;
}
.country-chip.small { font-size:0.78rem; padding:5px 12px; }
.cta-band {
  background:linear-gradient(135deg, var(--primary-soft) 0%, rgba(0,0,0,0.03) 100%);
  border-top:1px solid rgba(0,0,0,0.06);
  border-bottom:1px solid rgba(0,0,0,0.06);
  padding:70px 28px;
  text-align:center;
}
.cta-band h2 { font-family:var(--ff-head); font-size:clamp(1.8rem,4vw,2.6rem); font-weight:800; margin-bottom:12px; }
.cta-band p { color:var(--muted); margin-bottom:28px; font-size:1.05rem; }
.cta-band-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.page-hero {
  background:var(--black2);
  padding:80px 28px 90px;
  text-align:center;
  border-bottom:1px solid var(--border);
}
.page-hero h1 { font-family:var(--ff-head); font-size:clamp(2rem,5vw,3.5rem); font-weight:800; margin-bottom:14px; }
.page-hero p { color:var(--muted); font-size:1.05rem; max-width:600px; margin:0 auto; }
.contact-grid {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:40px;
  align-items:start;
}
@media(max-width:768px) { .contact-grid { grid-template-columns:1fr; } }
.contact-info h3 { font-size:1.2rem; font-weight:700; margin-bottom:20px; }
.contact-item {
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:20px;
  font-size:0.9rem;
}
.contact-item > i { color:var(--white); font-size:1rem; margin-top:3px; }
.contact-item a { color:var(--white); }
.contact-form-wrap { background:var(--black2); border:1px solid var(--border); border-radius:var(--radius); padding:32px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:560px) { .form-row { grid-template-columns:1fr; } }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-group label { font-size:0.82rem; font-weight:600; color:rgba(255,255,255,0.7); }
.form-group input,
.form-group select,
.form-group textarea {
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  border-radius:8px;
  padding:10px 14px;
  color:var(--white);
  font-family:var(--ff-body);
  font-size:0.92rem;
  transition:border-color .2s;
  outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--primary); }
.form-group select option { background:var(--black2); }
.form-error { color:#f87171; font-size:0.78rem; }
.recaptcha-wrap {
  width:100%;
  max-width:100%;
  min-height:78px;
  margin-top:2px;
  overflow:visible;
}
.recaptcha-wrap .g-recaptcha {
  width:304px;
  max-width:304px;
  transform-origin:left top;
}
@media(max-width:380px) {
  .recaptcha-wrap {
    min-height:70px;
  }

  .recaptcha-wrap .g-recaptcha {
    transform:scale(.88);
  }
}
@media(max-width:340px) {
  .recaptcha-wrap {
    min-height:66px;
  }

  .recaptcha-wrap .g-recaptcha {
    transform:scale(.82);
  }
}
@media(max-width:330px) {
  .recaptcha-wrap {
    min-height:63px;
  }

  .recaptcha-wrap .g-recaptcha {
    transform:scale(.78);
  }
}
.alert-success {
  background:rgba(34,197,94,0.12);
  border:1px solid rgba(34,197,94,0.3);
  color:#86efac;
  padding:12px 16px;
  border-radius:8px;
  margin-bottom:20px;
  font-size:0.9rem;
}
.alert-error {
  background:rgba(239,68,68,0.12);
  border:1px solid rgba(239,68,68,0.3);
  color:#fca5a5;
  padding:12px 16px;
  border-radius:8px;
  margin-bottom:20px;
  font-size:0.9rem;
}

.badge-paid,
.badge-pending,
.badge-failed,
.badge-cancelled,
.badge-refunded {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:24px;
  padding:3px 10px;
  border-radius:999px;
  font-size:0.72rem;
  font-weight:700;
  line-height:1.1;
}
.badge-paid { background:rgba(34,197,94,0.15); color:#4ade80; border:1px solid rgba(34,197,94,0.3); }
.badge-pending { background:rgba(234,179,8,0.15); color:#fbbf24; border:1px solid rgba(234,179,8,0.3); }
.badge-failed { background:rgba(239,68,68,0.15); color:#f87171; border:1px solid rgba(239,68,68,0.3); }
.badge-cancelled { background:rgba(107,114,128,0.15); color:#9ca3af; border:1px solid rgba(107,114,128,0.3); }
.badge-refunded { background:rgba(139,92,246,0.15); color:#a78bfa; border:1px solid rgba(139,92,246,0.3); }

.account-help-box,
.customer-account-box {
  background:var(--primary-soft);
  border:1px solid var(--border);
  border-radius:10px;
  padding:14px;
  margin-bottom:20px;
  text-align:left;
}
.account-help-box strong,
.customer-account-box h3 {
  color:var(--heading);
  font-size:0.95rem;
}
.account-help-box p,
.customer-account-box p {
  color:var(--muted);
  font-size:0.84rem;
  line-height:1.55;
  margin-top:6px;
}
.customer-account-box h3 {
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
}
.account-credential-row {
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  align-items:center;
}
.account-credential-row span {
  color:var(--muted);
  font-size:0.82rem;
}
.account-credential-row code {
  color:var(--text);
  background:var(--surface);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:6px;
  padding:5px 8px;
  overflow-wrap:anywhere;
}
.account-action-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.password-input-wrap {
  position:relative;
  display:flex;
  align-items:center;
}
.password-input-wrap input {
  width:100%;
  padding-right:46px;
}
.password-toggle {
  position:absolute;
  right:8px;
  width:34px;
  height:34px;
  border:0;
  border-radius:8px;
  background:rgba(255,255,255,0.06);
  color:var(--muted);
  cursor:pointer;
}
.password-toggle:hover {
  color:var(--heading);
  background:var(--primary-soft);
}

.account-page-head {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  margin-bottom:24px;
}
.account-page-head h1 {
  font-size:2rem;
  font-weight:800;
  line-height:1.1;
  margin-bottom:8px;
}
.account-page-head p {
  color:var(--muted);
  font-size:0.95rem;
}
.account-head-action {
  flex:0 0 auto;
  min-width:170px;
}
.customer-order-list {
  display:flex;
  flex-direction:column;
  gap:14px;
}
.customer-order-card {
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:18px;
  align-items:center;
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px;
}
.customer-order-main {
  display:flex;
  gap:14px;
  min-width:0;
}
.customer-order-icon {
  width:44px;
  height:44px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-soft);
  color:var(--white);
  flex:0 0 auto;
}
.customer-order-info {
  min-width:0;
}
.customer-order-topline {
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:5px;
}
.customer-order-topline strong {
  color:var(--heading);
  font-family:var(--ff-mono);
  font-size:0.88rem;
}
.customer-order-info h2 {
  font-size:1.05rem;
  font-weight:700;
  line-height:1.3;
  overflow-wrap:anywhere;
}
.customer-order-meta,
.customer-order-items {
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  margin-top:8px;
  color:var(--muted);
  font-size:0.82rem;
}
.customer-order-items span {
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
  border-radius:999px;
  padding:4px 8px;
  color:rgba(255,255,255,0.76);
}
.customer-order-side {
  text-align:right;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}
.customer-order-total {
  font-family:var(--ff-head);
  font-size:1.2rem;
  font-weight:800;
}
.customer-order-link {
  min-width:136px;
  flex:none;
}
.customer-order-note {
  color:var(--muted);
  font-size:0.78rem;
}
.customer-order-empty {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:12px;
  padding:34px 22px;
  text-align:center;
}
.customer-order-empty i {
  color:var(--white);
  font-size:2rem;
  margin-bottom:14px;
}
.customer-order-empty h2 {
  font-size:1.2rem;
  margin-bottom:8px;
}
.customer-order-empty p {
  color:var(--muted);
  margin-bottom:18px;
}
.customer-pagination {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:22px;
}
.customer-page-numbers {
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  justify-content:center;
}
.customer-page-link,
.customer-page-number {
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  border-radius:8px;
  border:1px solid var(--border);
  background:var(--hover-bg);
  color:var(--heading);
  text-decoration:none;
  font-weight:600;
  font-size:0.85rem;
}
.customer-page-link {
  padding:0 14px;
}
.customer-page-number {
  width:40px;
}
.customer-page-gap {
  min-height:40px;
  display:inline-flex;
  align-items:center;
  color:var(--muted);
  padding:0 2px;
}
.customer-page-number.active {
  background:var(--primary);
  border-color:var(--primary);
}
.customer-page-link.disabled,
.customer-page-number.disabled {
  opacity:.45;
  pointer-events:none;
}
.customer-page-summary {
  margin-top:10px;
  text-align:center;
  color:var(--muted);
  font-size:0.82rem;
}
.account-profile-wrap {
  max-width:680px;
}
.account-profile-card {
  padding:26px;
  overflow:hidden;
}
.account-profile-submit {
  width:100%;
  justify-content:center;
  margin-top:16px;
  border:0;
}
.customer-orders-page,
.account-profile-wrap {
  color:var(--white);
}
.customer-orders-page :where(a,button,input,select,textarea),
.account-profile-wrap :where(a,button,input,select,textarea) {
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

@media(hover:hover) and (pointer:fine) {
  .customer-order-card:hover,
  .account-profile-card:hover {
    border-color:var(--border);
  }
}
.checkout-grid {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:40px;
  align-items:start;
}
@media(max-width:768px) { .checkout-grid { grid-template-columns:1fr; } }
.checkout-summary {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
}
.checkout-summary h3 { margin-bottom:20px; font-weight:700; }
.summary-product {
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
  margin-bottom:16px;
}
.summary-icon { font-size:1.8rem; color:var(--white); }
.summary-product strong { font-size:1rem; }
.summary-product p { font-size:0.82rem; color:var(--muted); margin-top:4px; }
.summary-line, .summary-total {
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  font-size:0.9rem;
  border-bottom:1px solid var(--border);
}
.summary-total { font-weight:800; font-size:1.1rem; border-bottom:none; margin-top:4px; }
.summary-line.discount span:last-child { color:#4ade80; }
.summary-features {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:16px;
}
.summary-features li { font-size:0.84rem; color:rgba(255,255,255,0.7); display:flex; align-items:center; gap:8px; }
.summary-features li i { color:var(--white); font-size:0.72rem; }
.checkout-form-wrap {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px;
}
.checkout-form-wrap h3 { margin-bottom:20px; font-weight:700; }
.product-detail-grid {
  display:grid;
  grid-template-columns:1fr 340px;
  gap:40px;
  align-items:start;
}

.product-detail-grid > .product-detail-order-card {
  align-self:flex-start;
  height:fit-content;
  min-height:auto;
}

@media(max-width:900px) { .product-detail-grid { grid-template-columns:1fr; } }
@media(max-width:1024px) { .product-detail-features { grid-template-columns:repeat(2, minmax(0, 1fr)); } }
@media(max-width:700px) { .product-detail-features { grid-template-columns:1fr; } }
.sidebar-card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  position:sticky;
  top:80px;
}
.sidebar-price { flex-direction:column; align-items:flex-start; gap:6px; margin-bottom:14px; }
.sidebar-note { font-size:0.82rem; color:var(--muted); line-height:1.7; margin-bottom:16px; }
.discount-badge {
  background:var(--primary);
  color:var(--button-text);
  padding:2px 10px;
  border-radius:50px;
  font-size:0.72rem;
  font-weight:700;
}
.feature-list-big { list-style:none; display:flex; flex-direction:column; gap:10px; margin-top:12px; }
.feature-list-big li { display:flex; align-items:center; gap:10px; font-size:0.95rem; }
.feature-list-big li i { color:var(--white); font-size:0.85rem; }
.success-icon { font-size:5rem; color:#4ade80; margin-bottom:20px; }
.failed-icon { color:#f87171; }
.order-receipt {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  max-width:480px;
  margin:0 auto;
  padding:8px 0;
}
.receipt-row {
  display:flex;
  justify-content:space-between;
  padding:12px 20px;
  border-bottom:1px solid var(--border);
  font-size:0.9rem;
}
.receipt-row:last-child { border-bottom:none; }
.receipt-row span { color:var(--muted); }
.prose-section h2 { font-family:var(--ff-head); font-size:1.6rem; font-weight:800; margin:32px 0 12px; }
.prose-section p { color:rgba(255,255,255,0.75); line-height:1.75; margin-bottom:16px; }
.policy-content {
  color:rgba(255,255,255,0.76);
  line-height:1.75;
}
.policy-content h2,
.policy-content h3 {
  color:var(--white);
  font-family:var(--ff-head);
  line-height:1.25;
}
.policy-content h2 {
  font-size:1.45rem;
  margin:0 0 14px;
}
.policy-content h3 {
  font-size:1.05rem;
  margin:28px 0 10px;
}
.policy-content p,
.policy-content ul,
.policy-content ol {
  margin-bottom:16px;
}
.policy-content ul,
.policy-content ol {
  padding-left:20px;
}
.policy-content li {
  margin-bottom:8px;
}
.policy-content a {
  color:var(--white);
  text-decoration:underline;
  text-underline-offset:3px;
}
.policy-content .policy-note {
  color:var(--muted);
  font-size:.92rem;
}
.partners-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:16px; }
@media(max-width:560px) { .partners-grid { grid-template-columns:1fr; } }
.partner-card {
  background:var(--black2);
  border:1px solid var(--border);
  padding:14px 16px;
  border-radius:8px;
  font-size:0.87rem;
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.75);
}
.partner-card i { color:var(--white); }

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

.floating-contact-actions {
  position:fixed;
  left:max(20px, env(safe-area-inset-left));
  bottom:max(20px, env(safe-area-inset-bottom));
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:205;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate3d(-14px, 14px, 0) scale(.94);
  transition:opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}

.floating-contact-actions.is-visible {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate3d(0, 0, 0) scale(1);
  transition-delay:0s;
}

.floating-contact-btn {
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary);
  background:var(--surface);
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 8px 22px rgba(0,0,0,0.28);
  transition:transform .18s ease, filter .18s ease;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.floating-contact-btn:hover,
.floating-contact-btn:focus-visible {
  color:var(--primary);
  filter:brightness(1.08);
  transform:translateY(-1px);
}

.floating-contact-btn i {
  font-size:1.35rem;
  line-height:1;
}

.floating-contact-whatsapp {
  background:var(--surface);
  color:#16a34a;
}

.floating-contact-whatsapp:hover,
.floating-contact-whatsapp:focus-visible {
  color:#16a34a;
}

.floating-contact-call {
  background:var(--surface);
  color:var(--primary);
}

@media(max-width:480px) {
  .floating-contact-actions {
    left:max(14px, env(safe-area-inset-left));
    bottom:max(14px, env(safe-area-inset-bottom));
    gap:8px;
  }

  .floating-contact-btn {
    width:48px;
    height:48px;
  }
}
.chat-fab {
  position:fixed;
  bottom:20px;
  right:20px;
  width:56px;
  height:56px;
  background:var(--primary);
  border-radius:50%;
  cursor:pointer;
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 8px 22px rgba(0,0,0,0.28);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:200;
  transition:background .18s, transform .18s, border-color .18s;
  pointer-events:auto;
  touch-action:manipulation;
}

.chat-fab:hover {
  background:#111118;
  transform:translateY(-1px);
}

.chat-fab:active {
  background:#111118;
  transform:scale(.96);
}

.chat-fab svg {
  width:26px;
  height:26px;
  pointer-events: none;
}

.chat-fab,
.chat-fab * {
  -webkit-tap-highlight-color:transparent;
  user-select:none;
}

.chat-window {
  position:fixed;
  bottom:90px;
  right:20px;
  width:340px;
  max-height:480px;
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:16px;
  display:flex;
  flex-direction:column;
  z-index:200;
  box-shadow:0 16px 44px rgba(0,0,0,0.42);
  transform:scale(0) translateY(20px);
  transform-origin:bottom right;
  opacity:0;
  visibility:hidden;
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
  pointer-events:none;
}

.chat-window.open {
  transform:scale(1) translateY(0);
  opacity:1;
  pointer-events:auto;
  visibility:visible;
}

@media(max-width:480px) {
  .chat-fab {
    bottom:16px;
    right:16px;
    width:50px;
    height:50px;
  }

  .chat-fab svg {
    width:24px;
    height:24px;
  }

  .chat-window {
    bottom:80px;
    right:16px;
    width:calc(100vw - 32px);
    max-width:360px;
    max-height:calc(100vh - 120px);
  }
}

@media(max-width:768px) {
  .chat-fab,
  .chat-fab:hover,
  .chat-fab:active,
  .chat-fab:focus {
    background:var(--primary);
    box-shadow:none;
    transform:none;
    outline:none;
    transition:none;
  }

  .chat-window,
  .chat-window.open {
    box-shadow:none;
  }

  .chat-footer button:active {
    background:var(--primary);
  }

  .chat-close:active {
    background:rgba(255,255,255,0.06);
  }
}


/* Keyboard inset for mobile Safari */
:root { --keyboard-inset:0px; }
.theme-switcher {
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border:1px solid var(--border);
  border-radius:10px;
  background:rgba(255,255,255,.04);
  flex:0 0 auto;
}

.theme-switcher button {
  width:32px;
  height:32px;
  border:0;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  font-size:.9rem;
}

.theme-switcher button:hover,
.theme-switcher button.is-active {
  background:var(--primary-soft);
  color:var(--white);
}

.nav-theme-mobile {
  display:none;
}

.nav-theme-switcher {
  margin-left:0;
}
.payment-error {
  color:#f87171;
  font-size:.9rem;
  margin-top:12px;
}

.payment-retry-btn[hidden],
.payment-error[hidden] {
  display:none !important;
}

.payment-retry-btn {
  width:100%;
  margin-top:10px;
  justify-content:center;
}

#checkoutForm {
  min-width:0;
}

body.keyboard-open .floating-contact-actions,
body.keyboard-open .chat-fab {
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

body.keyboard-open .chat-window.open {
  bottom:calc(12px + env(safe-area-inset-bottom) + var(--keyboard-inset));
  max-height:calc(100dvh - var(--keyboard-inset) - 24px);
}

@media(max-width:768px) {
  input,
  select,
  textarea,
  button {
    font-size:16px !important;
  }

  .nav-theme-switcher {
    display:none;
  }

  .nav-theme-mobile {
    display:block;
  }

  .nav-theme-mobile .theme-switcher {
    width:100%;
    justify-content:center;
  }

  .nav-links {
    background:rgba(10,10,15,.98);
    padding-bottom:calc(18px + env(safe-area-inset-bottom));
  }

  :root[data-theme="light"] .nav-links {
    background:rgba(255,255,255,.98);
  }

  #checkoutForm {
    grid-template-columns:1fr !important;
  }

  .checkout-grid,
  .product-detail-grid,
  .products-grid,
  .services-grid,
  .contact-grid,
  .home-payment-grid {
    max-width:100%;
  }

  .chat-window {
    max-height:calc(100dvh - 104px) !important;
  }
}

@media(max-width:480px) {
  .section-inner,
  .container,
  .container-narrow {
    padding-left:0;
    padding-right:0;
  }
}

@media(hover:none) {
  .chat-fab,
  .floating-contact-actions,
  .chat-fab:hover,
  .chat-fab:active,
  .chat-fab:focus,
  .floating-contact-btn:hover,
  .floating-contact-btn:active,
  .floating-contact-btn:focus {
    transition:background-color var(--duration-fast) var(--ease), opacity .22s ease, transform .22s ease;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.001ms !important;
  }

  .usp-track,
  .dot.pulse {
    animation:none !important;
  }

  .reveal-on-scroll {
    opacity:1 !important;
    transform:none !important;
  }
}

.chat-header {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
}

.chat-avatar {
  width:36px;
  height:36px;
  background:var(--primary);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
}

.chat-name {
  font-weight:700;
  font-size:0.92rem;
}

.chat-status {
  font-size:0.72rem;
  color:#4ade80;
}

.chat-close {
  margin-left:auto;
  width:34px;
  height:34px;
  background:rgba(255,255,255,0.06);
  border:1px solid var(--border);
  border-radius:9px;
  color:var(--white);
  font-size:1.2rem;
  cursor:pointer;
  line-height:1;
  touch-action:manipulation;
}

.chat-close:active {
  background:rgba(255,255,255,0.12);
}

.chat-body {
  flex:1;
  overflow-y:auto;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.chat-msg {
  max-width:85%;
  padding:9px 13px;
  border-radius:12px;
  font-size:0.86rem;
  line-height:1.5;
}

.chat-msg.bot {
  background:rgba(255,255,255,0.06);
  border:1px solid var(--border);
  align-self:flex-start;
}

.chat-msg.user {
  background:var(--primary);
  color:var(--button-text);
  align-self:flex-end;
}

.chat-footer {
  display:flex;
  gap:8px;
  padding:10px 12px;
  border-top:1px solid var(--border);
}

.chat-footer input {
  flex:1;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  border-radius:8px;
  padding:8px 12px;
  color:var(--white);
  font-family:var(--ff-body);
  font-size:0.85rem;
  outline:none;
}

.chat-footer input:focus {
  border-color:var(--primary);
}

.chat-footer button {
  background:var(--primary);
  border:none;
  color:var(--button-text);
  width:40px;
  height:40px;
  border-radius:8px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  touch-action:manipulation;
}

.chat-footer button:active {
  background:#111118;
}
footer {
  background:var(--black2);
  border-top:1px solid var(--border);
}
.footer-inner {
  max-width:1200px;
  margin:0 auto;
  padding:60px 28px 40px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:40px;
}
@media(max-width:900px) { .footer-inner { grid-template-columns:1fr 1fr; } }
@media(max-width:560px) { .footer-inner { grid-template-columns:1fr; } }
.footer-brand p { color:var(--muted); font-size:0.88rem; margin-top:12px; max-width:240px; }
.footer-socials { display:flex; flex-wrap:wrap; gap:12px; margin-top:16px; max-width:260px; }
.footer-socials a { width:40px; height:40px; flex:0 0 40px; background:var(--surface); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--muted); transition:all .2s; }
.footer-socials a:hover { background:var(--hover-bg); color:var(--heading); }
.footer-payment-logos {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.footer-payment-logo {
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:7px 10px;
  border-radius:8px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.78);
  font-size:.8rem;
  font-weight:800;
  line-height:1;
}
.footer-payment-square-mark {
  width:18px;
  height:18px;
  border-radius:5px;
  display:grid;
  place-items:center;
  background:var(--surface);
  color:#888888;
  font-size:.7rem;
  font-weight:900;
  font-family:Arial, sans-serif;
}
@media(max-width:560px) {
  .footer-socials { gap:10px; max-width:none; }
  .footer-socials a { width:42px; height:42px; flex-basis:42px; }
  .footer-payment-logos { justify-content:center; }
}
.footer-links h4, .footer-contact h4 { font-size:0.85rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); margin-bottom:16px; }
.footer-links ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links li a { color:rgba(255,255,255,0.65); font-size:0.88rem; transition:color .2s; }
.footer-links li a:hover { color:var(--white); }
.footer-contact p { display:flex; align-items:center; gap:10px; font-size:0.88rem; color:rgba(255,255,255,0.65); margin-bottom:10px; }
.footer-contact i { color:var(--white); width:14px; }
.footer-contact a { color:rgba(255,255,255,0.65); transition:color .2s; }
.footer-contact a:hover { color:var(--white); }
.footer-bottom {
  border-top:1px solid var(--border);
  padding:18px 28px;
  text-align:center;
  font-size:0.8rem;
  color:var(--muted);
}

/* Responsive polish layer */
html {
  width:100%;
  overflow-x:hidden;
  -webkit-text-size-adjust:100%;
}

body {
  min-width:320px;
  overflow-x:hidden;
}

img,
svg,
video,
canvas {
  max-width:100%;
  height:auto;
}

button,
input,
select,
textarea {
  font:inherit;
}

:where(h1,h2,h3,h4,p,li,a,button,label,input,select,textarea,strong,span) {
  overflow-wrap:break-word;
}

:where(a,button,input,select,textarea) {
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

:where(.section-inner,.container,.container-narrow,.hero-content,.hero-inner,.footer-inner) {
  min-width:0;
}

.section,
.section-pad,
.usp-section,
.partners-section,
.cta-section,
.cta-band,
.page-hero {
  width:100%;
}

.section,
.section-pad {
  padding-left:clamp(14px, 4vw, 28px);
  padding-right:clamp(14px, 4vw, 28px);
}

.section-inner,
.container {
  width:min(100%, 1200px);
  padding-left:clamp(12px, 3vw, 20px);
  padding-right:clamp(12px, 3vw, 20px);
}

.container-narrow {
  width:min(100%, 900px);
  padding-left:clamp(12px, 3vw, 20px);
  padding-right:clamp(12px, 3vw, 20px);
}

.nav-links a,
.nav-link-button {
  display:flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  line-height:1.2;
}

.nav-links a i,
.nav-link-button i,
.btn-primary i,
.btn-outline i,
.btn-hero-primary i,
.btn-hero-secondary i,
.btn-buy i,
.btn-details i,
.nav-cta i {
  flex:0 0 auto;
}

.nav-link-button {
  width:100%;
  background:none;
  border:none;
  border-radius:8px;
  color:var(--muted);
  cursor:pointer;
  font-family:var(--ff-body);
  font-size:0.9rem;
  font-weight:500;
  padding:6px 14px;
  text-align:left;
  transition:all .2s;
}

.nav-link-button:hover {
  color:var(--white);
  background:rgba(255,255,255,0.07);
}

.nav-mobile-cta {
  display:none;
}

.btn-primary,
.btn-outline,
.btn-hero-primary,
.btn-hero-secondary,
.btn-buy,
.btn-details,
.nav-cta,
.chat-footer button {
  justify-content:center;
  max-width:100%;
  line-height:1.2;
  white-space:normal;
}

.btn-primary,
.btn-outline,
.btn-hero-primary,
.btn-hero-secondary,
.btn-buy,
.btn-details {
  min-height:46px;
  touch-action:manipulation;
}

button:disabled,
.btn-primary[aria-disabled="true"],
.btn-outline[aria-disabled="true"],
.btn-buy[aria-disabled="true"],
.btn-details[aria-disabled="true"] {
  cursor:not-allowed;
  opacity:.62;
  transform:none !important;
}

.loading-dots {
  display:inline-flex;
  align-items:center;
  gap:4px;
  margin-left:4px;
}

.loading-dots i {
  width:5px;
  height:5px;
  border-radius:50%;
  background:currentColor;
  opacity:.42;
  animation:loading-dot 900ms infinite ease-in-out;
}

.loading-dots i:nth-child(2) {
  animation-delay:150ms;
}

.loading-dots i:nth-child(3) {
  animation-delay:300ms;
}

.btn-loading,
[aria-busy="true"] {
  pointer-events:none;
}

@keyframes loading-dot {
  0%, 80%, 100% {
    transform:translateY(0);
    opacity:.36;
  }

  40% {
    transform:translateY(-3px);
    opacity:1;
  }
}

.service-card,
.product-card,
.usp-card,
.why-card,
.tech-partner-card,
.partner-card,
.card,
.checkout-summary,
.checkout-form-wrap,
.contact-form-wrap,
.sidebar-card,
.order-receipt {
  min-width:0;
}

.products-grid,
.services-grid,
.usp-cards,
.partners-track {
  align-items:stretch;
}

.products-grid {
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.services-grid,
.usp-cards,
.partners-track {
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.product-card,
.service-card,
.usp-card {
  height:100%;
}

.product-icon-wrap,
.service-icon {
  flex:0 0 auto;
}

.product-price {
  flex-wrap:wrap;
}

.product-actions {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.product-actions > * {
  min-width:0;
}

.product-detail-actions {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.product-detail-actions .btn-buy,
.product-detail-actions .btn-details {
  width:min(100%, 230px);
  flex:none;
  padding:9px 14px;
  min-height:42px;
}

.product-features li,
.feature-list-big li,
.summary-features li {
  align-items:flex-start;
}

.product-features li i,
.feature-list-big li i,
.summary-features li i {
  margin-top:.35em;
  flex:0 0 auto;
}

.contact-grid,
.checkout-grid,
.product-detail-grid,
.home-payment-grid {
  width:100%;
}

.contact-grid > *,
.checkout-grid > *,
.product-detail-grid > *,
.home-payment-grid > * {
  min-width:0;
}

.form-group input,
.form-group select,
.form-group textarea,
.chat-footer input {
  width:100%;
  min-width:0;
  min-height:44px;
  color:var(--field-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.chat-footer input::placeholder {
  color:var(--field-placeholder);
}

.form-group select {
  color:var(--field-text);
}

.receipt-row,
.summary-line,
.summary-total {
  gap:12px;
}

.footer-socials svg {
  width:18px;
  height:18px;
}

@media(min-width:1024px) {
  .products-grid {
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media(max-width:900px) {
  .contact-grid,
  .checkout-grid,
  .product-detail-grid,
  .home-payment-grid {
    grid-template-columns:1fr !important;
  }

  .sidebar-card,
  .product-card[style*="sticky"],
  .product-detail-order-card {
    position:static !important;
    align-self:flex-start;
    height:auto;
    min-height:auto;
  }
}

@media(max-width:768px) {
  .usp-banner {
    height:34px;
  }

  .usp-item {
    padding:0 18px;
    font-size:.7rem;
  }

  .nav-inner {
    height:64px;
    padding:0 16px;
    gap:12px;
  }

  .nav-logo {
    min-width:0;
  }

  .nav-logo-text {
    min-width:0;
    font-size:1rem;
  }

  .nav-links {
    top:64px;
    padding:12px 16px 18px;
    max-height:calc(100dvh - 64px);
    overflow-y:auto;
  }

  .nav-links li,
  .nav-links form,
  .nav-links a,
  .nav-link-button {
    width:100%;
  }

  .nav-links a,
  .nav-link-button {
    justify-content:flex-start;
    padding:12px 14px;
    white-space:normal;
  }

  .nav-links a i,
  .nav-link-button i {
    width:18px;
    text-align:center;
  }

  .nav-cta {
    display:none;
  }

  .nav-mobile-cta {
    display:block;
  }

  .nav-mobile-cta a {
    justify-content:center;
    background:var(--primary);
    color:var(--button-text);
  }

  .section-head,
  .section-header {
    margin-bottom:34px;
  }

  .section-subtitle,
  .page-hero p,
  .hero-desc {
    color:#A3A3A8;
  }

  .products-grid,
  .services-grid,
  .usp-cards,
  .why-grid,
  .partners-grid {
    grid-template-columns:1fr;
  }

  .product-card,
  .service-card,
  .usp-card,
  .card,
  .checkout-summary,
  .checkout-form-wrap,
  .contact-form-wrap,
  .sidebar-card {
    padding:22px;
  }

  .product-card {
    text-align:center;
  }

  .product-icon-wrap {
    margin-left:auto;
    margin-right:auto;
  }

  .product-price {
    justify-content:center;
  }

  .product-features li {
    text-align:left;
  }

  .hero-actions,
  .cta-band-btns {
    width:100%;
  }

  .hero .hero-actions {
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px;
    width:min(100%, 340px);
    margin-left:auto;
    margin-right:auto;
    margin-bottom:28px;
  }

  .hero .btn-hero-primary,
  .hero .btn-hero-secondary {
    width:auto;
    min-height:40px;
    padding:9px 10px;
    border-radius:9px;
    font-size:.82rem;
    gap:6px;
    white-space:nowrap;
  }

  .hero-actions > a,
  .cta-band-btns > a,
  .hero-actions > button,
  .cta-band-btns > button {
    flex:1 1 220px;
  }

  .page-hero {
    padding:56px 18px 60px;
  }

  .footer-inner {
    padding:42px 20px 30px;
    gap:28px;
  }
}

@media(max-width:640px) {
  .hero-actions,
  .cta-band-btns,
  .product-actions {
    grid-template-columns:1fr;
  }

  .hero-actions,
  .cta-band-btns {
    flex-direction:column;
    align-items:stretch;
  }

  .hero .hero-actions {
    grid-template-columns:repeat(2, minmax(0, 1fr));
    align-items:center;
  }

  .btn-primary,
  .btn-outline,
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-buy,
  .btn-details,
  .nav-mobile-cta a {
    width:100%;
  }

  .hero .btn-hero-primary,
  .hero .btn-hero-secondary {
    width:auto;
  }

  .cta-section .hero-actions {
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
    align-items:center;
    width:min(100%, 340px);
    margin-left:auto;
    margin-right:auto;
  }

  .cta-section .hero-actions > a,
  .cta-section .hero-actions > button {
    flex:none;
    min-width:0;
  }

  .cta-section .btn-hero-primary,
  .cta-section .btn-hero-secondary {
    width:auto;
    min-height:42px;
    padding:9px 10px;
    border-radius:9px;
    font-size:.82rem;
    gap:6px;
    white-space:normal;
  }

  .product-detail-actions {
    align-items:stretch;
  }

  .product-detail-actions .btn-buy,
  .product-detail-actions .btn-details {
    width:100%;
    min-height:46px;
  }

  .card [style*="grid-template-columns:1fr 1fr"],
  #checkoutForm,
  .form-row {
    grid-template-columns:1fr !important;
  }

  .receipt-row,
  .summary-line,
  .summary-total {
    align-items:flex-start;
  }
}

@media(max-width:560px) {
  .section,
  .section-pad,
  .usp-section,
  .partners-section,
  .cta-section,
  .cta-band {
    padding-top:40px;
    padding-bottom:40px;
  }

  .hero {
    min-height:auto;
    padding:42px 14px 46px;
  }

  .hero-title {
    letter-spacing:0;
  }

  .hero-badge,
  .section-eyebrow,
  .section-label {
    max-width:100%;
    white-space:normal;
    text-align:center;
  }

  .hero-stats {
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .hero-stat {
    padding:13px 8px;
  }

  .tech-partner-card,
  .why-card,
  .contact-item {
    gap:12px;
  }

  .country-chip {
    width:100%;
    text-align:center;
  }

  .chat-fab {
    right:max(14px, env(safe-area-inset-right));
    bottom:max(14px, env(safe-area-inset-bottom));
  }

  .chat-window {
    right:max(12px, env(safe-area-inset-right));
    left:max(12px, env(safe-area-inset-left));
    bottom:calc(74px + env(safe-area-inset-bottom));
    width:auto;
    max-width:none;
    max-height:calc(100dvh - 104px);
  }

  .footer-inner {
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-brand p,
  .footer-socials {
    margin-left:auto;
    margin-right:auto;
  }

  .footer-socials {
    justify-content:center;
  }

  .footer-contact p {
    justify-content:center;
  }
}

@media(max-width:380px) {
  body {
    font-size:15px;
  }

  .nav-logo-icon {
    width:32px;
    height:32px;
  }

  .hero-stats {
    grid-template-columns:1fr;
  }

  .product-card,
  .service-card,
  .usp-card,
  .card,
  .checkout-summary,
  .checkout-form-wrap,
  .contact-form-wrap {
    padding:18px;
  }
}

@media(max-width:340px) {
  .cta-section .hero-actions {
    grid-template-columns:1fr;
    width:min(100%, 260px);
  }

  .cta-section .btn-hero-primary,
  .cta-section .btn-hero-secondary {
    width:100%;
  }

  .hero .hero-actions {
    grid-template-columns:1fr;
    width:min(100%, 260px);
  }

  .hero .btn-hero-primary,
  .hero .btn-hero-secondary {
    width:100%;
  }
}

@media(max-width:640px) {
  .account-page-head,
  .customer-order-card,
  .customer-pagination,
  .account-credential-row {
    align-items:stretch;
  }

  .account-page-head,
  .customer-pagination,
  .account-credential-row {
    flex-direction:column;
  }

  .customer-order-card {
    grid-template-columns:1fr;
  }

  .customer-order-side {
    align-items:stretch;
    text-align:left;
  }

  .customer-order-link,
  .account-head-action {
    width:100%;
  }

  .account-action-row {
    grid-template-columns:1fr;
  }

  .customer-page-link,
  .customer-page-number {
    min-height:44px;
  }

  .account-profile-card {
    padding:20px;
  }

  .account-profile-submit {
    min-height:46px;
  }
}

/* Smooth interaction layer */
.nav-links a,
.nav-link-button,
.nav-dropdown-toggle,
.nav-dropdown-item,
.nav-cta,
.btn-primary,
.btn-outline,
.btn-hero-primary,
.btn-hero-secondary,
.btn-buy,
.btn-details,
.footer-socials a,
.footer-links li a,
.footer-contact a,
.chat-close,
.chat-footer button,
.chat-footer input,
.service-card,
.product-card,
.tech-partner-card,
.usp-card,
.why-card {
  transition-duration:var(--duration-fast);
  transition-timing-function:var(--ease);
}

.service-card,
.product-card,
.tech-partner-card,
.usp-card,
.why-card,
.chat-window,
.nav-links {
  backface-visibility:hidden;
}

.reveal-on-scroll {
  opacity:0;
  transform:translate3d(0, 16px, 0);
  transition:opacity .42s var(--ease), transform .42s var(--ease);
  will-change:opacity, transform;
}

.reveal-on-scroll.visible {
  opacity:1;
  transform:translate3d(0, 0, 0);
  will-change:auto;
}

.chat-window {
  transform:translate3d(0, 14px, 0) scale(.98);
  transition:opacity var(--duration) var(--ease), transform var(--duration) var(--ease), visibility 0s linear var(--duration);
  will-change:opacity, transform;
  contain:layout paint;
}

.chat-window.open {
  transform:translate3d(0, 0, 0) scale(1);
  transition-delay:0s;
}

.chat-body {
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  scroll-behavior:smooth;
}

.chat-typing {
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.chat-footer button:disabled {
  cursor:wait;
  opacity:.72;
}

@media(max-width:768px) {
  .nav-links {
    display:flex;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translate3d(0, -8px, 0);
    transition:opacity var(--duration) var(--ease), transform var(--duration) var(--ease), visibility 0s linear var(--duration);
    will-change:opacity, transform;
  }

  .nav-links.open {
    display:flex !important;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate3d(0, 0, 0);
    transition-delay:0s;
  }

  .nav-toggle,
  .nav-toggle span {
    transition-duration:var(--duration-fast);
    transition-timing-function:var(--ease);
  }
}

@media(hover:none) {
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-hero-primary:hover,
  .btn-hero-secondary:hover,
  .btn-buy:hover,
  .btn-details:hover,
  .nav-cta:hover,
  .chat-fab:hover,
  .service-card:hover,
  .product-card:hover,
  .tech-partner-card:hover,
  .usp-card:hover {
    transform:none;
  }

  .btn-hero-primary:active,
  .btn-primary:active,
  .btn-buy:active,
  .nav-mobile-cta a:active {
    background:#111118;
  }

  .btn-hero-secondary:active,
  .btn-outline:active,
  .btn-details:active,
  .nav-links a:active,
  .nav-link-button:active,
  .nav-toggle:active {
    background:var(--primary-soft);
    border-color:var(--border);
  }

  .chat-window {
    box-shadow:0 10px 28px rgba(0,0,0,0.34);
  }

  .chat-fab,
  .chat-fab:hover,
  .chat-fab:active,
  .chat-fab:focus {
    background:var(--primary);
    box-shadow:none;
    transform:none;
    outline:none;
    transition:none;
  }

  .chat-window,
  .chat-window.open {
    box-shadow:none;
  }

  .chat-footer button:active {
    background:var(--primary);
  }

  .chat-close:active {
    background:rgba(255,255,255,0.06);
  }
}

.theme-switcher {
  display:flex;
  gap:8px;
  align-items:center;
}

.theme-btn {
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.06);
  border:1px solid var(--border);
  border-radius:8px;
  color:var(--muted);
  cursor:pointer;
  transition:all .2s var(--ease);
  padding:0;
  font-size:0;
  min-width:36px;
  min-height:36px;
}

.theme-btn .icon {
  width:18px;
  height:18px;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.theme-btn:hover {
  background:rgba(255,255,255,0.12);
  color:var(--white);
  border-color:rgba(255,255,255,0.2);
}

.theme-btn.active {
  background:var(--primary-soft);
  color:var(--white);
  border-color:rgba(255,255,255,0.2);
}

@media(max-width:768px) {
  .theme-btn {
    width:32px;
    height:32px;
    min-width:32px;
    min-height:32px;
  }
  
  .theme-btn .icon {
    width:16px;
    height:16px;
  }
}

[data-theme="light"] .btn-details:hover {
  background: rgba(0,0,0,0.1);
}

/* Sections */
[data-theme="light"] .section-dark {
  background: #f7f7f7;
}

[data-theme="light"] .section-label {
  background: rgba(0,0,0,0.06);
  color: #000000;
  border-color: rgba(0,0,0,0.1);
}

/* Service cards */
[data-theme="light"] .service-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .service-card:hover {
  border-color: rgba(0,0,0,0.2);
}

[data-theme="light"] .service-icon {
  background: rgba(0,0,0,0.06);
  color: #000000;
}

[data-theme="light"] .service-card p {
  color: #666666;
}

/* Product cards */
[data-theme="light"] .product-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .product-card:hover {
  border-color: rgba(0,0,0,0.2);
}

[data-theme="light"] .product-badge {
  background: #000000;
  color: #ffffff;
}

[data-theme="light"] .product-icon {
  color: #000000;
}

[data-theme="light"] .product-card-media {
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
}

[data-theme="light"] .product-card-icon-fallback {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
  color: #000000;
}

[data-theme="light"] .product-tagline {
  color: #000000;
}

[data-theme="light"] .product-desc {
  color: #666666;
}

[data-theme="light"] .product-features li {
  color: rgba(0,0,0,0.75);
}

[data-theme="light"] .product-features li i {
  color: #000000;
}

[data-theme="light"] .product-feature-toggle {
  color: #000000;
}

[data-theme="light"] .price-current,
[data-theme="light"] .price-now {
  color: #000000;
}

[data-theme="light"] .product-icon-wrap {
  background: rgba(0,0,0,0.06);
}

/* Product detail page */
[data-theme="light"] .product-detail-media {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .product-detail-icon-fallback {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
  color: #000000;
}

[data-theme="light"] .product-description-html {
  color: #555555;
}

[data-theme="light"] .product-description-wrap.is-collapsed .product-description-html::after {
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff 84%);
}

[data-theme="light"] .product-description-more:hover {
  background: rgba(0,0,0,0.06);
}

/* Product reviews */
[data-theme="light"] .product-review-card p {
  color: rgba(0,0,0,0.72);
}

[data-theme="light"] .product-review-stars .muted {
  color: rgba(0,0,0,0.18);
}

[data-theme="light"] .product-review-date {
  color: rgba(0,0,0,0.55);
}

[data-theme="light"] .product-review-reply-admin {
  border-color: rgba(0,0,0,0.1);
  background: rgba(0,0,0,0.03);
}

[data-theme="light"] .product-review-note {
  border-color: rgba(0,0,0,0.12);
  color: #666666;
  background: rgba(0,0,0,0.03);
}

/* WhatsApp card */
[data-theme="light"] .whatsapp-cta-card {
  border-color: rgba(34,197,94,0.2);
  background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(0,0,0,0.02));
}

[data-theme="light"] .whatsapp-cta-icon {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

/* FAQ */
[data-theme="light"] .faq-item {
  border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .faq-question {
  color: #000000;
}

[data-theme="light"] .faq-answer {
  color: rgba(0,0,0,0.72);
}

/* Checkout */
[data-theme="light"] .checkout-summary {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .checkout-form-wrap {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .summary-features li {
  color: rgba(0,0,0,0.7);
}

[data-theme="light"] .summary-features li i {
  color: #000000;
}

/* Forms */
[data-theme="light"] .form-group label {
  color: rgba(0,0,0,0.7);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: #ffffff;
  border-color: rgba(0,0,0,0.15);
  color: #000000;
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
  color: rgba(0,0,0,0.4);
}

[data-theme="light"] .form-group select option {
  background: #ffffff;
  color: #000000;
}

/* Alerts */
[data-theme="light"] .alert-success {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.2);
  color: #16a34a;
}

[data-theme="light"] .alert-error {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.2);
  color: #dc2626;
}

/* Badges */
[data-theme="light"] .badge-paid { background: rgba(34,197,94,0.1); color: #16a34a; border-color: rgba(34,197,94,0.2); }
[data-theme="light"] .badge-pending { background: rgba(234,179,8,0.1); color: #a16207; border-color: rgba(234,179,8,0.2); }
[data-theme="light"] .badge-failed { background: rgba(239,68,68,0.1); color: #dc2626; border-color: rgba(239,68,68,0.2); }
[data-theme="light"] .badge-cancelled { background: rgba(107,114,128,0.1); color: #6b7280; border-color: rgba(107,114,128,0.2); }
[data-theme="light"] .badge-refunded { background: rgba(107,114,128,0.1); color: #6b7280; border-color: rgba(107,114,128,0.2); }

/* Success/Failed pages */
[data-theme="light"] .success-icon { color: #16a34a; }
[data-theme="light"] .failed-icon { color: #dc2626; }

/* Order receipt */
[data-theme="light"] .order-receipt {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .receipt-row {
  border-bottom-color: rgba(0,0,0,0.08);
}

/* Policy / prose content */
[data-theme="light"] .prose-section p,
[data-theme="light"] .policy-content {
  color: rgba(0,0,0,0.75);
}

/* Contact page */
[data-theme="light"] .contact-form-wrap {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .contact-item {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.08);
}

/* CTA band */
[data-theme="light"] .cta-band {
  background: linear-gradient(135deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.02) 100%);
  border-top-color: rgba(0,0,0,0.08);
  border-bottom-color: rgba(0,0,0,0.08);
}

/* Country chips */
[data-theme="light"] .country-chip {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
}

/* Customer dashboard */
[data-theme="light"] .customer-order-items span {
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.76);
}

/* Modal */
[data-theme="light"] .modal-overlay {
  background: rgba(0,0,0,0.4);
}

[data-theme="light"] .modal-content {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.15);
}

/* Chat */
[data-theme="light"] .chat-fab {
  background: #000000;
}

[data-theme="light"] .chat-fab:hover {
  background: #333333;
}

[data-theme="light"] .chat-fab:active {
  background: #333333;
}

[data-theme="light"] .chat-window {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 16px 44px rgba(0,0,0,0.15);
}

[data-theme="light"] .chat-header {
  border-bottom-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .chat-avatar {
  background: #000000;
  color: #ffffff;
}

[data-theme="light"] .chat-name {
  color: #000000;
}

[data-theme="light"] .chat-status {
  color: #16a34a;
}

[data-theme="light"] .chat-close {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
  color: #000000;
}

[data-theme="light"] .chat-close:active {
  background: rgba(0,0,0,0.1);
}

[data-theme="light"] .chat-msg.bot {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: #000000;
}

[data-theme="light"] .chat-msg.user {
  background: #000000;
  color: #ffffff;
}

[data-theme="light"] .chat-footer {
  border-top-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .chat-footer input {
  background: #ffffff;
  border-color: rgba(0,0,0,0.12);
  color: #000000;
}

[data-theme="light"] .chat-footer input::placeholder {
  color: rgba(0,0,0,0.4);
}

[data-theme="light"] .chat-footer button {
  background: #000000;
  color: #ffffff;
}

[data-theme="light"] .chat-footer button:active {
  background: #333333;
}

/* Floating contact */
[data-theme="light"] .floating-contact-btn {
  background: #000000;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  color: #ffffff;
}

[data-theme="light"] .floating-contact-whatsapp {
  background: #16a34a;
  color: #ffffff;
}

[data-theme="light"] .floating-contact-whatsapp:focus-visible {
  color: #ffffff;
}

[data-theme="light"] .floating-contact-call {
  background: #000000;
  color: #ffffff;
}

/* Footer */
[data-theme="light"] footer {
  background: #f5f5f5;
  border-top-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .footer-brand p {
  color: #666666;
}

[data-theme="light"] .footer-socials a {
  background: rgba(0,0,0,0.06);
  color: #666666;
}

[data-theme="light"] .footer-socials a:hover {
  background: rgba(0,0,0,0.1);
  color: #000000;
}

[data-theme="light"] .footer-payment-logo {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.7);
}

[data-theme="light"] .footer-payment-square-mark {
  background: rgba(0,0,0,0.06);
  color: #888888;
}

[data-theme="light"] .footer-links h4,
[data-theme="light"] .footer-contact h4 {
  color: #888888;
}

[data-theme="light"] .footer-links li a {
  color: rgba(0,0,0,0.65);
}

[data-theme="light"] .footer-links li a:hover {
  color: #000000;
}

[data-theme="light"] .footer-contact p {
  color: rgba(0,0,0,0.65);
}

[data-theme="light"] .footer-contact i {
  color: #000000;
}

[data-theme="light"] .footer-contact a {
  color: rgba(0,0,0,0.65);
}

[data-theme="light"] .footer-contact a:hover {
  color: #000000;
}

[data-theme="light"] .footer-bottom {
  border-top-color: rgba(0,0,0,0.08);
  color: #888888;
}

/* Theme switcher */
[data-theme="light"] .theme-btn {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
  color: #888888;
}

[data-theme="light"] .theme-btn:hover {
  background: rgba(0,0,0,0.1);
  color: #000000;
  border-color: rgba(0,0,0,0.2);
}

[data-theme="light"] .theme-btn.active {
  background: rgba(0,0,0,0.08);
  color: #000000;
  border-color: rgba(0,0,0,0.2);
}

/* Code blocks */
[data-theme="light"] code {
  background: rgba(0,0,0,0.05);
}

/* Payment error text */
[data-theme="light"] .payment-error {
  color: #dc2626;
}

/* Page hero sections */
[data-theme="light"] .page-hero {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}

/* Sidebar card */
[data-theme="light"] .sidebar-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

/* Account pages */
[data-theme="light"] .account-profile-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

/* Tech partner cards */
[data-theme="light"] .tech-partner-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

/* Why cards */
[data-theme="light"] .why-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

/* USP cards */
[data-theme="light"] .usp-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

/* Partner cards */
[data-theme="light"] .partner-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

/* Card generic */
[data-theme="light"] .card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: #000000;
}

/* Hover states for touch devices */
@media(hover:none) {
  [data-theme="light"] .btn-primary:active,
  [data-theme="light"] .btn-hero-primary:active,
  [data-theme="light"] .btn-buy:active,
  [data-theme="light"] .nav-mobile-cta a:active {
    background: #333333;
  }

  [data-theme="light"] .btn-hero-secondary:active,
  [data-theme="light"] .btn-outline:active,
  [data-theme="light"] .btn-details:active,
  [data-theme="light"] .nav-links a:active,
  [data-theme="light"] .nav-link-button:active,
  [data-theme="light"] .nav-toggle:active {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.1);
  }

  [data-theme="light"] .chat-fab,
  [data-theme="light"] .chat-fab:hover,
  [data-theme="light"] .chat-fab:active {
    background: #000000;
  }

  [data-theme="light"] .chat-close:active {
    background: rgba(0,0,0,0.08);
  }
}

/* Mobile subtitle color fix */
@media(max-width:768px) {
  [data-theme="light"] .section-subtitle,
  [data-theme="light"] .page-hero p,
  [data-theme="light"] .hero-desc {
    color: #666666;
  }
}

/* Live UI stability patch: logo hover, dashboard buttons, mobile overflow. */
.nav-logo,
.footer-brand .nav-logo,
.sidebar-logo {
  background:transparent !important;
  box-shadow:none !important;
  transform:none !important;
  filter:none !important;
}

.nav-logo:hover,
.nav-logo:focus,
.nav-logo:focus-visible,
.footer-brand .nav-logo:hover,
.footer-brand .nav-logo:focus,
.footer-brand .nav-logo:focus-visible {
  background:transparent !important;
  box-shadow:none !important;
  transform:none !important;
  filter:none !important;
  outline:none;
}

.nav-logo:hover .nav-logo-icon,
.nav-logo:focus .nav-logo-icon,
.nav-logo:hover .nav-logo-text,
.nav-logo:focus .nav-logo-text {
  background:transparent !important;
  box-shadow:none !important;
  transform:none !important;
  filter:none !important;
}

.nav-logo-icon,
.chat-avatar-logo,
.sidebar-logo-image {
  flex:0 0 auto;
  max-width:100%;
  box-shadow:none !important;
}

.nav-logo-text {
  min-width:0;
  max-width:180px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.nav-links a,
.nav-link-button,
.nav-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:36px;
  line-height:1.15;
  white-space:nowrap;
}

.nav-link-button {
  width:auto;
}

.nav-links a i,
.nav-link-button i,
.nav-cta i,
.btn-primary i,
.btn-outline i,
.btn-buy i,
.btn-details i {
  width:1em;
  min-width:1em;
  text-align:center;
  line-height:1;
}

.btn-primary,
.btn-buy,
.btn-hero-primary,
button[type="submit"].btn-primary,
button[type="submit"].btn-buy {
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
}

.btn-primary :where(i,span,strong),
.btn-buy :where(i,span,strong),
.btn-hero-primary :where(i,span,strong) {
  color:currentColor !important;
  -webkit-text-fill-color:currentColor !important;
}

.btn-outline,
.btn-details,
.btn-hero-secondary {
  color:var(--text) !important;
  -webkit-text-fill-color:var(--text) !important;
}

.footer-socials {
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.footer-socials a {
  width:38px;
  height:38px;
  min-width:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  line-height:1;
}

.footer-socials a i,
.footer-socials a svg {
  width:18px;
  height:18px;
  display:block;
  line-height:1;
}

.g-recaptcha,
.recaptcha-wrap,
.recaptcha-container {
  max-width:100%;
  overflow:hidden;
}

.g-recaptcha > div {
  max-width:100%;
}

@media(max-width:1200px) {
  .nav-inner {
    gap:14px;
    padding-inline:18px;
  }

  .nav-links {
    gap:2px;
    min-width:0;
  }

  .nav-links a,
  .nav-link-button,
  .nav-cta {
    padding-inline:9px;
    font-size:.84rem;
  }

  .nav-logo-text {
    max-width:132px;
  }
}

@media(max-width:430px) {
  .nav-inner {
    padding-inline:12px;
  }

  .nav-logo {
    gap:8px;
    min-width:0;
  }

  .nav-logo-icon {
    width:32px;
    height:32px;
  }

  .nav-logo-text {
    max-width:118px;
  }

  .g-recaptcha {
    transform:scale(.88);
    transform-origin:left top;
    width:304px;
    height:70px;
    margin-inline:auto;
  }
}

@media(max-width:380px) {
  .g-recaptcha {
    transform:scale(.82);
    height:66px;
  }
}
