/* ===========================
   দোকানGo Landing Page - CSS
   Color Palette:
   - Primary: #4F46E5 (Indigo)
   - Accent: #10B981 (Emerald)
   - Dark BG: #0F172A
   - Card BG: rgba(255,255,255,0.05)
   =========================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #4F46E5;
  --primary-light: #818CF8;
  --accent: #10B981;
  --accent-light: #34D399;
  --bg-dark: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1F5F9;
  --text-white: #0F172A;
  --text-muted: #475569;
  --text-dim: #64748B;
  --border-glass: #E2E8F0;
  --gradient-primary: linear-gradient(135deg, #4F46E5, #7C3AED);
  --gradient-accent: linear-gradient(135deg, #10B981, #06B6D4);
  --gradient-hero: linear-gradient(160deg, #F8FAFC 0%, #EEF2FF 50%, #F8FAFC 100%);
  --shadow-glow: 0 4px 40px rgba(79, 70, 229, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-bn: 'Hind Siliguri', sans-serif;
  --font-en: 'Inter', sans-serif;
  --max-w: 1140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  zoom: 125%; /* সম্পূর্ণ পেজকে ১২৫% জুম করার জন্য */
}

body {
  font-family: var(--font-bn);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-en);
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-bn);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid var(--border-glass);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  background: rgba(79, 70, 229, 0.1);
}

.btn-accent {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  padding: 32px;
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo em {
  font-style: normal;
  font-family: var(--font-en);
  color: var(--accent);
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated gradient orbs in background */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.hero::before {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.hero::after {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -50px;
  left: -100px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.15);
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 540px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* ---------- Search Bar ---------- */
.search-bar-wrapper {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.25s both;
}

.search-input {
  flex: 1;
  padding: 14px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08);
  font-family: var(--font-bn);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.search-btn {
  padding: 14px 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex; /* Changed from inline-flex to flex for better responsive behavior */
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
  justify-content: center; /* Centers the stats */
  align-items: center; /* Vertically aligns the stats */
  gap: 48px; /* Spacing between each stat */
  margin-top: 56px;
  padding: 28px 48px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  animation: fadeInUp 0.6s ease 0.4s both;
  max-width: 100%; /* Ensures it doesn't overflow */
}

.hero-stat {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center; /* Center aligns the text horizontally */
  text-align: center; /* Center aligns text inside the span/strong */
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(79, 70, 229, 0.2), transparent);
}

.hero-stat strong {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-stat span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

/* ---------- Social Proof ---------- */
.social-proof {
  background: rgba(79, 70, 229, 0.04);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 48px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.proof-item strong {
  font-size: 2rem;
  display: block;
  color: var(--accent);
}

.proof-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Benefits Section ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  text-align: center;
  padding: 40px 28px;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  background: rgba(79, 70, 229, 0.12);
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-en);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  display: flex;
  gap: 16px;
  padding: 28px;
  align-items: flex-start;
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- Products Grid (Dynamic from Supabase) ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.12);
}

.product-card img {
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-category-tag {
  display: inline-block;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

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

/* ---------- Product Card Buttons ---------- */
.product-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.product-btn {
  flex: 1;
  padding: 10px 8px;
  font-size: 0.85rem;
  border-radius: 12px;
  text-align: center;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-facebook {
  background: #1877F2;
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
  background: #0d65d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(24, 119, 242, 0.4);
}

/* ---------- Beta Announcement Bar ---------- */
.beta-bar {
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  color: #fff;
  padding: 10px 0;
  position: relative;
  z-index: 1001;
}

.beta-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.beta-bar p {
  font-size: 0.88rem;
  margin: 0;
  text-align: center;
}

.beta-bar a {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: underline;
}

.beta-bar a:hover {
  color: #fcd34d;
}

.beta-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
}

.beta-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

/* ---------- Feedback / Comments ---------- */
.feedback-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feedback-card {
  padding: 20px 24px;
  text-align: left;
}

.feedback-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feedback-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-en);
  flex-shrink: 0;
}

.feedback-name {
  display: block;
  font-size: 0.95rem;
  color: var(--text-white);
}

.feedback-time {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.feedback-message {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .beta-bar p { font-size: 0.78rem; }
  .beta-close { font-size: 0.9rem; }
}

/* ---------- Pricing Teaser ---------- */
.pricing-section {
  background: var(--gradient-hero);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.pricing-card .tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: 50px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-card .price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .price-note {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-card li {
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text-white);
  padding: 20px 24px;
  font-size: 1rem;
  font-family: var(--font-bn);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--text-dim);
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
  color: var(--primary-light);
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Final CTA / Form ---------- */
.final-cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.form-card {
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group label .required {
  color: #EF4444;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-glass);
  background: var(--bg-dark);
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: var(--font-bn);
  transition: var(--transition);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-dim);
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.form-control.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.error-msg {
  font-size: 0.8rem;
  color: #EF4444;
  margin-top: 6px;
  display: none;
}

.form-control.error + .error-msg {
  display: block;
}

.consent-text {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 16px;
  line-height: 1.6;
}

/* Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success .check-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-glass);
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.footer .footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer .footer-links a:hover {
  color: var(--primary-light);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  html {
    zoom: 100%; /* মোবাইলে জুম ১২৫% থেকে ১০০% করা হলো, যাতে স্ক্রিন থেকে কিছু বাইরে না যায় */
  }
  .section { padding: 72px 0; }
  .hero { padding-top: 100px; }
  
  /* সার্চ বার এবং ইনপুট ফিল্ড রেসপন্সিভ ফিক্স */
  .search-bar-wrapper {
    flex-direction: column;
  }
  .search-input { width: 100%; }
  .search-btn { width: 100%; }

  /* গ্রিড ফিক্স (বক্সগুলো বামে/ডানে বাইরে চলে যাওয়া রোধ করতে) */
  .benefits-grid, .steps-grid, .features-grid, .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats { 
    display: flex;
    flex-direction: column; 
    gap: 24px; 
    padding: 24px; 
    border-radius: 20px; 
    width: 100%; 
    align-items: center;
    text-align: center;
  }
  .hero-stat:not(:last-child)::after {
    right: auto;
    bottom: -12px;
    top: auto;
    height: 1px;
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, rgba(79, 70, 229, 0.2), transparent);
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .proof-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .nav-cta { padding: 8px 14px; font-size: 0.8rem; width: auto; white-space: nowrap; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-stat strong { font-size: 1.4rem; }
  .section-title { font-size: 1.6rem; }
  .benefits-grid, .steps-grid, .features-grid, .products-grid {
    gap: 16px;
  }
}
