/* ==========================================================================
   Zuriey POS - Modern Cloud POS & Business Management for Ghana & West Africa
   Ultra-Clean, High-Converting Landing Page Stylesheet (100% English)
   ========================================================================== */

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

:root {
  --zy-font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --zy-primary: #4f46e5;
  --zy-primary-light: #6366f1;
  --zy-primary-dark: #3730a3;
  --zy-primary-50: #eef2ff;
  --zy-primary-100: #e0e7ff;
  --zy-accent: #06b6d4;
  --zy-accent-purple: #8b5cf6;
  --zy-success: #10b981;
  --zy-success-light: #ecfdf5;
  --zy-dark: #0f172a;
  --zy-dark-card: #1e293b;
  --zy-slate-700: #334155;
  --zy-slate-600: #475569;
  --zy-slate-500: #64748b;
  --zy-slate-400: #94a3b8;
  --zy-slate-200: #e2e8f0;
  --zy-slate-100: #f1f5f9;
  --zy-bg-light: #f8fafc;
  --zy-white: #ffffff;
  
  --zy-radius-sm: 8px;
  --zy-radius-md: 14px;
  --zy-radius-lg: 20px;
  --zy-radius-xl: 28px;
  --zy-radius-full: 9999px;

  --zy-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --zy-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --zy-shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --zy-shadow-xl: 0 20px 40px -6px rgba(15, 23, 42, 0.12), 0 8px 12px -4px rgba(15, 23, 42, 0.06);
  --zy-shadow-glow: 0 0 40px -5px rgba(79, 70, 229, 0.25);
  
  --zy-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-family: var(--zy-font);
  color: var(--zy-slate-700);
  background-color: var(--zy-white);
  -webkit-font-smoothing: antialiased;
}

body.zy-body {
  font-family: var(--zy-font);
  color: var(--zy-slate-700);
  background-color: var(--zy-white);
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.zy-gradient-text {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.zy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--zy-primary-50);
  border: 1px solid var(--zy-primary-100);
  border-radius: var(--zy-radius-full);
  color: var(--zy-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.zy-section-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--zy-dark);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.zy-section-subtitle {
  font-size: 1.125rem;
  color: var(--zy-slate-500);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.zy-vat-disclosure {
  font-size: 0.8125rem;
  color: var(--zy-slate-500);
  margin: -1.5rem auto 2rem;
  max-width: 680px;
}
.zy-vat-disclosure i {
  color: #16a34a;
  margin-right: 0.25rem;
}

/* Header & Glass Nav */
.zy-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--zy-transition);
}

.zy-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.zy-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--zy-dark);
}

.zy-brand-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
  transition: var(--zy-transition);
}

.zy-brand-logo:hover .zy-brand-img {
  transform: scale(1.05);
}

.zy-brand-text {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--zy-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.zy-brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--zy-primary), #06b6d4);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.zy-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zy-nav-link {
  color: var(--zy-slate-600);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--zy-transition);
}

.zy-nav-link:hover {
  color: var(--zy-primary);
}

.zy-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.zy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--zy-radius-full);
  text-decoration: none;
  transition: var(--zy-transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.zy-btn-primary {
  background: linear-gradient(135deg, var(--zy-primary), #6366f1);
  color: var(--zy-white);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.zy-btn-primary:hover {
  color: var(--zy-white);
  background: linear-gradient(135deg, var(--zy-primary-dark), var(--zy-primary));
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
  transform: translateY(-2px);
}

.zy-btn-secondary {
  background: var(--zy-slate-100);
  color: var(--zy-dark);
}

.zy-btn-secondary:hover {
  background: var(--zy-slate-200);
  color: var(--zy-dark);
  transform: translateY(-2px);
}

.zy-btn-outline {
  background: transparent;
  border: 1px solid var(--zy-slate-200);
  color: var(--zy-slate-700);
}

.zy-btn-outline:hover {
  border-color: var(--zy-primary);
  color: var(--zy-primary);
  background: var(--zy-primary-50);
}

.zy-btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--zy-radius-full);
}

.zy-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--zy-dark);
  cursor: pointer;
}

.zy-mobile-menu {
  display: none !important;
}

/* Hero Section */
.zy-hero-section {
  position: relative;
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at 50% -20%, rgba(99, 102, 241, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  overflow: hidden;
}

.zy-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(238, 242, 255, 0.9);
  border: 1px solid var(--zy-primary-100);
  border-radius: var(--zy-radius-full);
  color: var(--zy-primary);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: var(--zy-shadow-sm);
}

.zy-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--zy-dark);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.zy-cycling-word {
  position: relative;
  display: inline-block;
  color: var(--zy-primary);
  border-bottom: 3px solid var(--zy-accent);
  padding-bottom: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.zy-hero-desc {
  font-size: 1.2rem;
  color: var(--zy-slate-600);
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.zy-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.zy-hero-perks {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--zy-slate-500);
  font-weight: 600;
  flex-wrap: wrap;
}

.zy-hero-perks i {
  color: var(--zy-success);
  margin-right: 4px;
}

/* Dashboard Mockup */
.zy-dashboard-mockup {
  position: relative;
  background: var(--zy-white);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-lg);
  box-shadow: var(--zy-shadow-xl), var(--zy-shadow-glow);
  padding: 1.75rem;
  transition: var(--zy-transition);
}

.zy-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--zy-slate-100);
  padding-bottom: 1rem;
}

.zy-mockup-dots {
  display: flex;
  gap: 6px;
}

.zy-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.zy-dot-red { background: #ef4444; }
.zy-dot-yellow { background: #f59e0b; }
.zy-dot-green { background: #10b981; }

.zy-mockup-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--zy-slate-600);
}

.zy-mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.zy-mockup-card {
  background: var(--zy-bg-light);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-md);
  padding: 1rem;
  transition: var(--zy-transition);
}

.zy-mockup-card:hover {
  border-color: var(--zy-primary-100);
  background: var(--zy-white);
  box-shadow: var(--zy-shadow-sm);
}

.zy-mockup-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--zy-slate-500);
  margin-bottom: 0.4rem;
}

.zy-mockup-card-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--zy-dark);
}

.zy-badge-success {
  background: var(--zy-success-light);
  color: var(--zy-success);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--zy-radius-full);
}

.zy-floating-pop {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: var(--zy-dark);
  color: var(--zy-white);
  border-radius: var(--zy-radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--zy-shadow-xl);
  animation: floatBounce 4s ease-in-out infinite;
}

.zy-pop-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--zy-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--zy-white);
}

.zy-pop-text {
  font-size: 0.82rem;
}

.zy-pop-text strong {
  display: block;
  font-size: 0.9rem;
}

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

/* Partners Bar */
.zy-partners-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--zy-slate-100);
  border-bottom: 1px solid var(--zy-slate-100);
  background: var(--zy-bg-light);
}

.zy-partners-eyebrow {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--zy-slate-500);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.zy-partners-marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.zy-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--zy-white);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-full);
  padding: 7px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--zy-slate-700);
  box-shadow: var(--zy-shadow-sm);
  transition: var(--zy-transition);
}

.zy-partner-badge:hover {
  border-color: var(--zy-primary);
  color: var(--zy-primary);
  transform: translateY(-2px);
}

.zy-partner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zy-primary);
}

/* Stats */
.zy-stats-section {
  padding: 4.5rem 0;
  background: var(--zy-white);
}

.zy-stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--zy-radius-lg);
  background: var(--zy-bg-light);
  border: 1px solid var(--zy-slate-200);
  transition: var(--zy-transition);
}

.zy-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--zy-primary-100);
  box-shadow: var(--zy-shadow-lg);
  background: var(--zy-white);
}

.zy-stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--zy-dark);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.zy-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--zy-slate-500);
}

/* Features */
.zy-features-section {
  padding: 5.5rem 0;
  background: var(--zy-bg-light);
}

.zy-feature-card {
  background: var(--zy-white);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--zy-transition);
  display: flex;
  flex-direction: column;
}

.zy-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--zy-primary-100);
  box-shadow: var(--zy-shadow-lg);
}

.zy-feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--zy-radius-md);
  background: var(--zy-primary-50);
  color: var(--zy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: var(--zy-transition);
}

.zy-feature-card:hover .zy-feature-icon-box {
  background: var(--zy-primary);
  color: var(--zy-white);
  transform: scale(1.08);
}

.zy-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--zy-dark);
  margin-bottom: 0.6rem;
}

.zy-feature-desc {
  font-size: 0.92rem;
  color: var(--zy-slate-500);
  line-height: 1.6;
  margin: 0;
}

/* ROI Calculator */
.zy-roi-section {
  padding: 5.5rem 0;
  background: var(--zy-white);
}

.zy-roi-wrapper {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--zy-radius-xl);
  padding: 3.5rem;
  color: var(--zy-white);
  box-shadow: var(--zy-shadow-xl);
}

.zy-roi-left h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--zy-white);
  margin-bottom: 1rem;
}

.zy-roi-left p {
  color: var(--zy-slate-400);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.zy-slider-group {
  margin-bottom: 2rem;
}

.zy-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.zy-slider-val {
  color: var(--zy-accent);
  font-size: 1.25rem;
  font-weight: 800;
}

.zy-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--zy-radius-full);
  background: var(--zy-slate-700);
  outline: none;
  cursor: pointer;
}

.zy-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--zy-primary-light);
  border: 3px solid var(--zy-white);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
  transition: transform 0.15s ease;
}

.zy-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.zy-roi-result-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--zy-radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(10px);
}

.zy-roi-result-item {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
}

.zy-roi-result-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.zy-roi-result-label {
  font-size: 0.88rem;
  color: var(--zy-slate-400);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.zy-roi-result-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--zy-success);
}

.zy-roi-assumptions {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--zy-radius-md);
  font-size: 0.8rem;
  color: var(--zy-slate-400);
}

/* Industry Add-ons */
.zy-addons-section {
  padding: 5.5rem 0;
  background: var(--zy-bg-light);
}

.zy-addon-card {
  background: var(--zy-white);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--zy-transition);
  display: flex;
  flex-direction: column;
}

.zy-addon-card:hover {
  border-color: var(--zy-primary);
  transform: translateY(-4px);
  box-shadow: var(--zy-shadow-lg);
}

.zy-addon-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.zy-addon-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--zy-radius-md);
  background: var(--zy-primary-50);
  color: var(--zy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.zy-addon-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--zy-dark);
  margin: 0;
}

.zy-addon-tag {
  font-size: 0.88rem;
  color: var(--zy-slate-500);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.zy-addon-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.zy-addon-feats li {
  font-size: 0.88rem;
  color: var(--zy-slate-600);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zy-addon-feats li i {
  color: var(--zy-success);
  font-size: 0.85rem;
}

/* Steps */
.zy-steps-section {
  padding: 5.5rem 0;
  background: var(--zy-white);
}

.zy-step-card {
  position: relative;
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: var(--zy-radius-lg);
  background: var(--zy-bg-light);
  border: 1px solid var(--zy-slate-200);
  transition: var(--zy-transition);
}

.zy-step-card:hover {
  background: var(--zy-white);
  border-color: var(--zy-primary-100);
  transform: translateY(-4px);
  box-shadow: var(--zy-shadow-md);
}

.zy-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--zy-primary);
  color: var(--zy-white);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.zy-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--zy-dark);
  margin-bottom: 0.5rem;
}

.zy-step-desc {
  font-size: 0.92rem;
  color: var(--zy-slate-500);
  margin: 0;
}

/* Interactive Demo */
.zy-demo-section {
  padding: 5.5rem 0;
  background: var(--zy-bg-light);
}

.zy-pos-mockup-wrapper {
  background: var(--zy-white);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-xl);
  box-shadow: var(--zy-shadow-xl);
  overflow: hidden;
}

.zy-pos-mockup-header {
  background: var(--zy-dark);
  color: var(--zy-white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zy-pos-body {
  padding: 2rem;
}

.zy-pos-product-item {
  background: var(--zy-bg-light);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-md);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--zy-transition);
}

.zy-pos-product-item:hover {
  border-color: var(--zy-primary);
  background: var(--zy-white);
  box-shadow: var(--zy-shadow-sm);
  transform: translateY(-2px);
}

.zy-pos-product-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.zy-pos-cart-panel {
  background: var(--zy-bg-light);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-md);
  padding: 1.5rem;
}

.zy-pos-cart-list {
  min-height: 140px;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.zy-pos-cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--zy-slate-200);
}

.zy-pos-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--zy-dark);
  margin-bottom: 1.25rem;
}

.zy-pos-success-alert {
  display: none;
  background: var(--zy-success-light);
  color: var(--zy-success);
  border: 1px solid #a7f3d0;
  border-radius: var(--zy-radius-sm);
  padding: 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Comparison Table */
.zy-comparison-section {
  padding: 5.5rem 0;
  background: var(--zy-white);
}

.zy-comparison-table-wrapper {
  background: var(--zy-white);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-lg);
  overflow-x: auto;
  box-shadow: var(--zy-shadow-md);
}

.zy-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  min-width: 650px;
}

.zy-comparison-table th {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--zy-slate-200);
}

.zy-comparison-table th:first-child {
  text-align: left;
}

.zy-comparison-table th.highlight-col {
  background: var(--zy-primary-50);
  color: var(--zy-primary);
}

.zy-comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.92rem;
  text-align: center;
  border-bottom: 1px solid var(--zy-slate-100);
  color: var(--zy-slate-600);
}

.zy-comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--zy-dark);
}

.zy-comparison-table td.highlight-col {
  background: rgba(238, 242, 255, 0.4);
  font-weight: 700;
  color: var(--zy-primary);
}

.zy-check-icon {
  color: var(--zy-success);
  font-size: 1.1rem;
}

.zy-cross-icon {
  color: var(--zy-slate-400);
  font-size: 1.1rem;
}

.zy-partial-pill {
  font-size: 0.75rem;
  background: #fef3c7;
  color: #b45309;
  padding: 3px 8px;
  border-radius: var(--zy-radius-full);
  font-weight: 700;
}

/* Pricing */
.zy-pricing-section {
  padding: 5.5rem 0;
  background: var(--zy-bg-light);
}

.zy-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--zy-slate-200);
  padding: 5px;
  border-radius: var(--zy-radius-full);
  margin-bottom: 3rem;
}

.zy-toggle-btn {
  border: none;
  background: transparent;
  padding: 7px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--zy-slate-600);
  border-radius: var(--zy-radius-full);
  cursor: pointer;
  transition: var(--zy-transition);
}

.zy-toggle-btn.active {
  background: var(--zy-white);
  color: var(--zy-dark);
  box-shadow: var(--zy-shadow-sm);
}

.zy-discount-pill {
  background: var(--zy-success);
  color: var(--zy-white);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: var(--zy-radius-full);
  font-weight: 800;
}

.zy-pricing-card {
  background: var(--zy-white);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-xl);
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--zy-transition);
  position: relative;
}

.zy-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--zy-shadow-xl);
}

.zy-pricing-card.featured {
  border-color: var(--zy-primary);
  box-shadow: 0 0 35px rgba(79, 70, 229, 0.18);
}

.zy-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--zy-primary), #7c3aed);
  color: var(--zy-white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: var(--zy-radius-full);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.4);
}

.zy-plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--zy-dark);
  margin-bottom: 0.35rem;
}

.zy-plan-desc {
  font-size: 0.88rem;
  color: var(--zy-slate-500);
  margin-bottom: 1.5rem;
}

.zy-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.zy-price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--zy-dark);
}

.zy-price-val {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--zy-dark);
  line-height: 1;
}

.zy-price-period {
  font-size: 0.9rem;
  color: var(--zy-slate-500);
  font-weight: 600;
}

.zy-plan-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.zy-plan-feats li {
  font-size: 0.92rem;
  color: var(--zy-slate-600);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.zy-plan-feats li i {
  color: var(--zy-success);
}

/* Testimonials */
.zy-testimonial-section {
  padding: 5.5rem 0;
  background: var(--zy-white);
}

.zy-testimonial-card {
  background: var(--zy-bg-light);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-lg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--zy-transition);
}

.zy-testimonial-card:hover {
  background: var(--zy-white);
  border-color: var(--zy-primary-100);
  box-shadow: var(--zy-shadow-md);
  transform: translateY(-4px);
}

.zy-stars {
  color: #f59e0b;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.zy-testimonial-quote {
  font-size: 0.98rem;
  color: var(--zy-slate-700);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.zy-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zy-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zy-primary), var(--zy-accent));
  color: var(--zy-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.zy-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zy-dark);
  margin: 0;
}

.zy-author-role {
  font-size: 0.8rem;
  color: var(--zy-slate-500);
  margin: 0;
}

/* Why Us */
.zy-why-section {
  padding: 5.5rem 0;
  background: var(--zy-bg-light);
}

.zy-why-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.zy-why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--zy-radius-md);
  background: var(--zy-primary-50);
  color: var(--zy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.zy-why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--zy-dark);
  margin-bottom: 0.4rem;
}

.zy-why-desc {
  font-size: 0.92rem;
  color: var(--zy-slate-500);
  margin: 0;
}

/* FAQ */
.zy-faq-section {
  padding: 5.5rem 0;
  background: var(--zy-white);
}

.zy-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.zy-accordion-item {
  background: var(--zy-bg-light);
  border: 1px solid var(--zy-slate-200);
  border-radius: var(--zy-radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--zy-transition);
}

.zy-accordion-item.active {
  background: var(--zy-white);
  border-color: var(--zy-primary);
  box-shadow: var(--zy-shadow-sm);
}

.zy-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zy-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.zy-accordion-icon {
  font-size: 0.9rem;
  color: var(--zy-primary);
  transition: transform 0.25s ease;
}

.zy-accordion-item.active .zy-accordion-icon {
  transform: rotate(180deg);
}

.zy-accordion-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--zy-slate-600);
  line-height: 1.6;
}

/* CTA */
.zy-cta-section {
  padding: 5rem 0;
  background: var(--zy-white);
}

.zy-cta-box {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  border-radius: var(--zy-radius-xl);
  padding: 4.5rem 2rem;
  text-align: center;
  color: var(--zy-white);
  box-shadow: var(--zy-shadow-xl);
}

.zy-cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--zy-white);
  margin-bottom: 1rem;
}

.zy-cta-subtitle {
  font-size: 1.15rem;
  color: var(--zy-primary-100);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.zy-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.zy-btn-whatsapp {
  background: #25d366;
  color: var(--zy-white);
}

.zy-btn-whatsapp:hover {
  background: #1ebc57;
  color: var(--zy-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.zy-cta-perks {
  font-size: 0.88rem;
  color: var(--zy-primary-100);
  font-weight: 500;
}

/* Contact Section */
.zy-contact-section {
  padding: 3rem 0;
}
.zy-contact-section .card {
  border-radius: var(--zy-radius-lg);
}

/* Footer */
.zy-footer {
  background: var(--zy-dark);
  color: var(--zy-slate-400);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--zy-slate-700);
}

.zy-footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zy-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.zy-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zy-footer-links li {
  margin-bottom: 0.65rem;
}

.zy-footer-links a {
  color: var(--zy-slate-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--zy-transition);
}

.zy-footer-links a:hover {
  color: var(--zy-white);
  padding-left: 4px;
}

.zy-footer-bottom {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
}

.zy-credit-sep {
  opacity: 0.4;
  margin: 0 0.4rem;
}
.zy-credit a {
  color: #38bdf8;
  font-weight: 600;
  transition: color 0.2s ease;
}
.zy-credit a:hover {
  color: #7dd3fc;
}

.zy-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.zy-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: var(--zy-radius-full);
  font-size: 0.78rem;
  color: var(--zy-slate-300);
}

@media (max-width: 991px) {
  .zy-nav-links, .zy-nav-actions {
    display: none;
  }
  .zy-mobile-toggle {
    display: block;
  }
  .zy-mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--zy-white);
    border-bottom: 1px solid var(--zy-slate-200);
    padding: 1.5rem;
    box-shadow: var(--zy-shadow-xl);
    display: none !important;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
  }
  .zy-mobile-menu.open {
    display: flex !important;
  }
  .zy-roi-wrapper {
    padding: 2rem;
  }
  .zy-cta-box {
    padding: 3rem 1.5rem;
  }
  .zy-floating-pop {
    position: static;
    margin-top: 1rem;
  }
}

/* ===== Tablet (768px - 991px) ===== */
@media (max-width: 991px) and (min-width: 768px) {
  .zy-hero-title {
    font-size: 2.4rem;
  }
  .zy-section-title {
    font-size: 2rem;
  }
}

/* ===== Mobile (≤ 575px) ===== */
@media (max-width: 575px) {
  .zy-hero-section {
    padding-top: 1.5rem;
  }
  .zy-hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .zy-hero-desc {
    font-size: 1rem;
  }
  .zy-hero-ctas {
    flex-direction: column;
  }
  .zy-hero-ctas .zy-btn {
    width: 100%;
    justify-content: center;
  }
  .zy-hero-perks {
    flex-direction: column;
    gap: 0.5rem;
  }

  .zy-mockup-grid {
    grid-template-columns: 1fr;
  }
  .zy-mockup-card-val {
    font-size: 1.25rem;
  }

  .zy-section-title {
    font-size: 1.75rem;
  }
  .zy-section-subtitle {
    font-size: 1rem;
  }

  .zy-stat-number {
    font-size: 2rem;
  }
  .zy-stat-label {
    font-size: 0.78rem;
  }

  .zy-pricing-card {
    padding: 1.5rem 1.25rem;
  }
  .zy-price-currency {
    font-size: 1.5rem;
  }
  .zy-price-val {
    font-size: 2.25rem;
  }
  .zy-featured-badge {
    top: -12px;
    font-size: 0.72rem;
    padding: 4px 12px;
  }

  .zy-roi-wrapper {
    padding: 1.5rem 1rem;
  }
  .zy-roi-result-card {
    padding: 1rem;
  }
  .zy-range-slider {
    height: 8px;
  }
  .zy-range-slider::-webkit-slider-thumb {
    width: 36px;
    height: 36px;
  }
  .zy-range-slider::-moz-range-thumb {
    width: 36px;
    height: 36px;
  }

  .zy-toggle-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .zy-comparison-table th,
  .zy-comparison-table td {
    font-size: 0.82rem;
    padding: 10px 8px;
  }

  .zy-cta-title {
    font-size: 1.75rem;
  }
  .zy-cta-box {
    padding: 2.5rem 1.25rem;
  }

  .zy-footer {
    padding: 2.5rem 0 1.5rem;
  }
  .zy-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .zy-trust-badges {
    gap: 0.75rem;
  }
  .zy-trust-badge {
    font-size: 0.72rem;
  }

  .zy-contact-section .card {
    padding: 1.5rem !important;
  }
}

/* ===== Touch targets ≥44px (WCAG 2.5.5) ===== */
.zy-mobile-menu .zy-nav-link {
  display: block;
  padding: 0.75rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Footer social icons ≥44px touch target */
.zy-footer .btn-circle-social {
  width: 44px !important;
  height: 44px !important;
}
