/* EcomTech — Professional Website Builder */

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

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #3B82F6;
  --primary-bg: #EFF6FF;
  --accent: #7C3AED;
  --accent-light: #8B5CF6;
  --secondary: #10B981;
  --secondary-dark: #059669;
  --text: #0f172a;
  --text-light: #4b5563;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(37,99,235,0.15);
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  --gradient-dark: linear-gradient(135deg, #1e40af 0%, #5b21b6 100%);
}

html { scroll-behavior: smooth; }

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

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

/* Accessibility: links in content paragraphs must be distinguishable */
.article-content a, .article-content-wide a, .callout a:not(.btn), .feature-list-card a,
.benefit-card a, .industry-card a, .compare-card a, .mistake-card a,
p a:not(.btn), .faq-answer a { text-decoration: underline; text-underline-offset: 2px; }
p a:not(.btn):hover, .article-content a:hover, .article-content-wide a:hover { text-decoration-thickness: 2px; }

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

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

/* ===== HEADER ===== */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: var(--text-muted) !important;
  margin-bottom: 1px;
}

.footer-brand .logo-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand .logo-sub {
  -webkit-text-fill-color: rgba(255,255,255,0.4) !important;
}

/* Nav */
.nav-list {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.93rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-link:hover { color: var(--primary); background: var(--primary-bg); }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  opacity: 0.4;
  transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); opacity: 0.7; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -8px;
  min-width: 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 4px 8px 8px;
  padding-top: 8px;
  list-style: none;
  z-index: 100;
  animation: dropdownIn 0.2s ease;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

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

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text);
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.dropdown-menu a:hover { background: var(--primary-bg); color: var(--primary); }

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(37,99,235,0.25);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
  color: #fff;
}

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

.mobile-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 12px 0; }

.breadcrumb-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.85rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '\203A';
  margin-right: 6px;
  color: var(--text-muted);
}

.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active span { color: var(--text-light); }

/* ===== HERO (Homepage) ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  color: #fff;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero .gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.7;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.hero .btn-group { justify-content: flex-start; }

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

.hero-mockup {
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 80px rgba(37,99,235,0.1);
}

.mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #eab308; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-body {
  display: grid;
  gap: 12px;
}

.mockup-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 4px;
}

.mockup-nav-logo {
  width: 32px;
  height: 8px;
  background: var(--gradient);
  border-radius: 4px;
}

.mockup-nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.mockup-nav-link {
  width: 28px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}

.mockup-hero-block {
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
}

.mockup-h1 {
  height: 12px;
  background: rgba(255,255,255,0.9);
  border-radius: 6px;
  width: 70%;
  margin: 0 auto 10px;
}

.mockup-sub {
  height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
  width: 50%;
  margin: 0 auto 16px;
}

.mockup-btn {
  display: inline-block;
  width: 60px;
  height: 20px;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
}

.mockup-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.mockup-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 16px 10px;
}

.mockup-card-icon {
  width: 24px;
  height: 24px;
  background: var(--gradient);
  border-radius: 6px;
  margin: 0 auto 8px;
  opacity: 0.7;
}

.mockup-card-line {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-bottom: 6px;
}

.mockup-card-line:last-child { width: 60%; margin-bottom: 0; }

/* Floating elements around hero */
.hero-float {
  position: absolute;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.hero-float-1 { top: 15%; right: -20px; animation-delay: 0s; }
.hero-float-2 { bottom: 20%; left: -30px; animation-delay: 2s; }

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

/* Hero stats bar */
.hero-stats-bar {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }
.hero-stat .stat-number { font-size: 1.8rem; font-weight: 800; display: block; letter-spacing: -0.5px; }
.hero-stat .stat-label { font-size: 0.8rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}

.btn-white { background: #fff; color: var(--text); }
.btn-white:hover { background: #f1f5f9; color: var(--text); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.hero .btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 4px 20px rgba(37,99,235,0.4); }
.hero .btn-primary:hover { box-shadow: 0 8px 32px rgba(37,99,235,0.5); transform: translateY(-2px); color: #fff; }

.hero .btn-outline { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.4); }

.page-hero .btn-primary { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.page-hero .btn-primary:hover { background: #f8fafc; color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.page-hero .btn-outline,
.cta-section .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.page-hero .btn-outline:hover,
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.6); }

.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: var(--secondary-dark); color: #fff; }

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
.section { padding: 50px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); color: #fff; }

.section h2 { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.2; }
.section p { line-height: 1.75; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ===== FEATURE GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.6; }

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

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ===== PRICING TABLE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.pricing-card.popular {
  border-color: var(--primary);
  position: relative;
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.pricing-card.popular:hover { transform: scale(1.05); }

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  padding: 5px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .price { font-size: 3rem; font-weight: 800; color: var(--primary); margin: 16px 0; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.pricing-card .price-desc { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

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

.pricing-features li::before {
  content: '\2713';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
}

/* 5-column pricing grid */
.pricing-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pricing-grid-5 .pricing-card { padding: 32px 20px; }
.pricing-grid-5 .pricing-card h3 { font-size: 1.1rem; }
.pricing-grid-5 .price { font-size: 2.4rem; }
.pricing-grid-5 .pricing-features li { font-size: 0.85rem; padding: 8px 0; }
.pricing-grid-5 .btn { padding: 12px 20px; font-size: 0.88rem; }

.pricing-annual-note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 8px;
}

.pricing-annual-note a { color: #fff; text-decoration: underline; }

/* Table responsive wrapper */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

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

.faq-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow); }

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

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-light);
}

.faq-item.active .faq-question::after {
  content: '\2212';
  color: #fff;
  background: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer { display: block; }

/* ===== ARTICLE / GUIDE CONTENT ===== */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.2; }
.article-content h2 { font-size: 1.75rem; font-weight: 700; margin: 48px 0 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.article-content h3 { font-size: 1.25rem; font-weight: 600; margin: 32px 0 12px; }
.article-content p { margin-bottom: 16px; color: var(--text); }
.article-content ul, .article-content ol { margin: 0 0 16px 24px; color: var(--text); }
.article-content li { margin-bottom: 8px; }

.article-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }

/* Table of Contents */
.toc {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 40px;
}

.toc h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 20px; }
.toc li { margin-bottom: 6px; font-size: 0.95rem; }
.toc a { color: var(--primary); }

/* Code blocks */
.code-block {
  background: var(--bg-dark);
  color: #e2e8f0;
  border-radius: var(--radius);
  padding: 24px;
  overflow-x: auto;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Callout / Note */
.callout {
  background: var(--primary-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.callout p { margin: 0; color: var(--text); }
.callout strong { color: var(--primary-dark); }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 32px;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table th, .comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th { background: var(--bg-light); font-weight: 600; color: var(--text); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--primary-bg); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { font-size: 2.25rem; margin-bottom: 16px; position: relative; }
.cta-section p { opacity: 0.6; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-section .btn-group { position: relative; }

.cta-section .btn-primary { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.cta-section .btn-primary:hover { background: #f1f5f9; color: var(--primary-dark); box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* ===== 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: 32px 24px;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.step-number {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-wrapper .feature-card {
  padding: 28px 24px;
}

.contact-info-wrapper .feature-card a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 600px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-bg);
}

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

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.8); padding: 80px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4, .footer-heading { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; font-weight: 700; }

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-brand { margin-top: 24px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 10px; line-height: 1.6; }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* ===== RELATED SERVICES ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.related-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-3px); color: var(--text); }
.related-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.related-card p { font-size: 0.85rem; color: var(--text-light); }

/* Template count badge */
.template-count {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 14px;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  opacity: 0.6;
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
}

.page-hero .btn-group { margin-bottom: 8px; position: relative; }

.page-hero .btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
  border: none;
}

.page-hero .btn-primary:hover {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,99,235,0.5);
  transform: translateY(-2px);
}

.page-hero .btn-outline {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}

.page-hero .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.page-hero .hero-stats {
  margin-top: 48px;
  position: relative;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.page-hero .hero-stat .stat-number {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero .hero-stat .stat-label {
  opacity: 0.4;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

/* ===== 404 PAGE ===== */
.page-404 { text-align: center; padding: 100px 20px; }
.page-404 h1 { font-size: 6rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px; }
.page-404 h2 { font-size: 1.5rem; margin-bottom: 16px; }
.page-404 p { color: var(--text-light); margin-bottom: 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 600px; margin: 0 auto; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero .btn-group { justify-content: center; }
  .hero-visual { display: none; }
  .hero-stats-bar { justify-content: center; }
  .hero-float { display: none; }
}

@media (max-width: 1100px) {
  .pricing-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 16px;
  }

  .nav-menu.active { display: block; }

  .nav-list { flex-direction: column; gap: 0; }

  .nav-link { padding: 12px 16px; }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
    animation: none;
  }

  .nav-dropdown::after { display: none; }

  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.active .dropdown-menu { display: block; }

  .header-cta-wrap { display: none; }

  .hero { min-height: auto; padding: 64px 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-stats-bar { flex-wrap: wrap; gap: 24px; }
  .hero-stat .stat-number { font-size: 1.5rem; }

  .section { padding: 64px 0; }
  .section-header h2 { font-size: 1.85rem; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-grid-5 { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 24px; }

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

  .page-hero { padding: 56px 0 48px; }
  .page-hero h1 { font-size: 1.85rem; }
  .article-content h1 { font-size: 1.75rem; }
  .article-content h2 { font-size: 1.35rem; }

  .page-404 h1 { font-size: 4rem; }

  .cta-section h2 { font-size: 1.75rem; }
}

/* ===== ALL PAGES DIRECTORY ===== */
.all-pages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
}
.all-pages-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}
.all-pages-col ul { list-style: none; margin: 0; padding: 0; }
.all-pages-col li { margin-bottom: 6px; }
.all-pages-col a { font-size: 0.88rem; color: var(--text-light); }
.all-pages-col a:hover { color: var(--primary); }

@media (max-width: 768px) { .all-pages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .all-pages-grid { grid-template-columns: 1fr; } }

/* ===== SMALL BUTTON ===== */
.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 8px;
}

/* ===== HOME PAGE — SECTION INTRO ===== */
.section-intro {
  margin-bottom: 32px;
}

.section-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.2;
  border: none !important;
  border-top: none !important;
  padding: 0;
  margin-top: 0;
}

.section-intro p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 0;
}

/* ===== BENEFIT CARDS (numbered icon cards) ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== ICON LIST (check marks with text) ===== */
.icon-list {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.icon-list li:last-child {
  border-bottom: none;
}

.icon-list .list-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 1px;
}

/* ===== INDUSTRY CARDS GRID ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.industry-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}

.industry-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-3px);
  color: var(--text);
}

.industry-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.industry-icon-blue { background: #EFF6FF; color: #2563EB; }
.industry-icon-purple { background: #F5F3FF; color: #7C3AED; }
.industry-icon-green { background: #ECFDF5; color: #10B981; }
.industry-icon-orange { background: #FFF7ED; color: #F97316; }
.industry-icon-red { background: #FEF2F2; color: #EF4444; }
.industry-icon-teal { background: #F0FDFA; color: #14B8A6; }
.industry-icon-pink { background: #FDF2F8; color: #EC4899; }
.industry-icon-yellow { background: #FEFCE8; color: #EAB308; }
.industry-icon-indigo { background: #EEF2FF; color: #6366F1; }
.industry-icon-cyan { background: #ECFEFF; color: #06B6D4; }

.industry-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.industry-card .industry-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 6px;
}

/* ===== STATS HIGHLIGHT GRID ===== */
.stats-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.stat-highlight-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.stat-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--primary);
}

.stat-highlight-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-highlight-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ===== COMPARISON BOX ===== */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

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

.compare-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.compare-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.compare-card h3 svg { color: var(--primary); flex-shrink: 0; }
.compare-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ===== CALLOUT ENHANCED ===== */
.callout h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.callout .btn {
  margin-top: 12px;
}

.callout-gradient {
  background: var(--gradient);
  border-left: none;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
}

.callout-gradient p { color: #fff !important; margin: 0; opacity: 0.95; }
.callout-gradient strong { color: #fff; }
.callout-gradient h3 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.callout-gradient .btn { background: #fff; color: var(--primary); }
.callout-gradient .btn:hover { background: #f1f5f9; color: var(--primary-dark); transform: translateY(-2px); }

/* ===== ARTICLE CONTENT ENHANCEMENTS FOR HOME ===== */
.article-content .section-intro + p { font-size: 1.05rem; line-height: 1.8; }

.article-content h3 svg {
  display: inline;
  vertical-align: -2px;
  margin-right: 8px;
  color: var(--primary);
}

/* ===== WIDE ARTICLE CONTENT ===== */
.article-content-wide {
  max-width: 960px;
  margin: 0 auto;
}

.article-content-wide h2 { font-size: 1.75rem; font-weight: 700; margin: 48px 0 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.article-content-wide h3 { font-size: 1.25rem; font-weight: 600; margin: 32px 0 12px; }
.article-content-wide p { margin-bottom: 16px; color: var(--text); line-height: 1.75; }
.article-content-wide ul, .article-content-wide ol { margin: 0 0 16px 24px; color: var(--text); }
.article-content-wide li { margin-bottom: 8px; }

/* ===== FEATURE LIST CARDS (for "Essential Features" section) ===== */
.feature-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.feature-list-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all var(--transition);
}

.feature-list-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.feature-list-card .fl-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
}

.feature-list-card h3.card-title,
.feature-list-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-list-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

/* ===== MISTAKE CARD ===== */
.mistake-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.mistake-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all var(--transition);
}

.mistake-card:hover {
  box-shadow: var(--shadow);
  border-color: #fca5a5;
}

.mistake-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #FEF2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EF4444;
}

.mistake-card h3.card-title,
.mistake-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.mistake-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

/* ===== RESPONSIVE FOR NEW COMPONENTS ===== */
@media (max-width: 768px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .feature-list-grid { grid-template-columns: 1fr; }
  .mistake-grid { grid-template-columns: 1fr; }
  .stats-highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-highlight-number { font-size: 2.25rem; }
  .section-intro h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 1.85rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn-group .btn { width: 100%; }
  .stats-highlight-grid { grid-template-columns: 1fr; }
  .feature-list-grid { grid-template-columns: 1fr; }
  .benefit-card { flex-direction: column; }
  .industry-card { flex-direction: column; }
  .mistake-card { flex-direction: column; }
}
