/* ============================================
   AmiSMM Landing v2 — Conversion-Optimized CSS
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --bg-primary: #060b18;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(0,212,255,0.3);
  --text-primary: #f0f0f5;
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.35);
  --accent: #00d4ff;
  --accent-glow: rgba(0,212,255,0.15);
  --accent2: #a855f7;
  --accent3: #34d399;
  --red: #f87171;
  --orange: #fb923c;
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1200px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* --- Reset --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: .85; }

img { max-width: 100%; height: auto; display: block; }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; position: relative; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-secondary);
  max-width: 600px; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Nav --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(6,11,24,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding var(--transition), background var(--transition);
}
.nav.scrolled { padding: 10px 0; background: rgba(6,11,24,0.92); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 22px; font-weight: 800; color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-secondary); font-size: 14px; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--text-primary); opacity: 1; }
.nav-cta {
  background: var(--accent3); color: #000; font-weight: 700; font-size: 14px;
  padding: 10px 24px; border-radius: 50px; border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(52,211,153,0.3); opacity: 1; }

/* --- HERO --- */
.hero {
  padding: 140px 0 100px;
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text h1 {
  font-size: clamp(32px, 4.5vw, 54px); font-weight: 900;
  line-height: 1.1; margin-bottom: 20px;
}
.hero-text h1 .highlight { color: var(--accent); }
.hero-text .hero-sub {
  font-size: 18px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 32px; max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent3), #2dd4a8);
  color: #000; font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 50px; border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(52,211,153,0.3);
  opacity: 1;
}
.btn-secondary {
  background: transparent; color: var(--text-primary);
  font-weight: 600; font-size: 15px;
  padding: 16px 28px; border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  opacity: 1;
}
.hero-trust {
  margin-top: 40px; display: flex; align-items: center; gap: 24px;
  font-size: 13px; color: var(--text-muted);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }

/* Hero Dashboard Mockup */
.hero-visual { position: relative; }
.dashboard-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.dashboard-mockup::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.03), rgba(168,85,247,0.03));
  pointer-events: none;
}
.mock-topbar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r { background: #ff5f57; }
.mock-dot.y { background: #ffbd2e; }
.mock-dot.g { background: #28ca42; }
.mock-url {
  flex: 1; margin-left: 12px;
  background: rgba(255,255,255,0.05); border-radius: 6px;
  padding: 6px 12px; font-size: 11px; color: var(--text-muted);
}
.mock-content { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-stat {
  background: rgba(255,255,255,0.03); border-radius: 10px;
  padding: 16px; border: 1px solid var(--border);
}
.mock-stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.mock-stat-value { font-size: 22px; font-weight: 800; color: var(--accent); }
.mock-stat-value.purple { color: var(--accent2); }
.mock-stat-value.green { color: var(--accent3); }
.mock-post-preview {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.03); border-radius: 10px;
  padding: 16px; border: 1px solid var(--border);
  margin-top: 4px;
}
.mock-post-preview .label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent3); margin-bottom: 8px; }
.mock-post-preview .text { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.mock-badge {
  position: absolute; top: -10px; right: -10px;
  background: var(--accent3); color: #000;
  font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 50px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* --- PAIN SECTION --- */
.pain { background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(248,113,113,0.02) 50%, var(--bg-primary) 100%); }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  opacity: 0; transition: opacity var(--transition);
}
.pain-card:hover::before { opacity: 1; }
.pain-card:hover { border-color: rgba(248,113,113,0.2); background: var(--bg-card-hover); }
.pain-emoji { font-size: 32px; margin-bottom: 12px; }
.pain-text { font-size: 16px; font-weight: 600; line-height: 1.4; }
.pain-resolve {
  text-align: center; font-size: 17px; font-weight: 600;
  color: var(--accent3);
  padding: 20px 0;
}
.pain-resolve span { color: var(--text-primary); }

/* --- LIVE DEMO SECTION --- */
.demo { background: linear-gradient(180deg, var(--bg-primary), rgba(0,212,255,0.02), var(--bg-primary)); }
.demo-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.demo-tab {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50px; padding: 12px 24px;
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; transition: all var(--transition);
}
.demo-tab:hover { border-color: var(--border-hover); color: var(--text-primary); }
.demo-tab.active {
  background: var(--accent-glow); border-color: var(--accent);
  color: var(--accent);
}
.demo-content { position: relative; min-height: 400px; }
.demo-panel {
  display: none;
  animation: fadeIn .4s ease;
}
.demo-panel.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.demo-screenshot {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  max-width: 720px; margin: 0 auto;
}
.demo-screenshot img { width: 100%; display: block; }

/* Demo Carousel — Phone Frame */
.demo-carousel {
  max-width: 420px; margin: 0 auto;
}
.demo-phone {
  background: #111827;
  border: 3px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}
.demo-phone-notch {
  width: 120px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  margin: 4px auto 12px;
}
.demo-phone-screen {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-primary);
  position: relative;
  height: 520px;
}
.demo-slides { position: relative; height: 100%; }
.demo-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  overflow-y: auto;
  scrollbar-width: none;
}
.demo-slide::-webkit-scrollbar { display: none; }
.demo-slide.active { opacity: 1; z-index: 1; }
.demo-slide img {
  width: 100%; display: block;
}

/* Slide Navigation */
.demo-slide-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 20px;
}
.demo-slide-prev,
.demo-slide-next {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 16px;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.demo-slide-prev:hover,
.demo-slide-next:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-glow);
}
.demo-slide-labels {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.demo-slide-label {
  padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.demo-slide-label.active {
  color: var(--accent); border-color: var(--accent);
  background: var(--accent-glow);
}
.demo-slide-label:hover { color: var(--text-primary); }

.demo-caption {
  text-align: center; margin-top: 20px;
  font-size: 14px; color: var(--text-muted);
}

/* --- STEPS --- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff;
  margin: 0 auto 20px;
}
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-time {
  display: inline-block; margin-top: 16px;
  background: var(--accent-glow); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 50px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--accent);
}

/* --- CASE STUDIES --- */
.cases { background: linear-gradient(180deg, var(--bg-primary), rgba(168,85,247,0.02), var(--bg-primary)); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.case-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.case-photo {
  position: relative; width: 100%; height: 240px; overflow: hidden;
}
.case-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.case-card:hover .case-photo img { transform: scale(1.05); }
.case-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(6,11,24,0.85));
}
.case-niche {
  display: inline-block; background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3); border-radius: 50px;
  padding: 4px 12px; font-size: 11px; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 1px;
}
.case-body { padding: 24px; }
.case-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.case-role { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.case-quote {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 20px; font-style: italic;
  position: relative; padding-left: 16px;
  border-left: 2px solid var(--accent2);
}
.case-metrics { display: flex; gap: 12px; flex-wrap: wrap; }
.case-metric {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.15);
  border-radius: 50px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--accent3);
}
.case-metric.purple {
  background: rgba(168,85,247,0.08);
  border-color: rgba(168,85,247,0.15);
  color: var(--accent2);
}
.case-metric.blue {
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.15);
  color: var(--accent);
}

/* --- FEATURES --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-4px); background: var(--bg-card-hover); }
.feature-icon {
  font-size: 32px; margin-bottom: 16px;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-glow); border-radius: 14px;
}
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* --- COMPARISON TABLE --- */
.comparison { background: linear-gradient(180deg, var(--bg-primary), rgba(0,212,255,0.02), var(--bg-primary)); }
.comparison-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.comparison-table th, .comparison-table td {
  padding: 18px 24px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-size: 15px; font-weight: 700;
  background: rgba(255,255,255,0.03);
}
.comparison-table th:first-child,
.comparison-table td:first-child { text-align: left; font-weight: 600; }
.comparison-table td { font-size: 14px; color: var(--text-secondary); }
.col-us { color: var(--accent) !important; font-weight: 700 !important; }
.col-us-header {
  color: var(--accent) !important;
  position: relative;
}
.col-bad { color: var(--red) !important; }
.check { color: var(--accent3); font-size: 18px; }
.cross { color: var(--red); font-size: 18px; }
.comparison-table tr:last-child td { border-bottom: none; }

/* --- PRICING --- */
.pricing-card {
  max-width: 560px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  border-radius: var(--radius); z-index: -1; opacity: 0.15;
}
.pricing-badge {
  display: inline-block; background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-size: 14px; font-weight: 700;
  padding: 8px 24px; border-radius: 50px; margin-bottom: 24px;
}
.pricing-old {
  font-size: 18px; color: var(--text-muted);
  text-decoration: line-through; margin-bottom: 4px;
}
.pricing-amount {
  font-size: clamp(48px, 6vw, 64px); font-weight: 900;
  color: var(--accent); line-height: 1;
}
.pricing-period { font-size: 16px; color: var(--text-secondary); margin: 4px 0 8px; }
.pricing-daily {
  font-size: 14px; color: var(--accent3); font-weight: 600;
  margin-bottom: 24px;
}
.pricing-savings {
  display: inline-block;
  background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.2);
  border-radius: 50px; padding: 8px 20px;
  font-size: 13px; font-weight: 600; color: var(--accent3);
  margin-bottom: 28px;
}
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li {
  list-style: none; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .pf-check { color: var(--accent3); font-size: 16px; flex-shrink: 0; }

/* --- PROS / NUANCES --- */
.proscons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.proscons-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.proscons-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.proscons-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.proscons-item:last-child { border-bottom: none; }
.proscons-icon { flex-shrink: 0; margin-top: 2px; }
.proscons-text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.proscons-help { font-size: 13px; color: var(--accent); font-weight: 500; margin-top: 4px; }

/* --- FAQ --- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item.open { border-color: rgba(0,212,255,0.2); }
.faq-question {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 15px; font-weight: 600;
  transition: color var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--accent); }
.faq-arrow {
  font-size: 18px; transition: transform .3s ease;
  color: var(--text-muted); flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}

/* --- LEAD FORM --- */
.lead-section { background: linear-gradient(180deg, var(--bg-primary), rgba(0,212,255,0.02)); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.lead-benefits h3 { font-size: 28px; font-weight: 800; margin-bottom: 28px; }
.lead-benefit {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.lead-benefit-icon { font-size: 24px; flex-shrink: 0; }
.lead-benefit-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.lead-benefit-text p { font-size: 13px; color: var(--text-secondary); }
.lead-guarantee {
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-top: 24px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.5;
}
.lead-guarantee strong { color: var(--accent3); }

.lead-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.lead-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; text-align: center; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--text-secondary); margin-bottom: 6px;
}
.form-group label .optional { color: var(--text-muted); font-weight: 400; }
.form-input, .form-textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 15px;
  color: var(--text-primary); font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--accent3), #2dd4a8);
  color: #000; font-weight: 700; font-size: 16px;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(52,211,153,0.3); }
.form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.form-note {
  text-align: center; font-size: 12px;
  color: var(--text-muted); margin-top: 12px;
}

/* Contact Buttons */
.contact-buttons {
  display: flex; gap: 10px; margin-top: 20px;
}
.contact-btn {
  flex: 1; padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.contact-btn:hover { border-color: var(--border-hover); background: var(--bg-card-hover); opacity: 1; }
.contact-btn.tg { border-color: rgba(0,136,204,0.4); background: rgba(0,136,204,0.1); color: #0088cc; }
.contact-btn.tg:hover { background: rgba(0,136,204,0.2); }
.contact-btn.max { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); color: var(--text-primary); }
.contact-btn.max:hover { background: rgba(255,255,255,0.1); }
.contact-divider {
  text-align: center; font-size: 13px; color: var(--text-muted);
  margin: 18px 0; position: relative;
}
.contact-divider::before, .contact-divider::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 30px); height: 1px;
  background: var(--border);
}
.contact-divider::before { left: 0; }
.contact-divider::after { right: 0; }

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-left { display: flex; flex-direction: column; gap: 6px; }
.footer-logo { font-size: 22px; font-weight: 800; color: var(--accent); }
.footer-product {
  font-size: 14px; color: var(--text-secondary);
}
.footer-amisoft {
  font-weight: 800;
  font-size: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity var(--transition);
}
.footer-amisoft:hover { opacity: 0.8; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: all var(--transition);
  text-decoration: none;
}
.social-pill svg { flex-shrink: 0; }
.social-pill:hover { opacity: 1; transform: translateY(-1px); }
.social-pill.vk { border-color: rgba(69,130,194,0.4); background: rgba(69,130,194,0.15); color: #6bb0ff; }
.social-pill.vk:hover { background: rgba(69,130,194,0.25); color: #fff; border-color: rgba(69,130,194,0.6); }
.social-pill.tg { border-color: rgba(0,136,204,0.4); background: rgba(0,136,204,0.15); color: #33aadd; }
.social-pill.tg:hover { background: rgba(0,136,204,0.25); color: #fff; border-color: rgba(0,136,204,0.6); }
.social-pill.max { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #ddd; }
.social-pill.max:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); }
.footer-copy {
  width: 100%; text-align: center;
  font-size: 12px; color: var(--text-muted);
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* --- Floating Phone Button --- */
.floating-phone {
  display: flex;
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent3), #2dd4a8);
  color: #000; font-size: 22px;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(52,211,153,0.35);
  cursor: pointer; text-decoration: none;
  animation: float-phone 3s ease-in-out infinite;
  transition: box-shadow var(--transition);
}
.floating-phone:hover {
  box-shadow: 0 6px 30px rgba(52,211,153,0.5);
  opacity: 1;
}
@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* --- Toast --- */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--accent3); color: #000; font-weight: 600; font-size: 14px;
  padding: 14px 28px; border-radius: 50px;
  z-index: 200; opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  box-shadow: 0 8px 30px rgba(52,211,153,0.3);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .lead-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cases-grid { max-width: 100%; }
  .demo-carousel { max-width: 340px; }
  .demo-phone-screen { height: 440px; }
  .demo-slide-labels { gap: 4px; }
  .demo-slide-label { padding: 5px 10px; font-size: 11px; }
  .proscons-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 12px 10px; }
  .hero-ctas { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .contact-buttons { flex-direction: column; }
  .floating-phone { width: 58px; height: 58px; font-size: 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-socials { width: 100%; }
}

/* --- Custom Checkbox --- */
.checkbox-label {
  display: flex !important; align-items: flex-start; gap: 12px; cursor: pointer;
  font-size: 13px; color: var(--text-muted); text-align: left;
  user-select: none; transition: color var(--transition);
}
.checkbox-label:hover { color: var(--text-secondary); }
.policy-link { color: var(--accent); white-space: nowrap; transition: color var(--transition); }
.policy-link:hover { color: #fff; }

.checkbox-label input[type="checkbox"] {
  position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0;
}
.checkbox-custom {
  position: relative; flex-shrink: 0;
  display: block; width: 22px; height: 22px; min-width: 22px; margin-top: 0px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all var(--transition);
}
.checkbox-label:hover input[type="checkbox"]:not(:checked) ~ .checkbox-custom {
  border-color: var(--accent); background: rgba(0,212,255,0.05);
}
.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 14px rgba(0,212,255,0.5);
}
.checkbox-custom::after {
  content: ""; position: absolute; display: none;
  left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #000; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after { display: block; }

/* --- Premium Cookie Banner --- */
.cookie-banner {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: rgba(6, 11, 24, 0.85); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px;
  padding: 24px 32px; z-index: 9999; width: 90%; max-width: 650px;
  display: flex !important; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  opacity: 0; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto;
}
.cookie-text {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
}
.cookie-text a { color: var(--accent); font-weight: 500; transition: color var(--transition); }
.cookie-text a:hover { color: #fff; }
.cookie-accept {
  background: linear-gradient(135deg, var(--accent), #0099ff);
  color: #000; border: none; border-radius: 50px; padding: 12px 28px;
  font-weight: 700; font-size: 14px; cursor: pointer; white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cookie-accept:hover {
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; text-align: center; padding: 20px; bottom: 15px; }
  .cookie-accept { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .pricing-card { padding: 32px 24px; }
  .lead-form-card { padding: 24px; }
}
