/* CSS RESET & VARIABLES */
:root {
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Color Palette */
  --bg-primary: #080b11;
  --bg-secondary: #0f131f;
  --bg-card: rgba(15, 22, 38, 0.55);
  --border-card: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(99, 102, 241, 0.3);
  
  --color-primary: #6366f1;       /* Indigo */
  --color-primary-light: #818cf8; /* Light Indigo */
  --color-success: #10b981;       /* Emerald */
  --color-warning: #f59e0b;       /* Amber */
  --color-text-bright: #f8fafc;   /* White/Slate 50 */
  --color-text-normal: #cbd5e1;   /* Muted/Slate 300 */
  --color-text-muted: #64748b;    /* Dark Muted/Slate 500 */
  
  /* Gradients */
  --gradient-indigo: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #818cf8 100%);
  --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  
  /* Shadows & Blur */
  --glass-blur: blur(12px);
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.15);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--color-text-normal);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Floating Background Canvas */
#balloon-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text-bright);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.gradient-text {
  background: linear-gradient(90deg, #a5b4fc 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--color-primary-light);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-tag {
  color: var(--color-primary-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}
.btn-full {
  display: flex;
  width: 100%;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.btn-gradient {
  background: var(--gradient-indigo);
  border: none;
}
.btn-gradient:hover {
  filter: brightness(1.1);
  box-shadow: var(--shadow-glow);
}
.btn-outline {
  background: transparent;
  color: var(--color-text-bright);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
}

/* HEADER & NAVIGATION */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 11, 17, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary-light);
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-text-bright);
}
.logo-text span {
  font-weight: 400;
  color: var(--color-text-muted);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-normal);
  position: relative;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-light);
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--color-text-bright);
}
.nav-link.active::after, .nav-link:hover::after {
  width: 100%;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-bright);
  cursor: pointer;
}

/* MOBILE NAV DRAWER */
.mobile-nav {
  position: fixed;
  top: 73px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.25rem;
  z-index: 99;
  transform: translateY(-120%);
  transition: var(--transition-smooth);
}
.mobile-nav.open {
  transform: translateY(0);
}
.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}
.hero-content {
  max-width: 850px;
  z-index: 2;
}
.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-normal);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

/* Scroll Mouse Icon */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: var(--transition-smooth);
}
.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-text-muted);
  border-radius: 12px;
  display: block;
  position: relative;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--color-primary-light);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseWheel 1.6s infinite ease-in-out;
}
@keyframes mouseWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 10px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

/* SECTION STRUCTURE */
.featured-section, .pipeline-section, .about-section, .contact-section {
  padding: 8rem 2rem;
  position: relative;
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-header {
  margin-bottom: 4.5rem;
}

/* FEATURED PRODUCT SHOWCASE CARD */
.product-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 3rem;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}
.product-showcase-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}
.showcase-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: var(--gradient-glow);
  z-index: -1;
  pointer-events: none;
}
.showcase-visual {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #020617;
  position: relative;
}
.dashboard-preview-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.showcase-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.showcase-info p {
  color: var(--color-text-normal);
  margin-bottom: 1.5rem;
}
.showcase-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--color-text-normal);
  font-weight: 500;
}
.feature-bullets {
  list-style: none;
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.bullet-icon {
  width: 18px;
  height: 18px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 3px;
}
.bullet-icon svg {
  width: 11px;
  height: 11px;
}

/* COMPARISON PRICING GRID */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}
.pricing-card.highlighted {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, rgba(15, 22, 38, 0.55) 100%);
  box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}
.pricing-card.highlighted:hover {
  border-color: var(--color-primary-light);
  box-shadow: 0 10px 40px -5px rgba(99, 102, 241, 0.35);
}
.pro-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gradient-indigo);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.edition-type {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.edition-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-bright);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.price-period {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 400;
}
.edition-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.spec-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.spec-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.spec-list li.disabled {
  color: var(--color-text-muted);
}
.icon-success {
  color: var(--color-success);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.icon-disabled {
  color: rgba(239, 68, 68, 0.4);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.card-footer {
  margin-top: auto;
}

/* PIPELINE CARD */
.pipeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}
/* PIPELINE CARD (Vertical Layout) */
.pipeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}
.pipeline-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}
.pipeline-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.pipeline-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--color-warning);
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 10;
}
.pipeline-visual {
  background: #020617;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  width: 100%;
}
.pipeline-preview-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-smooth);
}
.pipeline-card:hover .pipeline-preview-img {
  transform: scale(1.05);
}
.pipeline-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}
.pipeline-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  color: var(--color-primary-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pipeline-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.pipeline-meta svg {
  width: 14px;
  height: 14px;
}
.pipeline-body h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.pipeline-body p {
  color: var(--color-text-normal);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.pipeline-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.highlight-icon {
  width: 32px;
  height: 32px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  flex-shrink: 0;
}
.highlight-icon svg {
  width: 16px;
  height: 16px;
}
.highlight-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-bright);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.highlight-item p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.pipeline-footer {
  margin-top: auto;
}

/* ABOUT SECTION & PHILOSOPHY */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.philosophy-paragraph {
  font-size: 1.1rem;
  color: var(--color-text-normal);
  margin-bottom: 1.5rem;
}
.stats-counter-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1.2;
}
.stat-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.about-vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.vision-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.vision-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  margin-bottom: 2rem;
}
.about-vision-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.principles-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.principles-list li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-bright);
  margin-bottom: 0.25rem;
}
.principles-list li p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* CONTACT SECTION */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 4.5rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-premium);
}
.contact-glow {
  position: absolute;
  top: -10%;
  left: 30%;
  right: 30%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.contact-header {
  margin-bottom: 3.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-bright);
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--color-text-bright);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.25);
  background: rgba(15, 23, 42, 0.85);
}
.form-group select option {
  background: var(--bg-secondary);
  color: var(--color-text-bright);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-secondary);
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-links {
  display: flex;
  gap: 2.5rem;
}
.footer-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-link:hover {
  color: var(--color-primary-light);
}
.footer-link svg {
  width: 16px;
  height: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ANIMATION - FADE IN ON ENTRY */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* INITIAL HERO ANIMATIONS */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  .product-showcase-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2rem;
  }
  .showcase-visual {
    order: -1;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-vision-card {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .main-nav, .nav-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pipeline-visual {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .pipeline-body {
    padding: 2rem;
  }
  .stats-counter-row {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 3rem 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}
