/* ============================================
   TrendDrop — Landing Page Styles
   Light Theme · Royal Blue · Clean SaaS
   ============================================ */

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

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-lighter: #f0f7ff;
  --accent: #3b82f6;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-section: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-nav: 0 2px 20px rgba(0,0,0,0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

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

/* === NAVBAR (Floating Rounded) === */
.navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1100px; z-index: 1000;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-full);
  padding: 10px 10px 10px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95); border-color: var(--border);
  box-shadow: var(--shadow-nav);
}
.navbar.scrolled .navbar-brand { color: var(--text); }
.navbar.scrolled .navbar-links a { color: var(--text-secondary); }
.navbar.scrolled .navbar-links a:hover { color: var(--text); background: var(--bg-section); }
.navbar.scrolled .btn-outline { border-color: var(--border); color: var(--text); }
.navbar-brand { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 800; color: #fff; transition: var(--transition); }
.navbar-brand .logo-icon {
  width: 36px; height: 36px; background: var(--primary); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem;
}
.navbar-links { display: flex; align-items: center; gap: 8px; }
.navbar-links a {
  padding: 8px 18px; border-radius: var(--radius-full); font-size: 0.92rem;
  font-weight: 500; color: rgba(255,255,255,0.8); transition: var(--transition);
}
.navbar-links a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.navbar-actions { display: flex; align-items: center; gap: 8px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; font-weight: 600; transition: var(--transition); white-space: nowrap; }
.btn-outline {
  padding: 10px 22px; border-radius: var(--radius-full); background: transparent;
  border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 0.92rem;
}
.btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }
.btn-primary {
  padding: 10px 24px; border-radius: var(--radius-full); background: var(--primary);
  color: #fff; font-size: 0.92rem; box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.4); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-ghost { background: none; border: none; color: var(--text-secondary); padding: 10px 16px; font-size: 0.95rem; }
.btn-ghost:hover { color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text); padding: 8px; }

/* === HERO === */
.hero { padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; min-height: 700px; }

/* Animated deep-blue bokeh background (pure CSS, no image dependency) */
.hero-bg-wave {
  position: absolute; top: -15%; left: -15%; width: 130%; height: 130%;
  background: #0a1628;
  z-index: 0;
  overflow: hidden;
}
/* Bokeh glow orbs */
.hero-bg-wave::before,
.hero-bg-wave::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(60px);
}
.hero-bg-wave::before {
  width: 500px; height: 500px; top: 10%; left: 15%;
  background: radial-gradient(circle, rgba(56,189,248,0.5) 0%, rgba(37,99,235,0.3) 40%, transparent 70%);
  animation: bokeh1 14s ease-in-out infinite alternate;
}
.hero-bg-wave::after {
  width: 600px; height: 600px; top: 30%; right: 10%;
  background: radial-gradient(circle, rgba(99,179,237,0.4) 0%, rgba(30,64,175,0.25) 45%, transparent 70%);
  animation: bokeh2 18s ease-in-out infinite alternate;
}
/* Extra orbs via the overlay pseudo-element */
.hero-bg-overlay::before {
  content: ''; position: absolute; border-radius: 50%; filter: blur(80px);
  width: 400px; height: 400px; bottom: 20%; left: 40%;
  background: radial-gradient(circle, rgba(14,165,233,0.45) 0%, rgba(59,130,246,0.2) 50%, transparent 70%);
  animation: bokeh3 12s ease-in-out infinite alternate;
  z-index: 0;
}

/* Tiny sparkle dots scattered via box-shadow */
.hero-bg-wave {
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 55% 60%, rgba(147,197,253,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 30%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 55%, rgba(56,189,248,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 70%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 80%, rgba(147,197,253,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 85%, rgba(56,189,248,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 75%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 50% 35%, rgba(96,165,250,0.6) 0%, transparent 100%),
    #0a1628;
  animation: heroWaveDrift 20s ease-in-out infinite alternate;
}

@keyframes heroWaveDrift {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  50%  { transform: scale(1.06) translate(-2%, -1.5%); }
  100% { transform: scale(1.03) translate(1%, -1%); }
}
@keyframes bokeh1 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%  { transform: translate(60px, -40px) scale(1.2); opacity: 1; }
  100% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.6; }
}
@keyframes bokeh2 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%  { transform: translate(-50px, 30px) scale(1.15); opacity: 0.9; }
  100% { transform: translate(40px, -20px) scale(1.05); opacity: 0.5; }
}
@keyframes bokeh3 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50%  { transform: translate(30px, -50px) scale(1.3); opacity: 0.8; }
  100% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.4; }
}

/* Overlay: dark to white fade so text is readable and blends into white page */
.hero-bg-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.0) 0%,
    rgba(10,22,40,0.0) 35%,
    rgba(255,255,255,0.3) 55%,
    rgba(255,255,255,0.75) 75%,
    rgba(255,255,255,1) 100%);
  z-index: 1; pointer-events: none;
}

.hero-content { position: relative; z-index: 3; max-width: 720px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px 8px 8px; background: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full); margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); font-size: 0.9rem; font-weight: 600; color: var(--text);
  backdrop-filter: blur(10px);
}
.hero-badge-icons { display: flex; align-items: center; }
.hero-badge-icons img {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff;
  margin-right: -8px; object-fit: cover;
}
.hero-badge-icons img:last-child { margin-right: 8px; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900;
  line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 20px; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 .highlight { color: #93c5fd; text-decoration: underline; text-decoration-color: rgba(147,197,253,0.4); text-underline-offset: 6px; }

.hero p.subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 540px;
  margin: 0 auto 32px; line-height: 1.7; text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; }
.hero-video-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-secondary); font-size: 0.95rem; font-weight: 500;
}
.hero-video-link:hover { color: var(--primary); }
.play-icon {
  width: 20px; height: 20px; border: 2px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.6rem;
}

/* === PARTNER LOGOS === */
.partners { padding: 48px 0; text-align: center; }
.partners-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; font-weight: 500; }
.partners-logos {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap; opacity: 0.5; filter: grayscale(100%);
}
.partners-logos img { height: 32px; object-fit: contain; }
.partners-logos span { font-size: 1.3rem; font-weight: 700; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

/* === MOCKUP SECTION === */
.mockup-section { padding: 40px 0 80px; position: relative; }
.mockup-frame {
  max-width: 1100px; margin: 0 auto; border-radius: var(--radius-xl);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-xl); background: var(--bg-card);
}
.mockup-toolbar {
  display: flex; align-items: center; gap: 8px; padding: 14px 18px;
  background: var(--bg-light); border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot.r { background: #ef4444; }
.mockup-dot.y { background: #f59e0b; }
.mockup-dot.g { background: #10b981; }
.mockup-content { padding: 0; }
.mockup-content img { width: 100%; display: block; }
.mockup-content .mockup-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; padding: 24px;
}
.mock-product-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.mock-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mock-product-img { width: 100%; height: 160px; object-fit: cover; background: #f1f5f9; }
.mock-product-body { padding: 14px; }
.mock-product-body h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-product-row { display: flex; align-items: center; justify-content: space-between; }
.mock-price { font-size: 0.92rem; font-weight: 700; color: var(--primary); }
.mock-chart { display: flex; align-items: flex-end; gap: 2px; height: 24px; }
.mock-chart-bar { width: 4px; background: var(--primary); border-radius: 2px; opacity: 0.5; }
.mock-sales { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.mock-tags { display: flex; gap: 6px; margin-top: 8px; }
.mock-tag { font-size: 0.7rem; padding: 3px 8px; border-radius: var(--radius-full); background: var(--primary-light); color: var(--primary); font-weight: 600; }
.mock-tag.green { background: #ecfdf5; color: #059669; }
.mock-btn-row { display: flex; gap: 6px; margin-top: 10px; }
.mock-btn {
  flex: 1; padding: 8px; text-align: center; border-radius: var(--radius-sm);
  font-size: 0.78rem; font-weight: 600; border: 1px solid var(--border);
  background: var(--bg); color: var(--text-secondary); cursor: default;
}
.mock-btn.primary { background: var(--primary); color: #fff; border-color: var(--primary); }

/* === FEATURE SECTIONS (Alternating) === */
.feature-section { padding: 80px 0; }
.feature-section.alt { background: var(--bg-light); }
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.feature-grid.reverse .feature-text { order: 2; }
.feature-grid.reverse .feature-visual { order: 1; }
.feature-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary);
  margin-bottom: 12px;
}
.feature-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
  line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
}
.feature-text h2 .highlight { color: var(--primary); }
.feature-text p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.feature-visual {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.feature-visual img { width: 100%; display: block; }

/* === HOW IT WORKS === */
.how-section { padding: 100px 0; text-align: center; }
.section-header { max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-header p { font-size: 1.05rem; color: var(--text-secondary); }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { padding: 32px 24px; text-align: center; }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--primary); color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; font-weight: 800;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

/* === TESTIMONIALS === */
.testimonials { padding: 100px 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.testimonial-avatar {
  width: 56px; height: 56px; border-radius: var(--radius-md); object-fit: cover;
  background: linear-gradient(135deg, #818cf8, #a78bfa); flex-shrink: 0;
}
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 4px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.testimonial-name { font-size: 0.95rem; font-weight: 700; }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

/* === PRICING === */
.pricing-section { padding: 100px 0; background: var(--bg-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; text-align: center; transition: var(--transition); position: relative;
}
.pricing-card.featured {
  border-color: var(--primary); box-shadow: 0 8px 32px rgba(37,99,235,0.15);
  transform: scale(1.04);
}
.pricing-card.featured::before {
  content: 'Mais popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: 4px 20px; border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 700;
}
.pricing-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 2.8rem; font-weight: 900; margin: 12px 0; color: var(--text); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px; padding: 9px 0;
  font-size: 0.92rem; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--primary); font-weight: 700; font-size: 1.1rem; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* === FAQ === */
.faq-section { padding: 100px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; background: none; border: none; font-size: 1rem;
  font-weight: 600; color: var(--text); text-align: left; cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-arrow { font-size: 1.2rem; color: var(--text-muted); transition: var(--transition); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }

/* === CTA FINAL === */
.cta-final {
  padding: 80px 0; text-align: center; background: var(--bg-light);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
}
.cta-icon {
  width: 64px; height: 64px; margin: 0 auto 20px; background: var(--primary);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.cta-final h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-final p { font-size: 1.05rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto 28px; }

/* === FOOTER === */
.footer { padding: 60px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-text { font-size: 0.9rem; color: var(--text-muted); margin-top: 16px; max-width: 300px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
  font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.footer-col h4 {
  font-size: 0.9rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 16px; color: var(--text);
}
.footer-col a { display: block; font-size: 0.92rem; color: var(--text-muted); padding: 5px 0; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  text-align: center; font-size: 0.85rem; color: var(--text-muted);
}

/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed; bottom: 88px; right: 24px; z-index: 999;
  width: 44px; height: 44px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px); pointer-events: none; transition: var(--transition);
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* === ANIMATIONS === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* Scroll animations - elements start visible, JS adds .anim-ready to enable */
.anim-ready .anim { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.anim-ready .anim.visible, .anim.visible { opacity: 1; transform: translateY(0); }
/* Without .anim-ready on body, .anim elements are fully visible (safe fallback) */
.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }

/* Hero items animate immediately on load, not on scroll */
.hero .anim {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.hero .anim-d1 { animation-delay: 0.15s; }
.hero .anim-d2 { animation-delay: 0.3s; }
.hero .anim-d3 { animation-delay: 0.45s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid.reverse .feature-text { order: 1; }
  .feature-grid.reverse .feature-visual { order: 2; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar { width: calc(100% - 24px); padding: 8px 8px 8px 16px; top: 8px; }
  .navbar-links { display: none; }
  .mobile-toggle { display: block; }
  .navbar-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: calc(100% + 8px); left: 0; right: 0; background: #fff;
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 16px; box-shadow: var(--shadow-lg); gap: 4px;
  }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .steps-row { grid-template-columns: 1fr; }
  .mockup-content .mockup-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-logos { gap: 24px; }
}
