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

:root {
  --brand-orange: #ff6b35;
  --brand-orange-2: #ffab00;
  --brand-purple: #6b46c1;
  --text: #1a1a1a;
  --muted: #64748b;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.06);
  --radius: 16px;
}

body,
h1,
h2,
h3,
p,
a {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    'Oxygen',
    'Ubuntu',
    'Cantarell',
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* 404 Page Styles */
.nf-viewport {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      1200px 600px at 50% 0%,
      rgba(245, 78, 0, 0.06),
      transparent
    ),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.nf-wrap {
  max-width: 920px;
  margin: 40px 24px;
  background: #ffffff;
  border: 1px solid rgba(245, 78, 0, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
}
.nf-header {
  text-align: center;
  margin-bottom: 20px;
}
.nf-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(245, 78, 0, 0.08);
  border: 1px solid rgba(245, 78, 0, 0.2);
  color: #ff6b35;
  font-weight: 600;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.4px;
}
.nf-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 12px 0 8px;
  background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nf-sub {
  color: #64748b;
  font-size: 16px;
}
.nf-sub code {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  padding: 2px 6px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.nf-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 20px;
}
.nf-robot {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nf-robot-svg {
  filter: drop-shadow(0 10px 24px rgba(245, 78, 0, 0.25));
}
.nf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.btn-ghost {
  background: #ffffff;
  color: #374151;
  border: 1px solid #e5e7eb;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.nf-hints {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}
.nf-hint a {
  color: #ff6b35;
  text-decoration: none;
}
.nf-hint a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background-color: var(--smartmigrate-primary-bg);
  padding: 20px 0;
  border-bottom: 1px solid var(--smartmigrate-primary-bg-hover);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
}

.logo-text {
  display: flex;
  align-items: center;
  line-height: 1.1;
}
.logo-exec {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  color: var(--smartmigrate-primary);
  letter-spacing: 0.2px;
}
.logo-exec::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 75%;
  height: 3px;
  background: var(--smartmigrate-gradient-primary);
  border-radius: 3px;
  opacity: 0.6;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: #64748b;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ffab00);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff6b35;
}

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

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 160px;
  background: linear-gradient(
    135deg,
    var(--smartmigrate-primary-bg) 0%,
    #f8fafc 50%,
    #f1f5f9 100%
  );
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(245, 78, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 78, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
}

/* Hero decorative blobs */
.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  filter: blur(40px);
  opacity: 0.35;
  border-radius: 50%;
}
.blob1 {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 107, 53, 0.35),
    transparent 60%
  );
}
.blob2 {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 40px;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 171, 0, 0.35),
    transparent 60%
  );
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(
    45deg,
    var(--smartmigrate-primary),
    var(--smartmigrate-secondary)
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.particle-2 {
  top: 40%;
  right: 15%;
  animation-delay: 1s;
}
.particle-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}
.particle-4 {
  top: 60%;
  right: 25%;
  animation-delay: 3s;
}
.particle-5 {
  bottom: 20%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

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

.hero-text {
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(
    135deg,
    rgba(245, 78, 0, 0.1),
    rgba(107, 70, 193, 0.1)
  );
  border: 1px solid rgba(245, 78, 0, 0.25);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-orange);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 78, 0, 0.2);
}

.badge-icon {
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #0b1020 0%, #333a48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: var(--smartmigrate-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-size: 16px;
  font-weight: 800;
  color: var(--smartmigrate-primary);
  background: none;
  -webkit-text-fill-color: initial;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin-top: 0;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--smartmigrate-gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 78, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 78, 0, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #ffab00 0%, #ffd166 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 70, 193, 0.6);
}

.btn-convert {
  background: linear-gradient(135deg, #ff6b35 0%, #ffab00 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 78, 0, 0.3);
}

.btn-discover {
  background: linear-gradient(135deg, #6b46c1 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.btn-link {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: var(--smartmigrate-primary);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(2px);
}

/* Hero Visual */
.hero-visual {
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.illustration-main {
  position: relative;
}

.illustration-center {
  animation: pulse 4s ease-in-out infinite;
}

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

.illustration-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.orbit-1 {
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(245, 78, 0, 0.2);
  animation: rotate 20s linear infinite;
}

.orbit-2 {
  width: 260px;
  height: 260px;
  border: 2px dashed rgba(107, 70, 193, 0.2);
  animation: rotate 30s linear infinite reverse;
}

.orbit-3 {
  width: 320px;
  height: 320px;
  border: 2px dashed rgba(16, 185, 129, 0.2);
  animation: rotate 40s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-item {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  animation: counterRotate 20s linear infinite;
}

.orbit-2 .orbit-item {
  animation: counterRotate 30s linear infinite;
}

.orbit-3 .orbit-item {
  animation: counterRotate 40s linear infinite;
}

@keyframes counterRotate {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(-360deg);
  }
}

/* Database Support Section */
.database-support {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

/* Use Cases */
.use-cases {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}
.use-cases .section-header {
  margin-bottom: 40px;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.use-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(245, 78, 0, 0.25), rgba(107, 70, 193, 0.25))
      border-box;
}
.use-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 78, 0, 0.25);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}
.use-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111827;
}
.use-card p {
  color: #6b7280;
  margin-bottom: 10px;
}
.use-card ul {
  list-style: none;
  padding-left: 0;
}
.use-card li {
  color: #4b5563;
  margin: 6px 0;
  position: relative;
  padding-left: 16px;
}
.use-card li::before {
  content: '•';
  color: #ff6b35;
  position: absolute;
  left: 0;
}

/* Comparison */
.comparison {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.compare-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(245, 78, 0, 0.22), rgba(107, 70, 193, 0.22))
      border-box;
}
.compare-card.highlight {
  box-shadow: 0 20px 40px rgba(245, 78, 0, 0.1);
}
.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}
.compare-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}
.compare-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.compare-list li {
  margin: 8px 0;
  color: #4b5563;
  padding-left: 16px;
  position: relative;
}
.compare-list li::before {
  content: '✓';
  color: #ff6b35;
  position: absolute;
  left: 0;
}

.database-support .container {
  max-width: 1400px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 78, 0, 0.1);
  border: 1px solid rgba(245, 78, 0, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.section-description {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 40px;
}

.support-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
}

.support-stat {
  text-align: center;
}

.support-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b35 0%, #ffab00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
}

.database-categories {
  margin-bottom: 60px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 50px;
  background: white;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab.active,
.category-tab:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #ffab00 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 78, 0, 0.3);
}

.databases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.database-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.database-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ffab00);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.database-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.database-card:hover::before {
  transform: scaleX(1);
}

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

.database-logo {
  transition: transform 0.3s ease;
}

.database-card:hover .database-logo {
  transform: scale(1.1) rotate(5deg);
}

.database-info {
  flex: 1;
}

.database-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.database-category {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.database-category.enterprise {
  background: linear-gradient(135deg, #6b46c1, #8b5cf6);
  color: white;
}

.database-category.cloud {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
}

.database-category.analytics {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

.database-category.open-source {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.database-versions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.version {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  color: #475569;
  transition: all 0.3s ease;
}

.database-card:hover .version {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.database-features {
  space-y: 4px;
}

.feature {
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

/* Migration Path */
.migration-path {
  margin-top: 80px;
  padding: 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 24px;
  border: 1px solid #e2e8f0;
}

.migration-content {
  text-align: center;
}

.migration-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.migration-content p {
  color: #64748b;
  margin-bottom: 40px;
  font-size: 16px;
}

.migration-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.migration-source,
.migration-target {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.migration-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #64748b;
  transition: all 0.3s ease;
}

.migration-target .migration-icon {
  background: linear-gradient(135deg, #ff6b35 0%, #ffab00 100%);
  color: white;
}

.migration-text {
  text-align: center;
  font-weight: 600;
  color: #1a1a1a;
}

.migration-text span {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.migration-arrow {
  animation: pulse 2s ease-in-out infinite;
}

/* Products Section */
.products {
  padding: 120px 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  transition: all 0.3s ease;
}

.smart-convert::before {
  background: linear-gradient(90deg, #ff6b35, #ffab00);
  transform: scaleX(0);
}

.smart-discover::before {
  background: linear-gradient(90deg, #6b46c1, #8b5cf6);
  transform: scaleX(0);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.product-icon {
  transition: all 0.4s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(5deg);
}

.product-title h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.accent-orange {
  color: #ff6b35;
}

.accent-purple {
  color: #6b46c1;
}

.product-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.convert-tag {
  background: linear-gradient(135deg, #ff6b35, #ffab00);
  color: white;
}

.discover-tag {
  background: linear-gradient(135deg, #6b46c1, #8b5cf6);
  color: white;
}

.product-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 16px;
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
}

.product-features li {
  color: #64748b;
  margin-bottom: 8px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.product-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Features Section */

/* Social Proof */
.social-proof {
  padding: 24px 0;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  align-items: center;
}
.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #9ca3af;
  font-weight: 600;
  background: #fafafa;
}

/* Case Studies */
.case-studies {
  padding: 100px 0;
  background: #fafafa;
}
.studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.study-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(245, 78, 0, 0.22), rgba(107, 70, 193, 0.22))
      border-box;
}
.study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}
.study-summary {
  color: #6b7280;
  margin: 6px 0 10px;
}
.study-metrics {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.study-metrics li {
  margin: 6px 0;
  color: #111827;
}

/* How It Works */
.how {
  padding: 100px 0;
  background: #ffffff;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.how-step {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(245, 78, 0, 0.22), rgba(107, 70, 193, 0.22))
      border-box;
}
.how-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff6b35, #ffab00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 8px;
}
.how-step h3 {
  margin-bottom: 6px;
  color: #111827;
}
.how-step p {
  color: #6b7280;
}

/* Security */
.security {
  padding: 100px 0;
  background: #fafafa;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.sec-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(245, 78, 0, 0.22), rgba(107, 70, 193, 0.22))
      border-box;
}
.sec-card h3 {
  margin-bottom: 8px;
  color: #111827;
}
.sec-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.sec-card li {
  margin: 6px 0;
  color: #4b5563;
  position: relative;
  padding-left: 16px;
}
.sec-card li::before {
  content: '•';
  color: #ff6b35;
  position: absolute;
  left: 0;
}
.features {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta.cta--light {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  color: #1a1a1a;
}
.cta.cta--light .btn-primary {
  background: linear-gradient(
    135deg,
    var(--brand-orange),
    var(--brand-orange-2)
  );
  color: #fff;
}
.cta.cta--light .btn-secondary {
  background: linear-gradient(135deg, var(--brand-purple), #8b5cf6);
  color: #fff;
}
.cta.cta--light .btn-icon svg {
  color: currentColor;
}

.cta-background {
  position: absolute;
  inset: 0;
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  background: #1a1a1a;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-text {
  color: #9ca3af;
  font-size: 14px;
  width: 100%;
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #374151;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .databases-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-stats {
    gap: 20px;
  }

  .support-stats {
    gap: 30px;
  }

  .migration-flow {
    flex-direction: column;
    gap: 20px;
  }

  .migration-arrow {
    transform: rotate(90deg);
  }

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

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

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

  .nav {
    display: none;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 100px;
  }

  .database-support {
    padding: 80px 0;
  }

  .products {
    padding: 80px 0;
  }

  .features {
    padding: 80px 0;
  }

  .cta {
    padding: 80px 0;
  }

  .databases-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .migration-path {
    padding: 40px 20px;
  }
}

/* Authentication Status Bar */
.auth-status {
  background: rgba(255, 107, 53, 0.08);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  padding: 12px 0;
  font-size: 14px;
}

.auth-status-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-status #user-info {
  color: var(--brand-orange);
  font-weight: 500;
}

.auth-status #logout-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
}

.auth-status #logout-btn:hover {
  color: var(--brand-orange);
}

/* Guest vs Authenticated Actions */
.guest-actions,
.authenticated-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

@media (max-width: 768px) {
  .guest-actions,
  .authenticated-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .guest-actions .btn,
  .authenticated-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Quick Access Section */
.quick-access {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.access-card {
  background: #ffffff;
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.access-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, #ffab00 100%);
}

.access-card.discover-card::before {
  background: linear-gradient(90deg, #6b46c1 0%, #8b5cf6 100%);
}

.access-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 107, 53, 0.24);
}

.access-card-icon {
  margin-bottom: 24px;
}

.access-card-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.access-card-content p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.feature-list li {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: 600;
}

.access-card-actions {
  margin-top: auto;
}

.access-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.access-btn:hover {
  transform: translateX(4px);
}

.btn-block {
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .quick-access-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .access-card {
    padding: 24px;
  }
}

/* ================================================
   MODERN SMARTMIGRATE STYLES
   Based on Smart Convert's modern aesthetic
   ================================================ */

/* Modern Header */
.modern-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.modern-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.modern-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.modern-header .logo-brand-smart {
  font-size: 24px;
  font-weight: 700;
  color: #ff6b35;
  font-family: 'Inter', sans-serif;
}

.modern-header .logo-brand-brackets {
  font-size: 24px;
  font-weight: 400;
  color: #ff6b35;
  opacity: 0.9;
  font-family: 'Fira Code', monospace;
  margin: 0 2px;
}

.modern-header .logo-brand-migrate {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

/* Solution card brackets styling */
.solution-brackets {
  font-family: 'Fira Code', monospace;
  font-weight: 400;
  opacity: 0.9;
  margin: 0 2px;
}

/* SmartLogo component styling - exact match to Smart Convert */
.robot-container {
  position: relative;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.logo:hover .robot-container {
  transform: rotate(5deg) scale(1.05);
}

.gear-accent {
  position: absolute;
  top: -2px;
  right: -2px;
  transform: translate(25%, -25%);
}

.spinning-gear {
  animation: spin-slow 3s linear infinite;
}

.eye-blink {
  position: absolute;
  top: 33.33%;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 3s ease-in-out infinite;
}

.logo-smart {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #ff6b35;
  font-size: 20px;
}

.logo-brackets {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #ff6b35;
  opacity: 0.9;
  font-size: 20px;
  margin: 0 2px;
}

.logo-migrate {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #64748b;
  font-size: 20px;
}

.logo-convert {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1e293b;
  font-size: 20px;
}

/* Animations matching Smart Convert */
@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0%,
  90%,
  100% {
    opacity: 0.8;
  }
  95% {
    opacity: 0.2;
  }
}

/* Footer logo sizing */
.footer-robot {
  width: 28px;
  height: 28px;
}

.footer-text {
  font-size: 18px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 107, 53, 0.08);
}

.nav-link-primary {
  padding: 8px 16px;
  background: var(--brand-orange);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link-primary:hover {
  background: #e85a2e;
  transform: translateY(-1px);
}

.user-display {
  padding: 8px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* Modern Hero */
.modern-hero {
  padding: 80px 0 120px;
  background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.modern-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    1000px 800px at 50% 0%,
    rgba(255, 107, 53, 0.06),
    transparent
  );
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 100px;
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-highlight {
  background: linear-gradient(135deg, #ff6b35 0%, #ffab00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 40px;
}

.hero-actions {
  margin-bottom: 48px;
}

.action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Platform Preview */
.hero-visual {
  position: relative;
}

.platform-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.preview-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.08);
  transition: all 0.3s ease;
}

.preview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
}

.preview-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.preview-card p {
  font-size: 14px;
  color: var(--muted);
}

/* Solutions Section */
.solutions-section {
  padding: 120px 0;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.solution-card {
  background: white;
  border: 2px solid rgba(255, 107, 53, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, #ffab00 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.2);
  box-shadow: 0 32px 64px rgba(255, 107, 53, 0.15);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.card-icon {
  flex-shrink: 0;
}

.card-title h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.card-title .accent {
  color: var(--brand-orange);
  opacity: 0.8;
  font-weight: 300;
}

.card-tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-orange);
  background: rgba(255, 107, 53, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

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

.feature-list li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: 600;
}

.card-actions {
  margin-top: auto;
}

/* Features Section */
.features-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: var(--text);
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.cta-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Modern Footer */
.modern-footer {
  background: var(--bg-soft);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

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

.footer-brand .logo-brand-smart {
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
  font-family: 'Inter', sans-serif;
}

.footer-brand .logo-brand-brackets {
  font-size: 20px;
  font-weight: 400;
  color: #ff6b35;
  opacity: 0.9;
  font-family: 'Fira Code', monospace;
  margin: 0 2px;
}

.footer-brand .logo-brand-migrate {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.footer-brand .logo-brand-convert {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.6;
}

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

.link-group h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.link-group a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.link-group a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 14px;
}

.footer-meta {
  color: var(--muted);
  font-size: 14px;
}

/* Modern Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--brand-orange);
  color: white;
  border: 2px solid var(--brand-orange);
}

.btn-primary:hover {
  background: #e85a2e;
  border-color: #e85a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
}

.btn-secondary:hover {
  background: var(--brand-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

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

.btn-outline:hover {
  background: var(--brand-orange);
  color: white;
  border-color: var(--brand-orange);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

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

@media (max-width: 768px) {
  .modern-header .header-content {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .solutions-grid {
    padding: 0 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .action-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-lg {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
