/* WebStar Studio | Ultra-Premium Software Agency Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --bg-primary: #ffffff;
  --bg-secondary: #fbfbfe;
  --bg-card: rgba(255, 255, 255, 0.7);
  
  --color-primary: #b388ff; /* Soft premium purple */
  --color-primary-light: #e9ddff; /* Lavender overlay */
  --color-primary-glow: rgba(179, 136, 255, 0.25);
  
  --color-text-main: #0f0c1b;
  --color-text-muted: #645f80;
  --color-border: rgba(179, 136, 255, 0.15);
  
  --gradient-purple: linear-gradient(135deg, #b388ff 0%, #d1b3ff 50%, #ffd1ff 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
  
  --shadow-sm: 0 4px 12px rgba(179, 136, 255, 0.04);
  --shadow-md: 0 12px 36px rgba(179, 136, 255, 0.06);
  --shadow-lg: 0 24px 60px rgba(179, 136, 255, 0.1);
  --shadow-glow: 0 0 30px rgba(179, 136, 255, 0.2);
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-purple);
  width: 0%;
  z-index: 10001;
  transition: width 0.1s ease;
}

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(179, 136, 255, 0) 70%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  filter: blur(10px);
  transition: transform 0.1s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Luxury Loader Splash */
#loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10005;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.loader-logo span {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-primary-light);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Background animated blur blobs */
.blur-blobs-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.blur-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  mix-blend-mode: multiply;
  animation: drift 20s infinite ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: #e9ddff;
  top: 5%;
  right: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: #ffd1ff;
  bottom: 20%;
  left: 10%;
  animation-delay: -5s;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background: #e6fffa;
  top: 50%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes drift {
  0%, 100% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  letter-spacing: -0.01em;
}

p {
  color: var(--color-text-muted);
}

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

section {
  padding: 120px 0;
  position: relative;
}

/* Glassmorphism Styling */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(179, 136, 255, 0.35);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-bounce);
}

.btn-primary {
  background: var(--gradient-purple);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(179, 136, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s ease;
}

.btn-primary:hover::after {
  left: 125%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(179, 136, 255, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Sticky Floating Navbar */
header.sticky-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-full);
  padding: 12px 32px;
  transition: var(--transition-smooth);
}

header.sticky-header.scrolled {
  top: 12px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.logo span {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-dot {
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
}

nav.main-nav {
  display: flex;
  gap: 28px;
}

nav.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

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

/* Hero Section */
.hero {
  padding-top: 200px;
  padding-bottom: 120px;
  background: radial-gradient(circle at 50% 30%, rgba(179, 136, 255, 0.08) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-left h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-left h1 span {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

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

/* Hero Graphic right side float mockups */
.hero-right {
  position: relative;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mock-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.mock-card {
  position: absolute;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mock-dashboard {
  width: 320px;
  height: 200px;
  background: #ffffff;
  top: 15%;
  left: 0;
  z-index: 2;
  padding: 16px;
  border-radius: var(--radius-md);
}

.dashboard-head-mock {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.dashboard-head-mock span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
}

.dashboard-bars-mock {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-bars-mock div {
  height: 10px;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
}

.mock-app {
  width: 150px;
  height: 280px;
  background: #0f0c1b;
  border: 4px solid #2d3748;
  border-radius: 24px;
  bottom: 5%;
  right: 5%;
  z-index: 3;
  padding: 12px;
  color: white;
}

.mock-app-head {
  width: 40px;
  height: 10px;
  background: #2d3748;
  border-radius: var(--radius-full);
  margin: 0 auto 16px auto;
}

.mock-app-msg {
  background: rgba(255,255,255,0.1);
  padding: 8px;
  font-size: 0.65rem;
  border-radius: 8px;
  margin-bottom: 8px;
}

.mock-glass {
  width: 180px;
  height: 110px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  top: 50%;
  left: 15%;
  z-index: 4;
  padding: 14px;
  border-radius: var(--radius-md);
}

.mock-glass h5 {
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.mock-glass span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
}

/* Trust Section */
.trust-section {
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--bg-secondary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.trust-item p {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Titles */
.sec-title-wrap {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.sec-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.sec-title-wrap h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

/* Services section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-bullets {
  list-style: none;
  margin-bottom: 24px;
}

.service-bullets li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.service-bullets li::before {
  content: '•';
  color: var(--color-primary);
  font-size: 1.2rem;
}

.service-card .btn-sm {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* Premium Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-purple);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(179,136,255,0.3);
}

.process-step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.process-grid::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-border);
  z-index: 1;
}

/* Portfolio Showcase and Mockups */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-visual {
  height: 240px;
  background: var(--color-primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.portfolio-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 12, 27, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-visual-overlay {
  opacity: 1;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.portfolio-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.portfolio-card-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.portfolio-card-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* App Mockups Phone Showcase */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.app-phone-card {
  text-align: center;
  padding: 40px 20px;
}

.phone-casing {
  width: 180px;
  height: 340px;
  background: #0f0c1b;
  border: 8px solid #2d3748;
  border-radius: 36px;
  margin: 0 auto 24px auto;
  position: relative;
  overflow: hidden;
  padding: 16px 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.phone-casing-notch {
  width: 50px;
  height: 10px;
  background: #2d3748;
  border-radius: var(--radius-full);
  margin: 0 auto 12px auto;
}

.phone-inner-screen {
  flex-grow: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-mock-item {
  height: 12px;
  background: #f1f5f9;
  border-radius: 4px;
}

.phone-mock-badge {
  display: inline-block;
  padding: 2px 6px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.55rem;
  font-weight: 700;
  border-radius: 4px;
}

/* Why Choose Us comparatives */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.choose-card {
  padding: 36px;
}

.choose-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.choose-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Automation pipeline pipeline animations */
.pipeline-diagram {
  background: #0f0c1b;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.pipeline-nodes-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pipeline-node {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 160px;
}

.pipeline-node h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.pipeline-node span {
  font-size: 0.7rem;
  color: var(--color-primary);
}

.pipeline-flow-line {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 1;
}

.pipeline-flow-dot {
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
  animation: flow 4s infinite linear;
}

@keyframes flow {
  to { left: 100%; }
}

/* Technology Logo Carousel Wall */
.tech-wall {
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

.tech-carousel {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.tech-carousel:hover {
  animation-play-state: paused;
}

.tech-icon-card {
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Testimonials Carousel Slider */
.test-slider-wrapper {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.test-slider-inner {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marqueeTest 30s linear infinite;
}

.test-slider-inner:hover {
  animation-play-state: paused;
}

.test-card {
  width: 320px;
  padding: 30px;
}

.test-rating {
  color: #ffb020;
  margin-bottom: 12px;
}

.test-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.test-client-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.85rem;
}

.test-client-details h4 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.test-client-details span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

@keyframes marqueeTest {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FAQ Accordion Accordion */
.faq-accordion {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-main);
  padding: 12px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 150px;
  padding-top: 8px;
}

/* Project Request Form styling */
.project-form-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.project-form-card label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.project-form-card input, .project-form-card select, .project-form-card textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.project-form-card input:focus, .project-form-card select:focus, .project-form-card textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

/* Success Popup Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 12, 27, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10002;
  display: none;
  justify-content: center;
  align-items: center;
}

.success-modal.active {
  display: flex;
}

.success-modal-card {
  max-width: 440px;
  width: 90%;
  padding: 40px;
  text-align: center;
}

.success-check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e6fffa;
  color: #00a884;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  margin: 0 auto 24px auto;
}

/* Footer Section */
footer.corp-footer {
  background: #0f0c1b;
  color: #a0aec0;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer.corp-footer .footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

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

.footer-col ul a {
  font-size: 0.85rem;
}

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

.footer-newsletter input {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: white;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 12px;
  font-size: 0.8rem;
}

.footer-newsletter button {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left h1 {
    font-size: 2.8rem;
  }
  .hero-buttons-row {
    justify-content: center;
  }
  .hero-right {
    height: 380px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-grid::after {
    display: none;
  }
  .pipeline-nodes-row {
    flex-direction: column;
    gap: 30px;
  }
  .pipeline-flow-line {
    display: none;
  }
  footer.corp-footer .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header.sticky-header {
    width: 95%;
    padding: 10px 20px;
  }
  nav.main-nav {
    display: none; /* Hide standard nav link groups on mobile */
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  footer.corp-footer .footer-top {
    grid-template-columns: 1fr;
  }
}
