/* ============================================
   GENUS ERP - Landing Page Styles
   Primary: #4a6fa5 | Accent: #4376FA
   ============================================ */

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

:root {
  --primary: #4a6fa5;
  --primary-dark: #3a5a8a;
  --primary-darker: #2d4a75;
  --accent: #4376FA;
  --accent-light: #5c8fff;
  --bg-light: #F7F8FD;
  --bg-blue-tint: #EBF2FF;
  --border-blue: #B4C8FD;
  --border-light: #D9E4FE;
  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --white: #ffffff;
  --success: #10b981;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.12);
  --shadow-blue: 0px 3px 3px #E2ECF9;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 10px 24px;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(74, 111, 165, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(74, 111, 165, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border-blue);
}

.btn-outline:hover {
  background: var(--bg-blue-tint);
  border-color: var(--primary);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

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

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

.nav-cta {
  padding: 8px 20px;
  font-size: 0.875rem;
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 50%, var(--bg-blue-tint) 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(67, 118, 250, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74, 111, 165, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-blue-tint);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--border-blue);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* --- Dashboard Mockup --- */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
  background: var(--primary);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

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

.mockup-dots span:first-child {
  background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
  background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
  background: #27ca40;
}

.mockup-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
}

.mockup-body {
  display: flex;
  min-height: 320px;
}

.mockup-sidebar {
  width: 48px;
  background: #f0f4ff;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--border-light);
}

.sidebar-item {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--border-light);
  transition: background 0.2s;
}

.sidebar-item.active {
  background: var(--primary);
}

.mockup-content {
  flex: 1;
  padding: 16px;
}

.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.75rem;
  color: var(--text-body);
}

.mockup-row.header-row {
  border-bottom: 2px solid var(--border-light);
}

.cell-header {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 600;
}

.status-badge.shipped {
  background: #dbeafe;
  color: #1d4ed8;
}

.status-badge.processing {
  background: #fef3c7;
  color: #92400e;
}

.status-badge.delivered {
  background: #d1fae5;
  color: #065f46;
}

.mockup-charts {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  flex: 1;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), var(--accent-light));
  border-radius: 3px 3px 0 0;
  min-height: 8px;
  opacity: 0.8;
}

.mini-kpi {
  text-align: center;
  padding: 8px 16px;
  background: var(--bg-blue-tint);
  border-radius: var(--radius-sm);
}

.kpi-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--success);
  line-height: 1;
}

.kpi-label {
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* --- Section Styles --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--bg-blue-tint);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* --- Features --- */
.features {
  padding: 100px 0;
  background: var(--white);
}

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

.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid #f0f0f0;
  background: var(--white);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Modules --- */
.modules {
  padding: 100px 0;
  background: var(--bg-light);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.module-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid #f0f0f0;
  transition: all 0.25s ease;
  cursor: default;
}

.module-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.module-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.module-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

/* --- Workflow --- */
.workflow {
  padding: 100px 0;
  background: var(--white);
}

.workflow-steps {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.workflow-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.workflow-connector {
  width: 2px;
  height: 32px;
  background: var(--border-light);
  margin-left: 23px;
}

/* --- Integrations --- */
.integrations {
  padding: 100px 0;
  background: var(--bg-light);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid #f0f0f0;
  transition: all 0.25s ease;
}

.integration-item:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.integration-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.integration-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-body);
  text-align: center;
}

/* --- Why Genus --- */
.why-genus {
  padding: 100px 0;
  background: var(--white);
}

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

.benefit-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
}

.benefit-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--border-blue);
  line-height: 1;
  margin-bottom: 16px;
}

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

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- CTA / Demo Section --- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a2744 0%, var(--primary-darker) 50%, var(--primary-dark) 100%);
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-content h2 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.cta-checklist svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--success);
}

/* --- Demo Form --- */
.cta-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.demo-form h3 {
  font-size: 1.375rem;
  margin-bottom: 24px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  transition: all 0.2s;
  outline: none;
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.12);
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 12px;
}

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

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

.success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--success);
}

.form-success h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background: #0f172a;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8125rem;
  text-align: center;
}

/* --- Scroll Animations --- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.features-grid .animate-in:nth-child(2) { transition-delay: 0.08s; }
.features-grid .animate-in:nth-child(3) { transition-delay: 0.16s; }
.features-grid .animate-in:nth-child(4) { transition-delay: 0.24s; }
.features-grid .animate-in:nth-child(5) { transition-delay: 0.32s; }
.features-grid .animate-in:nth-child(6) { transition-delay: 0.4s; }

.modules-grid .animate-in:nth-child(2) { transition-delay: 0.04s; }
.modules-grid .animate-in:nth-child(3) { transition-delay: 0.08s; }
.modules-grid .animate-in:nth-child(4) { transition-delay: 0.12s; }
.modules-grid .animate-in:nth-child(5) { transition-delay: 0.16s; }
.modules-grid .animate-in:nth-child(6) { transition-delay: 0.2s; }
.modules-grid .animate-in:nth-child(7) { transition-delay: 0.24s; }
.modules-grid .animate-in:nth-child(8) { transition-delay: 0.28s; }
.modules-grid .animate-in:nth-child(9) { transition-delay: 0.32s; }
.modules-grid .animate-in:nth-child(10) { transition-delay: 0.36s; }
.modules-grid .animate-in:nth-child(11) { transition-delay: 0.4s; }
.modules-grid .animate-in:nth-child(12) { transition-delay: 0.44s; }
.modules-grid .animate-in:nth-child(13) { transition-delay: 0.48s; }

.benefits-grid .animate-in:nth-child(2) { transition-delay: 0.08s; }
.benefits-grid .animate-in:nth-child(3) { transition-delay: 0.16s; }
.benefits-grid .animate-in:nth-child(4) { transition-delay: 0.24s; }
.benefits-grid .animate-in:nth-child(5) { transition-delay: 0.32s; }
.benefits-grid .animate-in:nth-child(6) { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-visual {
    max-width: 600px;
  }

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

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid #f0f0f0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 8px 0;
    display: block;
  }

  .nav-cta {
    font-size: 0.8125rem;
    padding: 7px 16px;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

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

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

  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .dashboard-mockup {
    transform: none;
  }

  .dashboard-mockup:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.875rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .cta-form-wrapper {
    padding: 24px;
  }
}
