/* ============================================
   Colorverse GPU - Client Presentation
   Editorial Tech Magazine Aesthetic
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* CSS Custom Properties */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;

  --text-primary: #fafaf9;
  --text-secondary: #a8a29e;
  --text-muted: #78716c;

  --accent-emerald: #10b981;
  --accent-emerald-light: #34d399;
  --accent-violet: #8b5cf6;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-max: 1100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 1000;
}

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

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-emerald);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition-medium);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.875rem 0;
}

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

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

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-emerald));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: white;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--accent-emerald);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.nav-cta:hover {
  background: var(--accent-emerald-light);
  transform: translateY(-2px);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-medium);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-emerald);
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
  background: var(--accent-emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 40px rgba(16, 185, 129, 0.35);
}

.btn-primary svg {
  transition: transform var(--transition-fast);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

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

/* Gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: float 25s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-violet);
  top: -150px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-emerald);
  bottom: -100px;
  left: -100px;
  animation-delay: -12s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-amber);
  top: 40%;
  left: 30%;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -20px) scale(1.03); }
  50% { transform: translate(-15px, 15px) scale(0.97); }
  75% { transform: translate(15px, 8px) scale(1.01); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--accent-violet);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-violet);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-emerald), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 5;
}

/* Browser mockup */
.browser-mockup {
  background: var(--bg-tertiary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  margin-left: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: var(--bg-tertiary);
  border-radius: 5px;
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.browser-content {
  background: var(--bg-card);
}

.browser-content img {
  width: 100%;
  height: auto;
}

/* ============================================
   Problems Section
   ============================================ */

.problems {
  background: var(--bg-secondary);
}

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

.problem-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-medium);
}

.problem-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
}

.problem-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.15), rgba(244, 63, 94, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-rose);
}

.problem-card h3 {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   Solution Section
   ============================================ */

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

.solution-content {
  max-width: 450px;
}

.solution-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.solution-list {
  list-style: none;
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.solution-list svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* ============================================
   Features Section
   ============================================ */

.features {
  background: var(--bg-secondary);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-medium);
}

.feature-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
}

.feature-screenshot {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.feature-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.feature-content {
  padding: 1.5rem;
}

.feature-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-badge.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
}

.feature-badge.violet {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-violet);
}

.feature-badge.amber {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-amber);
}

.feature-badge.rose {
  background: rgba(244, 63, 94, 0.15);
  color: var(--accent-rose);
}

.feature-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   Pricing Comparison Section
   ============================================ */

.pricing {
  background: var(--bg-primary);
}

.pricing-table {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.pricing-header-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr) 0.8fr;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-medium);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr) 0.8fr;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.pricing-cell {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.875rem;
}

.pricing-header-row .pricing-cell {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
}

.gpu-cell {
  border-right: 1px solid var(--border-subtle);
}

.gpu-cell strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gpu-specs {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.provider-cell {
  text-align: center;
  align-items: center;
  color: var(--text-secondary);
}

.provider-cell.colorverse {
  background: rgba(16, 185, 129, 0.05);
  position: relative;
}

.provider-cell.colorverse.highlight {
  color: var(--accent-emerald);
  font-weight: 600;
  font-size: 0.9375rem;
}

.provider-logo {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.savings-badge {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.125rem 0.5rem;
  background: var(--accent-emerald);
  color: var(--bg-primary);
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.savings-cell {
  text-align: center;
  align-items: center;
  background: rgba(16, 185, 129, 0.08);
}

.savings-percent {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--accent-emerald);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 6px;
}

.savings-percent.exclusive {
  background: var(--accent-violet);
  font-size: 0.6875rem;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-secondary);
  border-radius: 10px;
  margin-bottom: 2rem;
}

.pricing-note svg {
  flex-shrink: 0;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.pricing-note p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--border-medium);
  border-radius: 16px;
}

.pricing-cta-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}

.pricing-cta-content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works {
  background: var(--bg-primary);
}

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

/* Connecting line */
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-emerald));
  opacity: 0.25;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: var(--bg-card);
  border: 2px solid var(--border-medium);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-emerald);
  position: relative;
  z-index: 1;
  transition: var(--transition-medium);
}

.step:hover .step-number {
  border-color: var(--accent-emerald);
  transform: scale(1.08);
}

.step-content h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

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

/* ============================================
   Stats Section
   ============================================ */

.stats {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: var(--transition-medium);
}

.stat-item:hover {
  border-color: var(--accent-emerald);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-emerald), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

/* ============================================
   Use Cases Section
   ============================================ */

.use-cases {
  background: var(--bg-secondary);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.use-case {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  text-align: center;
  transition: var(--transition-medium);
}

.use-case:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
}

.use-case-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(16, 185, 129, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-case-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-violet);
}

.use-case h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}

.use-case p {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.cta-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.cta-orb-1 {
  background: var(--accent-emerald);
  top: -250px;
  left: -150px;
}

.cta-orb-2 {
  background: var(--accent-violet);
  bottom: -250px;
  right: -150px;
}

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

.cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 450px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

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

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-logo .logo-icon {
  width: 28px;
  height: 28px;
  font-size: 0.875rem;
}

.footer-logo .logo-text {
  font-size: 1rem;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-bottom: 0.375rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ============================================
   Animations
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .solution-content {
    max-width: 100%;
    text-align: center;
  }

  .solution-list {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

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

  .pricing-header-row,
  .pricing-row {
    grid-template-columns: 1.2fr repeat(2, 1fr) 0.7fr;
  }

  .pricing-header-row .provider-cell.aws,
  .pricing-header-row .provider-cell.azure,
  .pricing-row .provider-cell:nth-child(2),
  .pricing-row .provider-cell:nth-child(4) {
    display: none;
  }

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

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

  .steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps::before {
    display: none;
  }

  .pricing-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .pricing-header-row,
  .pricing-row {
    grid-template-columns: 1fr 1fr 0.6fr;
  }

  .pricing-header-row .provider-cell.gcp,
  .pricing-row .provider-cell:nth-child(3) {
    display: none;
  }

  .stats-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }
}
