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

:root {
  /* Core Colors (Light Theme DNA) */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-tertiary: #E9ECEF;
  
  --text-primary: #1D1D1D;
  --text-secondary: #525252;
  --text-muted: #868E96;
  
  /* Accent Colors */
  --accent-lime: #ADE217;
  --accent-lime-hover: #9BCA15;
  --accent-warning: #FF922B;
  
  /* Dark Slate Accents (for Pinned Header / Footer / Dark Blocks) */
  --bg-dark-slate: #1D1D1D;
  --bg-dark-slate-secondary: #2B2B2B;
  --text-on-dark: #FFFFFF;
  --text-on-dark-secondary: #CED4DA;
  
  /* Borders & Shadows */
  --border-light: #E9ECEF;
  --border-medium: #DEE2E6;
  --border-lime: #ADE217;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-lime: 0 8px 24px rgba(173, 226, 23, 0.2);
  
  /* Layout Spacing */
  --header-height: 80px;
  --disclaimer-height: 48px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASICS
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

button, input, textarea, select {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  outline: none;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-lime-hover);
}

/* ==========================================
   UTILITY CLASSES & BUTTONS
   ========================================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
}

.section-header {
  max-width: 750px;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background-color: var(--accent-lime);
}

.section-lead {
  color: var(--text-secondary);
  font-size: 1.15rem;
  font-weight: 400;
  margin-top: 15px;
}

/* Buttons */
.btn {
  align-items: center;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  justify-content: center;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.btn-lg {
  font-size: 15px;
  padding: 15px 36px;
}

.btn-primary {
  background: var(--accent-lime);
  color: var(--bg-dark-slate);
  border: 2px solid var(--accent-lime);
}
.btn-primary:hover {
  background: var(--accent-lime-hover);
  border-color: var(--accent-lime-hover);
  box-shadow: var(--shadow-lime);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}
.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-dark-slate);
  color: var(--text-on-dark);
  border: 2px solid var(--bg-dark-slate);
}
.btn-dark:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--accent-lime);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent-lime);
  color: var(--bg-dark-slate);
  transform: translateY(-2px);
}

/* ==========================================
   DISCLAIMER BANNER (Sticky Demo Disclaimer)
   ========================================== */
.disclaimer-banner {
  align-items: center;
  background: rgba(29, 29, 29, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--accent-lime);
  color: var(--text-on-dark);
  display: flex;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  justify-content: space-between;
  padding: 10px 24px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  transition: transform var(--transition-normal);
}

.disclaimer-banner.hidden {
  transform: translateY(-100%);
}

.disclaimer-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.disclaimer-icon {
  color: var(--accent-lime);
  flex-shrink: 0;
}

.disclaimer-content strong {
  color: var(--accent-lime);
}

.close-disclaimer {
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-on-dark-secondary);
  transition: var(--transition-fast);
}
.close-disclaimer:hover {
  color: var(--accent-lime);
}

/* ==========================================
   HEADER NAVIGATION (Solid / Glass Header)
   ========================================== */
.main-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  position: fixed;
  top: var(--disclaimer-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  height: 70px;
}

body.disclaimer-closed .main-header {
  top: 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  color: var(--accent-lime-hover);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.logo-text span {
  color: var(--accent-lime-hover);
  font-weight: 400;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-lime-hover);
  transition: var(--transition-fast);
}

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

.header-ctas {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-nav-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  padding-top: calc(var(--header-height) + var(--disclaimer-height) + 60px);
  padding-bottom: 90px;
  background-color: var(--bg-secondary);
  position: relative;
}

body.disclaimer-closed .hero-section {
  padding-top: calc(var(--header-height) + 60px);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-lime-hover);
  border-radius: 50%;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  line-height: 1.7;
}

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

/* Hero Platforms Visual (OmniFabrik & K-Fabrik Box Mockups) */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.platform-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.platform-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent-lime);
}

.platform-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-lime);
}

.platform-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.platform-tag {
  background-color: var(--bg-dark-slate);
  color: var(--accent-lime);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
}

.platform-title {
  font-size: 1.4rem;
  color: var(--text-primary);
}

.platform-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================
   SOLUTIONS SHOWCASE SECTION (AI Business Value)
   ========================================== */
.solutions-section {
  background-color: var(--bg-primary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.solution-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 35px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-lime);
}

.solution-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--bg-tertiary);
  color: var(--accent-lime-hover);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.solution-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.solution-card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-lime-hover);
  text-transform: uppercase;
}

.solution-link:hover {
  gap: 12px;
  color: var(--text-primary);
}

/* ==========================================
   INDUSTRY EXPERTISE SECTION (Tabs)
   ========================================== */
.expertise-section {
  background-color: var(--bg-secondary);
}

.tabs-container {
  margin-top: 40px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--bg-dark-slate);
  color: var(--text-on-dark);
  border-color: var(--bg-dark-slate);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.expertise-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.expertise-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.expertise-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.expertise-stat-box {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border-left: 4px solid var(--accent-lime);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==========================================
   CUSTOMER SUCCESS SECTION (Bento Grid)
   ========================================== */
.success-section {
  background-color: var(--bg-primary);
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.success-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 30px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-lime);
}

.success-badge {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--accent-lime-hover);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: block;
}

.success-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.4;
}

.success-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.success-stats {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.success-stat-item {
  flex: 1;
}

.success-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.success-stat-value.highlight {
  color: var(--accent-lime-hover);
}

.success-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  display: block;
}


/* ==========================================
   EMERGING PERSPECTIVES SECTION (Insights)
   ========================================== */
.insights-section {
  background-color: var(--bg-secondary);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.insight-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.insight-img-placeholder {
  width: 100%;
  height: 200px;
  background-color: var(--bg-dark-slate);
  position: relative;
  overflow: hidden;
}

.insight-img-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(173, 226, 23, 0.2) 0%, rgba(29, 29, 29, 0.4) 100%);
}

.insight-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.insight-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 15px;
}

.insight-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--text-primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
}

.insight-link:hover {
  color: var(--accent-lime-hover);
}

/* ==========================================
   CAREERS & WARNING SECTION
   ========================================== */
.careers-section {
  background-color: var(--bg-primary);
}

.careers-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.careers-content h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.careers-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.careers-warning-box {
  background-color: #FFF3CD;
  border: 1px solid #FFE0B2;
  border-radius: var(--border-radius-md);
  padding: 30px;
  border-left: 6px solid var(--accent-warning);
}

.careers-warning-box h3 {
  font-size: 1.25rem;
  color: #664D03;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.careers-warning-box ul {
  list-style: disc;
  padding-left: 20px;
}

.careers-warning-box li {
  font-size: 0.92rem;
  color: #664D03;
  line-height: 1.5;
  margin-bottom: 12px;
}

.careers-warning-box li:last-child {
  margin-bottom: 0;
}

/* ==========================================
   CONTACT PAGE & FORMS
   ========================================== */
.contact-section {
  background-color: var(--bg-primary);
  padding-top: calc(var(--header-height) + var(--disclaimer-height) + 40px);
}

body.disclaimer-closed .contact-section {
  padding-top: calc(var(--header-height) + 40px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: var(--border-radius-sm);
  padding: 14px;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-lime-hover);
  box-shadow: 0 0 0 3px rgba(173, 226, 23, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 24px;
}

.info-block h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.info-block p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   MAIN FOOTER
   ========================================== */
.main-footer {
  background-color: var(--bg-dark-slate);
  color: var(--text-on-dark);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 4px solid var(--accent-lime);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

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

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.6;
  margin-top: 15px;
}

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

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--accent-lime);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-on-dark-secondary);
}

.footer-col a:hover {
  color: var(--accent-lime);
  padding-left: 4px;
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid var(--bg-dark-slate-secondary);
  padding-top: 30px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-on-dark-secondary);
}

.disclaimer-note {
  max-width: 700px;
  font-size: 0.8rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.5;
  text-align: right;
}

.disclaimer-note strong {
  color: var(--accent-lime);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .careers-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-menu {
    display: none; /* Mobile menu toggle integration */
    position: fixed;
    top: calc(var(--header-height) + var(--disclaimer-height));
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height) - var(--disclaimer-height));
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 40px 24px;
    z-index: 999;
    border-bottom: 2px solid var(--accent-lime);
  }
  
  body.disclaimer-closed .nav-menu {
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
  }
  
  .nav-menu.open {
    display: block;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  
  .nav-link {
    font-size: 1.1rem;
    color: var(--text-primary);
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .mobile-nav-toggle.open .bar:nth-child(1),
  .mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-nav-toggle.open .bar:nth-child(2),
  .mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.open .bar:nth-child(3),
  .mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .expertise-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  
  .success-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  
  .disclaimer-note {
    text-align: center;
  }
}

/* ==========================================
   SEARCH OVERLAY & COMPONENT STYLES
   ========================================== */
.search-trigger-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--border-radius-md);
  padding: 8px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-trigger-btn:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--accent-lime-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.search-btn-icon {
  color: var(--text-secondary);
}

.search-trigger-btn:hover .search-btn-icon {
  color: var(--accent-lime-hover);
}

.search-btn-text {
  font-size: 0.9rem;
}

.search-btn-shortcut {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: 3px;
  padding: 1px 5px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

/* Glassmorphic Overlay Backdrop */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000; /* Ensure z-index is above header */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 24px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  transition: opacity 0.3s ease;
}

/* Modal Content Container */
.search-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15), var(--shadow-sm);
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  transform: translateY(-20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.search-overlay.open .search-modal {
  transform: translateY(0) scale(1);
}

/* Header */
.search-modal-header {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  gap: 16px;
}

.search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.modal-search-icon {
  position: absolute;
  left: 0;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 8px 36px 8px 32px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-body);
}

.search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.clear-search-btn {
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-search-btn:hover {
  color: var(--text-primary);
}

.close-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.close-search-btn:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

.close-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Body */
.search-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Screen Reader Text Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.search-results-wrapper {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

/* Info/Welcome and Empty/Error View */
.search-info-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 16px;
  color: var(--text-secondary);
  flex-grow: 1;
}

.info-icon {
  background-color: rgba(173, 226, 23, 0.1);
  color: var(--accent-lime-hover);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.search-info-view h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.search-info-view p {
  font-size: 0.9rem;
  max-width: 440px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.example-queries {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 440px;
}

.example-query-btn {
  width: 100%;
  text-align: left;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--border-radius-md);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.example-query-btn:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--accent-lime);
  color: var(--text-primary);
  transform: translateX(4px);
}

/* Loading Skeletons */
.search-skeleton {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 4px;
}

.skeleton-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-light) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s infinite linear;
  border-radius: 4px;
}

.skeleton-title {
  width: 45%;
  height: 18px;
  margin-bottom: 4px;
}

.skeleton-link {
  width: 25%;
  height: 10px;
  margin-bottom: 4px;
}

.skeleton-text {
  width: 90%;
}

.skeleton-text-short {
  width: 60%;
}

@keyframes skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Results list styles */
.results-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

.result-item:hover, .result-item.highlighted {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: rgba(173, 226, 23, 0.4);
}

.result-item.highlighted {
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
  background-color: rgba(0, 0, 0, 0.04);
}

.result-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.result-item:hover .result-title,
.result-item.highlighted .result-title {
  color: var(--accent-lime-hover);
}

.result-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  word-break: break-all;
}

.result-snippet {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 4px;
}

/* Highlighting matched text matching Vertex AI snippet markup */
.result-snippet b, .result-snippet strong {
  color: var(--text-primary);
  background-color: rgba(173, 226, 23, 0.2);
  border-bottom: 2px solid var(--accent-lime-hover);
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 600;
}

/* Footer styles inside search modal */
.search-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-tips {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.kbd-tip {
  font-family: var(--font-body);
  font-weight: 600;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: 3px;
  padding: 0px 4px;
  margin-right: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.powered-by {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Responsive Styles for Header Scroll & Search */
@media (max-width: 768px) {
  .search-trigger-btn {
    padding: 8px;
  }
  .search-btn-text, .search-btn-shortcut {
    display: none;
  }
  .search-overlay {
    padding: 16px;
    padding-top: 80px;
  }
  .search-modal {
    max-height: 90vh;
  }
  .search-modal-header {
    padding: 12px 16px;
  }
  .search-modal-body {
    padding: 16px;
  }
}

