/* Webuzo Marketing Site — Design System */
:root {
  --blue-50: #eef3ff;
  --blue-100: #d9e4ff;
  --blue-200: #b3c8ff;
  --blue-500: #3b6ef5;
  --blue-600: #1e4fd8;
  --blue-700: #103ab1;
  --blue-800: #0c2d8a;
  --blue-900: #0a246e;
  --indigo-600: #4f46e5;
  --cyan-400: #22d3ee;
  --green-500: #10b981;
  --green-600: #059669;
  --amber-500: #f59e0b;
  --red-500: #ef4444;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 40px rgba(16, 58, 177, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 24px 60px rgba(16, 58, 177, 0.18);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1140px;
  --header-h: 72px;
  --gradient: linear-gradient(135deg, #103ab1 0%, #3b6ef5 50%, #4f46e5 100%);
  --gradient-soft: linear-gradient(180deg, #eef3ff 0%, #ffffff 55%);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-700); }
h1, h2, h3, h4, h5, h6 {
  color: var(--gray-900);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 2rem, 1280px); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--header-h);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo .logo-img {
  height: 36px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  display: block;
}
.logo:hover { opacity: 0.92; }
.logo-footer .logo-img,
.logo-footer .logo-img-footer {
  height: 40px;
  max-width: 180px;
}
.nav-desktop { display: none; align-items: center; gap: 0.15rem; }
.nav-desktop a {
  color: var(--gray-600); font-size: 0.925rem; font-weight: 500;
  padding: 0.45rem 0.7rem; border-radius: 8px;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--blue-700); background: var(--blue-50); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 1px solid var(--gray-200);
  border-radius: 10px; background: var(--white); cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--gray-800);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--gray-800);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-mobile {
  display: none; position: absolute; left: 0; right: 0; top: var(--header-h);
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 1rem; box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 0.75rem 1rem; color: var(--gray-700);
  font-weight: 500; border-radius: 8px;
}
.nav-mobile a:hover { background: var(--blue-50); color: var(--blue-700); }
.nav-mobile .btn { margin: 0.5rem 0; width: 100%; text-align: center; }
@media (min-width: 980px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-weight: 600; font-size: 0.95rem; line-height: 1.2;
  padding: 0.75rem 1.25rem; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: all var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient); color: var(--white); box-shadow: 0 4px 14px rgba(16,58,177,0.3);
}
.btn-primary:hover { color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,58,177,0.4); }
.btn-secondary {
  background: var(--white); color: var(--blue-700); border-color: var(--blue-200);
}
.btn-secondary:hover { background: var(--blue-50); color: var(--blue-800); }
.btn-ghost { background: transparent; color: var(--gray-700); }
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-900); }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: var(--gradient-soft);
  padding: 4rem 0 3.5rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(59,110,245,0.15), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(79,70,229,0.1), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--white); border: 1px solid var(--blue-100);
  color: var(--blue-700); font-size: 0.85rem; font-weight: 600;
  padding: 0.35rem 0.85rem; border-radius: 999px; margin-bottom: 1.1rem;
  box-shadow: var(--shadow);
}
.hero h1 { margin-bottom: 1rem; }
.hero-lead {
  font-size: 1.125rem; color: var(--gray-600); max-width: 36rem; margin-bottom: 1.75rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  padding-top: 1rem; border-top: 1px solid var(--gray-200);
}
.hero-stat strong { display: block; font-size: 1.35rem; color: var(--gray-900); }
.hero-stat span { font-size: 0.85rem; color: var(--gray-500); }
.hero-visual {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200); background: var(--gray-900);
  aspect-ratio: 16/10;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-visual .placeholder {
  display: flex; align-items: center; justify-content: center;
  height: 100%; min-height: 280px; color: var(--gray-400);
  background: linear-gradient(145deg, #1e293b, #0f172a);
  font-size: 0.95rem; text-align: center; padding: 2rem;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--gray-50); }
.section-dark {
  background: linear-gradient(160deg, #0a246e 0%, #103ab1 45%, #1e4fd8 100%);
  color: rgba(255,255,255,0.9);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.75rem; }
.section-head p { color: var(--gray-500); font-size: 1.05rem; margin: 0; }
.section-dark .section-head p { color: rgba(255,255,255,0.75); }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue-600); margin-bottom: 0.6rem;
}
.section-dark .eyebrow { color: var(--cyan-400); }

/* Cards / grids */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue-700);
  font-size: 1.35rem; margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.45rem; font-size: 1.1rem; }
.card p { color: var(--gray-500); font-size: 0.95rem; margin: 0; }
.card a.stretched { color: inherit; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  position: relative; padding: 0.45rem 0 0.45rem 1.6rem;
  color: var(--gray-600); font-size: 0.95rem;
}
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 700;
}

/* Logos / stack strip */
.logo-strip {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; align-items: center;
}
.logo-chip {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 999px; padding: 0.45rem 1rem;
  font-size: 0.85rem; font-weight: 600; color: var(--gray-700);
}

/* Pricing */
.pricing-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 700px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.price-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; position: relative;
}
.price-card.featured {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}
.price-card .badge {
  position: absolute; top: -12px; right: 1rem;
  background: var(--gradient); color: white; font-size: 0.75rem;
  font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 999px;
}
.price-card .plan-name { font-size: 0.9rem; font-weight: 700; color: var(--blue-600); text-transform: uppercase; letter-spacing: 0.04em; }
.price-card .price { font-size: 2.4rem; font-weight: 800; color: var(--gray-900); margin: 0.4rem 0; letter-spacing: -0.03em; }
.price-card .price span { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
.price-card .yearly { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1rem; }
.price-card ul { flex: 1; margin-bottom: 1.25rem; }
.price-toggle {
  display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem;
  background: var(--gray-100); padding: 0.35rem; border-radius: 12px; width: fit-content; margin-inline: auto;
}
.price-toggle button {
  border: 0; background: transparent; padding: 0.55rem 1.1rem;
  border-radius: 10px; font-weight: 600; color: var(--gray-600); cursor: pointer;
}
.price-toggle button.active { background: var(--white); color: var(--blue-700); box-shadow: var(--shadow); }

/* Tables */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
}
.partner-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3.25rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  color: var(--gray-800);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.partner-chip:hover {
  border-color: var(--blue-500);
  color: var(--blue-700);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--gray-200); }
table.compare {
  width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.95rem;
}
table.compare th, table.compare td {
  padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--gray-200);
}
table.compare th {
  background: var(--blue-700); color: white; font-weight: 600;
}
table.compare tr:last-child td { border-bottom: 0; }
table.compare tr:nth-child(even) td { background: var(--gray-50); }
table.compare .yes { color: var(--green-600); font-weight: 700; }
table.compare .no { color: var(--gray-400); }
table.compare .partial { color: var(--amber-500); font-weight: 600; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  background: var(--white); margin-bottom: 0.65rem; overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.15rem; font-weight: 600; color: var(--gray-900);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--blue-600); font-size: 1.25rem; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 1.15rem 1.15rem; color: var(--gray-600); }

/* Screenshots gallery */
.gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.gallery a, .gallery figure {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow); background: var(--gray-100);
  aspect-ratio: 16/10; cursor: zoom-in;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.3s; }
.gallery a:hover img { transform: scale(1.03); }
.gallery figcaption {
  font-size: 0.85rem; padding: 0.5rem 0.75rem; background: var(--white); color: var(--gray-600);
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(15,23,42,0.88); align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; background: var(--white);
  border: 0; width: 40px; height: 40px; border-radius: 50%; font-size: 1.25rem; cursor: pointer;
}

/* Page hero (inner) */
.page-hero {
  background: var(--gradient-soft);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero .lead { font-size: 1.1rem; color: var(--gray-600); max-width: 640px; margin: 0; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.35rem; font-size: 0.85rem;
  color: var(--gray-500); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--blue-600); }
.breadcrumb span { color: var(--gray-400); }

/* Split layout */
.split {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}

/* CTA band */
.cta-band {
  text-align: center; padding: 3.5rem 1.5rem;
  background: var(--gradient); border-radius: var(--radius-lg);
  color: white;
}
.cta-band h2 { color: white; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 1.5rem; }
.cta-band .btn-secondary { border-color: transparent; }

/* Footer */
.site-footer {
  background: var(--gray-900); color: var(--gray-400); padding: 3.5rem 0 1.5rem;
  margin-top: 0;
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.4fr;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; }
}
@media (min-width: 700px) and (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.site-footer h4 {
  color: var(--white); font-size: 0.9rem; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.site-footer a { color: var(--gray-400); display: block; padding: 0.25rem 0; font-size: 0.925rem; }
.site-footer a:hover { color: var(--white); }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom a { display: inline; padding: 0; margin-right: 1rem; }

/* Content prose */
.prose { max-width: 720px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose li { margin-bottom: 0.35rem; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* Tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.tab-btn {
  border: 1px solid var(--gray-200); background: var(--white);
  padding: 0.55rem 1rem; border-radius: 999px; font-weight: 600;
  color: var(--gray-600); cursor: pointer; font-size: 0.9rem;
}
.tab-btn.active { background: var(--blue-700); color: white; border-color: var(--blue-700); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Notice / callouts */
.callout {
  border-left: 4px solid var(--blue-500); background: var(--blue-50);
  padding: 1rem 1.25rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.25rem 0;
}
.callout.success { border-color: var(--green-500); background: #ecfdf5; }
.callout.warn { border-color: var(--amber-500); background: #fffbeb; }

/* Misc */
.two-col-text {
  display: grid; gap: 2rem;
}
@media (min-width: 800px) { .two-col-text { grid-template-columns: 1fr 1fr; } }
.tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  padding: 0.2rem 0.55rem; border-radius: 6px;
  background: var(--blue-50); color: var(--blue-700);
}
.muted { color: var(--gray-500); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.gap-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.stat-row {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.stat-box {
  text-align: center; padding: 1.25rem; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--gray-200);
}
.stat-box strong { display: block; font-size: 1.75rem; color: var(--blue-700); }
.stat-box span { font-size: 0.85rem; color: var(--gray-500); }

/* Apps category cards */
.app-cat {
  display: block; padding: 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--gray-200); background: var(--white);
  transition: all var(--transition); color: inherit;
}
.app-cat:hover {
  border-color: var(--blue-300); box-shadow: var(--shadow-lg); color: inherit;
  transform: translateY(-2px);
}
.app-cat h3 { color: var(--blue-700); margin-bottom: 0.4rem; }
.app-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.85rem; }
.app-tags span {
  font-size: 0.75rem; background: var(--gray-100); color: var(--gray-600);
  padding: 0.2rem 0.5rem; border-radius: 6px;
}

/* Legal */
.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { font-size: 1.35rem; margin-top: 2rem; }
.legal li { margin-bottom: 0.5rem; }

/* Newsletter */
.newsletter-band {
  background: linear-gradient(135deg, #0c2d8a 0%, #103ab1 45%, #3b6ef5 100%);
  color: #fff;
  padding: 2.75rem 0;
}
.newsletter-band h2,
.newsletter-band h3 {
  color: #fff;
  margin-bottom: 0.4rem;
}
.newsletter-band p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.25rem;
  max-width: 36rem;
}
.newsletter-band .newsletter-inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 800px) {
  .newsletter-band .newsletter-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
  }
}
.wz-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: 100%;
}
.wz-newsletter-form input[type="email"] {
  min-width: 0;
  border: 0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-900);
  background: #fff;
  box-shadow: var(--shadow);
}
.wz-newsletter-form input[type="email"]::placeholder {
  color: var(--gray-400);
}
.wz-newsletter-form button[type="submit"] {
  border: 0;
  border-radius: 10px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  background: #fff;
  color: var(--blue-700);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.wz-newsletter-form button[type="submit"]:hover {
  transform: translateY(-1px);
}
.wz-newsletter-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
}
.newsletter-inline {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.newsletter-inline h3 { margin-bottom: 0.35rem; }
.newsletter-inline p { color: var(--gray-500); margin-bottom: 1rem; }
.newsletter-inline .wz-newsletter-form button[type="submit"] {
  background: var(--gradient);
  color: #fff;
}

/* Newsletter subscribe popup — based on live webuzo.com popup, refined */
.wz-newsletter-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 280;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.wz-newsletter-popup.open {
  display: flex;
}
.wz-newsletter-popup-dialog {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  max-width: 480px;
  width: 100%;
  padding: 2.25rem 2rem 1.5rem;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
  position: relative;
  text-align: center;
  animation: wz-popup-in 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes wz-popup-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wz-newsletter-popup-brand {
  margin: 0 auto 1.15rem;
  max-width: 220px;
}
.wz-newsletter-popup-brand img {
  width: 100%;
  height: auto;
  display: block;
}
.wz-newsletter-popup-dialog h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  padding-right: 1.25rem;
  line-height: 1.3;
}
.wz-newsletter-popup-lead {
  color: var(--gray-600);
  margin: 0 auto 1.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 22rem;
}
.wz-newsletter-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}
.wz-newsletter-popup-form input[type="email"] {
  width: 100%;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid #c5c5c5;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #212121;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wz-newsletter-popup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.wz-newsletter-popup-form .wz-newsletter-submit {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(to right, #ff3834 0%, #ff7133 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.wz-newsletter-popup-form .wz-newsletter-submit:hover {
  opacity: 0.94;
}
.wz-newsletter-popup-form .wz-newsletter-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.wz-newsletter-popup-note {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  color: var(--gray-400);
}
.wz-newsletter-popup-x {
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-500);
  padding: 0;
}
.wz-newsletter-popup-x:hover {
  background: var(--gray-50);
  color: var(--gray-800);
  border-color: #bbb;
}
.wz-newsletter-popup-dismiss {
  border: 0;
  background: transparent;
  color: var(--gray-500);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0.45rem 0.5rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wz-newsletter-popup-dismiss:hover {
  color: var(--gray-700);
}
@media (max-width: 600px) {
  .wz-newsletter-popup-dialog {
    max-width: 95%;
    padding: 1.75rem 1.25rem 1.25rem;
  }
  .wz-newsletter-popup-brand { max-width: 180px; }
  .wz-newsletter-popup-dialog h3 { font-size: 1.15rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wz-newsletter-popup-dialog { animation: none; }
}

/* Newsletter modal (subscribe status / confirmation) */
.wz-newsletter-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 23, 42, 0.72);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.wz-newsletter-modal.open { display: flex; }
.wz-newsletter-modal-dialog {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  text-align: center;
}
.wz-newsletter-modal-dialog h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  text-align: center;
  padding-right: 1.5rem;
}
.wz-newsletter-modal-msg {
  color: var(--gray-600);
  text-align: center;
  margin: 0 0 1.35rem;
  line-height: 1.55;
  white-space: pre-wrap;
}
/* X only — do not share styles with the OK button */
.wz-newsletter-modal-x {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-500);
  padding: 0;
}
.wz-newsletter-modal-x:hover {
  background: var(--gray-100);
  color: var(--gray-800);
}
.wz-newsletter-modal-actions {
  display: flex;
  justify-content: center;
}
.wz-newsletter-modal-actions .btn {
  min-width: 6.5rem;
}

@media (max-width: 640px) {
  .hero { padding: 2.5rem 0 2rem; }
  .section { padding: 3rem 0; }
  .price-card.featured { transform: none; }
}
