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

:root {
  --bg-color: #020617;
  --bg-card: #0b1329;
  --bg-card-hover: #111c38;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  --primary-blue: #0052ff;
  --primary-blue-hover: #1a66ff;
  --primary-blue-glow: rgba(0, 82, 255, 0.4);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(59, 130, 246, 0.25);
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
  min-height: 100vh;
}

/* Background Glowing Accents */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.bg-glow-left {
  top: 10%;
  left: -200px;
  background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
}

.bg-glow-right {
  bottom: 10%;
  right: -200px;
  background: radial-gradient(circle, #00d2ff 0%, transparent 70%);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.75rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
  transform: scale(1.3); /* Visual zoom increased to 1.30 */
  transform-origin: left center; /* Align zoom origin to keep horizontal bounds */
}

.logo-text {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-text .accent-text {
  color: var(--primary-blue);
  background: linear-gradient(to right, #60a5fa, #0052ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  box-shadow: 0 4px 20px var(--primary-blue-glow);
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 82, 255, 0.6);
}

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

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* Main Hero Section */
.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: 8rem 5rem 2rem 5rem; /* Spacious padding */
  position: relative;
  z-index: 1;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 5rem;
  flex-grow: 1;
}

/* Left Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 82, 255, 0.06);
  border: 1px solid rgba(0, 82, 255, 0.2);
  color: #3b82f6;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(0, 82, 255, 0.05);
}

.badge-icon {
  color: var(--primary-blue);
  animation: rotate 6s linear infinite;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.title-line {
  display: block !important;
  white-space: nowrap !important;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #0052ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem; /* LARGER */
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

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

.hero-footer-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-footer-note .dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-blue);
}

/* Right Hero Column: Diagram */
.hero-visual {
  position: relative;
  width: 100%;
  height: 540px; /* Increased height for breathing space */
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.08) 0%, transparent 60%);
}

.diagram-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Perfect vertical distribution */
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 5px 0;
}

.connector-lines-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connector-svg {
  width: 100%;
  height: 100%;
}

.flow-line {
  fill: none;
  stroke: rgba(0, 82, 255, 0.3);
  stroke-width: 1.5px;
  stroke-dasharray: 6 4;
  animation: flow 30s linear infinite;
}

/* Diagram Cards styling */
.diagram-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.diagram-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 82, 255, 0.18);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.85rem; /* Tighter padding for balanced spacing */
  border-bottom: 1px solid var(--border-color);
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.card-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.125rem 0.4rem;
  border-radius: 4px;
}

.status-dot {
  width: 5px;
  height: 5px;
  background-color: #10b981;
  border-radius: 50%;
}

.status-text {
  font-size: 0.6rem;
  color: #10b981;
  font-weight: 600;
}

.card-body {
  padding: 0.75rem 0.85rem;
  font-size: 0.72rem; /* Compact layout */
  line-height: 1.4;
  color: var(--text-secondary);
}

/* Code Syntax Highlighting */
.code-line {
  display: flex;
  gap: 0.75rem;
}

.line-num {
  color: var(--text-muted);
  user-select: none;
  width: 12px;
  text-align: right;
}

.code-h1 { color: #f43f5e; font-weight: 600; }
.code-h2 { color: #3b82f6; font-weight: 600; }
.code-bullet { color: #e2e8f0; }
.code-keyword { color: #ec4899; }
.code-class { color: #3b82f6; }
.code-type { color: #10b981; }
.code-string { color: #eab308; }
.code-comment { color: var(--text-muted); font-style: italic; }
.code-tag { color: #ef4444; }

/* Top Node: schema.md position */
.schema-card {
  width: 300px; /* Balanced width */
}

/* Middle Node: Azure OpenAI Card */
.azure-card {
  width: 230px;
  border: 1px solid rgba(0, 82, 255, 0.35);
  box-shadow: 0 0 25px rgba(0, 82, 255, 0.25);
  background-color: rgba(11, 19, 41, 0.95);
  padding: 0.65rem 0.85rem;
}

.azure-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.azure-text {
  display: flex;
  flex-direction: column;
}

.azure-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.azure-subtitle {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* Bottom Row: File Nodes position */
.bottom-nodes {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 1rem; /* Generous gap for clean breathing space */
}

.bottom-nodes .diagram-card {
  width: calc(33.333% - 0.666rem);
}

.lang-icon {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  color: white;
  text-transform: uppercase;
}

.php-icon { background-color: #4f5b93; }
.ts-icon { background-color: #3178c6; }
.tsx-icon { background-color: #2f74c0; }

/* Bottom Features Bar */
.features-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 15, 33, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.35rem 2.5rem;
  backdrop-filter: blur(12px);
  margin-top: 1.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  padding: 0 1rem;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.bar-separator {
  width: 6px;
  height: 6px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  opacity: 0.7;
}

/* Animations */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes flow {
  from { stroke-dashoffset: 500; }
  to { stroke-dashoffset: 0; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed1 {
  animation: float 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

.animate-float-delayed2 {
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}

.animate-float-delayed3 {
  animation: float 6s ease-in-out infinite;
  animation-delay: 4.5s;
}

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

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 25px rgba(0, 82, 255, 0.25); border-color: rgba(0, 82, 255, 0.35); }
  50% { box-shadow: 0 0 35px rgba(0, 82, 255, 0.45); border-color: rgba(0, 82, 255, 0.6); }
  100% { box-shadow: 0 0 25px rgba(0, 82, 255, 0.25); border-color: rgba(0, 82, 255, 0.35); }
}

/* Responsive Scaling & Utilities */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-section {
    gap: 3rem;
  }
  .features-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Features Grid Section */
.features-grid-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  position: relative;
  z-index: 1;
  background-color: #020617;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-pill {
  font-size: 0.725rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.04);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.05);
}

.section-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.gradient-text-alt {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 1.5rem;
}

.features-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.feature-detail-card {
  background: rgba(11, 19, 41, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(12px);
}

.feature-detail-card:hover {
  transform: translateY(-4px);
}

.icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.card-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.card-paragraph {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 4.5rem;
}

.card-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  margin: 1.75rem 0;
}

.card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.bullet-check {
  margin-top: 2px;
  flex-shrink: 0;
}

/* Color Theme - Blue */
.theme-blue .icon-wrapper {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.theme-blue .bullet-check {
  color: #3b82f6;
}
.theme-blue:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.08);
}

/* Color Theme - Purple */
.theme-purple .icon-wrapper {
  color: #a855f7;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.theme-purple .bullet-check {
  color: #a855f7;
}
.theme-purple:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.08);
}

/* Color Theme - Green */
.theme-green .icon-wrapper {
  color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.theme-green .bullet-check {
  color: #10b981;
}
.theme-green:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08);
}

/* Color Theme - Yellow */
.theme-yellow .icon-wrapper {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.theme-yellow .bullet-check {
  color: #f59e0b;
}
.theme-yellow:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.08);
}

/* How It Works Section */
.how-it-works-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  position: relative;
  z-index: 1;
  background-color: #020617;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.works-pill {
  font-size: 0.725rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.04);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.05);
}

.gradient-text-alt2 {
  background: linear-gradient(135deg, #3b82f6 0%, #0052ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Steps Timeline Indicator */
.timeline-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 3.5rem auto;
  height: 40px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 0px;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.08);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  background-color: rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
}

.timeline-nodes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.timeline-node-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #080f21;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.timeline-node.theme-blue {
  border-color: rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.timeline-node.theme-purple {
  border-color: rgba(168, 85, 247, 0.4);
  color: #c084fc;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
}

.timeline-node.theme-green {
  border-color: rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.timeline-node.theme-royal {
  border-color: rgba(0, 82, 255, 0.4);
  color: #3b82f6;
  box-shadow: 0 0 15px rgba(0, 82, 255, 0.15);
}

.timeline-node.theme-violet {
  border-color: rgba(139, 92, 246, 0.4);
  color: #a78bfa;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

/* Workflow Cards Grid (5 columns) */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
  margin-bottom: 3.5rem;
}

.workflow-card {
  background: rgba(11, 19, 41, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.25rem 1.25rem 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}

.workflow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(11, 19, 41, 0.4);
}

.workflow-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.workflow-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.workflow-card-desc {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.workflow-card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

/* Workflow Theme Colors */
.workflow-card.theme-blue .workflow-icon-box {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.2);
}
.workflow-card.theme-blue .workflow-card-bar {
  background: #3b82f6;
}
.workflow-card.theme-blue:hover {
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.06);
}

.workflow-card.theme-purple .workflow-icon-box {
  color: #a855f7;
  background: rgba(168, 85, 247, 0.06);
  border-color: rgba(168, 85, 247, 0.2);
}
.workflow-card.theme-purple .workflow-card-bar {
  background: #a855f7;
}
.workflow-card.theme-purple:hover {
  box-shadow: 0 15px 30px rgba(168, 85, 247, 0.06);
}

.workflow-card.theme-green .workflow-icon-box {
  color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
}
.workflow-card.theme-green .workflow-card-bar {
  background: #10b981;
}
.workflow-card.theme-green:hover {
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.06);
}

.workflow-card.theme-royal .workflow-icon-box {
  color: #0052ff;
  background: rgba(0, 82, 255, 0.06);
  border-color: rgba(0, 82, 255, 0.2);
}
.workflow-card.theme-royal .workflow-card-bar {
  background: #0052ff;
}
.workflow-card.theme-royal:hover {
  box-shadow: 0 15px 30px rgba(0, 82, 255, 0.06);
}

.workflow-card.theme-violet .workflow-icon-box {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.2);
}
.workflow-card.theme-violet .workflow-card-bar {
  background: #8b5cf6;
}
.workflow-card.theme-violet:hover {
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.06);
}

/* Bottom Status Control Bar */
.control-status-bar {
  background: rgba(8, 15, 33, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  backdrop-filter: blur(12px);
  width: 100%;
}

.status-shield-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(0, 82, 255, 0.05);
}

.status-text-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.status-main-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.status-sub-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Media Query overrides for Workflow */
@media (max-width: 1200px) {
  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }
}

/* Architecture Section */
.architecture-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  position: relative;
  z-index: 1;
  background-color: #020617;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.arch-pill {
  font-size: 0.725rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.04);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.05);
}

.gradient-text-alt3 {
  background: linear-gradient(135deg, #3b82f6 0%, #0052ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.azure-highlight-link {
  color: #3b82f6;
  text-decoration: none;
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.2s ease;
}

.azure-highlight-link:hover {
  color: #60a5fa;
  border-bottom-color: #60a5fa;
}

/* Main Architecture Diagram Wrapper */
.arch-diagram-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  width: 100%;
  margin-top: 1.5rem; /* Reduced gap from Azure OpenAI text */
  position: relative;
}

/* Flow Diagram Grid */
.arch-flow-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 0.25rem;
}

.arch-card-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.col-header-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.8;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.arch-card-box {
  background: rgba(11, 19, 41, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  min-height: 250px;
  justify-content: center;
}

.arch-item-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.arch-item-icon {
  color: #3b82f6;
  flex-shrink: 0;
}

.arch-arrow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.12);
  margin: 0 0.1rem;
}

/* DevStart AI Engine Styling */
.col-engine {
  flex-grow: 1;
  max-width: 48%;
}

.arch-engine-container {
  display: flex;
  align-items: center;
  background: rgba(8, 15, 33, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: 1.25rem 0.85rem;
  gap: 0.35rem;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.05);
  min-height: 250px;
  justify-content: space-between;
}

.engine-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0.65rem;
  background: rgba(11, 19, 41, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  min-height: 210px;
  transition: all 0.3s ease;
}

.engine-step:hover {
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-2px);
  background: rgba(11, 19, 41, 0.55);
}

.step-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-box.blue-theme {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-icon-box.purple-theme {
  color: #a855f7;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.step-icon-box.green-theme {
  color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.step-title {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-desc {
  font-size: 0.625rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.engine-mini-arrow {
  color: rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Azure OpenAI Layer Styling */
.azure-box {
  align-items: center;
  text-align: center;
  justify-content: center;
  border-color: rgba(0, 82, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 82, 255, 0.1);
  background-color: rgba(11, 19, 41, 0.4);
}

.azure-logo-icon {
  margin-bottom: 0.5rem;
}

.azure-box-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.azure-box-subtitle {
  font-size: 0.725rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.azure-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem;
  width: 100%;
}

.azure-mini-pill {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.2rem 0.4rem;
  background: rgba(0, 82, 255, 0.06);
  border: 1px solid rgba(0, 82, 255, 0.15);
  color: #60a5fa;
  border-radius: 4px;
}

/* Safety & Quality Styling */
.green-list-box {
  border-color: rgba(16, 185, 129, 0.15);
}

.checked-item {
  color: #10b981;
}

.checked-item svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Output Column Styling */
.font-mono-item {
  font-size: 0.8rem;
}

.sub-small {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
  margin-top: 1px;
}

/* Feedback Loops SVG */
.feedback-loop-container {
  position: absolute;
  top: 255px; /* Aligns exactly in the gap below the card contents */
  left: 0;
  width: 100%;
  height: 55px; /* Set fixed height to prevent overlapping onto data state layer */
  pointer-events: none;
  z-index: 1;
}

.feedback-svg {
  width: 100%;
  height: 100%;
}

/* Bottom: Data & State Layer Styling */
.data-state-layer-bar {
  width: 100%;
  background: rgba(11, 19, 41, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(12px);
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.layer-header-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.8;
  letter-spacing: 0.06em;
}

.data-state-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.data-state-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.state-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.state-icon-box.blue-theme {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.2);
}

.state-icon-box.purple-theme {
  color: #a855f7;
  background: rgba(168, 85, 247, 0.06);
  border-color: rgba(168, 85, 247, 0.2);
}

.state-icon-box.green-theme {
  color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
}

.state-icon-box.yellow-theme {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.2);
}

.state-text h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.state-text h6 .sub-label {
  font-size: 0.725rem;
  color: var(--text-muted);
  font-weight: 500;
}

.state-text p {
  font-size: 0.775rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Security & Privacy Footer Styling */
.security-privacy-footer-bar {
  width: 100%;
  background: rgba(8, 15, 33, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  backdrop-filter: blur(12px);
  margin-top: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sec-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sec-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(0, 82, 255, 0.05);
  flex-shrink: 0;
}

.sec-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sec-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sec-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.sec-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sec-link:hover {
  color: var(--primary-blue-hover);
  transform: translateX(2px);
}

/* Media Query overrides for Architecture */
@media (max-width: 1200px) {
  .arch-flow-grid {
    flex-direction: column;
    gap: 2rem;
  }
  
  .arch-card-col {
    width: 100%;
  }
  
  .col-engine {
    max-width: 100%;
  }
  
  .arch-arrow-connector {
    transform: rotate(90deg);
  }
  
  .feedback-loop-container {
    display: none;
  }
  
  .data-state-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .arch-engine-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .engine-mini-arrow {
    transform: rotate(90deg);
  }
  
  .data-state-grid {
    grid-template-columns: 1fr;
  }
  
  .security-privacy-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Roadmap Section */
.roadmap-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  position: relative;
  z-index: 1;
  background-color: #020617;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.roadmap-pill {
  font-size: 0.725rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.04);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.05);
}

.gradient-text-alt4 {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Timeline Progress Bar */
.roadmap-timeline-container {
  position: relative;
  width: 100%;
  max-width: 90%;
  margin: 0 auto 3.5rem auto;
  height: 80px;
}

.roadmap-timeline-line {
  position: absolute;
  top: 68px; /* Perfectly aligns line with the center of the 20px dots */
  left: 10%;
  right: 50px;
  height: 0px;
  border-top: 2px dashed rgba(255, 255, 255, 0.08);
  transform: translateY(-50%);
  z-index: 1;
}

.roadmap-timeline-arrow {
  position: absolute;
  right: 20px;
  top: 68px; /* Perfectly aligns arrow with the center of the 20px dots */
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.roadmap-timeline-points {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  z-index: 2;
}

.timeline-point-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  position: relative;
}

.point-quarter {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.point-status {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.point-dot-outer {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #080f21;
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 2px;
}

.point-dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

/* Timeline Completed & Active point states */
.completed .point-dot-outer, .active .point-dot-outer {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  box-shadow: 0 0 15px var(--primary-blue-glow);
}
.completed .point-dot-inner, .active .point-dot-inner {
  background: white;
}
.completed .point-status { color: #3b82f6; }
.active .point-status { color: #3b82f6; }

/* Timeline Planned point states */
.planned .point-dot-outer {
  border-color: rgba(168, 85, 247, 0.4);
  background: #0b1329;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.05);
}
.planned .point-dot-inner {
  background: #a855f7;
}
.planned .point-status { color: #a855f7; }

/* Cards Grid */
.roadmap-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 3.5rem;
}

.roadmap-card {
  background: rgba(11, 19, 41, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(12px);
  min-height: 400px;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(11, 19, 41, 0.35);
}

.roadmap-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.roadmap-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  flex-grow: 1;
  margin: 0 0 2rem 0;
  padding: 0;
}

.roadmap-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.35;
}

.roadmap-items li.checked {
  color: var(--text-secondary);
}

.roadmap-items li.unchecked {
  color: var(--text-muted);
}

.item-check-icon {
  color: #3b82f6;
  margin-top: 2px;
  flex-shrink: 0;
}

.empty-circle {
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-block;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Card Bottom Status Pills */
.roadmap-card-status {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.completed-pill {
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.04);
}

.in-progress-pill {
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.04);
}

.planned-pill {
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.04);
}

.spinning-icon {
  animation: spin 3s linear infinite;
}

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

/* Github Footer Bar */
.github-footer-bar {
  width: 100%;
  background: rgba(8, 15, 33, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.github-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.github-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(0, 82, 255, 0.05);
  flex-shrink: 0;
}

.github-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.github-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.github-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.github-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.github-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.github-arrow-icon {
  color: var(--text-secondary);
  opacity: 0.7;
  margin-top: 1px;
}

.octocat-icon {
  color: white;
}

/* Media Query overrides for Roadmap */
@media (max-width: 1200px) {
  .roadmap-timeline-container {
    max-width: 100%;
  }
  .roadmap-timeline-line {
    left: 12%;
  }
  .roadmap-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .roadmap-timeline-container {
    display: none;
  }
  .roadmap-cards-grid {
    grid-template-columns: 1fr;
  }
  .github-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* CTA & Footer Section */
.cta-footer-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem 5rem 2rem 5rem;
  position: relative;
  z-index: 1;
  background-color: #020617;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* CTA Card Box */
.cta-card-box-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(0, 82, 255, 0.2);
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(0, 82, 255, 0.15) 0%, rgba(8, 15, 33, 0.6) 100%);
  padding: 5rem 3rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(0, 82, 255, 0.05);
}

.cta-card-glow-bg {
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  bottom: -100px;
  background: radial-gradient(circle at center, rgba(0, 82, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.cta-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.early-access-pill {
  font-size: 0.725rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.06);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.05);
}

.cta-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.gradient-text-alt5 {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

/* Page Global Footer */
.footer-container {
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 4rem;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.25fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  width: 100%;
  margin-bottom: 4rem;
}

.footer-info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 300px;
}

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

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.2s ease;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links-title {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-connect-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.connect-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.email-link:hover {
  color: var(--primary-blue-hover);
}

/* Footer Bottom Copyright Bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1.75rem;
  width: 100%;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.built-with-text {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.heart-icon {
  color: #3b82f6;
  fill: #3b82f6;
  opacity: 0.8;
}

/* Media Query overrides for Footer */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .cta-card-box-wrapper {
    padding: 3.5rem 1.5rem;
  }
  .cta-title {
    font-size: 2.25rem;
  }
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
}

/* Lenis Smooth Scroll Styles */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}






