/* ──────────────────── SECTION UTILITIES ──────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--green-400);
  border-radius: 1px;
}

.section-title {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--ink-mid);
  max-width: 36rem;
  line-height: 1.7;
}

/* ──────────────────── HERO ──────────────────── */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: linear-gradient(170deg, var(--surface) 0%, var(--green-50) 40%, var(--green-100) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(93, 158, 114, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(237, 212, 122, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 32rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-700);
  background: rgba(61, 122, 84, 0.08);
  border: 1px solid rgba(61, 122, 84, 0.15);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--green-500);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.125rem;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: var(--yellow-300);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--surface);
  background: var(--green-600);
  border-radius: var(--radius-full);
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(61, 122, 84, 0.3);
}

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 122, 84, 0.35);
}

.btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-mid);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--green-300);
  color: var(--green-700);
  background: var(--green-50);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.75rem;
  color: var(--green-700);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-top: 0.125rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 32rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--green-700);
}

.mockup-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.mockup-body {
  padding: 1.5rem;
  background: var(--surface-alt);
  min-height: 18rem;
}

.mockup-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.75rem;
}

.mockup-card-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.mockup-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--green-200);
}

.mockup-text-line {
  height: 0.5rem;
  border-radius: 4px;
  background: var(--green-200);
}

.mockup-text-line.short { width: 40%; }
.mockup-text-line.medium { width: 65%; }
.mockup-text-line.long { width: 85%; }
.mockup-text-line.full { width: 100%; }

.mockup-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.mockup-progress-bar {
  flex: 1;
  height: 0.375rem;
  background: var(--green-100);
  border-radius: 4px;
  overflow: hidden;
}

.mockup-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green-400), var(--green-500));
}

.mockup-progress-pct {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-600);
}

/* Floating elements */
.hero-float {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  animation: float 6s ease-in-out infinite;
}

.hero-float.ai-badge {
  top: 15%;
  right: -2rem;
  animation-delay: 0s;
}

.hero-float.step-badge {
  bottom: 20%;
  left: -1.5rem;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon.green {
  background: rgba(61, 122, 84, 0.1);
  color: var(--green-600);
}

.float-icon.yellow {
  background: rgba(237, 212, 122, 0.2);
  color: var(--yellow-500);
}

.float-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}

.float-subtext {
  font-size: 0.6875rem;
  color: var(--ink-muted);
}

/* ──────────────────── TRUSTED BY ──────────────────── */
.trusted {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}

.trusted-modules {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.trusted-module {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all 0.2s;
}

.trusted-module:hover {
  border-color: var(--green-300);
  background: var(--green-50);
}

.trusted-module-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

/* ──────────────────── FEATURES ──────────────────── */
.features {
  padding: 6rem 0;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: default;
}

.feature-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon.green {
  background: rgba(61, 122, 84, 0.08);
  color: var(--green-500);
}

.feature-icon.yellow {
  background: rgba(237, 212, 122, 0.15);
  color: var(--yellow-500);
}

.feature-icon.teal {
  background: rgba(90, 136, 204, 0.1);
  color: #5a88cc;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.625rem;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ──────────────────── HOW IT WORKS ──────────────────── */
.how-it-works {
  padding: 6rem 0;
  background: var(--surface-alt);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works-header .section-subtitle {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 1.625rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-200), var(--yellow-300), var(--green-200));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: default;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--surface);
  background: var(--green-600);
  box-shadow: 0 4px 12px rgba(61, 122, 84, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.step-item:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(61, 122, 84, 0.35);
}

.step-item:nth-child(2) .step-number { background: var(--green-500); }
.step-item:nth-child(3) .step-number { background: var(--green-400); }
.step-item:nth-child(4) .step-number { background: var(--yellow-400); color: var(--ink); }

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ──────────────────── SHOWCASE ──────────────────── */
.showcase {
  padding: 6rem 0;
}

.showcase .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-visual {
  position: relative;
}

.showcase-main-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.showcase-card-top {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
}

.showcase-card-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(61, 122, 84, 0.08);
  color: var(--green-600);
}

.showcase-card-body {
  padding: 1.5rem;
}

.showcase-step-list {
  list-style: none;
}

.showcase-step {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
}

.showcase-step + .showcase-step {
  border-top: 1px solid var(--border);
}

.showcase-step-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.showcase-step-check.done {
  background: var(--green-500);
  color: white;
}

.showcase-step-check.current {
  background: var(--yellow-300);
  color: var(--ink);
}

.showcase-step-check.pending {
  background: var(--green-100);
  color: var(--ink-faint);
}

.showcase-step-check svg {
  width: 0.875rem;
  height: 0.875rem;
}

.showcase-step-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}

.showcase-step-meta {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-top: 0.125rem;
}

.showcase-content .section-subtitle {
  margin-bottom: 2rem;
}

.showcase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

.showcase-bullet svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.btn-link-subtle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-600);
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-full);
  transition: all 0.25s;
}

.btn-link-subtle:hover {
  background: var(--green-50);
  border-color: var(--green-300);
  color: var(--green-700);
}

.btn-link-subtle svg {
  transition: transform 0.2s;
}

.btn-link-subtle:hover svg {
  transform: translateX(3px);
}

/* ──────────────────── TEMPLATES SHOWCASE ──────────────────── */
.templates {
  padding: 6rem 0;
  background: var(--surface-alt);
}

.templates-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.templates-header .section-subtitle {
  margin: 0 auto;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.template-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
  cursor: pointer;
}

.template-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.template-card-module {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.template-card-module.freelancing { background: rgba(90, 136, 204, 0.1); color: #5a88cc; }
.template-card-module.finance { background: rgba(61, 122, 84, 0.08); color: var(--green-600); }
.template-card-module.web { background: rgba(155, 89, 182, 0.1); color: #9b59b6; }
.template-card-module.marketing { background: rgba(210, 105, 42, 0.1); color: #d2692a; }
.template-card-module.immobilier { background: rgba(237, 212, 122, 0.15); color: var(--yellow-500); }
.template-card-module.ecommerce { background: rgba(224, 112, 112, 0.1); color: #c05050; }

.template-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.375rem;
}

.template-card-steps {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

.templates-more {
  text-align: center;
  margin-top: 2.5rem;
}

.templates-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-600);
  transition: color 0.2s;
  cursor: pointer;
}

.templates-more-link:hover {
  color: var(--green-700);
}

.templates-more-link svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.2s;
}

.templates-more-link:hover svg {
  transform: translateX(3px);
}

/* ──────────────────── TESTIMONIALS ──────────────────── */
.testimonials {
  padding: 6rem 0;
  background: var(--green-900);
  color: var(--surface);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-header .section-label {
  color: var(--yellow-300);
}

.testimonials-header .section-label::before {
  background: var(--yellow-300);
}

.testimonials-header .section-title {
  color: var(--surface);
}

.testimonials-header .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: background 0.2s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--yellow-300);
  fill: var(--yellow-300);
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-900);
}

.testimonial-avatar.a { background: var(--green-300); }
.testimonial-avatar.b { background: var(--yellow-300); }
.testimonial-avatar.c { background: var(--green-200); }

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--surface);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* ──────────────────── FINAL CTA ──────────────────── */
.final-cta {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--surface) 0%, var(--green-50) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(61, 122, 84, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta .section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.final-cta .section-subtitle {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.free-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--green-500);
}

/* ──────────────────── FAQ ──────────────────── */
.faq {
  padding: 6rem 0;
  background: var(--surface-alt);
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 42rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: '';
}

.faq-question:hover {
  color: var(--green-600);
}

.faq-chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ink-muted);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 1.5rem;
  animation: faq-open 0.3s ease;
}

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-mid);
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ──────────────────── RESPONSIVE ──────────────────── */
@media (max-width: 64em) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content { max-width: 100%; }
  .hero-title { font-size: 2.75rem; }
  .hero-visual { order: -1; }
  .hero-mockup { max-width: 28rem; margin: 0 auto; }
  .hero-float.ai-badge { right: 0; }
  .hero-float.step-badge { left: 0; }

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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }

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

  .showcase .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 48em) {
  .hero { padding: 7rem 0 3rem; }
  .hero-title { font-size: 2.25rem; }
  .hero-stats { gap: 1.5rem; }
  .section-title { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .templates-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .final-cta .section-title { font-size: 2rem; }
}

@media (max-width: 30em) {
  .hero-title { font-size: 1.875rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .final-cta-actions { flex-direction: column; align-items: center; }
}
