/* ========================================
   BlackStar Fusion - Dark Industrial Theme
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --accent: #F59E0B;
  --muted: #666666;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  min-height: 100vh;
}

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

/* ========================================
   FusionOMS Logo Sizing
   ======================================== */
.fusion-logo {
  height: 48px;
  width: auto;
  margin-right: 16px;
  vertical-align: middle;
}

.fusion-logo-sm {
  height: 32px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
}

.fusion-logo-lg {
  height: 64px;
  width: auto;
  margin-right: 20px;
  vertical-align: middle;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid #1a1a1a;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

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

.nav-dropdown-toggle {
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid #1a1a1a;
  list-style: none;
  padding: 12px 0;
  min-width: 180px;
  margin-top: 16px;
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

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

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active {
  color: var(--text);
  background: #1a1a1a;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245,158,11,0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #333;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: #666;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 2px;
}

.section-line {
  flex: 1;
  height: 1px;
  background: #222;
  margin-left: 48px;
}

/* ========================================
   Hero Section (Home)
   ======================================== */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  font-size: 18px;
  line-height: 1.7;
  color: #999;
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.product-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #151515;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 14px;
  overflow: hidden;
}

.product-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--accent);
  opacity: 0.3;
  z-index: -1;
}

.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1a1a1a;
  border-top: 1px solid #1a1a1a;
}

.stat {
  background: var(--bg);
  padding: 48px;
  text-align: center;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========================================
   Services Section (Home)
   ======================================== */
.services-section {
  padding: 120px 48px;
}

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

.service-card {
  background: #111;
  border: 1px solid #1a1a1a;
  padding: 48px;
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-desc {
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  padding: 100px 48px;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  margin-bottom: 24px;
}

.cta-section p {
  color: #666;
  margin-bottom: 40px;
  font-size: 18px;
}

/* ========================================
   Page Hero (Interior Pages)
   ======================================== */
.page-hero {
  padding: 80px 48px;
  border-bottom: 1px solid #1a1a1a;
}

.page-hero-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  margin-bottom: 24px;
}

.page-hero-text {
  font-size: 20px;
  color: #888;
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

/* ========================================
   Product Overview Section
   ======================================== */
.product-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px;
  align-items: center;
}

.product-visual {
  background: #151515;
  border: 1px solid #222;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  overflow: hidden;
  position: relative;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  position: absolute;
  top: 0;
  left: 0;
}

.product-features h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.product-features p {
  color: #888;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
}

.feature-list li {
  padding: 16px 0;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ccc;
}

.feature-list li::before {
  content: '→';
  color: var(--accent);
}

/* ========================================
   Screenshot Stack Carousel
   ======================================== */
.screenshot-stack {
  position: relative;
  width: 100%;
}

.screenshot-stack-container {
  display: grid;
  width: 85%;
}

.screenshot-card {
  grid-area: 1 / 1;
  background: #151515;
  border: 1px solid #222;
  overflow: hidden;
  cursor: default;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #333;
}

.screenshot-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border: none;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  z-index: 20;
}

.screenshot-nav:hover {
  transform: scale(1.1);
  background: #fbbf24;
}

.screenshot-nav:disabled {
  opacity: 0.5;
  cursor: default;
  transform: none;
}

/* ========================================
   Modules Grid (Products)
   ======================================== */
.modules-section {
  padding: 80px 48px;
  background: #111;
}

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

.module-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  transition: border-color 0.3s;
}

.module-card:hover {
  border-color: var(--accent);
}

.module-icon {
  font-size: 32px;
  margin-bottom: 24px;
}

.module-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.module-desc {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* ========================================
   Packages Section
   ======================================== */
.packages-section {
  padding: 80px 48px;
}

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

.package-card {
  background: #111;
  border: 1px solid #1a1a1a;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s;
}

.package-card:hover {
  border-color: #333;
}

.package-card--featured {
  border-color: var(--accent);
}

.package-card--featured:hover {
  border-color: var(--accent);
}

.package-badge {
  position: absolute;
  top: 0;
  right: 32px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
}

.package-header {
  margin-bottom: 32px;
}

.package-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.package-tagline {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
}

.package-features {
  list-style: none;
  flex: 1;
  margin-bottom: 40px;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  color: #ccc;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.package-features li::before {
  content: '→';
  color: var(--accent);
}

.package-features li.package-includes {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: none;
  padding-bottom: 4px;
}

.package-features li.package-includes::before {
  content: none;
}

.package-cta {
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ========================================
   Services Page
   ======================================== */
.services-hero {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
}

.services-intro h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  margin-bottom: 24px;
}

.services-intro p {
  color: #888;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

.services-visual {
  background: #151515;
  border: 1px solid #222;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  overflow: hidden;
}

.services-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-list {
  padding: 80px 48px;
}

.service-item {
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid #1a1a1a;
  align-items: start;
}

.service-item-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
}

.service-item-title {
  font-size: 24px;
  font-weight: 600;
}

.service-item-desc {
  color: #888;
  line-height: 1.8;
  font-weight: 300;
}

.process-section {
  padding: 80px 48px;
  background: #111;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid #1a1a1a;
}

.process-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 16px;
}

.process-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
   About Page
   ======================================== */
.about-hero {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
}

.about-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  margin-bottom: 24px;
}

.about-hero h1 span {
  color: var(--accent);
}

.about-hero p {
  color: #888;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

.about-visual {
  background: #151515;
  border: 1px solid #222;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-section {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
}

.story-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--accent);
}

.story-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  margin-bottom: 24px;
}

.story-content p {
  color: #888;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}

.story-content ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.story-content ul li {
  color: #888;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 300;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-content ul li::before {
  content: '→';
  color: var(--accent);
}

.values-section {
  padding: 80px 48px 80px 328px;
  background: #111;
}

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

.value-card {
  border: 1px solid #1a1a1a;
  padding: 48px;
}

.value-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 24px;
}

.value-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.value-desc {
  color: #666;
  line-height: 1.7;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-hero {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  min-height: 80vh;
  align-items: center;
}

.contact-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  margin-bottom: 24px;
}

.contact-content p {
  color: #888;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
}

.contact-info {
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #1a1a1a;
}

.contact-item-label {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 100px;
}

.contact-item-value {
  color: #fff;
}

.contact-form {
  background: #111;
  border: 1px solid #1a1a1a;
  padding: 48px;
}

/* ========================================
   Forms
   ======================================== */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px;
  background: #0a0a0a;
  border: 1px solid #222;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-select {
  cursor: pointer;
}

/* Demo Request Form (Products Page) */
.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.demo-form .full-width {
  grid-column: 1 / -1;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  border-top: 1px solid #1a1a1a;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

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

.footer-logo img {
  height: 50px;
  width: auto;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.footer-links li {
  display: flex;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
}

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

.social-icon {
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
  vertical-align: middle;
  display: block;
}

.social-icon:hover {
  opacity: 1;
}

.footer-copy {
  color: #444;
  font-size: 13px;
  text-align: right;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 48px;
  }

  .hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: 56px;
  }

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

  .services-grid,
  .modules-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .product-overview {
    grid-template-columns: 1fr;
  }

  .services-hero,
  .about-hero,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .services-visual,
  .about-visual {
    display: none;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values-section {
    padding: 80px 48px;
  }

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

  .demo-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-top: 16px;
    border-top: 1px solid #1a1a1a;
    margin-top: 16px;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
  }

  .nav-dropdown-toggle {
    display: block;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    padding: 0 0 0 24px;
    margin-top: 0;
    min-width: 0;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu li a {
    padding: 10px 0;
  }

  .hero {
    padding: 40px 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    text-align: center;
  }

  .section-title {
    font-size: 36px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-line {
    margin-left: 24px;
  }

  .page-hero,
  .services-section,
  .modules-section,
  .services-list,
  .story-section,
  .values-section,
  .cta-section,
  .packages-section,
  .process-section,
  .product-overview,
  .services-hero,
  .about-hero,
  .contact-hero {
    padding: 60px 24px;
  }

  .page-hero h1,
  .services-intro h1,
  .about-hero h1,
  .contact-content h1 {
    font-size: 42px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 24px;
  }

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

  .contact-hero {
    min-height: auto;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
  }

  .footer-copy {
    text-align: center;
  }

  .cta-section h2 {
    font-size: 36px;
  }

  .product-features h2 {
    font-size: 28px;
  }

  .screenshot-stack-container {
    width: 100%;
  }
}
