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

:root {
  /* Color Palette - Cyber Obsidian Tech Theme */
  --bg-dark: #090d16;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(23, 37, 84, 0.4);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 242, 254, 0.3);
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  /* Gradients & Accents */
  --accent-teal: #00f2fe;
  --accent-blue: #4facfe;
  --gradient-tech: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
  --gradient-glow: 0 0 25px rgba(0, 242, 254, 0.15);
  --gradient-glow-hover: 0 0 35px rgba(0, 242, 254, 0.3);
  
  /* Layout Sizing & Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
}

/* Light Theme Variables overrides */
body.light-theme {
  --bg-dark: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-card-hover: rgba(241, 245, 249, 0.9);
  --border-color: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(79, 172, 254, 0.4);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --gradient-glow: 0 0 20px rgba(79, 172, 254, 0.1);
  --gradient-glow-hover: 0 0 30px rgba(79, 172, 254, 0.2);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--accent-blue) var(--bg-dark);
  scrollbar-width: thin;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

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

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

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

/* Background Glowing Elements */
.glow-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
}

.orb-1 {
  background: var(--accent-teal);
  width: 40vw;
  height: 40vw;
  top: -10vw;
  right: -5vw;
}

.orb-2 {
  background: var(--accent-blue);
  width: 50vw;
  height: 50vw;
  top: 40vh;
  left: -15vw;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(9, 13, 22, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 2rem;
}

body.light-theme header.scrolled {
  background: rgba(248, 250, 252, 0.85);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--gradient-tech);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo span {
  font-weight: 400;
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-tech);
  transition: var(--transition-fast);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Theme Toggle Switcher */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
  border-color: var(--accent-teal);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.theme-toggle-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Base Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-tech);
  color: #090d16;
  box-shadow: var(--gradient-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--gradient-glow-hover);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.25rem;
}

/* Sections Layout */
section {
  padding: 8rem 2rem 6rem 2rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gradient-tech);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-desc {
  max-width: 650px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tagline .line {
  width: 30px;
  height: 2px;
  background: var(--gradient-tech);
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: var(--gradient-tech);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.trust-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Custom Technology Graphic/Mockup Container */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.graphic-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
}

.graphic-bg-img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Floating interactive UI elements inside Hero */
.floating-card {
  position: absolute;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.floating-card.card-1 {
  top: 15%;
  left: -5%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 3s;
}

.floating-card svg {
  color: var(--accent-teal);
}

.floating-card span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Pain Points / Banner Grid */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem;
  transition: var(--transition-smooth);
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
}

.pain-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.pain-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Services Grid & Details */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--gradient-glow);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  margin-bottom: 1.75rem;
  font-weight: 700;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.service-features li svg {
  color: var(--accent-blue);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.service-card .btn-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  align-self: flex-start;
  margin-top: auto;
}

.service-card .btn-text svg {
  transition: var(--transition-fast);
}

.service-card:hover .btn-text svg {
  transform: translateX(4px);
}

/* Assessment Details Callout */
.assessment-callout {
  margin-top: 6rem;
  background: linear-gradient(135deg, rgba(9, 13, 22, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  box-shadow: var(--gradient-glow);
}

.callout-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.callout-content .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.callout-content .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.callout-content .price-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.5rem;
}

.callout-content .price-badge {
  background: var(--gradient-tech);
  color: #090d16;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.deliverables-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.deliverables-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.deliverables-list li strong {
  color: var(--text-primary);
}

.deliverables-list li svg {
  color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.callout-graphic {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.callout-graphic h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.rem-guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.guarantee-shield {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 1.75rem;
}

.rem-guarantee p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* IT Assessment Interactive Wizard */
#assessment-wizard {
  background: radial-gradient(circle at 80% 20%, rgba(79, 172, 254, 0.05) 0%, transparent 60%);
}

.wizard-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.wizard-progress {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
}

.progress-step {
  flex: 1;
  padding: 1.25rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
}

.progress-step.active {
  color: var(--accent-teal);
  border-bottom-color: var(--accent-teal);
}

.progress-step.completed {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
}

.wizard-body {
  padding: 3rem;
}

.wizard-slide {
  display: none;
}

.wizard-slide.active {
  display: block;
  animation: slideIn 0.4s ease forwards;
}

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

.wizard-slide h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.wizard-slide .slide-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Radio/Check Option Cards */
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.option-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition-smooth);
  background: rgba(255,255,255,0.01);
}

.option-card:hover {
  border-color: var(--border-hover);
  background: rgba(0, 242, 254, 0.02);
}

.option-card.selected {
  border-color: var(--accent-teal);
  background: rgba(0, 242, 254, 0.05);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.option-control {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition-fast);
}

.option-card.selected .option-control {
  border-color: var(--accent-teal);
  background: var(--accent-teal);
}

.option-card[data-multi="true"] .option-control {
  border-radius: 4px;
}

.option-card.selected .option-control::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #090d16;
}

.option-card[data-multi="true"].selected .option-control::after {
  border-radius: 0;
  width: 6px;
  height: 6px;
  background: #090d16;
}

.option-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.option-content p {
  font-size: 0.85rem;
}

/* Wizard Form fields */
.wizard-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control option {
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

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

/* User Valid/Invalid Styles */
.form-control:user-invalid {
  border-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-control:user-invalid + .error-message {
  display: block;
}

.wizard-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.01);
}

/* Custom checkmarks or metrics on summary step */
.summary-report {
  background: rgba(0, 242, 254, 0.02);
  border: 1px solid rgba(0, 242, 254, 0.1);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
}

.summary-score {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.score-radial {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--bg-dark) 79%, transparent 80% 100%), conic-gradient(var(--accent-teal) var(--percentage), rgba(255, 255, 255, 0.05) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
}

.score-meta h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

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

.metric-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.metric-item svg {
  color: var(--accent-teal);
}

.metric-item.warning svg {
  color: #ef4444;
}

/* About Our Architects Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-graphic {
  position: relative;
  display: flex;
  justify-content: center;
}

.avatar-border {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 0.85;
  border-radius: var(--border-radius-lg);
  padding: 6px;
  background: var(--gradient-tech);
  box-shadow: var(--gradient-glow);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--border-radius-lg) - 4px);
  background-color: var(--bg-dark);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: rgba(9, 13, 22, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-teal);
}

.about-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.timeline {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-tech);
  margin-top: 6px;
  flex-shrink: 0;
  position: relative;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 7px;
  width: 2px;
  height: calc(100% + 1.5rem);
  background: var(--border-color);
}

.timeline-item:last-child .timeline-dot::after {
  display: none;
}

.timeline-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.timeline-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Contact Details Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-md);
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-detail a:hover {
  color: var(--accent-teal);
}

.contact-form-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
}

.contact-form-box h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(9, 13, 22, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--accent-teal);
  box-shadow: var(--gradient-glow);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2000;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
}

.toast svg {
  color: var(--accent-teal);
}

/* Footer styling */
footer {
  border-top: 1px solid var(--border-color);
  padding: 5rem 2rem 3rem 2rem;
  background: rgba(9, 13, 22, 0.98);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.social-link:hover {
  background: var(--gradient-tech);
  color: #090d16;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

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

.footer-newsletter h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-control {
  flex-grow: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mobile Responsiveness styling overrides */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .pain-points-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .assessment-callout {
    grid-template-columns: 1fr;
    padding: 3rem;
    gap: 3rem;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-graphic {
    order: -1;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(9, 13, 22, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  body.light-theme .nav-links {
    background: rgba(255, 255, 255, 0.98);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-btn {
    display: block;
    z-index: 1100;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .pain-points-grid,
  .services-grid,
  .options-grid,
  .wizard-form,
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .wizard-body {
    padding: 2rem 1.5rem;
  }
  
  .wizard-footer {
    padding: 1.5rem;
  }
  
  .contact-form-box {
    padding: 2rem 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
