/*
Theme Name: Moclick LP
Theme URI: https://moclick.com.br
Author: Moclick
Author URI: https://moclick.com.br
Description: Landing page otimizada para conversão de leads em mídia digital. Mobile-first, QR-code ready.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moclick-lp
Tags: landing-page, conversion, mobile-first, lead-capture, one-page
*/

/* ============================================
   CSS VARIABLES - Paleta Moclick
   ============================================ */
:root {
  --bg: #0E081C;
  --bg-alt: #150C29;
  --card: #1B1033;
  --card-border: #2E1E4E;
  --purple-deep: #3B1F6B;
  --purple: #6E3FBF;
  --purple-bright: #9B5CFF;
  --lavender: #C9AEEC;
  --lavender-light: #E9DFFB;
  --text: #F5F1FE;
  --text-muted: #B5A8D1;
  --success: #7CE0C0;
  --danger: #FF6B6B;
  --warning: #FFC94D;
  --gradient-cta: linear-gradient(135deg, var(--purple-bright), var(--purple));
  --shadow-card: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(155,92,255,0.05);
  --shadow-cta: 0 10px 30px -8px rgba(155,92,255,0.5);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding { padding: 80px 0; }

.text-center { text-align: center; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 8, 28, 0.92);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(14, 8, 28, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.logo span { color: var(--purple-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple-bright);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--lavender-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--purple-bright);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(155,92,255,0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--lavender);
  color: var(--bg);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(110,63,191,0.35), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(201,174,236,0.12), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155,92,255,0.12);
  border: 1px solid rgba(155,92,255,0.35);
  color: var(--lavender-light);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .highlight { color: var(--purple-bright); }

.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-point::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230E081C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ============================================
   LEAD FORM CARD
   ============================================ */
.lead-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.lead-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-bright), var(--purple), var(--purple-bright));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.lead-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.lead-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-bright);
  box-shadow: 0 0 0 3px rgba(155,92,255,0.15);
}

.form-group input::placeholder {
  color: rgba(181, 168, 209, 0.5);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.btn-primary {
  width: 100%;
  padding: 15px;
  background: var(--gradient-cta);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px rgba(155,92,255,0.6);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary .arrow {
  transition: var(--transition);
}

.btn-primary:hover .arrow {
  transform: translateX(3px);
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note::before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B5A8D1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

/* Form validation states */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.error-msg {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-group input.error + .error-msg,
.form-group select.error + .error-msg,
.form-group textarea.error + .error-msg {
  display: block;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-success.active {
  display: block;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--success);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 40px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--lavender-light);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-item .label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.eyebrow {
  color: var(--purple-bright);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-head h2 {
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   PROBLEM / SOLUTION
   ============================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.problem-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-2px);
}

.problem-card.bad {
  border-color: rgba(255, 107, 107, 0.2);
}

.problem-card.good {
  border-color: rgba(124, 224, 192, 0.25);
}

.problem-card h4 {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.problem-card.bad h4::before {
  content: '';
  width: 24px;
  height: 24px;
  background: var(--danger);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.problem-card.good h4::before {
  content: '';
  width: 24px;
  height: 24px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230E081C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.problem-card ul {
  list-style: none;
}

.problem-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 14.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.problem-card ul li:last-child {
  border-bottom: none;
}

.problem-card.bad ul li::before {
  content: '✕';
  color: var(--danger);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-card.good ul li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, rgba(155,92,255,0.1), transparent);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-bright);
  box-shadow: 0 20px 40px -10px rgba(155,92,255,0.15);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.service-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   STEPS / FUNNEL
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--card-border), var(--purple-bright), var(--card-border));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 20px;
  color: var(--lavender-light);
  box-shadow: 0 0 20px rgba(155,92,255,0.2);
}

.step h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   VERTICALS
   ============================================ */
.vert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.vert-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
}

.vert-card:hover {
  border-color: var(--purple-bright);
  transform: translateY(-3px);
}

.vert-card.featured {
  border-color: var(--purple-bright);
  background: linear-gradient(180deg, rgba(155,92,255,0.08), var(--card));
}

.vert-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.vert-card h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.vert-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-alt); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--purple-bright);
}

.stars {
  color: var(--warning);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-card p.quote {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
}

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-bright), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--bg);
  flex-shrink: 0;
}

.testi-author .name {
  font-size: 14px;
  font-weight: 600;
}

.testi-author .role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--purple-deep), #1B0E38);
  text-align: center;
  border-top: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155,92,255,0.15), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(26px, 3.5vw, 32px);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.final-cta p {
  color: var(--lavender-light);
  margin-bottom: 32px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.final-cta .btn-primary {
  width: auto;
  padding: 16px 40px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--bg); }

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(155,92,255,0.3);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--lavender-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(155,92,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--purple-bright);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--purple-bright);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--lavender-light);
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  font-size: 13.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--lavender-light);
}

.footer-bottom {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  opacity: 0.7;
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 8, 28, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--card-border);
  padding: 12px 20px;
  z-index: 999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}

.sticky-cta .btn-primary {
  margin: 0;
  padding: 14px;
  font-size: 14px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE - MOBILE FIRST OPTIMIZATION
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vert-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }

  .hero-points {
    flex-direction: column;
    gap: 10px;
  }

  .lead-card {
    padding: 24px;
    margin: 0 -4px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .trust-item .num { font-size: 26px; }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-grid::before { display: none; }

  .step-num { margin-bottom: 14px; }

  .vert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vert-card { padding: 18px 14px; }
  .vert-icon { font-size: 24px; }
  .vert-card h4 { font-size: 13px; }
  .vert-card p { font-size: 11.5px; }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testi-card { padding: 22px; }

  .final-cta { padding: 60px 0; }

  .faq-question {
    font-size: 14px;
    padding: 16px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col h5 { margin-bottom: 12px; }

  /* Sticky CTA on mobile */
  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }

  .section-padding { padding: 60px 0; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav { padding: 0 16px; height: 56px; }
  .logo { font-size: 20px; }

  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }

  .lead-card { padding: 20px; }
  .lead-card h3 { font-size: 20px; }

  .btn-primary { padding: 14px; font-size: 14px; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item .num { font-size: 22px; }
  .trust-item .label { font-size: 12px; }

  .vert-grid { grid-template-columns: repeat(2, 1fr); }

  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 24px; }

  .problem-card { padding: 24px; }
  .problem-card h4 { font-size: 16px; }

  .service-card { padding: 22px 18px; }
  .service-icon { width: 42px; height: 42px; font-size: 18px; }

  .step h4 { font-size: 16px; }
  .step p { font-size: 13px; }

  .final-cta h2 { font-size: 24px; }
  .final-cta p { font-size: 15px; }
  .final-cta .btn-primary { padding: 14px 28px; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-muted: #D0C8E0;
    --card-border: #4A3A6E;
  }
}