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

:root {
  --orange: #f97316;
  --orange-hover: #ea580c;
  --dark: #0f172a;
  --slate: #f1f5f9;
  --slate-dark: #334155;
  --slate-light: #f8fafc;
  --muted: #64748b;
  --white: #ffffff;
  --green: #10b981;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --border-light: #e2e8f0;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-orange: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
  --shadow-orange-light: 0 4px 14px rgba(249, 115, 22, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  position: relative;
}

/* Background Decorations */
.bg-shape { position: absolute; z-index: -1; filter: blur(100px); opacity: 0.4; border-radius: 50%; }
.shape-1 { top: -100px; left: -100px; width: 400px; height: 400px; background: rgba(249, 115, 22, 0.2); }
.shape-2 { top: 40%; right: -200px; width: 600px; height: 600px; background: rgba(59, 130, 246, 0.1); }
.bg-grid {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -2;
  background-image: linear-gradient(to right, #f1f5f9 1px, transparent 1px), linear-gradient(to bottom, #f1f5f9 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Colors & Text */
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }
.text-dark { color: var(--dark); }
.text-slate-dark { color: var(--slate-dark); }
.text-blue { color: var(--blue); }
.text-purple { color: var(--purple); }
.text-white { color: var(--white); }

.bg-orange { background: var(--orange); }
.bg-orange-light { background: rgba(249, 115, 22, 0.1); }
.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, #fca5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.bg-slate { background: var(--slate); }
.bg-slate-light { background: var(--slate-light); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.bg-blue-light { background: rgba(59, 130, 246, 0.1); }
.bg-purple-light { background: rgba(139, 92, 246, 0.1); }
.bg-green-light { background: rgba(16, 185, 129, 0.1); }
.bg-white { background: var(--white); }

.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-lg { font-size: 18px; }
.text-4xl { font-size: 36px; }
.opacity-75 { opacity: 0.75; }

.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.d-block { display: block; }
.inline-block { display: inline-block; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-2 { z-index: 2; }
.flex-align-center { display: flex; align-items: center; }
.gap-2 { gap: 8px; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-orange { box-shadow: var(--shadow-orange); }
.shadow-orange-light { box-shadow: var(--shadow-orange-light); }

.gradient-text-dark {
  background: linear-gradient(135deg, var(--dark) 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badges */
.badge-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 16px; border-radius: 99px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; border: 1px solid var(--border-light);
  background: var(--white); box-shadow: var(--shadow-sm); text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; border-radius: 99px; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none; text-align: center; border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(249,115,22,0.3); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 20px 40px; font-size: 18px; border-radius: 16px; }
.btn-primary {
  background: var(--orange); color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-hover); transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.small-text { font-size: 12px; font-weight: 500; margin-left: 6px; }

.btn-micro {
  padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; background: var(--white); color: var(--dark);
  border: 1px solid var(--border-light); transition: all 0.2s;
}
.btn-micro:hover { border-color: var(--muted); box-shadow: var(--shadow-sm); }
.btn-micro.primary { background: var(--orange); border: none; color: white; }
.btn-micro.primary:hover { background: var(--orange-hover); }

/* Header & Banner */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light); transition: all 0.3s ease;
}
header.scrolled { box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 24px; color: var(--dark); letter-spacing: -0.02em; }
.logo-icon {
  width: 36px; height: 36px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: white;
  box-shadow: var(--shadow-orange-light);
}
.urgency-banner {
  background: linear-gradient(90deg, #1e293b 0%, var(--dark) 50%, #1e293b 100%);
  text-align: center; padding: 12px; font-size: 13px; font-weight: 500; color: var(--slate-light);
}
.pulse-badge {
  display: inline-flex; align-items: center; background: var(--green); color: var(--white);
  padding: 3px 10px; border-radius: 99px; font-size: 11px; text-transform: uppercase; font-weight: 700;
  letter-spacing: 0.05em; margin-right: 12px; animation: pulse 2s infinite; box-shadow: 0 0 10px rgba(16,185,129,0.4);
}

/* Hero Section */
.badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--slate-light);
  border: 1px solid var(--border-light); padding: 8px 16px; border-radius: 99px;
  font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 24px;
}
.badge svg { color: var(--orange); }

.hero { padding: 140px 0 80px; text-align: center; position: relative; }
.hero h1 { font-size: 64px; font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.04em; }
.hero p.subtitle { font-size: 20px; color: var(--muted); max-width: 700px; margin: 0 auto 32px; font-weight: 500; }

.hero-stats {
  display: flex; justify-content: center; align-items: center; gap: 30px; margin-top: 40px;
  background: var(--white); padding: 20px 40px; border-radius: 99px; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md); display: inline-flex;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 32px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.divider { width: 1px; height: 40px; background: var(--border-light); }

.video-glass-wrapper {
  margin-top: 60px; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8); border-radius: 24px; padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border-light);
}
.browser-header { display: flex; gap: 8px; padding: 8px 12px 16px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ef4444; } .dot.yellow { background: #f59e0b; } .dot.green { background: #10b981; }

.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: 12px; overflow: hidden; border: 1px solid var(--border-light);
  background: var(--dark);
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Fancy UI Cards */
.fancy-card {
  background: var(--white); border: 1px solid var(--border-light); border-radius: 20px;
  box-shadow: var(--shadow-sm); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fancy-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(249, 115, 22, 0.3);
}
.fancy-mockup {
  background: var(--white); border: 1px solid var(--border-light); border-radius: 24px;
  box-shadow: var(--shadow-xl); overflow: hidden;
}
.float-animation { animation: float 6s ease-in-out infinite; }
.float-animation-delayed { animation: float 6s ease-in-out 3s infinite; }

/* Section Shared */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 40px; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.03em; }
.section-title p.subtitle { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 18px; font-weight: 500; }

/* Steps Overview */
.how-it-works { padding: 100px 0; }
.steps-overview {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 50px;
}
.step-card { padding: 30px 24px; text-align: center; }
.step-number {
  width: 48px; height: 48px; border-radius: 14px; background: var(--orange);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; margin: 0 auto 20px;
}
.step-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.step-card p { font-size: 14px; color: var(--muted); font-weight: 500; }

/* Detailed Steps */
.detailed-steps { padding: 80px 0; }
.detail-row {
  display: flex; align-items: center; gap: 80px; margin-bottom: 120px;
}
.detail-row.reverse { flex-direction: row-reverse; }
.detail-text { flex: 1; }
.detail-text h2 { font-size: 36px; margin-bottom: 8px; font-weight: 900; letter-spacing: -0.02em; }
.detail-text p.subtitle { font-size: 20px; font-weight: 600; color: var(--orange); margin-bottom: 16px; }

.icon-circle {
  width: 32px; height: 32px; border-radius: 50%; background: var(--orange-light);
  color: var(--orange); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: rgba(249,115,22,0.1);
}
.icon-circle svg { width: 16px; height: 16px; }
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; gap: 16px; align-items: flex-start; color: var(--muted); font-size: 15px; line-height: 1.5; }
.check-list strong { color: var(--dark); }

.detail-visual { flex: 1.2; min-width: 0; position: relative; }
.detail-visual::before {
  content: ''; position: absolute; inset: -20px; background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 70%);
  z-index: -1; border-radius: 50%;
}

/* Mockups */
.mockup-header {
  padding: 16px 24px; border-bottom: 1px solid var(--border-light); font-weight: 700;
  font-size: 14px; color: var(--dark); background: var(--slate-light);
}
.mockup-body { padding: 24px; }
.form-mockup .mockup-field { margin-bottom: 20px; }
.form-mockup label { display: block; font-size: 13px; font-weight: 600; color: var(--slate-dark); margin-bottom: 8px; }
.form-mockup .mockup-input { background: var(--white); border: 1px solid var(--border-light); padding: 14px 16px; border-radius: 12px; font-size: 14px; font-weight: 500; color: var(--dark); box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }

.tags-container { display: flex; flex-wrap: wrap; gap: 12px; }
.tag { padding: 10px 18px; border-radius: 99px; border: 1px solid var(--border-light); font-size: 14px; font-weight: 500; color: var(--slate-dark); cursor: pointer; display: flex; align-items: center; gap: 6px; background: var(--white); transition: all 0.2s; }
.tag:hover { border-color: var(--orange); }
.tag.selected { background: rgba(249, 115, 22, 0.1); border-color: var(--orange); color: var(--orange-hover); font-weight: 600; }
.tag.action { border-style: dashed; color: var(--muted); background: transparent; }
.tag.sm { padding: 6px 12px; font-size: 12px; border-radius: 8px; }
.tag.active { background: var(--dark); color: white; border-color: var(--dark); }

.design-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; }
.design-item { padding: 16px; border: 2px solid var(--border-light); border-radius: 16px; background: var(--white); position: relative; cursor: pointer; transition: all 0.2s; }
.design-item.selected { border-color: var(--orange); background: var(--slate-light); }
.design-preview { height: 100px; border-radius: 10px; margin-bottom: 16px; border: 1px solid rgba(0,0,0,0.05); }
.selection-check { position: absolute; top: -10px; right: -10px; width: 28px; height: 28px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }

.window-mockup { padding: 0; }
.window-header { background: var(--slate-light); padding: 12px 20px; border-bottom: 1px solid var(--border-light); }
.url-bar { background: var(--white); border: 1px solid var(--border-light); border-radius: 8px; font-weight: 500; color: var(--slate-dark); }
.window-body { background: var(--white); height: 350px; position: relative; }
.mock-nav { display: flex; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--slate); }
.mock-logo { width: 120px; height: 24px; background: var(--slate); border-radius: 4px; }
.mock-links { display: flex; gap: 16px; }
.mlink { width: 40px; height: 12px; background: var(--slate); border-radius: 4px; }
.mock-hero { padding: 40px 20px; text-align: center; }
.mock-hero h1 { font-size: 28px; margin-bottom: 12px; }
.mock-hero p { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.mock-buttons { display: flex; justify-content: center; gap: 12px; }
.mbtn { width: 120px; height: 36px; border-radius: 8px; }
.mbtn.primary { background: var(--orange); }
.mbtn.outline { border: 2px solid var(--slate); }
.mock-content { display: flex; gap: 20px; padding: 0 20px; justify-content: center; }
.mcard { 
  width: 140px; height: 100px; background: var(--slate-light); border-radius: 12px; 
  border: 1px solid var(--border-light); 
  display: flex; align-items: center; justify-content: center; 
  text-align: center; font-size: 10px; font-weight: 700; color: var(--slate-dark); 
  padding: 8px; line-height: 1.3;
}

.export-mockup { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; }
.export-item { border: 1px solid var(--border-light); padding: 24px; border-radius: 16px; display: flex; gap: 16px; align-items: flex-start; cursor: pointer; transition: all 0.2s; }
.export-item:hover { border-color: rgba(249, 115, 22, 0.4); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.export-item:active { transform: translateY(0); }
.export-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.export-item.highlight { border-color: rgba(249, 115, 22, 0.4); background: var(--white); }

/* Features Grid (What You Get) */
.features-section { padding: 100px 0; }
.features-grid, .audience-grid, .testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;
}
.feature-box, .step-card, .audience-card, .testimonial-card, .faq-item {
  background: var(--white); padding: 32px; border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.03); box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-box:hover, .step-card:hover, .audience-card:hover, .testimonial-card:hover, .faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(249, 115, 22, 0.2);
}
.feature-icon { width: 56px; height: 56px; background: rgba(249, 115, 22, 0.1); color: var(--orange); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.3s; }
.feature-box:hover .feature-icon { transform: scale(1.1); background: var(--orange); color: var(--white); }
.feature-icon svg { width: 28px; height: 28px; }
.feature-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.feature-box p { color: var(--muted); font-size: 15px; font-weight: 500; }

/* Audience */
.audience { padding: 100px 0; }
.audience-card { text-align: left; padding: 40px 32px; }
.audience-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.audience-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }

/* Testimonials & FAQ */
.testimonials { padding: 100px 0; }
.testimonial-card { display: flex; flex-direction: column; justify-content: space-between; }
.stars { display: flex; gap: 4px; margin-bottom: 20px; }
.stars svg { width: 20px; height: 20px; }
.testimonial-card .quote { font-size: 16px; font-weight: 500; color: var(--slate-dark); font-style: italic; line-height: 1.6; }
.author { display: flex; align-items: center; gap: 16px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }

.faq-section { padding: 100px 0; background: var(--slate-light); border-top: 1px solid var(--border-light); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { padding: 24px; }
.faq-question { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; }
.faq-question svg { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.faq-answer { font-size: 15px; color: var(--muted); line-height: 1.6; padding-left: 36px; }

/* Pricing / CTA */
.cta-section { padding: 120px 0; }
.glass-panel { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(24px); border: 1px solid var(--white); }
.glow-blob { position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: rgba(249, 115, 22, 0.2); filter: blur(50px); z-index: 1; border-radius: 50%; }
.pricing.step-card { display: flex; flex-direction: column; text-align: center; padding: 24px; }
.pricing-card { max-width: 540px; margin: 0 auto; padding: 60px 48px; text-align: center; box-shadow: var(--shadow-xl); border: 1px solid rgba(249, 115, 22, 0.2); }
.price { font-size: 64px; font-weight: 900; letter-spacing: -0.04em; margin: 32px 0; }
.price span { font-size: 20px; letter-spacing: normal; }

/* Advanced Footer */
.site-footer { background: #0a0a0a; border-top: 1px solid #1a1a1a; padding: 64px 0 32px; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 40px; }
.footer-logo { color: #fff; margin-bottom: 16px; font-size: 20px; }
.brand-desc { font-size: 13.5px; color: #71717a; line-height: 1.6; max-width: 300px; }
.footer-links { display: flex; gap: 64px; }
.link-group h4 { font-size: 12px; font-weight: 700; color: #a1a1aa; letter-spacing: 0.15em; margin-bottom: 20px; }
.link-group ul { list-style: none; }
.link-group li { margin-bottom: 12px; }
.link-group a { color: #a1a1aa; font-size: 14px; text-decoration: none; position: relative; transition: color 0.2s; }
.link-group a:hover { color: var(--orange); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid #27272a; text-align: center; font-size: 13px; color: #52525b; }

/* Animations */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); } 70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-12px); } 100% { transform: translateY(0px); } }
.animate-up { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; } .delay-2 { animation-delay: 0.3s; } .delay-3 { animation-delay: 0.45s; } .delay-4 { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 48px; }
  .detail-row, .detail-row.reverse { flex-direction: column; gap: 40px; text-align: center; }
  .detail-text ul.check-list { text-align: left; display: inline-flex; }
  .export-mockup { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Layout & Padding */
  .hero { padding: 80px 0 40px; }
  .how-it-works, .detailed-steps, .features-section, .audience, .testimonials, .cta-section, .faq-section { padding: 60px 0; }
  
  /* Typography */
  .hero h1 { font-size: 36px; line-height: 1.2; margin-bottom: 16px; }
  .hero p.subtitle { font-size: 16px; margin-bottom: 24px; padding: 0 10px; }
  .section-title { margin-bottom: 40px; }
  .section-title h2 { font-size: 28px; }
  .section-title p.subtitle { font-size: 16px; }
  .detail-text h2 { font-size: 28px; }
  .detail-text p.subtitle { font-size: 18px; }
  
  /* Header & Banner */
  .urgency-banner { padding: 10px; font-size: 11px; }
  .pulse-badge { margin-right: 6px; padding: 2px 8px; font-size: 10px; }
  header .nav-container { height: 60px; }
  header .btn-sm { padding: 8px 14px; font-size: 13px; }
  .logo { font-size: 18px; }
  .logo-icon { width: 28px; height: 28px; font-size: 14px; }
  
  /* Stats & Logos */
  .hero-stats { 
    flex-direction: row; flex-wrap: wrap; justify-content: center; 
    gap: 15px; border-radius: 16px; padding: 20px; 
  }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 10px; }
  .divider { width: 1px; height: 30px; }
  
  /* Grids & Cards */
  .features-grid, .audience-grid, .testimonials-grid { gap: 20px; grid-template-columns: 1fr; }
  .design-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-box, .audience-card, .testimonial-card, .step-card { padding: 24px; }
  .detail-row { gap: 40px; margin-bottom: 80px; }
  
  /* Mockups (Prevent overflow) */
  .fancy-mockup { border-radius: 16px; padding: 0; overflow: hidden; width: 100%; box-sizing: border-box; }
  .mockup-body { padding: 16px; }
  .form-mockup .mockup-input { font-size: 13px; padding: 10px 12px; }
  
  /* Fix specific mockup overflows */
  .mock-content { justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; }
  .mcard { flex-shrink: 0; width: 120px; }
  
  /* Pricing */
  .pricing-card { padding: 40px 24px; border-radius: 16px; }
  .price { font-size: 48px; margin: 20px 0; }
  .price span { font-size: 16px; }
  .btn-xl { padding: 16px 20px; font-size: 16px; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { text-align: left; }
}

/* =========================================
   Interactive Features & Themes
   ========================================= */

/* Editable Mockup Inputs */
.mockup-input[contenteditable="true"] {
  transition: all 0.2s;
  cursor: text;
}
.mockup-input[contenteditable="true"]:hover {
  border-color: var(--orange);
  background-color: var(--white);
}
.mockup-input[contenteditable="true"]:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
  background-color: var(--white);
}

/* Theme: Modern Dark (Scoped to Window Mockup) */
.window-mockup.theme-dark .window-header {
  background: #1e293b;
  border-bottom-color: #334155;
}
.window-mockup.theme-dark .url-bar {
  background: #0f172a;
  color: #94a3b8;
  border-color: #334155;
}
.window-mockup.theme-dark .window-body {
  background: #0f172a;
}
.window-mockup.theme-dark .mock-nav {
  border-bottom-color: #1e293b;
}
.window-mockup.theme-dark .mock-logo, .window-mockup.theme-dark .mlink {
  background: #334155;
}
.window-mockup.theme-dark .mock-hero h1 {
  color: #f8fafc;
}
.window-mockup.theme-dark .mock-hero p {
  color: #94a3b8;
}
.window-mockup.theme-dark .mbtn.outline {
  border-color: #334155;
}
.window-mockup.theme-dark .mcard {
  background: #1e293b;
  border-color: #334155;
  color: #f8fafc;
}

/* Theme: Glassmorphism (Scoped to Window Mockup) */
.window-mockup.theme-glass .window-body {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}
.window-mockup.theme-glass .mock-nav, .window-mockup.theme-glass .mcard, .window-mockup.theme-glass .window-header {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.8);
}
.window-mockup.theme-glass .mock-hero h1 {
  background: linear-gradient(135deg, #db2777 0%, #4c1d95 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.window-mockup.theme-glass .mbtn.primary {
  background: #db2777;
}
.window-mockup.theme-glass .mock-logo, .window-mockup.theme-glass .mlink {
  background: #fbcfe8;
}

/* Theme: Corporate Pro (Scoped to Window Mockup) */
.window-mockup.theme-corporate .window-body {
  background: #ffffff;
}
.window-mockup.theme-corporate .mock-hero h1 {
  color: #111827;
}
.window-mockup.theme-corporate .mock-hero p {
  color: #6b7280;
}
.window-mockup.theme-corporate .mbtn.primary {
  background: #1d4ed8;
}
.window-mockup.theme-corporate .mcard {
  background: #f3f4f6;
  border-color: #e5e7eb;
}
