/* GreyFoxAI Global Stylesheet */

/* CSS Variables for Color Palette */
:root {
  --bg-primary: #0D0F1A;
  --accent-circuitry: #F5C845;
  --highlight-glow: #FFD877;
  --fox-fur-light: #D9A365;
  --fox-fur-dark: #4B3A28;
  --text-light: #F2F2F2;
  --button-hover: #FFB341;
  --bg-secondary: #1A1D2E;
  
  /* Additional utility colors */
  --text-muted: rgba(242, 242, 242, 0.7);
  --border-glow: rgba(245, 200, 69, 0.3);
  --shadow-glow: rgba(245, 200, 69, 0.2);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, var(--bg-primary) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-circuitry) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--highlight-glow);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-circuitry) 0%, var(--button-hover) 100%);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--shadow-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-circuitry);
  border: 2px solid var(--accent-circuitry);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-circuitry);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--bg-primary);
}

.btn-secondary:hover::before {
  width: 100%;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: var(--bg-primary);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-circuitry);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-circuitry);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-circuitry);
}

.nav-link:hover::after {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--bg-primary);
}

.section-light {
  background: var(--bg-secondary);
}

/* Cards */
.card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-glow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Process Automation Card with Background */
.card-automation {
  background-image: url('../images/workflow.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: var(--bg-secondary);
}

.card-automation::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 29, 46, 0.85);
  z-index: 1;
  pointer-events: none;
}

.card-automation > * {
  position: relative;
  z-index: 2;
}

/* Website Creation Card with Background */
.card-website {
  background-image: linear-gradient(135deg, var(--accent-circuitry) 0%, var(--button-hover) 100%);
  position: relative;
  overflow: hidden;
}

.card-website::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  opacity: 0.95;
  z-index: 1;
}

.card-website > * {
  position: relative;
  z-index: 2;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--shadow-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-circuitry);
  box-shadow: 0 10px 40px var(--shadow-glow);
}

.card:hover::before {
  opacity: 1;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.glow-effect {
  animation: glow 2s ease-in-out infinite;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent-circuitry);
}

.text-muted {
  color: var(--text-muted);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 1rem 0;
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Form Elements */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glow);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-circuitry);
  box-shadow: 0 0 0 3px var(--shadow-glow);
}

/* Get Started Page Specific */
.get-started-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.get-started-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--shadow-glow) 0%, transparent 70%);
  animation: glow 4s ease-in-out infinite;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-circuitry) 0%, var(--button-hover) 100%);
  color: var(--bg-primary);
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px var(--shadow-glow);
}

.process-step h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-glow);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

select.form-input {
  cursor: pointer;
}

select.form-input option {
  background: var(--bg-secondary);
  color: var(--text-light);
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-light .faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glow);
}

.faq-item h3 {
  color: var(--accent-circuitry);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Responsive Updates for Get Started Page */
@media (max-width: 768px) {
  .get-started-hero {
    padding: 6rem 0 3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Email Contact Page */
.email-hero {
  padding-top: 6rem;
}

.email-form-container {
  max-width: 900px;
  margin: 0 auto;
}

.form-header {
  margin-bottom: 3rem;
}

.email-form-wrapper {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-glow);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Methods Grid */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  border: 1px solid var(--border-glow);
}

.contact-method h3 {
  margin-bottom: 1rem;
}

.contact-method a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: var(--accent-circuitry);
}

/* Services Page Styles */
.services-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.services-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg-secondary));
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.section-light .service-card {
  background: var(--bg-primary);
  border-color: var(--border-glow);
}

.service-card:hover {
  border-color: var(--accent-circuitry);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px var(--shadow-glow);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-circuitry) 0%, var(--button-hover) 100%);
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 4px 20px var(--shadow-glow);
}

.service-card h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-circuitry);
}

.service-ideal {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glow);
  font-size: 0.9rem;
  color: var(--highlight-glow);
}

/* How We Work Process */
.work-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.work-step {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  border: 1px solid var(--border-glow);
  transition: all 0.3s ease;
}

.work-step:hover {
  border-color: var(--accent-circuitry);
  transform: translateY(-3px);
}

.work-step h3 {
  color: var(--accent-circuitry);
  margin-bottom: 1rem;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-item {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  border: 1px solid var(--border-glow);
  transition: all 0.3s ease;
}

.industry-item:hover {
  border-color: var(--accent-circuitry);
  box-shadow: 0 5px 20px var(--shadow-glow);
}

.industry-item h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.industry-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Service Detail Page Styles */
.service-detail-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

/* Problem/Solution Grid */
.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.problem-box, .solution-box {
  padding: 2.5rem;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-glow);
}

.problem-box h2, .solution-box h2 {
  margin-bottom: 1.5rem;
}

.problem-list, .solution-list {
  list-style: none;
  padding: 0;
}

.problem-list li, .solution-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.problem-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ff4444;
  font-weight: bold;
}

.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-circuitry);
  font-weight: bold;
}

/* Workflow Example */
.workflow-example {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-glow);
}

.workflow-description {
  text-align: center;
  margin-bottom: 3rem;
}

/* Workflow Screenshot */
.workflow-screenshot {
  margin: 2rem 0 3rem;
  text-align: center;
}

.workflow-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  border: 2px solid var(--border-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.workflow-image:hover {
  transform: scale(1.02);
}

.image-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.workflow-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.workflow-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-circuitry);
  color: var(--bg-primary);
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 1rem;
}

.workflow-arrow {
  color: var(--accent-circuitry);
  font-size: 2rem;
  flex: 0 0 auto;
}

.action-items {
  text-align: left;
  margin-top: 1rem;
}

.action-item {
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.workflow-result {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(245, 200, 69, 0.1);
  border-radius: 10px;
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  border: 1px solid var(--border-glow);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent-circuitry);
  transform: translateY(-3px);
}

.feature-item h3 {
  color: var(--accent-circuitry);
  margin-bottom: 1rem;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.use-case {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  border: 1px solid var(--border-glow);
  text-align: center;
}

.use-case h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Pricing Box */
.pricing-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid var(--accent-circuitry);
  box-shadow: 0 10px 40px var(--shadow-glow);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-circuitry);
  margin: 1rem 0;
  font-family: 'Orbitron', sans-serif;
}

.pricing-includes {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.pricing-includes li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.pricing-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-circuitry);
  font-weight: bold;
}

.pricing-note {
  margin-top: 2rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Responsive Updates */
@media (max-width: 968px) {
  .problem-solution-grid {
    grid-template-columns: 1fr;
  }
  
  .workflow-steps {
    flex-direction: column;
  }
  
  .workflow-arrow {
    transform: rotate(90deg);
  }
}

/* Footer */
.footer {
  background: var(--bg-primary);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-glow);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 200, 69, 0.1);
  color: var(--text-muted);
}

/* Page Banner */
.page-banner {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 15, 26, 0.9) 0%, rgba(26, 29, 46, 0.7) 100%);
  z-index: -1;
}

.banner-content {
  text-align: center;
  z-index: 1;
}

.banner-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.banner-subtitle {
  font-size: 1.25rem;
  color: var(--highlight-glow);
}

/* About Page Specific Styles */
.about-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
}

.story-content {
  max-width: 1000px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}

.story-text p {
  margin-bottom: 1.5rem;
}

.highlight-card {
  background: var(--bg-secondary);
  border: 2px solid var(--accent-circuitry);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--shadow-glow) 0%, transparent 70%);
  animation: glow 3s ease-in-out infinite;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 1rem;
}

.value-icon {
  margin-bottom: 1.5rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-circuitry) 0%, var(--button-hover) 100%);
  color: var(--bg-primary);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 4px 20px var(--shadow-glow);
}

.value-item h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Founder Section */
.founder-section {
  max-width: 800px;
  margin: 0 auto;
}

.founder-content {
  margin-top: 2rem;
}

.founder-quote {
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent-circuitry);
  padding: 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.8;
  position: relative;
}

.founder-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  color: var(--accent-circuitry);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.founder-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 1rem;
  color: var(--highlight-glow);
  text-align: right;
}

/* CTA Buttons Group */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer Links */
.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-circuitry);
}

/* Responsive Updates */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .page-banner {
    height: 30vh;
  }
  .workflow-step .action-items.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 1rem auto 0;
    width: 100%;
  }
  
  .workflow-step .action-item {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
}