/* AppMyWeb Homepage - Matching Original Elementor Site Design */
:root {
  /* Original brand colors from Elementor site */
  --primary: #184BFC;
  --primary-light: #3B7DFC;
  --primary-dark: #1240C8;
  --primary-darker: #0A0226;
  
  --text: #4B5563;
  --text-light: #6B7280;
  --text-dark: #0A0226;
  --text-muted: #9CA3AF;
  
  --bg: #FFFFFF;
  --bg-page: #F5F5FF;
  --bg-subtle: #F1F5F9;
  --bg-dark: #0A0226;
  --bg-dark-accent: #1B1435;
  
  --border: #E2E8F0;
  --success: #10B981;
  --success-bg: #ECFDF5;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-primary: 0 8px 30px rgba(24, 75, 252, 0.25);
  
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', -apple-system, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); overflow-x: hidden; width: 100%; max-width: 100vw; }

/* Typography matching original site */
h1, h2, h3, h4, h5, h6 { font-family: 'Be Vietnam Pro', sans-serif; }
.btn-primary, .btn-primary-sm, .btn-outline, .btn-white, .btn-primary-full, .btn-outline-full, .btn-ghost { font-family: inherit; }
.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 100%; padding: 0; }
.section { padding: 70px 0; }
a { color: inherit; text-decoration: none; }
.text-gradient { background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero .text-gradient { background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
:not(.hero) .text-gradient { background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Header - Semi-transparent dark background for consistent logo rendering */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0; background: rgba(10, 2, 38, 0.75); border-bottom: 1px solid rgba(255,255,255,0.08); transition: var(--transition); }
.header::before { content: ''; position: absolute; inset: 0; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: -1; pointer-events: none; transition: var(--transition); }
.header.scrolled { background: rgba(10, 2, 38, 0.98); border-color: rgba(255,255,255,0.1); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.header .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.header .logo { justify-self: start; }
.header .nav { justify-self: center; }
.header .header-actions { justify-self: end; }
.logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.nav { display: flex; gap: 32px; }
.nav a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); transition: var(--transition); }
.nav a:hover { color: #FFFFFF; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-ghost { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); padding: 10px 16px; }
.btn-primary-sm { font-size: 14px; font-weight: 600; color: var(--primary); background: #FFFFFF; padding: 10px 20px; border-radius: var(--radius-sm); transition: var(--transition); }
.btn-primary-sm:hover { background: #F5F5FF; box-shadow: 0 8px 25px rgba(255,255,255,0.2); transform: translateY(-2px); }
/* Mobile Toggle Button */
.mobile-toggle { 
  display: none; 
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  gap: 5px; 
  background: rgba(255,255,255,0.1); 
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px; 
  cursor: pointer;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10001;
}
.mobile-toggle:hover {
  background: rgba(255,255,255,0.15);
}
.mobile-toggle span { 
  display: block;
  width: 20px; 
  height: 2px; 
  background: #FFFFFF; 
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Hamburger to X animation */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay { 
  display: none; 
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.5); 
  z-index: 9998;
}
.mobile-overlay.active { 
  display: block; 
}
/* Mobile Navigation - Dropdown from top */
.mobile-nav { 
  display: none;
  position: fixed; 
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #0A0226; 
  z-index: 9999; 
  flex-direction: column; 
  transition: transform 0.3s ease;
  transform: translateX(100%);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  box-sizing: border-box;
}
.mobile-nav.open { 
  display: flex !important;
  transform: translateX(0);
}
.mobile-nav-header { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
  background: rgba(0,0,0,0.2);
  width: 100%;
  box-sizing: border-box;
}
.mobile-nav-header .nav-logo {
  display: flex;
  align-items: center;
}
.mobile-nav-header .nav-logo img {
  height: 24px;
  filter: brightness(0) invert(1);
}
.mobile-nav-header .nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 1;
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.mobile-nav-header .nav-close:hover {
  background: rgba(255,255,255,0.2);
}

.mobile-nav-links { 
  display: flex; 
  flex-direction: column; 
  padding: 8px 0;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}
.mobile-nav-links .nav-item { 
  display: block;
  padding: 14px 16px; 
  color: rgba(255,255,255,0.9); 
  font-size: 15px; 
  font-weight: 500; 
  text-decoration: none; 
  transition: background 0.2s; 
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  box-sizing: border-box;
}
.mobile-nav-links .nav-item:hover { 
  background: rgba(255,255,255,0.08); 
  color: #fff; 
}
/* Mobile Nav Buttons */
.mobile-nav-buttons { 
  display: flex; 
  flex-direction: column;
  gap: 10px; 
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #0A0226;
  margin-top: auto;
  flex-shrink: 0;
}
.btn-ghost-mobile { 
  display: block; 
  text-align: center; 
  padding: 14px 20px; 
  color: #fff; 
  font-size: 15px; 
  font-weight: 600; 
  border: 1px solid rgba(255,255,255,0.25); 
  border-radius: 10px; 
  text-decoration: none; 
  transition: all 0.2s; 
  background: transparent;
}
.btn-ghost-mobile:hover { 
  background: rgba(255,255,255,0.08); 
  border-color: rgba(255,255,255,0.4); 
}
.btn-primary-mobile { 
  display: block; 
  text-align: center; 
  padding: 14px 20px; 
  background: linear-gradient(135deg, var(--primary) 0%, #3B7DFC 100%); 
  color: #fff; 
  font-size: 15px; 
  font-weight: 600; 
  border-radius: 10px; 
  text-decoration: none; 
  transition: all 0.2s; 
  box-shadow: 0 4px 15px rgba(24, 75, 252, 0.35);
  border: none;
}
.btn-primary-mobile:hover { 
  box-shadow: 0 6px 20px rgba(24, 75, 252, 0.5); 
}

/* Hero - Centered like original site */
.hero { min-height: auto; padding: 120px 0 90px; background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-accent) 30%, var(--primary) 70%, var(--primary) 100%); position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black 30%, transparent 70%);
}
.hero-shape { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; }
.shape-1 { width: 600px; height: 600px; background: rgba(24, 75, 252, 0.3); top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: rgba(99, 102, 241, 0.2); bottom: -100px; left: -100px; }

/* Hero centered content */
.hero-centered { text-align: center; position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; margin-bottom: 28px; backdrop-filter: blur(10px); animation: badgePulse 2.5s ease-in-out infinite; }
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 20px 4px rgba(255,255,255,0.15); }
}
.badge-icon { font-size: 14px; }
.hero-badge span { font-size: 13px; font-weight: 600; color: #FFFFFF; letter-spacing: 0.5px; }
.hero h1 { font-size: 58px; font-weight: 700; color: #FFFFFF; line-height: 1.12; margin-bottom: 24px; letter-spacing: -1.5px; }
.hero-break { display: block; } /* Creates line break in desktop */
.highlight-word { 
  position: relative; 
  display: inline-block;
}
.highlight-word::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.5) 0%, rgba(167, 139, 250, 0.5) 100%);
  border-radius: 4px;
  z-index: -1;
}
.hero-centered > p { font-size: 20px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-bottom: 28px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: #fff; background: var(--primary); padding: 14px 26px; border-radius: 6px; transition: var(--transition); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-primary); }
/* Hero button - white on dark */
.hero .btn-primary { background: #FFFFFF; color: var(--primary); padding: 16px 32px; font-size: 16px; }
.hero .btn-primary svg { transition: transform 0.3s ease; }
.hero .btn-primary:hover { background: #F5F5FF; box-shadow: 0 10px 30px rgba(255,255,255,0.25); }
.hero .btn-primary:hover svg { transform: translateX(4px); }

/* Users joined section */
.hero-users { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 50px; }
.users-avatars { display: flex; align-items: center; }
.users-avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #FFFFFF; margin-left: -10px; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.users-avatars img:first-child { margin-left: 0; }
.more-users { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; margin-left: -10px; border: 2px solid #FFFFFF; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.users-text { font-size: 14px; color: rgba(255,255,255,0.85); }
.users-text strong { color: #FFFFFF; font-weight: 700; }

/* Large hero image */
.hero-image-wrapper { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; padding: 0 40px 60px; }
.hero-image-large { width: 100%; border-radius: 16px; box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1); }

/* Hero curved bottom (like original) */
.hero-curve{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 160px;
  color: var(--bg-page);
  z-index: 1;
  pointer-events: none;
  display: block;
}

/* Remove old hero grid styles */
.hero-grid { display: none; }
.hero-visual { display: none; }
.floating-card { display: none; }
.hero-stats { display: none; }

/* Section Header */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-tag { display: inline-block; padding: 6px 14px; background: rgba(24, 75, 252, 0.1); border: 1px solid rgba(24, 75, 252, 0.2); border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.section-tag.outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 10px 24px; font-size: 13px; text-transform: none; letter-spacing: 0; font-weight: 500; }
.section-header h2 { font-size: 38px; font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 14px; }
.section-header h2.nowrap-title { white-space: nowrap; }
@media (max-width: 768px) { .section-header h2.nowrap-title { white-space: normal; } }
.section-header p { font-size: 15px; color: var(--text); }
.pricing-header .section-tag { margin-bottom: 20px; }
.pricing-header h2 { font-size: 42px; margin-bottom: 12px; }
.pricing-header p { font-size: 16px; color: var(--text); }

/* Trust Strip - Enhanced */
/* Trust Strip - Elegant transition from hero */
.trust-strip { 
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--bg-page) 100%); 
  padding: 48px 0 40px; 
  margin-top: -60px; 
  position: relative; 
  z-index: 1; 
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-size: 14px; 
  color: var(--text-dark); 
  font-weight: 500; 
  padding: 14px 24px; 
  background: rgba(255,255,255,0.95); 
  border: 1px solid rgba(226, 232, 240, 0.8); 
  border-radius: 100px; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  backdrop-filter: blur(10px); 
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); 
}
.trust-item:hover { 
  border-color: var(--primary); 
  box-shadow: 0 6px 20px rgba(24, 75, 252, 0.15); 
  transform: translateY(-2px); 
  background: #FFFFFF; 
}
.trust-icon { 
  width: 22px; 
  height: 22px; 
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%); 
  color: #fff; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 12px; 
  font-weight: 700; 
  flex-shrink: 0; 
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3); 
}

/* App Update inline info icon (on feature row) */
.au-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(24, 75, 252, 0.13);
  border: 1.5px solid rgba(24, 75, 252, 0.45);
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s, border-color 0.18s, transform 0.18s, color 0.18s, box-shadow 0.18s;
  flex-shrink: 0;
  color: var(--primary);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(24, 75, 252, 0.07);
}
.au-info-icon svg { display: block; }
.au-info-icon:hover,
.au-info-icon.au-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.18);
  box-shadow: 0 0 0 4px rgba(24, 75, 252, 0.18);
}
/* Featured (blue) card variant */
.price-card-new.featured .au-info-icon {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
  opacity: 1;
}
.price-card-new.featured .au-info-icon:hover,
.price-card-new.featured .au-info-icon.au-active {
  background: rgba(255,255,255,0.4);
  border-color: #fff;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
}

@keyframes auTooltipIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── App Update floating tooltip ── */
.au-tooltip {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 256px;
  background: #fff;
  border: 1px solid #D1D9FF;
  border-radius: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 32px rgba(24,75,252,0.14);
  pointer-events: none;
  overflow: hidden;
  font-family: inherit;
}

/* Left-border accent + label row */
.au-tooltip-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px 10px;
  border-bottom: 1px solid #EEF1FF;
}
.au-tooltip-head-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.au-tooltip-head-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Body */
.au-tooltip-body {
  padding: 12px 14px 0;
}

/* Main description */
.au-tooltip-desc {
  margin: 0 0 11px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}
.au-tooltip-desc strong {
  font-weight: 700;
  color: var(--text-dark);
}

/* File type row */
.au-tooltip-files {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 11px;
}
.au-tooltip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  background: #EEF1FF;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.au-tooltip-badge.au-badge-ios {
  background: #F1F5F9;
  color: #334155;
}

.au-tooltip-each {
  font-size: 11.5px;
  color: var(--text-light);
  white-space: nowrap;
}

/* Bottom note */
.au-tooltip-note {
  display: block;
  font-size: 11.5px;
  color: var(--text-light);
  background: #F8F9FF;
  padding: 8px 14px 10px;
  margin: 0;
  border-top: 1px solid #EEF1FF;
  line-height: 1.45;
}

/* Down arrow */
.au-tooltip-arrow {
  position: absolute;
  bottom: -9px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #D1D9FF;
}
.au-tooltip-arrow::after {
  content: '';
  position: absolute;
  top: -9px;
  left: -7px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
}
.au-tooltip.au-visible {
  display: block;
  animation: auTooltipIn 0.18s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* Platform badges on pricing cards */
.platform-badge-li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}
.price-card-new.featured .platform-badge-li {
  border-color: rgba(255,255,255,0.15);
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.android-only {
  background: #FFF7ED;
  color: #9A3412;
  border: 1px solid #FED7AA;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1px;
}
.both-platforms {
  background: #F0FDF4;
  color: #14532D;
  border: 1px solid #BBF7D0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1px;
}
.price-card-new.featured .android-only,
.price-card-new.featured .both-platforms {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
/* featured pb-check removed */
.price-card-new.featured .__unused {
}

/* Steps section — step numbers */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  flex-shrink: 0;
}

/* Dashboard preview image in How It Works */
.steps-preview-wrap {
  margin: 32px 0 8px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
}
.steps-preview-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Features Section - Premium design with smooth transition */
.features-section {
  background: var(--bg-page); 
  padding: 80px 0 100px; 
  position: relative; 
  z-index: 0; 
  margin-top: 0; 
}
.features-section .section-header { 
  text-align: center; 
  margin-bottom: 60px; 
  animation: fadeInUp 0.6s ease-out; 
}
.features-section .section-tag { 
  display: inline-block; 
  padding: 8px 18px; 
  background: rgba(24, 75, 252, 0.08); 
  color: var(--primary); 
  border-radius: 100px; 
  font-size: 13px; 
  font-weight: 600; 
  letter-spacing: 0.5px; 
  margin-bottom: 20px; 
  border: 1px solid rgba(24, 75, 252, 0.15); 
}
.features-section h2 { 
  font-size: 42px; 
  font-weight: 700; 
  color: var(--text-dark); 
  margin-bottom: 16px; 
  line-height: 1.2; 
  letter-spacing: -1px; 
}
.features-section .section-header > p { 
  font-size: 18px; 
  color: var(--text-light); 
  max-width: 600px; 
  margin: 0 auto; 
}

/* Value Cards - Premium elevated design */
.value-cards { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px; 
  margin: 0 auto; 
}
.value-card { 
  padding: 40px 32px; 
  background: var(--bg); 
  border: 1px solid var(--border); 
  border-radius: 20px; 
  text-align: center; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  position: relative; 
  overflow: hidden; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); 
}
.value-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 4px; 
  background: linear-gradient(90deg, var(--primary) 0%, #6366F1 100%); 
  opacity: 0; 
  transition: var(--transition); 
}
.value-card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(24, 75, 252, 0.1); 
  border-color: var(--primary); 
}
.value-card:hover::before { 
  opacity: 1; 
}
.value-card.featured { 
  border: 2px solid var(--primary); 
  background: linear-gradient(180deg, rgba(24, 75, 252, 0.05) 0%, var(--bg) 100%); 
  box-shadow: 0 8px 24px rgba(24, 75, 252, 0.15); 
}
.value-card.featured::before { 
  opacity: 1; 
  height: 4px; 
}
.value-card.featured:hover { 
  box-shadow: 0 24px 48px rgba(24, 75, 252, 0.2), 0 12px 24px rgba(0,0,0,0.1); 
}
.value-card-icon { 
  width: 72px; 
  height: 72px; 
  margin: 0 auto 24px; 
  background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%); 
  border-radius: 18px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: var(--transition); 
  box-shadow: 0 4px 12px rgba(24, 75, 252, 0.25); 
}
.value-card:hover .value-card-icon { 
  transform: scale(1.1) rotate(5deg); 
  box-shadow: 0 8px 20px rgba(24, 75, 252, 0.35); 
}
.value-card-icon svg { 
  stroke: #FFFFFF; 
  width: 32px; 
  height: 32px; 
}
.value-card h3 { 
  font-size: 22px; 
  font-weight: 700; 
  color: var(--text-dark); 
  margin-bottom: 14px; 
  letter-spacing: -0.5px; 
}
.value-card > p { 
  font-size: 15px; 
  color: var(--text); 
  line-height: 1.7; 
  margin-bottom: 24px; 
}
.value-card-stat { 
  display: flex; 
  align-items: baseline; 
  justify-content: center; 
  gap: 8px; 
  padding-top: 20px; 
  border-top: 1px solid var(--border); 
  margin-top: auto; 
}
.stat-number { 
  font-size: 32px; 
  font-weight: 800; 
  background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text; 
  line-height: 1; 
}
.stat-label { 
  font-size: 13px; 
  color: var(--text-light); 
  font-weight: 500; 
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Old feature highlight styles - keep as backup */
.features-highlight { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.feature-highlight-item { display: flex; align-items: flex-start; gap: 16px; max-width: 320px; }
.feature-highlight-icon { width: 56px; height: 56px; background: rgba(24, 75, 252, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(24, 75, 252, 0.15); }
.feature-highlight-icon svg { stroke: var(--primary); }
.feature-highlight-content h3 { font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.feature-highlight-content p { font-size: 14px; color: var(--text); line-height: 1.5; }

/* Old feature cards - keep for other sections if needed */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 28px 24px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; transition: var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary) 0%, #6366F1 100%); opacity: 0; transition: var(--transition); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 52px; height: 52px; background: linear-gradient(135deg, rgba(24, 75, 252, 0.1) 0%, rgba(24, 75, 252, 0.05) 100%); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 24px; border: 1px solid rgba(24, 75, 252, 0.1); }
.feature-card h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text); line-height: 1.5; }

/* Combined Frame Section - Elevated Design */
.combined-frame-section { 
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0D0520 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern overlay */
.combined-frame-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Main container - no extra frame needed */
.main-dark-frame {
  position: relative;
  z-index: 1;
}

/* Step Cards - Elevated with gradient glow */
.steps-grid-dark { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }

.step-card-dark { 
  padding: 32px 28px; 
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; 
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.step-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #8B5CF6 50%, var(--primary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card-dark:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 75, 252, 0.3);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.3),
    0 0 60px rgba(24, 75, 252, 0.15);
}

.step-card-dark:hover::before {
  opacity: 1;
}

/* Templates Section - Glassmorphism style */
.templates-inner-frame {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 60px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.templates-inner-frame::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(24, 75, 252, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.templates-inner-frame::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Templates inside dark frame */
.templates-layout-dark { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.templates-content-dark h2 { font-size: 36px; font-weight: 700; color: #FFFFFF; line-height: 1.2; margin-bottom: 16px; }
.templates-content-dark > p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; }
/* Templates Devices - Code-generated templates */
.templates-devices-wrapper { 
  display: flex; 
  gap: 24px; 
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}
.templates-slider-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}

.template-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  margin-left: 0 !important;
  flex: 0 0 auto;
}

.template-device:nth-child(2) {
  z-index: 2;
}

.template-device:nth-child(3) {
  z-index: 3;
}

.template-device:nth-child(4) {
  z-index: 4;
}

.device-frame {
  width: 160px !important;
  height: 320px !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-radius: 24px;
  border: 4px solid #1E293B;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.device-frame::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background: #1E293B;
  border-radius: 4px;
  z-index: 10;
}

.template-device:hover .device-frame {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.35),
    0 0 40px rgba(24, 75, 252, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: var(--primary);
}

.template-device.selected .device-frame {
  border-color: var(--primary);
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.25),
    0 0 25px rgba(24, 75, 252, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.device-label {
  font-size: 13px !important;
  color: rgba(255,255,255,0.7) !important;
  font-weight: 600;
  transition: color 0.3s ease;
  display: block !important;
  text-align: center !important;
  white-space: nowrap;
  margin-top: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  line-height: 1.4;
}

.template-device:hover .device-label {
  color: var(--primary-light) !important;
}
.template-device.selected .device-label {
  color: rgba(255,255,255,0.7) !important;
}

/* ===== DRAWER Template ===== */
.tpl-drawer-simple {
  display: flex;
  flex: 1;
  background: #F1F5F9;
  margin-top: 14px;
  position: relative;
}

.drawer-menu-side {
  width: 65%;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-item {
  height: 8px;
  background: #CBD5E1;
  border-radius: 4px;
}

.menu-item.short {
  width: 70%;
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  background: #FFFFFF;
  box-shadow: -4px 0 15px rgba(0,0,0,0.08);
}

/* ===== TABS + BAR Template ===== */
.tpl-tabs-simple {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 14px;
  background: #F8FAFC;
}

.tabs-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  background: #F1F5F9;
}

.tab-icon-box {
  width: 18px;
  height: 18px;
  background: #CBD5E1;
  border-radius: 4px;
}

.tab-bar-line {
  flex: 1;
  height: 10px;
  background: #CBD5E1;
  border-radius: 5px;
}

.tabs-content-area {
  flex: 1;
  background: #FFFFFF;
}

.tabs-nav-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 14px 20px;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

.nav-square {
  width: 16px;
  height: 16px;
  background: #94A3B8;
  border-radius: 3px;
}

.nav-circle {
  width: 16px;
  height: 16px;
  background: #94A3B8;
  border-radius: 50%;
}

.nav-triangle {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 16px solid #94A3B8;
}

/* ===== BAR ONLY Template ===== */
.tpl-bar-simple {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 14px;
  background: #F8FAFC;
}

.bar-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
}

.bar-icon-box {
  width: 18px;
  height: 18px;
  background: #CBD5E1;
  border-radius: 4px;
}

.bar-title-line {
  flex: 1;
  height: 10px;
  background: #CBD5E1;
  border-radius: 5px;
}

.bar-content-area {
  flex: 1;
  background: #FFFFFF;
}

/* ===== BLANK Template ===== */
.tpl-blank-new {
  flex: 1;
  background: #FFFFFF;
  margin-top: 14px;
}
.btn-white-outline { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  font-size: 15px; 
  font-weight: 600; 
  color: #FFFFFF; 
  background: transparent; 
  border: 2px solid rgba(255,255,255,0.3); 
  padding: 14px 28px; 
  border-radius: 8px; 
  transition: var(--transition);
  font-family: inherit;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.templates-features-dark { display: flex; gap: 24px; margin-top: 28px; }
.template-feature-dark { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }
.template-feature-dark svg { stroke: var(--primary-light); }

/* Templates devices in dark */
.templates-devices-dark { display: flex; gap: 20px; align-items: flex-start; justify-content: center; }
.templates-devices-dark .device-label { color: rgba(255,255,255,0.7); }
.templates-devices-dark .template-device.selected .device-label { color: var(--primary-light); }

/* Steps - Dark Section (like original site) */
.steps-section-dark { background: var(--bg-dark); padding: 80px 0; }
.section-header-dark { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-tag-dark { display: inline-block; padding: 8px 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; font-size: 13px; font-weight: 500; color: #FFFFFF; margin-bottom: 16px; }
.section-header-dark h2 { font-size: 40px; font-weight: 700; color: #FFFFFF; line-height: 1.2; margin-bottom: 14px; }
.section-header-dark p { font-size: 16px; color: rgba(255,255,255,0.7); }
.text-gradient-light { background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.steps-grid-dark { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card-dark { 
  padding: 28px 24px; 
  background: transparent; 
  border: 1px solid rgba(255,255,255,0.15); 
  border-radius: 16px; 
  transition: var(--transition); 
}
.step-card-dark:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-4px); }
.step-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.step-card-dark h3 { font-size: 22px; font-weight: 600; color: #FFFFFF; margin: 0; }
.step-card-dark p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }
.step-arrow { 
  width: 42px; 
  height: 42px; 
  background: linear-gradient(135deg, rgba(24, 75, 252, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: all 0.3s ease;
}
.step-card-dark:hover .step-arrow {
  background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(24, 75, 252, 0.4);
}
.step-arrow svg { stroke: rgba(255,255,255,0.6); transition: all 0.3s ease; }
.step-card-dark:hover .step-arrow svg { stroke: #FFFFFF; }

/* Old Steps (keep for backup) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { padding: 32px 24px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; text-align: center; transition: var(--transition); }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.step-card.highlight { background: var(--primary); border-color: var(--primary); }
.step-card.highlight .step-number, .step-card.highlight h3, .step-card.highlight p { color: #fff; }
.step-card.highlight .step-icon-wrap { background: rgba(255,255,255,0.2); }
.step-card.highlight .step-icon-wrap svg { stroke: #fff; }
.step-header { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 16px; }
.step-number { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 1px; }
.step-icon-wrap { width: 60px; height: 60px; background: rgba(24, 75, 252, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(24, 75, 252, 0.15); }
.step-icon-wrap svg { stroke: var(--primary); }
.step-card h3 { font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text); }

/* Templates - New Design (connected to How It Works dark section) */
.templates-section-new { background: var(--bg-page); padding: 80px 0; border-radius: 24px 24px 0 0; margin-top: -20px; position: relative; z-index: 1; }
.templates-layout-new { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.templates-content-new { }
.section-tag-dark-alt { display: inline-block; padding: 8px 16px; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 500; color: #FFFFFF; margin-bottom: 20px; }
.templates-content-new h2 { font-size: 40px; font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 18px; }
.templates-content-new > p { font-size: 16px; color: var(--text); line-height: 1.6; margin-bottom: 24px; }
.btn-primary-light { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--primary); background: #FFFFFF; border: 2px solid var(--primary); padding: 14px 28px; border-radius: 8px; transition: var(--transition); }
.btn-primary-light:hover { background: var(--primary); color: #FFFFFF; }
.templates-features { display: flex; gap: 24px; margin-top: 28px; }
.template-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-dark); font-weight: 500; }
.template-feature svg { stroke: var(--primary); }
.templates-image-new img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-xl); }

/* Templates Devices - Clean Design */
.templates-devices { 
  display: flex; 
  gap: 20px; 
  align-items: flex-start; 
  justify-content: center;
  flex-wrap: wrap;
}
.template-device { 
  text-align: center; 
  transition: var(--transition);
  flex: 0 0 auto;
  margin-left: 0;
  position: relative;
  z-index: 1;
}
.template-device:nth-child(2) {
  z-index: 2;
}
.template-device:nth-child(3) {
  z-index: 3;
}
.template-device:nth-child(4) {
  z-index: 4;
}
.template-device:hover { transform: translateY(-6px); }
.template-device:hover .device-frame { box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: var(--primary); }

.device-frame { 
  width: 160px; 
  height: 320px; 
  background: #FAFAFA; 
  border: 2px solid #E5E7EB; 
  border-radius: 16px; 
  overflow: hidden; 
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
.device-frame > .tpl-drawer,
.device-frame > .tpl-tabs,
.device-frame > .tpl-bar { flex: 1; overflow: hidden; }
.device-frame > .tpl-blank { flex: 1; }
.device-frame > .tpl-bottom-bar { flex-shrink: 0; }

/* Selected state */
.template-device.selected .device-frame { 
  border: 2px solid var(--primary); 
  box-shadow: 0 0 0 3px rgba(24, 75, 252, 0.1), 0 8px 24px rgba(24, 75, 252, 0.12); 
}
.template-device.selected .device-label { color: var(--primary); font-weight: 600; }

.device-label { 
  display: block !important; 
  margin-top: 14px; 
  font-size: 13px; 
  font-weight: 500; 
  color: var(--text-dark); 
  text-align: center;
  white-space: nowrap;
}

/* === DRAWER + BAR === */
.tpl-drawer { flex: 1; display: flex; min-height: 0; }
.drawer-menu { 
  width: 55%; 
  background: #F3F4F6; 
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-line { height: 10px; background: #D1D5DB; border-radius: 20px; }
.drawer-content { flex: 1; background: #FAFAFA; }

/* === TABS + BAR / BAR === */
.tpl-tabs, .tpl-bar { flex: 1; display: flex; flex-direction: column; }
.tabs-header, .bar-header { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  padding: 12px 10px;
  background: #F3F4F6;
  border-bottom: 1px solid #E5E7EB;
}
.tab-square { width: 24px; height: 24px; background: #D1D5DB; border-radius: 6px; }
.tab-line { flex: 1; height: 12px; background: #D1D5DB; border-radius: 20px; }
.tabs-content, .bar-content { flex: 1; background: #FAFAFA; }

/* === BLANK === */
.tpl-blank { flex: 1; background: #FAFAFA; }

/* === BOTTOM BAR === */
.tpl-bottom-bar { 
  display: flex; 
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 12px; 
  background: #FAFAFA;
  border-top: 1px solid #E5E7EB;
}

/* Icons */
.icon-circle { 
  width: 24px; 
  height: 24px; 
  background: #D1D5DB;
  border-radius: 50%;
}
.icon-square { 
  width: 22px; 
  height: 22px; 
  background: #D1D5DB;
  border-radius: 4px;
}
.icon-triangle { 
  width: 0; 
  height: 0; 
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #D1D5DB;
}

/* Old Templates (keep for backup) */
.templates-section { background: var(--bg-page); }
.templates-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: center; }
.templates-content h2 { font-size: 28px; font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 20px; }
.check-list { list-style: none; margin-bottom: 24px; }
.check-list li { display: flex; align-items: center; gap: 10px; padding: 12px 0; font-size: 15px; color: var(--text-dark); border-bottom: 1px solid var(--border); }
.check-icon { color: var(--success); font-weight: 600; }
/* templates-devices defined above - avoid duplicate */
.device-screen { width: 100px; height: 180px; background: var(--bg); border: 2px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
.device-screen:hover { border-color: var(--primary-light); transform: translateY(-4px); }
.screen-sidebar { width: 28px; height: 100%; background: var(--bg-subtle); border-right: 1px solid var(--border); }
.screen-main { flex: 1; padding: 14px 10px; display: flex; flex-direction: column; gap: 8px; }
.screen-line { height: 8px; background: var(--bg-subtle); border-radius: 4px; }
.screen-line.short { width: 60%; }
.screen-tabs { display: flex; gap: 4px; padding: 8px 10px 0; }
.screen-tabs span { flex: 1; height: 4px; background: var(--primary-light); border-radius: 2px; opacity: 0.4; }
.screen-tabs span:first-child { opacity: 1; }
.screen-bar { display: flex; justify-content: space-around; padding: 8px; border-top: 1px solid var(--border); }
.screen-bar span { width: 18px; height: 18px; background: var(--bg-subtle); border-radius: 50%; }
.drawer { flex-direction: row; }
.drawer .screen-main { display: flex; flex-direction: column; gap: 8px; padding: 14px 10px; }

/* Stats - Premium Design */
.stats-section-new { background: var(--bg-page); padding:200px 0; }
.stats-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.stats-header h2 { font-size: 40px; font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 14px; }
.stats-header h2 br { display: block; }
.stats-header p { font-size: 16px; color: var(--text); }

.stats-row { display: flex; justify-content: space-around; align-items: center; gap: 0; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 50px 40px; box-shadow: var(--shadow-md); margin: 0 auto; }
.stat-item-new { display: flex; align-items: center; gap: 20px; padding: 0 40px; }
.stat-icon-new { font-size: 48px; }
.stat-content { display: flex; flex-direction: column; }
.stat-number-new { font-size: 36px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.stat-label-new { font-size: 14px; color: var(--text); margin-top: 4px; }
.stat-divider { width: 1px; height: 70px; background: var(--border); }

/* Old Stats (keep for backup) */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card { padding: 28px 20px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; text-align: center; transition: var(--transition); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.stat-icon { font-size: 28px; margin-bottom: 12px; }
.stat-value { font-size: 40px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text); margin-top: 8px; }

/* Showcase - With Dark Frame */
.showcase-section-new { background: #0D0520; padding: 90px 0; overflow: hidden; }
.showcase-header { text-align: center; margin-bottom: 40px; max-width: 820px; margin-left: auto; margin-right: auto; }
.showcase-tag { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }
.showcase-header h2 { font-size: 44px; font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.showcase-header p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-top: 10px; }

.showcase-rail { width: 100%; position: relative; }
.showcase-rail::before,
.showcase-rail::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}
.showcase-rail::before{
  left: 0;
  background: linear-gradient(90deg, #0D0520 0%, rgba(13,5,32,0) 100%);
}
.showcase-rail::after{
  right: 0;
  background: linear-gradient(270deg, #0D0520 0%, rgba(13,5,32,0) 100%);
}

.showcase-slider-new { width: 100%; overflow: hidden; }
.showcase-track-new { 
  display: flex; 
  gap: 34px; 
  width: max-content; 
  will-change: transform;
  --scroll-distance: -1800px;
  --scroll-duration: 40s;
}
.showcase-track-new.marquee-active {
  animation: marqueeScroll var(--scroll-duration) linear infinite;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(var(--scroll-distance)); }
}
.showcase-set{ display: flex; gap: 34px; flex: 0 0 auto; }
.showcase-item-new{ margin-right: 0; }
.showcase-set .showcase-item-new:last-child{ margin-right: 0; }
.showcase-item-new { flex: 0 0 260px; text-align: center; position: relative; display: flex; flex-direction: column; align-items: center; }
.showcase-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); display: inline-block; margin-top: 14px; }
.showcase-slider-new:hover .showcase-track-new { animation-play-state: paused; }

/* Phone mockups (code-generated, not real screens) */
.phone-mockup{
  --accent: #6366F1;
  --phone-scale: 1;
  width: 240px;
  max-width: 100%;
  height: 480px;
  border-radius: 28px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.30);
  padding: 8px;
  position: relative;
  transform: translateY(0) scale(var(--phone-scale));
  transform-origin: top center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.phone-mockup::after{
  content:"";
  position:absolute;
  inset: 8px;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,0.06);
  pointer-events:none;
}
.showcase-item-new:hover .phone-mockup{
  transform: translateY(-10px) scale(var(--phone-scale, 1));
  box-shadow: 0 45px 110px rgba(0,0,0,0.45);
}
.phone-notch{
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: rgba(15,23,42,0.12);
  border-radius: 999px;
  z-index: 2;
}
.phone-screen{
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,0.08);
}
.phone-screen::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.0) 1%),
    radial-gradient(circle at 18% 12%, rgba(37,99,235,0.14) 0%, transparent 48%),
    radial-gradient(circle at 92% 38%, rgba(167,139,250,0.12) 0%, transparent 58%);
  pointer-events:none;
}

/* simple UI building blocks */
.ui-top{ display:flex; align-items:center; justify-content:space-between; padding: 34px 18px 14px; position: relative; z-index: 1; }
.ui-pill{ height: 12px; width: 92px; border-radius: 999px; background: rgba(15,23,42,0.10); }
.ui-pill.wide{ width: 140px; }
.ui-dot{ width: 26px; height: 26px; border-radius: 10px; background: rgba(99,102,241,0.16); box-shadow: inset 0 0 0 1px rgba(99,102,241,0.18); }
.phone-mockup .ui-dot{ background: color-mix(in srgb, var(--accent) 18%, transparent); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 22%, transparent); }
.ui-avatar{ width: 28px; height: 28px; border-radius: 12px; background: rgba(37,99,235,0.14); box-shadow: inset 0 0 0 1px rgba(37,99,235,0.18); }
.phone-mockup .ui-avatar{ background: color-mix(in srgb, var(--accent) 14%, transparent); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent); }
.ui-hero{ height: 150px; margin: 0 18px; border-radius: 18px; background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(99,102,241,0.12)); box-shadow: inset 0 0 0 1px rgba(37,99,235,0.12); position: relative; z-index: 1; }
.ui-hero.tall{ height: 190px; }
.ui-photo-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 6px 14px 0; position: relative; z-index: 1; }
.ui-photo{
  height: 100px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(167,139,250,0.14));
  box-shadow: inset 0 0 0 1px rgba(15,23,42,0.07);
  position: relative;
  overflow: hidden;
}
.ui-photo::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 55%);
  transform: rotate(-8deg);
  opacity: 0.6;
}
.ui-photo::after{
  content:"";
  position:absolute;
  right: 12px;
  top: 12px;
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 10px 20px rgba(2,6,23,0.10), inset 0 0 0 1px rgba(15,23,42,0.08);
}

/* Category icons inside the "photo" (SVG masks) */
.phone-v1 .ui-photo::after{ /* commerce bag */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 8V7a5 5 0 0 1 10 0v1h2a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10a1 1 0 0 1 1-1h2zm2 0h6V7a3 3 0 0 0-6 0v1z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 8V7a5 5 0 0 1 10 0v1h2a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10a1 1 0 0 1 1-1h2zm2 0h6V7a3 3 0 0 0-6 0v1z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
  background: var(--accent);
}
.phone-v2 .ui-photo::after{ /* travel pin */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7zm0 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7zm0 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
  background: var(--accent);
}
.phone-v3 .ui-photo::after{ /* restaurant fork */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h2v7a2 2 0 0 1-2 2v11H4V11a2 2 0 0 1-2-2V2h2v7h2V2zm9 0c2.2 0 4 1.8 4 4v16h-2v-7h-2V2h0z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h2v7a2 2 0 0 1-2 2v11H4V11a2 2 0 0 1-2-2V2h2v7h2V2zm9 0c2.2 0 4 1.8 4 4v16h-2v-7h-2V2h0z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
  background: var(--accent);
}
.phone-v4 .ui-photo::after{ /* music note */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 18a3 3 0 1 1-1-2.236V4l12-2v10a3 3 0 1 1-1-2.236V4.8L10 6.467V18z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 18a3 3 0 1 1-1-2.236V4l12-2v10a3 3 0 1 1-1-2.236V4.8L10 6.467V18z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
  background: var(--accent);
}
.phone-v6 .ui-photo::after{ /* analytics chart */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 19h16v2H2V3h2v16zm3-2 3-4 3 2 5-7 2 1-6 9-3-2-3 4H7z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 19h16v2H2V3h2v16zm3-2 3-4 3 2 5-7 2 1-6 9-3-2-3 4H7z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
  background: var(--accent);
}
.phone-v7 .ui-photo::after{ /* sports ball */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm6.2 6.2-2.7-.6-1.8-2.1 1.3-2.4A8 8 0 0 1 18.2 8.2zM12 4.1l2.1 2.4-1 2.2H10.9l-1-2.2L12 4.1zM5.8 8.2A8 8 0 0 1 9 3.1l1.3 2.4-1.8 2.1-2.7.6zm.6 2.2 2.3-.5 1.6 1.6-.4 2.3-2.5 1.2A7.9 7.9 0 0 1 6.4 10.4zM12 19.9a7.9 7.9 0 0 1-3.7-.9l1.2-2.5 2.3-.4 2.3.4 1.2 2.5a7.9 7.9 0 0 1-3.6.9zm6.3-4.9-2.5-1.2-.4-2.3 1.6-1.6 2.3.5c.1.3.2.7.2 1.1 0 1.4-.4 2.6-1.2 3.5z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm6.2 6.2-2.7-.6-1.8-2.1 1.3-2.4A8 8 0 0 1 18.2 8.2zM12 4.1l2.1 2.4-1 2.2H10.9l-1-2.2L12 4.1zM5.8 8.2A8 8 0 0 1 9 3.1l1.3 2.4-1.8 2.1-2.7.6zm.6 2.2 2.3-.5 1.6 1.6-.4 2.3-2.5 1.2A7.9 7.9 0 0 1 6.4 10.4zM12 19.9a7.9 7.9 0 0 1-3.7-.9l1.2-2.5 2.3-.4 2.3.4 1.2 2.5a7.9 7.9 0 0 1-3.6.9zm6.3-4.9-2.5-1.2-.4-2.3 1.6-1.6 2.3.5c.1.3.2.7.2 1.1 0 1.4-.4 2.6-1.2 3.5z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
  background: var(--accent);
}
.ui-photo.tall{ height: 180px; margin: 0 14px; }
.ui-cards{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px 18px 0; position: relative; z-index: 1; }
.ui-card{ height: 74px; border-radius: 16px; background: rgba(15,23,42,0.06); box-shadow: inset 0 0 0 1px rgba(15,23,42,0.08); }
.ui-list{ padding: 10px 18px 0; position: relative; z-index: 1; }
.ui-row{ height: 14px; border-radius: 999px; background: rgba(15,23,42,0.08); margin: 12px 0; }
.ui-grid{ padding: 6px 18px 0; display:grid; grid-template-columns: repeat(4, 1fr); gap: 10px; position: relative; z-index: 1; }
.ui-tile{ height: 44px; border-radius: 14px; background: rgba(99,102,241,0.10); box-shadow: inset 0 0 0 1px rgba(99,102,241,0.12); }
.ui-wave{ height: 120px; margin: 0 18px; border-radius: 18px; background: linear-gradient(135deg, rgba(167,139,250,0.18), rgba(37,99,235,0.12)); position: relative; z-index: 1; }
.ui-chips{ display:flex; gap: 10px; padding: 14px 18px 0; position: relative; z-index: 1; }
.ui-chip{ width: 64px; height: 26px; border-radius: 999px; background: rgba(15,23,42,0.06); box-shadow: inset 0 0 0 1px rgba(15,23,42,0.08); }
.ui-metrics{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px 18px 0; position: relative; z-index: 1; }
.ui-metric{ height: 60px; border-radius: 16px; background: rgba(37,99,235,0.10); box-shadow: inset 0 0 0 1px rgba(37,99,235,0.10); }
.ui-chart{ height: 140px; margin: 12px 18px 0; border-radius: 18px; background: rgba(15,23,42,0.06); box-shadow: inset 0 0 0 1px rgba(15,23,42,0.08); position: relative; z-index: 1; overflow:hidden; }
.ui-chart::after{
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  bottom: 22px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.0), rgba(99,102,241,0.9), rgba(99,102,241,0.0), transparent);
  transform: rotate(-8deg);
}
.ui-nav{ position:absolute; left: 14px; right: 14px; bottom: 14px; height: 56px; border-radius: 18px; background: rgba(255,255,255,0.86); box-shadow: 0 10px 25px rgba(2,6,23,0.08), inset 0 0 0 1px rgba(15,23,42,0.06); display:flex; align-items:center; justify-content:space-around; gap: 10px; z-index: 2; backdrop-filter: blur(10px); }
.ui-nav .nav-ic{ width: 16px; height: 16px; background: rgba(15,23,42,0.35); opacity: 0.9; }
.ui-nav .nav-ic.active{ background: var(--accent); opacity: 1; }
.nav-home{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 2 12h3v8h6v-5h2v5h6v-8h3z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 2 12h3v8h6v-5h2v5h6v-8h3z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-search{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 14h-.79l-.28-.27A6 6 0 1 0 14 15.5l.27.28v.79L20 21.5 21.5 20zM10 15a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 14h-.79l-.28-.27A6 6 0 1 0 14 15.5l.27.28v.79L20 21.5 21.5 20zM10 15a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-heart{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 21s-6.7-4.3-9.2-7.4C.6 11.3 1 8 3.2 6.6A5.3 5.3 0 0 1 12 8a5.3 5.3 0 0 1 8.8-1.4c2.2 1.4 2.6 4.7.4 7-2.5 3.1-9.2 7.4-9.2 7.4z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 21s-6.7-4.3-9.2-7.4C.6 11.3 1 8 3.2 6.6A5.3 5.3 0 0 1 12 8a5.3 5.3 0 0 1 8.8-1.4c2.2 1.4 2.6 4.7.4 7-2.5 3.1-9.2 7.4-9.2 7.4z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-cart{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zM6.2 6h13.3l-1.3 7.3a2 2 0 0 1-2 1.7H8.3a2 2 0 0 1-2-1.6L4.5 4H2V2h3a1 1 0 0 1 1 .8z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zM6.2 6h13.3l-1.3 7.3a2 2 0 0 1-2 1.7H8.3a2 2 0 0 1-2-1.6L4.5 4H2V2h3a1 1 0 0 1 1 .8z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-map{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7zm0 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7zm0 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-calendar{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3v18H4V4h3V2zm13 8H4v10h16V10z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3v18H4V4h3V2zm13 8H4v10h16V10z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-user{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-menu{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-star{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 17.3-5.5 3 1.4-6.1L3 9.2l6.2-.5L12 3l2.8 5.7 6.2.5-4.9 5 1.4 6.1z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 17.3-5.5 3 1.4-6.1L3 9.2l6.2-.5L12 3l2.8 5.7 6.2.5-4.9 5 1.4 6.1z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-play{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-music{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 18a3 3 0 1 1-1-2.236V4l12-2v10a3 3 0 1 1-1-2.236V4.8L10 6.467V18z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 18a3 3 0 1 1-1-2.236V4l12-2v10a3 3 0 1 1-1-2.236V4.8L10 6.467V18z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-trophy{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10v3h3v3a5 5 0 0 1-5 5h-1a5 5 0 0 1-4 3.9V20h3v2H8v-2h3v-3.1A5 5 0 0 1 7 13H6a5 5 0 0 1-5-5V5h3zM4 7v1a3 3 0 0 0 3 3h1V5H4zm16 0h-4v6h1a3 3 0 0 0 3-3z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10v3h3v3a5 5 0 0 1-5 5h-1a5 5 0 0 1-4 3.9V20h3v2H8v-2h3v-3.1A5 5 0 0 1 7 13H6a5 5 0 0 1-5-5V5h3zM4 7v1a3 3 0 0 0 3 3h1V5H4zm16 0h-4v6h1a3 3 0 0 0 3-3z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-chart{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 21h18v-2H5V3H3zm4-4h3V9H7zm5 0h3V5h-3zm5 0h3v-7h-3z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 21h18v-2H5V3H3zm4-4h3V9H7zm5 0h3V5h-3zm5 0h3v-7h-3z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-bell{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 22a2 2 0 0 0 2-2H10a2 2 0 0 0 2 2zm6-6V11a6 6 0 0 0-5-5.9V4a1 1 0 0 0-2 0v1.1A6 6 0 0 0 6 11v5L4 18v1h16v-1z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 22a2 2 0 0 0 2-2H10a2 2 0 0 0 2 2zm6-6V11a6 6 0 0 0-5-5.9V4a1 1 0 0 0-2 0v1.1A6 6 0 0 0 6 11v5L4 18v1h16v-1z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
.nav-settings{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.4 13.5a7.8 7.8 0 0 0 0-3l2-1.5-2-3.5-2.4 1a8 8 0 0 0-2.6-1.5l-.4-2.6h-4l-.4 2.6a8 8 0 0 0-2.6 1.5l-2.4-1-2 3.5 2 1.5a7.8 7.8 0 0 0 0 3l-2 1.5 2 3.5 2.4-1a8 8 0 0 0 2.6 1.5l.4 2.6h4l.4-2.6a8 8 0 0 0 2.6-1.5l2.4 1 2-3.5zM12 15a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.4 13.5a7.8 7.8 0 0 0 0-3l2-1.5-2-3.5-2.4 1a8 8 0 0 0-2.6-1.5l-.4-2.6h-4l-.4 2.6a8 8 0 0 0-2.6 1.5l-2.4-1-2 3.5 2 1.5a7.8 7.8 0 0 0 0 3l-2 1.5 2 3.5 2.4-1a8 8 0 0 0 2.6 1.5l.4 2.6h4l.4-2.6a8 8 0 0 0 2.6-1.5l2.4 1 2-3.5zM12 15a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}

/* Sports scoreboard */
.ui-score{ display:flex; align-items:center; justify-content:space-between; gap: 12px; padding: 6px 18px 0; position: relative; z-index: 1; }
.ui-score-badge{ width: 44px; height: 44px; border-radius: 14px; background: rgba(99,102,241,0.14); box-shadow: inset 0 0 0 1px rgba(99,102,241,0.16); display:flex; align-items:center; justify-content:center; font-weight: 800; color: rgba(15,23,42,0.75); }
.ui-score-mid{ flex: 1; display:flex; gap: 8px; justify-content:center; }
.ui-score-mid span{ width: 42px; height: 10px; border-radius: 999px; background: rgba(15,23,42,0.08); }

/* Real Image Photos (from Unsplash) */
.ui-photo.real-img{ 
  background-color: #E5E7EB;
  background-size: cover !important; 
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.ui-photo.real-img::before,
.ui-photo.real-img::after{ display: none !important; }
.ui-photo.tall{ height: 180px; margin: 0 18px; }
.ui-photo.immersive{ 
  height: 200px; 
  margin: 0 14px; 
  border-radius: 18px; 
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.ui-photo.full-bleed{ margin: 0 14px; border-radius: 20px; box-shadow: 0 12px 26px rgba(2,6,23,0.18); }

/* Blank template (no header/footer) */
.mockup-blank .phone-notch,
.mockup-blank .ui-top,
.mockup-blank .ui-nav{ display: none; }
.mockup-blank .phone-screen{ background: #FFFFFF; }
.ui-blank-title{ padding: 28px 22px 6px; font-size: 14px; font-weight: 800; color: rgba(15,23,42,0.95); }
.ui-blank-sub{ padding: 0 22px 12px; font-size: 9px; font-weight: 600; color: rgba(15,23,42,0.45); letter-spacing: 0.2px; }
.mockup-blank .ui-travel-info{ padding-top: 8px; }

/* Commerce App - Product Cards */
.ui-product-cards{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 14px 0; position: relative; z-index: 1; }
.ui-product-card{ background: rgba(255,255,255,0.95); border-radius: 12px; padding: 6px; display: flex; flex-direction: column; gap: 4px; box-shadow: 0 2px 8px rgba(15,23,42,0.10); }
.ui-product-img{ height: 55px; border-radius: 10px; background-size: cover; background-position: center; background-color: #F3F4F6; }
.ui-product-info{ display: flex; justify-content: space-between; align-items: center; padding: 0 2px; }
.ui-product-title{ font-size: 9px; font-weight: 600; color: rgba(15,23,42,0.8); }
.ui-product-price{ font-size: 10px; font-weight: 700; color: var(--primary); }
.ui-badges{ display:flex; gap: 8px; padding: 10px 18px 0; position: relative; z-index: 1; }
.ui-badge{ font-size: 8px; font-weight: 700; color: rgba(15,23,42,0.85); background: rgba(37,99,235,0.10); padding: 5px 8px; border-radius: 999px; }
.ui-badge.light{ background: rgba(15,23,42,0.06); color: rgba(15,23,42,0.65); }

/* Travel App */
.ui-destination-badge{ position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 999px; font-size: 10px; font-weight: 600; color: rgba(15,23,42,0.9); box-shadow: 0 4px 12px rgba(0,0,0,0.15); white-space: nowrap; }
.ui-travel-info{ padding: 12px 18px 0; position: relative; z-index: 1; }
.ui-travel-row{ display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(15,23,42,0.08); }
.ui-travel-row:last-child{ border-bottom: none; }
.ui-travel-label{ font-size: 9px; font-weight: 500; color: rgba(15,23,42,0.5); }
.ui-travel-value{ font-size: 10px; font-weight: 600; color: rgba(15,23,42,0.85); }
.ui-blank-list{ padding: 10px 22px 0; display:flex; flex-direction:column; gap: 8px; position: relative; z-index: 1; }
.ui-blank-item{ display:flex; justify-content:space-between; align-items:center; background: rgba(15,23,42,0.04); border-radius: 12px; padding: 8px 10px; box-shadow: inset 0 0 0 1px rgba(15,23,42,0.05); }
.ui-blank-title-sm{ font-size: 9px; font-weight: 700; color: rgba(15,23,42,0.9); }
.ui-blank-meta{ font-size: 9px; font-weight: 600; color: rgba(15,23,42,0.55); }

/* Restaurant App - Food Grid */
.ui-food-grid{ padding: 6px 18px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 1; }
.ui-food-tile{ height: 88px; border-radius: 16px; background-size: cover; background-position: center; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.ui-food-tile::before{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%); }
.ui-food-name{ position: relative; z-index: 1; font-size: 9px; font-weight: 700; color: white; padding: 8px; }
.ui-rating-row{ margin: 10px 18px 0; display:flex; align-items:center; gap: 10px; background: rgba(255,255,255,0.9); border-radius: 999px; padding: 6px 10px; box-shadow: 0 4px 12px rgba(2,6,23,0.08); }
.ui-rating-dot{ width: 6px; height: 6px; border-radius: 999px; background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }
.ui-rating-text{ font-size: 9px; font-weight: 700; color: rgba(15,23,42,0.85); }
.ui-rating-pill{ font-size: 8px; font-weight: 700; color: rgba(15,23,42,0.6); background: rgba(15,23,42,0.06); padding: 3px 8px; border-radius: 999px; margin-left: auto; }

/* Music App */
.ui-album-art{ height: 150px; margin: 0 18px; border-radius: 18px; background-size: cover; background-position: center; position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.ui-play-btn{ width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.95); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--primary); box-shadow: 0 4px 16px rgba(0,0,0,0.25); padding-left: 3px; }
.ui-music-info{ padding: 14px 18px 0; position: relative; z-index: 1; }
.ui-song-title{ font-size: 11px; font-weight: 700; color: rgba(15,23,42,0.9); margin-bottom: 2px; }
.ui-artist-name{ font-size: 9px; font-weight: 500; color: rgba(15,23,42,0.5); margin-bottom: 10px; }
.ui-progress-bar{ height: 4px; background: rgba(15,23,42,0.1); border-radius: 999px; overflow: hidden; }
.ui-progress-fill{ width: 45%; height: 100%; background: var(--primary); border-radius: 999px; }
.ui-playlist{ padding: 10px 18px 0; display:flex; flex-direction:column; gap: 8px; position: relative; z-index: 1; }
.ui-track{ display:flex; align-items:center; gap: 8px; background: rgba(15,23,42,0.04); border-radius: 12px; padding: 6px 8px; }
.ui-track-thumb{ width: 18px; height: 18px; border-radius: 6px; background: linear-gradient(135deg, rgba(37,99,235,0.25), rgba(139,92,246,0.2)); }
.ui-track-name{ font-size: 9px; font-weight: 600; color: rgba(15,23,42,0.85); }
.ui-track-time{ font-size: 8px; font-weight: 600; color: rgba(15,23,42,0.5); margin-left: auto; }

/* Sports App - Enhanced */
.ui-score{ display:flex; align-items:center; justify-content:space-between; gap: 12px; padding: 14px 18px; position: relative; z-index: 1; background: rgba(255,255,255,0.5); margin: 0 18px; border-radius: 16px; backdrop-filter: blur(10px); }
.mockup-immersive .ui-score{ margin: 0 14px 10px; background: rgba(255,255,255,0.65); }
.ui-photo.immersive{ height: 190px; margin: 0 14px; border-radius: 20px; box-shadow: 0 14px 28px rgba(2,6,23,0.2); }
.ui-floating-card{
  margin: 10px 18px 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 24px rgba(2,6,23,0.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ui-float-title{ font-size: 10px; font-weight: 700; color: rgba(15,23,42,0.9); }
.ui-float-sub{ font-size: 8px; font-weight: 600; color: rgba(15,23,42,0.5); }
.ui-team{ display: flex; align-items: center; gap: 10px; }
.ui-team-logo{ width: 36px; height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: white; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.ui-team-score{ font-size: 18px; font-weight: 800; color: rgba(15,23,42,0.9); }
.ui-live-badge{ position: absolute; top: 14px; right: 14px; background: #EF4444; color: white; padding: 4px 10px; border-radius: 999px; font-size: 8px; font-weight: 800; letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(239,68,68,0.4); animation: pulse 2s ease-in-out infinite; }
.ui-stats-list{ padding: 10px 18px 0; position: relative; z-index: 1; }
.ui-stat-row{ display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(15,23,42,0.06); font-size: 9px; }
.ui-stat-row span:first-child{ color: rgba(15,23,42,0.5); font-weight: 500; }
.ui-stat-row span:last-child{ color: rgba(15,23,42,0.85); font-weight: 700; }

/* Analytics App - Real Metrics */
.ui-metrics-real{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px 18px 0; position: relative; z-index: 1; }
.mockup-dashboard .ui-metrics-real{ padding-left: 36px; }
.mockup-dashboard .ui-chart-real{ margin-left: 30px; margin-right: 18px; }
.ui-side-tabs{
  position: absolute;
  top: 92px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.ui-side-tabs span{
  width: 6px;
  height: 24px;
  border-radius: 999px;
  background: rgba(15,23,42,0.12);
}
.ui-side-tabs span.active{
  background: var(--accent);
  box-shadow: 0 4px 10px color-mix(in srgb, var(--accent) 35%, transparent);
}
.ui-metric-card{ background: rgba(139,92,246,0.12); border-radius: 16px; padding: 12px; box-shadow: inset 0 0 0 1px rgba(139,92,246,0.15); }
.ui-metric-label{ font-size: 8px; font-weight: 600; color: rgba(15,23,42,0.5); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ui-metric-value{ font-size: 14px; font-weight: 800; color: rgba(15,23,42,0.9); margin-bottom: 4px; }
.ui-metric-change{ font-size: 9px; font-weight: 700; color: #10B981; }
.ui-metric-change.up::before{ content: "↑ "; }
.ui-chart-real{ height: 120px; margin: 12px 18px 0; border-radius: 18px; background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); padding: 16px 12px 12px; position: relative; z-index: 1; box-shadow: inset 0 0 0 1px rgba(15,23,42,0.06); }
.ui-chart-real svg{ width: 100%; height: 100%; }
.ui-legend{ display:flex; gap: 10px; padding: 6px 18px 0; position: relative; z-index: 1; }
.ui-legend-item{ font-size: 8px; font-weight: 700; color: rgba(15,23,42,0.6); position: relative; padding-left: 12px; }
.ui-legend-item::before{ content:""; position:absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 999px; background: rgba(15,23,42,0.2); }
.ui-legend-item.primary{ color: rgba(15,23,42,0.9); }
.ui-legend-item.primary::before{ background: var(--accent); }

/* variants for subtle identity (not copies) */
.phone-v1{ --accent: #2563EB; }
.phone-v2{ --accent: #A78BFA; }
.phone-v3{ --accent: #22C55E; }
.phone-v4{ --accent: #F59E0B; }
.phone-v5{ --accent: #06B6D4; }
.phone-v6{ --accent: #8B5CF6; }
.phone-v7{ --accent: #0EA5E9; }
.phone-v3 .ui-tile{ background: rgba(34,197,94,0.10); box-shadow: inset 0 0 0 1px rgba(34,197,94,0.12); }
.phone-v4 .ui-wave{ background: linear-gradient(135deg, rgba(245,158,11,0.16), rgba(37,99,235,0.10)); }
.phone-v6 .ui-dot{ background: rgba(139,92,246,0.16); box-shadow: inset 0 0 0 1px rgba(139,92,246,0.18); }
.phone-v7 .ui-dot{ background: rgba(14,165,233,0.16); box-shadow: inset 0 0 0 1px rgba(14,165,233,0.18); }
.phone-v2 .ui-photo{ background: linear-gradient(135deg, rgba(167,139,250,0.18), rgba(37,99,235,0.10)); }
.phone-v1 .ui-photo{ background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(34,197,94,0.10)); }
.phone-v4 .ui-photo{ background: linear-gradient(135deg, rgba(245,158,11,0.16), rgba(167,139,250,0.12)); }
.phone-v7 .ui-photo{ background: linear-gradient(135deg, rgba(14,165,233,0.18), rgba(99,102,241,0.12)); }
.phone-v6 .ui-photo{ background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(37,99,235,0.10)); }

/* give the label a tiny colored dot to feel more branded */
.showcase-label{
  position: relative;
  padding-left: 14px;
}
.showcase-label::before{
  content:"";
  position:absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}
.phone-v1 + .showcase-label::before{ background: rgba(37,99,235,0.9); }
.phone-v2 + .showcase-label::before{ background: rgba(167,139,250,0.9); }
.phone-v3 + .showcase-label::before{ background: rgba(34,197,94,0.9); }
.phone-v4 + .showcase-label::before{ background: rgba(245,158,11,0.9); }
.phone-v6 + .showcase-label::before{ background: rgba(139,92,246,0.9); }
.phone-v7 + .showcase-label::before{ background: rgba(14,165,233,0.9); }

/* Old Showcase (keep for backup) */
.showcase-section { background: var(--bg-page); overflow: hidden; }
.showcase-section .section-header { padding: 0 20px; }
.showcase-slider { width: 100%; overflow: hidden; }
.showcase-track { display: flex; gap: 20px; animation: infiniteScroll 30s linear infinite; width: max-content; }
@keyframes infiniteScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.showcase-item { flex: 0 0 180px; text-align: center; }
.showcase-item img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 12px; transition: var(--transition); }
.showcase-item:hover img { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.showcase-item span { font-size: 14px; font-weight: 600; color: var(--text-dark); }

/* Pricing - New Premium Design */
.pricing-section-new { background: var(--bg-page); padding: 80px 0; }
.pricing-section-new .section-header { margin-bottom: 40px; }
.pricing-section-new .section-header p { max-width: 600px; margin: 0 auto; }
.pricing-section-new .section-header p br { display: block; }

/* Pricing Tabs - Premium Switcher */
.pricing-tabs { 
  display: flex; 
  justify-content: center; 
  gap: 0; 
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-subtle) 100%); 
  border: 2px solid var(--border); 
  border-radius: 100px; 
  padding: 8px; 
  width: fit-content; 
  margin: 0 auto 28px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}
.pricing-tab { 
  padding: 14px 32px; 
  font-size: 15px; 
  font-weight: 600; 
  color: var(--text); 
  background: transparent; 
  border: none; 
  border-radius: 100px; 
  cursor: pointer; 
  transition: var(--transition); 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-family: inherit; 
}
.pricing-tab:hover { color: var(--primary); background: rgba(24, 75, 252, 0.05); }
.pricing-tab.active { 
  background: var(--primary); 
  color: #fff; 
  box-shadow: 0 6px 20px rgba(24, 75, 252, 0.4); 
  transform: scale(1.02);
}
.save-badge { font-size: 11px; font-weight: 700; color: #fff; background: var(--success); padding: 4px 10px; border-radius: 100px; }
.pricing-tab.active .save-badge { background: rgba(255,255,255,0.25); color: #fff; }
.new-badge { font-size: 11px; font-weight: 700; color: #fff; background: #F59E0B; padding: 4px 10px; border-radius: 100px; }
.pricing-tab.active .new-badge { background: rgba(255,255,255,0.25); color: #fff; }

/* Pricing Description - Single Line */
.pricing-description { text-align: center; margin-bottom: 48px; }
.pricing-description p { 
  display: none; 
  font-size: 15px; 
  color: var(--text-dark); 
  padding: 16px 32px; 
  background: var(--bg); 
  border-left: 4px solid var(--primary); 
  border-radius: 0 12px 12px 0; 
  max-width: 700px; 
  margin: 0 auto; 
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.pricing-description p.active { display: inline-block; }

/* Pricing Cards Grid */
.pricing-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }

/* Individual Price Card */
.price-card-new { padding: 32px 24px; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; position: relative; transition: var(--transition); display: flex; flex-direction: column; }
.price-card-new:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.price-card-new.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-primary); background: var(--primary); color: #fff; }
.price-card-new.featured:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(24, 75, 252, 0.4); }

/* Popular Tag */
.price-card-new .popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; padding: 6px 18px; background: #F59E0B; color: #fff; font-size: 11px; font-weight: 700; border-radius: 100px; letter-spacing: 0.3px; }

/* Card Header */
.price-card-header { margin-bottom: 20px; }
.price-card-header h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.price-card-new.featured .price-card-header h3 { color: #fff; }
.price-card-header p { font-size: 13px; color: var(--text); line-height: 1.5; min-height: 42px; margin: 0; }
.price-card-new.featured .price-card-header p { color: rgba(255,255,255,0.85); }
.price-card-header .desc-m, .price-card-header .desc-y, .price-card-header .desc-o { display: none; }
.price-card-header .desc-m.active, .price-card-header .desc-y.active, .price-card-header .desc-o.active { display: block; }

/* Price Amount */
.price-amount-new { display: flex; align-items: baseline; margin-bottom: 24px; }
.price-amount-new .currency { font-size: 18px; font-weight: 500; color: var(--text); }
.price-card-new.featured .price-amount-new .currency { color: rgba(255,255,255,0.8); }
.price-amount-new .amount { font-size: 48px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.price-card-new.featured .price-amount-new .amount { color: #fff; }
.price-amount-new .period { font-size: 14px; color: var(--text); margin-left: 4px; }
.price-card-new.featured .price-amount-new .period { color: rgba(255,255,255,0.8); }

/* Features List */
.price-features-new { list-style: none; margin-bottom: 24px; flex: 1; }
.price-features-new li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-dark); padding: 10px 0; border-bottom: 1px solid var(--border); }
.price-card-new.featured .price-features-new li { color: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.15); }
.price-features-new li:last-child { border-bottom: none; }
.price-features-new li.disabled { opacity: 0.5; }
.price-features-new .icon { font-size: 14px; width: 20px; text-align: center; }
.price-features-new .icon.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--success-bg);
  color: var(--success);
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}
.price-card-new.featured .price-features-new .icon.check {
  background: rgba(134, 239, 172, 0.18);
  color: #86EFAC;
}
.price-features-new .icon.x { color: var(--text-muted); }
.price-features-new strong { color: var(--primary); font-weight: 700; }
.price-card-new.featured .price-features-new strong { color: #fff; }

/* Price Buttons */
.btn-price-outline { display: block; width: 100%; padding: 14px; font-size: 14px; font-weight: 600; font-family: inherit; color: var(--text-dark); background: transparent; border: 2px solid var(--border); border-radius: 8px; text-align: center; transition: var(--transition); cursor: pointer; }
.btn-price-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-price-primary { display: block; width: 100%; padding: 14px; font-size: 14px; font-weight: 600; font-family: inherit; color: #fff; background: var(--primary); border: none; border-radius: 8px; text-align: center; transition: var(--transition); cursor: pointer; }
.btn-price-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-primary); transform: translateY(-2px); }
.btn-price-premium { display: block; width: 100%; padding: 14px; font-size: 14px; font-weight: 600; font-family: inherit; color: var(--primary); background: #fff; border: 2px solid #fff; border-radius: 8px; text-align: center; transition: var(--transition); cursor: pointer; }
.btn-price-premium:hover { background: rgba(255,255,255,0.9); box-shadow: 0 8px 20px rgba(0,0,0,0.2); transform: translateY(-2px); }

/* Old pricing styles - keep for backup */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 36px; }
.pricing-toggle > span { font-size: 14px; color: var(--text); transition: var(--transition); }
.pricing-toggle > span.active { color: var(--text-dark); font-weight: 600; }
.save-tag { font-style: normal; font-size: 10px; color: var(--success); background: var(--success-bg); padding: 3px 8px; border-radius: 100px; margin-left: 6px; }
.toggle-switch { width: 50px; height: 26px; background: var(--bg-subtle); border: 1px solid var(--border); border-radius: 100px; cursor: pointer; position: relative; }
.toggle-switch span { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: var(--primary); border-radius: 50%; transition: var(--transition); }
.toggle-switch.yearly span { left: 26px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card { padding: 28px 22px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); position: relative; transition: var(--transition); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.price-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-primary); background: linear-gradient(180deg, rgba(24, 75, 252, 0.02) 0%, #FFFFFF 100%); }
.popular-tag { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); padding: 4px 16px; background: var(--primary); color: #fff; font-size: 10px; font-weight: 600; border-radius: 100px; }
.price-header { margin-bottom: 16px; }
.price-header h3 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.price-header p { font-size: 13px; color: var(--text); }
.price-amount { margin-bottom: 20px; display: flex; align-items: baseline; }
.currency { font-size: 16px; color: var(--text); margin-right: 2px; }
.amount { font-size: 42px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.period { font-size: 14px; color: var(--text); margin-left: 2px; }
.price-features { list-style: none; margin-bottom: 20px; }
.price-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--bg-subtle); }
.price-features li:last-child { border-bottom: none; }
.price-features .check { color: var(--success); }
.price-features .x { color: var(--text-muted); }
.price-features .disabled { opacity: 0.5; }
.price-features strong { color: var(--text-dark); }
.btn-outline-full { display: block; width: 100%; padding: 12px; font-size: 14px; font-weight: 600; color: var(--text); background: transparent; border: 2px solid var(--border); border-radius: var(--radius); text-align: center; transition: var(--transition); cursor: pointer; }
.btn-outline-full:hover { border-color: var(--primary); color: var(--primary); }
.btn-primary-full { display: block; width: 100%; padding: 12px; font-size: 14px; font-weight: 600; color: #fff; background: var(--primary); border: none; border-radius: var(--radius); text-align: center; transition: var(--transition); cursor: pointer; }
.btn-primary-full:hover { background: var(--primary-dark); box-shadow: var(--shadow-primary); }

/* Contact */
/* Contact Section - Dark Background with Effects */
.contact-section { 
  background: #0D0520;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.contact-bg-elements { position: absolute; inset: 0; pointer-events: none; }
.contact-glow-1 {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(24, 75, 252, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}
.contact-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.contact-content .section-tag { background: rgba(24, 75, 252, 0.15); color: var(--primary); border: 1px solid rgba(24, 75, 252, 0.3); }
.contact-content h2 { font-size: 38px; font-weight: 700; color: #FFFFFF; line-height: 1.2; margin-bottom: 16px; }
.contact-content h2 .text-gradient { background: linear-gradient(135deg, var(--primary), #A78BFA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-content > p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.6; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-item { 
  display: flex; 
  align-items: center; 
  gap: 18px; 
  padding: 22px 24px; 
  background: rgba(255,255,255,0.03); 
  border: 1px solid rgba(255,255,255,0.08); 
  border-radius: 14px; 
  transition: var(--transition);
  cursor: pointer;
}
.info-item:hover { 
  border-color: rgba(24, 75, 252, 0.5); 
  box-shadow: 0 10px 40px rgba(24, 75, 252, 0.15), inset 0 0 30px rgba(24, 75, 252, 0.05); 
  transform: translateX(8px);
  background: rgba(255,255,255,0.05);
}
.info-icon-wrap { 
  width: 52px; 
  height: 52px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: linear-gradient(135deg, var(--primary), #6366F1);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(24, 75, 252, 0.3);
}
.info-item strong { display: block; font-size: 17px; color: #FFFFFF; margin-bottom: 4px; }
.info-item p { font-size: 14px; color: rgba(255,255,255,0.55); margin: 0; }
.info-item > div:nth-child(2) { flex: 1; }
.info-arrow { 
  font-size: 20px; 
  color: rgba(255,255,255,0.3); 
  transition: var(--transition);
}
.info-item:hover .info-arrow { 
  color: var(--primary); 
  transform: translateX(5px);
}

/* Light Form Design - Premium */
.contact-form-wrap { 
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 25px 80px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.1),
    0 0 60px rgba(24, 75, 252, 0.08);
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 0 0 10px 10px;
}
.contact-form h3 { 
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; position: relative; }
.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text);
  opacity: 0.5;
  transition: var(--transition);
  z-index: 1;
}
.form-group:focus-within .input-icon {
  color: var(--primary);
  opacity: 1;
}
.form-group input { 
  width: 100%;
  padding: 16px 18px 16px 48px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #F8FAFC;
  color: var(--text-dark);
  transition: var(--transition);
}
.form-group textarea { 
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #F8FAFC;
  color: var(--text-dark);
  transition: var(--transition);
  resize: vertical; 
  min-height: 110px;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: #94A3B8;
}
.form-group input:focus, .form-group textarea:focus { 
  outline: none;
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(24, 75, 252, 0.1);
}
.btn-primary-full {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--primary), #4F46E5);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.btn-primary-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}
.btn-primary-full:hover::before {
  left: 100%;
}
.btn-primary-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(24, 75, 252, 0.35);
}
.btn-primary-full svg {
  transition: var(--transition);
}
.btn-primary-full:hover svg {
  transform: translateX(3px) translateY(-3px);
}

/* Blog - Premium Light Section */
/* Blog Categories Links */
.blog-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.blog-categories-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.blog-category-link {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-category-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.blog-section-new { background: var(--bg-page); padding: 90px 0; }
.blog-header-new { text-align: center; margin-bottom: 48px; }
.blog-header-new h2 { font-size: 40px; font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 14px; }
.blog-header-new p { font-size: 17px; color: var(--text); max-width: 760px; margin: 0 auto; line-height: 1.6; }

.blog-grid-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card-new {
  background: var(--bg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.05);
}
.blog-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 75, 252, 0.25);
  box-shadow: 0 20px 55px rgba(2, 6, 23, 0.12);
}
.blog-image-new { position: relative; height: 190px; overflow: hidden; }
.blog-image-new img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 0.5s ease; }
.blog-card-new:hover .blog-image-new img { transform: scale(1.07); }
.blog-overlay-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,23,0.0) 20%, rgba(2,6,23,0.38) 100%);
  opacity: 0.9;
  transition: opacity 0.4s ease;
}
.blog-card-new:hover .blog-overlay-new { opacity: 1; }
.blog-tag-new {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.blog-content-new { padding: 22px 22px 20px; }
.blog-content-new h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin-bottom: 10px; }
.blog-content-new p { font-size: 14px; color: var(--text); line-height: 1.6; margin: 0 0 16px; }
.blog-cta-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.blog-cta-new svg { transition: var(--transition); }
.blog-card-new:hover .blog-cta-new svg { transform: translateX(4px); }

/* FAQ - New Premium Design */
.faq-section-new { 
  background: var(--bg-page); 
  padding: 100px 0;
}
.faq-header-new {
  text-align: center;
  margin-bottom: 60px;
}
.faq-header-new h2 { 
  font-size: 40px; 
  font-weight: 700; 
  color: var(--text-dark); 
  line-height: 1.2;
  margin-bottom: 16px;
}
.faq-header-new > p {
  font-size: 17px;
  color: var(--text);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item-new { 
  background: var(--bg); 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  overflow: hidden; 
  cursor: pointer; 
  transition: var(--transition);
  position: relative;
}
.faq-item-new::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: var(--transition);
}
.faq-item-new:hover { 
  border-color: rgba(24, 75, 252, 0.3); 
  box-shadow: 0 8px 30px rgba(24, 75, 252, 0.08);
  transform: translateY(-2px);
}
.faq-item-new.open { 
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(24, 75, 252, 0.12);
}
.faq-item-new.open::before {
  background: linear-gradient(180deg, var(--primary), #6366F1);
}
.faq-q-new { 
  display: flex; 
  align-items: center; 
  gap: 16px;
  padding: 22px 24px; 
}
.faq-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(24, 75, 252, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
  flex-shrink: 0;
}
.faq-question {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
.faq-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-page);
  border-radius: 10px;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item-new:hover .faq-icon {
  background: rgba(24, 75, 252, 0.1);
}
.faq-item-new.open .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.faq-a-new { 
  max-height: 0; 
  overflow: hidden; 
  padding: 0 24px 0 72px; 
  font-size: 15px; 
  color: var(--text); 
  line-height: 1.7; 
  transition: all 0.4s ease;
}
.faq-item-new.open .faq-a-new { 
  max-height: 300px; 
  padding: 0 24px 22px 72px;
}
.faq-a-new strong {
  color: var(--text-dark);
}

/* CTA + CMS Combined - Premium Design */
.cta-cms-combined-new { position: relative; background: #0D0520; }

/* CTA Section - Blue Gradient Card */
.cta-section-new { padding: 80px 0 60px; }
.cta-card-wrapper { position: relative; }
.cta-card-inner {
  display: grid;
  /* true 50/50 split */
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #60A5FA 100%);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.cta-card-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-glow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100px;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  filter: blur(60px);
  opacity: 0.4;
  border-radius: 50%;
}
.cta-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.cta-card-content { position: relative; z-index: 2; }
.cta-card-content h2 { font-size: 38px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 18px; }
.cta-card-content > p { font-size: 17px; color: rgba(255,255,255,0.9); margin-bottom: 28px; line-height: 1.6; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.btn-cta-white svg { transition: var(--transition); }
.btn-cta-white:hover svg { transform: translateX(4px); }

/* Floating Images - Like Original Site */
.cta-images-float {
  position: relative;
  /* postcard sizing */
  --cta-main: 420px;
  --cta-small: 280px;

  height: 380px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  z-index: 2;
  perspective: 1200px;
}
.cta-images-float .float-img {
  position: absolute;
  display: block;
  background: rgba(255,255,255,0.95);
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.28),
    0 10px 30px rgba(0,0,0,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-origin: center;
  will-change: transform;
}

/* Main postcard (top) */
.cta-images-float .float-img.img-main {
  width: var(--cta-main);
  right: 0;
  top: -25px;
  z-index: 2;
  transform: rotate(8deg) translateZ(0);
  animation: postcardFloatMain 7s ease-in-out infinite;
}

/* Small postcard (bottom) */
.cta-images-float .float-img.img-top {
  width: var(--cta-small);
  right: 24px;
  bottom: -18px;
  z-index: 3;
  transform: rotate(8deg) translateZ(40px);
  animation: postcardFloatSmall 7s ease-in-out infinite;
}

.cta-images-float .float-img:hover {
  transform: rotate(8deg) translateY(-10px) translateZ(70px) scale(1.03);
  box-shadow:
    0 40px 120px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.35),
    0 0 40px rgba(255,255,255,0.18);
  z-index: 10;
}

@keyframes postcardFloatMain {
  0%, 100% { transform: rotate(8deg) translateY(0) translateZ(0); }
  50% { transform: rotate(8deg) translateY(-12px) translateZ(0); }
}

@keyframes postcardFloatSmall {
  0%, 100% { transform: rotate(8deg) translateY(0) translateZ(40px); }
  50% { transform: rotate(8deg) translateY(-10px) translateZ(40px); }
}
.float-img:hover {
  animation-play-state: paused;
  transform: scale(1.04) rotate(10deg) translateY(calc(var(--cta-float-offset, 0px) - 2px)) !important;
  z-index: 10;
  box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}

/* (legacy) floatCard10 kept for other sections that might use it */

/* CMS Section */
.cms-section-new { padding: 80px 0; }
.cms-layout-new { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.cms-content-new h2 { font-size: 36px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 18px; }
.cms-content-new p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 8px; }
.cms-sub { font-size: 14px !important; color: rgba(255,255,255,0.6) !important; }
.cms-grid-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cms-card-new {
  padding: 32px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  cursor: pointer;
}
.cms-card-new:hover { 
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.cms-card-new img { width: 48px; height: 48px; object-fit: contain; transition: var(--transition); }
.cms-card-new span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); transition: var(--transition); }
.cms-card-new:hover span { color: #fff; }
/* Colored logos on hover */
.cms-card-new.wordpress:hover img { filter: none; }
.cms-card-new.laravel:hover img { filter: none; }
.cms-card-new.shopify:hover img { filter: none; }
.cms-card-new.magento:hover img { filter: none; }
.cms-card-new.wix:hover img { filter: none; }
.cms-card-new.drupal:hover img { filter: none; }
/* Default grayscale */
.cms-card-new img { filter: brightness(0) invert(1); opacity: 0.7; }
.cms-card-new:hover img { opacity: 1; }
@keyframes floatCard { 0%, 100% { transform: rotate(-8deg) translateY(30px); } 50% { transform: rotate(-8deg) translateY(15px); } }
.cta-card.right { animation-name: floatRight; }
@keyframes floatRight { 0%, 100% { transform: rotate(8deg) translateY(-20px); } 50% { transform: rotate(8deg) translateY(-35px); } }
.card-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 12px; font-size: 13px; font-weight: 600; color: var(--text-dark); }
.card-dots { display: flex; gap: 4px; }
.card-dots span { width: 8px; height: 8px; border-radius: 50%; }
.card-dots span:nth-child(1) { background: #EF4444; }
.card-dots span:nth-child(2) { background: #F59E0B; }
.card-dots span:nth-child(3) { background: var(--success); }
.card-header .time { font-weight: 400; color: var(--text-light); font-size: 11px; }
.card-rows { display: flex; flex-direction: column; gap: 8px; }
.card-row { display: flex; align-items: center; gap: 10px; }
.card-row .avatar { width: 28px; height: 28px; background: var(--bg-subtle); border-radius: 50%; }
.card-row .info { flex: 1; }
.card-row .name { width: 60px; height: 8px; background: var(--bg-subtle); border-radius: 4px; margin-bottom: 4px; }
.card-row .email { width: 90px; height: 6px; background: var(--border); border-radius: 3px; }
.card-row .status { width: 50px; height: 18px; border-radius: 4px; }
.card-row .status.green { background: var(--success-bg); }
.card-row .status.blue { background: #EFF6FF; }
.card-row .status.orange { background: #FEF3C7; }
.card-stats { display: flex; gap: 16px; margin-bottom: 14px; }
.stat-box { flex: 1; }
.stat-box .label { display: block; font-size: 10px; color: var(--text-light); margin-bottom: 2px; }
.stat-box .value { font-size: 22px; font-weight: 700; color: var(--text-dark); }
.card-chart { position: relative; height: 55px; }
.card-chart svg { width: 100%; height: 100%; }
.chart-badge { position: absolute; right: 8px; bottom: 8px; padding: 4px 8px; background: var(--bg); border: 1px solid var(--success); border-radius: 6px; font-size: 10px; color: var(--success); font-weight: 600; }

/* CMS Part - Dark with accent */
.cms-part { background: linear-gradient(180deg, var(--bg-dark-accent) 0%, var(--bg-dark) 100%); padding: 90px 0 70px; margin-top: -60px; }
.cms-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; align-items: center; }
.section-tag-dark { display: inline-block; padding: 6px 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.cms-content h2 { font-size: 28px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 14px; }
.cms-content p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.cms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cms-card { padding: 28px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cms-card:hover { background: rgba(24, 75, 252, 0.15); border-color: rgba(24, 75, 252, 0.3); transform: translateY(-4px); }
.cms-card img { width: 52px; height: 52px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.8; transition: var(--transition); }
.cms-card:hover img { opacity: 1; }

/* Footer - Premium Design */
.footer-new { 
  padding: 0 0 30px; 
  background: #0D0520;
  position: relative;
}
.footer-gradient-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), #8B5CF6, var(--primary), transparent);
  margin-bottom: 60px;
}
.footer-top { 
  display: grid; 
  grid-template-columns: 1.2fr 2fr; 
  gap: 80px; 
  margin-bottom: 40px; 
}
.footer-brand-new img { 
  height: 32px; 
  width: auto;
  margin-bottom: 18px; 
  filter: brightness(0) invert(1); 
}
.footer-brand-new p { 
  font-size: 15px; 
  color: rgba(255,255,255,0.6); 
  line-height: 1.7; 
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-links-new { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px; 
}
.footer-col-new h4,
.footer-col-title { 
  font-size: 13px; 
  font-weight: 600; 
  color: #fff; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  margin-bottom: 20px; 
}
.footer-col-new a { 
  display: block; 
  font-size: 14px; 
  color: rgba(255,255,255,0.72); 
  padding: 8px 0; 
  transition: var(--transition); 
}
.footer-col-new a:hover { 
  color: #fff; 
  padding-left: 6px;
}
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  margin-bottom: 24px;
}
.footer-bottom-new { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}
.footer-bottom-new p { 
  font-size: 13px; 
  color: #b0b8c8; 
}
.footer-badges-new { 
  display: flex; 
  gap: 24px; 
}
.footer-badges-new span { 
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px; 
  color: rgba(255,255,255,0.5);
}
.footer-badges-new svg {
  opacity: 0.6;
}

/* Desktop - Ensure templates are correct */
@media (min-width: 769px) {
  .templates-devices-wrapper {
    display: flex !important;
    gap: 24px !important;
    overflow: visible !important;
    width: auto !important;
    max-width: none !important;
  }
  .templates-slider-track {
    display: flex !important;
    gap: 24px !important;
    overflow: visible !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }
  .template-device {
    margin-left: 0 !important;
    flex: 0 0 auto !important;
    width: auto !important;
  }
  .device-frame {
    width: 160px !important;
    height: 320px !important;
    max-width: none !important;
  }
  .device-label {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: rgba(255,255,255,0.7) !important;
  }
}

/* Responsive */
@media (max-width: 1279px) {
  .container { padding: 0 32px; }
  .hero { padding: 100px 0 0; }
  .hero h1 { font-size: 42px; }
  .hero-centered > p { font-size: 16px; }
  .hero-image-wrapper { max-width: 90%; padding: 0 32px 50px; }
  .value-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .value-card { padding: 24px 20px; }
  .value-card h3 { font-size: 18px; }
  .templates-layout-new { grid-template-columns: 1fr 1fr; gap: 40px; }
  .templates-layout-dark { grid-template-columns: 1fr 1fr; gap: 40px; }
  .combined-frame-section { padding: 70px 0; }
  .templates-inner-frame { padding: 40px; margin-top: 50px; }
  .templates-devices { gap: 14px; }
  .templates-devices-dark { gap: 14px; }
  .templates-devices-wrapper { gap: 14px; }
  .templates-slider-track { gap: 14px; }
  .device-frame { width: 120px !important; height: 220px !important; border-radius: 14px; }
  .drawer-menu { padding: 12px 8px; gap: 8px; }
  .menu-line { height: 8px; }
  .tabs-header, .bar-header { padding: 10px 8px; gap: 6px; }
  .tab-square { width: 20px; height: 20px; }
  .tab-line { height: 10px; }
  .tpl-bottom-bar { padding: 10px; gap: 18px; }
  .icon-circle { width: 20px; height: 20px; }
  .icon-square { width: 18px; height: 18px; }
  .icon-triangle { border-left-width: 10px; border-right-width: 10px; border-bottom-width: 16px; }
  .stats-row { flex-wrap: wrap !important; gap: 30px; padding: 30px 20px; }
  .stat-divider { display: none !important; }
  .stat-item-new { flex: 1 1 45% !important; justify-content: center; padding: 20px; }
  .stats-header h2 { font-size: 30px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .templates-layout { grid-template-columns: 1fr; gap: 36px; }
  .templates-content { text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pricing-tabs { padding: 6px; }
  .pricing-tab { padding: 12px 20px; font-size: 14px; }
  .pricing-description p { white-space: normal; max-width: 90%; }
  .contact-layout { 
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .contact-content {
    display: contents;
  }
  .contact-content .section-tag { order: 1; }
  .contact-content h2 { order: 2; }
  .contact-content > p { order: 3; margin-bottom: 0; }
  .contact-form-wrap { order: 4; }
  .contact-info { order: 5; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid-new { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-header-new h2 { font-size: 32px; }
  .cta-wrapper { grid-template-columns: 1fr; text-align: center; }
  .cta-images { justify-content: center; margin-top: 32px; }
  .cms-layout { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .cta-card-inner { grid-template-columns: 1fr; text-align: center; padding: 40px; }
  /* keep CTA images on tablet and keep spacing consistent */
  .cta-images-float { 
    display: block;
    min-width: 0;
    height: 320px;
    margin-top: 28px;
    max-width: 520px;
    --cta-main: 360px;
    --cta-small: 240px;
  }
  .cms-layout-new { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .cms-content-new h2 { font-size: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-links-new { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-bottom-new { flex-direction: column; gap: 16px; text-align: center; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}
@media (max-width: 768px) {
  .nav, .header-actions { display: none; }
  .mobile-toggle { display: flex !important; }
  /* Header - mobile layout with hamburger on right side */
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* mobile-nav stays hidden until .open class is added */
  .mobile-nav { display: none; }
  .mobile-nav.open { display: flex !important; }
  .hero { padding: 90px 0 0; }
  .hero h1 { font-size: 32px; line-height: 1.2; word-spacing: 0.1em; }
  .hero h1 br { display: none; }
  .hero-break { display: inline; } /* No break on mobile, just space */
  .hero-centered > p { font-size: 15px; }
  .hero-centered > p br { display: none; }
  .hero-users { flex-direction: column; gap: 10px; }
  .hero-image-wrapper { max-width: 95%; padding-bottom: 40px; }
  .trust-strip { margin-top: -40px; padding: 36px 0 28px; }
  .trust-items { gap: 12px; }
  .trust-item { font-size: 12px; padding: 10px 16px; }
  .features-section { padding: 60px 0 80px; }
  .features-section .section-header { margin-bottom: 40px; }
  .features-section h2 { font-size: 32px; }
  .value-cards { gap: 24px; }
  .value-card { padding: 32px 24px; }
  .value-card-icon { width: 64px; height: 64px; margin-bottom: 20px; }
  .value-card h3 { font-size: 20px; }
  .stat-number { font-size: 28px; }
  .features-highlight { flex-direction: column; gap: 32px; align-items: center; }
  .feature-highlight-item { max-width: 100%; }
  .value-cards { grid-template-columns: 1fr; gap: 20px; }
  .value-card { padding: 28px 24px; }
  .steps-grid-dark { grid-template-columns: 1fr; }
  .section-header-dark h2 { font-size: 28px; }
  .templates-layout-new { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .templates-layout-dark { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .templates-content-new h2 { font-size: 28px; }
  .templates-content-dark h2 { font-size: 28px; }
  .faq-section-new { padding: 70px 0; }
  .faq-header-new { margin-bottom: 40px; }
  .faq-header-new h2 { font-size: 28px; }
  .faq-q-new { padding: 18px 16px; gap: 12px; }
  .faq-question { font-size: 15px; }
  .faq-a-new { padding-left: 16px; }
  .faq-item-new.open .faq-a-new { padding-left: 16px; }
  .templates-features { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .templates-features-dark { justify-content: center; flex-wrap: wrap; gap: 16px; }
  /* CTA images - mobile friendly stacked version (still shows images) */
  .cta-images-float {
    height: auto;
    min-width: 0;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .cta-images-float .float-img {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: min(92%, 420px) !important;
    animation: floatCard10 7s ease-in-out infinite;
  }
  .cta-images-float .float-img.img-top {
    width: min(88%, 380px) !important;
    margin-top: -34px;
  }
  .footer-links-new { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cms-grid-new { grid-template-columns: repeat(2, 1fr); }
  .templates-image-new { order: -1; }
  /* templates-devices-dark inherits from .templates-devices above */
  .combined-frame-section { padding: 50px 0; }
  .templates-inner-frame { padding: 30px 20px; margin-top: 40px; border-radius: 16px; }
  /* Templates - Auto-sliding carousel showing 2 at a time */
  .templates-devices-wrapper { 
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    position: relative;
  }
  .templates-slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px !important; 
    justify-content: flex-start !important;
    padding: 0 16px !important;
    margin: 0;
  }
  .templates-devices, .templates-devices-dark { 
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px !important; 
    order: -1;
    justify-content: flex-start !important;
    overflow: visible !important;
    padding: 0 16px !important;
    margin: 0;
  }
  .template-device { 
    flex: 0 0 auto !important;
    width: auto !important;
    margin-left: 0;
    position: relative;
  }
  .template-device:first-child {
    margin-left: 0;
  }
  .device-frame { width: 130px !important; max-width: 130px !important; height: 235px !important; border-radius: 16px; margin: 0 auto; }
  .device-label { font-size: 12px; margin-top: 10px; text-align: center; }
  .drawer-menu { width: 50%; padding: 12px 8px; gap: 8px; }
  .menu-line { height: 8px; }
  .tabs-header, .bar-header { padding: 10px 8px; gap: 5px; }
  .tab-square { width: 18px; height: 18px; }
  .tab-line { height: 10px; }
  .tpl-bottom-bar { padding: 10px; gap: 14px; }
  .icon-circle { width: 18px; height: 18px; }
  .icon-square { width: 16px; height: 16px; }
  .icon-triangle { border-left-width: 10px; border-right-width: 10px; border-bottom-width: 14px; }
  .stats-section-new { padding: 60px 0; }
  .stats-section-new .container { 
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .stats-row { 
    flex-direction: column !important; 
    gap: 12px; 
    padding: 28px 20px;
    margin: 0;
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-sizing: border-box;
    background: linear-gradient(135deg, var(--bg) 0%, rgba(255,255,255,0.98) 100%);
    border: 2px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  }
  .stat-item-new { 
    flex: 1 1 100% !important; 
    padding: 20px 16px; 
    border-bottom: 1px solid rgba(0,0,0,0.06);
    justify-content: flex-start;
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(24, 75, 252, 0.02) 0%, rgba(24, 75, 252, 0.05) 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .stat-item-new::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(24, 75, 252, 0.6) 100%);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .stat-item-new:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(24, 75, 252, 0.1);
    background: linear-gradient(135deg, rgba(24, 75, 252, 0.05) 0%, rgba(24, 75, 252, 0.08) 100%);
  }
  .stat-item-new:hover::before {
    opacity: 1;
  }
  .stat-item-new:last-child { border-bottom: none; }
  .stat-divider { display: none !important; }
  .stat-icon-new { 
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
  }
  .stat-item-new:hover .stat-icon-new {
    transform: scale(1.1);
  }
  .stat-number-new { 
    font-size: 32px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
  }
  .stat-label-new {
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
  }
  .stats-header h2 { font-size: 26px; }
  .stats-header h2 br { display: none; }
  .showcase-header h2 { font-size: 26px; }
  .showcase-item-new { flex: 0 0 200px; }
  .phone-mockup {
    --phone-scale: 0.8;
    margin-bottom: -96px;
  }
  .showcase-track-new { --loop-gap: 12px; }
  .showcase-set { gap: var(--loop-gap); }
  .showcase-slider-new { padding: 0 24px; }
  .showcase-rail::before, .showcase-rail::after { width: 70px; }
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 26px; }
  .features-grid, .steps-grid, .stats-grid, .pricing-grid, .blog-grid, .blog-grid-new { grid-template-columns: 1fr; }
  .device-screen { width: 100%; height: 150px; }
  .showcase-item { flex: 0 0 150px; }
  .cta-images { flex-wrap: wrap; }
  .cta-card { width: 180px; }
  .cms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  
  /* Pricing Mobile - Professional vertical toggle */
  .pricing-section-new .section-header p br { display: none; }
  .pricing-tabs { 
    flex-direction: column; 
    width: 100%; 
    max-width: 320px; 
    padding: 12px;
    border-radius: 20px;
    gap: 8px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-subtle) 100%);
    border: 2px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .pricing-tab { 
    justify-content: space-between; 
    padding: 16px 20px; 
    border-radius: 14px;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
  }
  .pricing-tab:last-child {
    border-bottom: none;
  }
  .pricing-tab:hover {
    background: rgba(24, 75, 252, 0.04);
    transform: translateX(4px);
  }
  .pricing-tab.active {
    border-radius: 14px;
    border-bottom: 2px solid var(--primary);
    background: var(--primary);
    box-shadow: 0 4px 16px rgba(24, 75, 252, 0.3);
  }
  .pricing-tab.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 14px 0 0 14px;
  }
  .save-badge, .new-badge { font-size: 10px; padding: 3px 8px; }
  .pricing-description p { white-space: normal; padding: 14px 20px; font-size: 14px; }
  .pricing-cards { grid-template-columns: 1fr; gap: 20px; }
  .price-card-header p { min-height: auto; }
  .price-amount-new .amount { font-size: 40px; }
}

/* ===== Extra Small Devices (480px and below) ===== */
@media (max-width: 480px) {
  /* Global container padding */
  .container { padding: 0 16px; }
  
  /* Hero adjustments */
  .hero { padding: 80px 0 0; }
  .hero h1 { font-size: 26px; }
  .hero-centered > p { font-size: 14px; }
  .hero-btn { padding: 14px 28px; font-size: 15px; }
  .hero-users { gap: 8px; }
  .user-avatars { gap: -8px; }
  .user-avatars img { width: 32px; height: 32px; }
  .users-text { font-size: 12px; }
  
  /* Trust strip */
  .trust-strip { margin-top: -30px; padding: 28px 0 24px; }
  .trust-items { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .trust-item { font-size: 11px; padding: 10px 14px; }
  .features-section { padding: 50px 0 60px; }
  .features-section .section-header { margin-bottom: 32px; }
  .features-section h2 { font-size: 26px; }
  .features-section .section-header > p { font-size: 15px; }
  .value-cards { gap: 20px; }
  .value-card { padding: 28px 20px; }
  .value-card-icon { width: 56px; height: 56px; margin-bottom: 16px; border-radius: 14px; }
  .value-card-icon svg { width: 28px; height: 28px; }
  .value-card h3 { font-size: 18px; }
  .value-card > p { font-size: 14px; }
  .stat-number { font-size: 24px; }
  .stat-label { font-size: 12px; }
  
  /* Section headers */
  .section-header h2 { font-size: 22px; }
  .section-header p { font-size: 14px; }
  .section-badge { font-size: 11px; padding: 6px 14px; }
  
  /* Templates slider - smaller on small screens */
  .templates-devices-wrapper { max-width: 100% !important; }
  .templates-slider-track { gap: 16px !important; justify-content: flex-start !important; }
  .template-device { 
    flex: 0 0 auto !important; 
    width: auto !important;
    margin-left: 0;
  }
  .device-frame { width: 120px !important; max-width: 120px !important; height: 215px !important; border-radius: 14px; }
  .device-label { font-size: 11px; display: block !important; }
  
  /* Stats box centered */
  .stats-row { max-width: 320px; padding: 20px 16px; }
  
  /* Stats section */
  .stats-header h2 { font-size: 22px; }
  .stats-row { max-width: 100%; padding: 24px 16px; gap: 10px; }
  .stat-item-new { padding: 18px 14px; gap: 12px; }
  .stat-icon-new { font-size: 30px; }
  .stat-number-new { font-size: 26px; }
  .stat-label-new { font-size: 12px; }
  
  /* Pricing */
  .pricing-tabs { max-width: 100%; padding: 10px; gap: 6px; }
  .pricing-tab { padding: 14px 18px; font-size: 14px; }
  .price-amount-new .amount { font-size: 36px; }
  .price-card-new { padding: 24px 16px; }
  .feature-item { font-size: 13px; padding: 10px 0; }
  
  /* Showcase/Mobile design */
  .showcase-header h2 { font-size: 22px; }
  .showcase-set { gap: 0; }
  .showcase-track-new { --loop-gap: 0px; }
  .showcase-item-new { flex: 0 0 190px; overflow: visible; }
  .phone-mockup {
    --phone-scale: 0.79;
    max-width: none;
    margin-bottom: -101px;
  }
  
  /* FAQ */
  .faq-header-new h2 { font-size: 24px; }
  .faq-question { font-size: 14px; }
  .faq-q-new { padding: 14px 12px; }
  
  /* Contact */
  .contact-section-new h2 { font-size: 24px; }
  .contact-info-new h3 { font-size: 18px; }
  
  /* Blog */
  .blog-section-new h2 { font-size: 24px; }
  .blog-card-new h3 { font-size: 16px; }
  
  /* CTA */
  .cta-card-inner { padding: 30px 20px; }
  .cta-card-inner h2 { font-size: 24px; }
  
  /* Footer */
  .footer-links-new { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand-new p { font-size: 13px; }
}

/* ===== Very Small Devices (375px and below - iPhone SE) ===== */
@media (max-width: 375px) {
  .container { padding: 0 12px; }
  
  .hero h1 { font-size: 24px; }
  .hero-centered > p { font-size: 13px; }
  .hero-btn { padding: 12px 24px; font-size: 14px; }
  
  .section-header h2 { font-size: 20px; }
  
  /* Templates slider - even smaller */
  .templates-devices-wrapper { max-width: 100% !important; }
  .templates-slider-track { gap: 14px !important; justify-content: flex-start !important; }
  .template-device { 
    flex: 0 0 auto !important; 
    width: auto !important;
    margin-left: 0;
  }
  .device-frame { width: 110px !important; max-width: 110px !important; height: 198px !important; }
  .device-label { font-size: 10px; display: block !important; }
  
  /* Stats box smaller */
  .stats-row { max-width: 300px; padding: 16px 14px; }
  
  .stats-header h2 { font-size: 20px; }
  .stat-number-new { font-size: 22px; }
  
  .pricing-tabs { padding: 8px; gap: 6px; }
  .pricing-tab { padding: 12px 16px; font-size: 13px; }
  .price-amount-new .amount { font-size: 32px; }
  
  .showcase-set { gap: 0; }
  .showcase-track-new { --loop-gap: 0px; }
  .showcase-item-new { flex: 0 0 165px; overflow: visible; }
  .phone-mockup {
    --phone-scale: 0.69;
    max-width: none;
    margin-bottom: -149px;
  }
  
  .faq-header-new h2 { font-size: 22px; }
  .faq-question { font-size: 13px; }
  
  .cta-card-inner h2 { font-size: 22px; }
}

/* Mobile Menu Fix - Ensure proper display when open */
@media (max-width: 768px) {
  /* Header - SOLID background on mobile - no transparency */
  .header {
    background: #0A0226 !important;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  /* Ensure header stays visible during scroll */
  .header.scrolled {
    background: #0A0226 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  
  /* Mobile toggle button styling */
  .mobile-toggle {
    display: flex !important;
  }
  
  /* Container padding for mobile */
  .container {
    padding: 0 16px;
  }
  
  /* Prevent horizontal scroll */
  section, .section, .hero, .footer-new {
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  
}
