/* ==============================================================================
   BINARY SOFTECH - ELEVATED MODERN TECH PALETTE
   Motto: WE MEET , YOU TALK , WE DELIVER.
   ============================================================================== */

:root {
  /* Surfaces & Backgrounds */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.9);
  
  /* Borders & Dividers */
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-focus: #2563eb;
  
  /* Brand Colors: Electric Cobalt, Royal Indigo & Cyber Cyan */
  --brand-blue: #2563eb;
  --brand-blue-hover: #1d4ed8;
  --brand-blue-dark: #1e3a8a;
  --brand-indigo: #4f46e5;
  --brand-cyan: #0284c7;
  --brand-teal: #06b6d4;
  --brand-emerald: #059669;
  
  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #06b6d4 100%);
  --gradient-btn: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0284c7 100%);
  --gradient-btn-hover: linear-gradient(135deg, #172554 0%, #1d4ed8 50%, #0369a1 100%);
  --gradient-text: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #0284c7 85%, #06b6d4 100%);
  
  /* Typography Colors */
  --text-headline: #090d1a;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;

  /* Natural Layered Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 28px -4px rgba(15, 23, 42, 0.07), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.09), 0 8px 16px -4px rgba(15, 23, 42, 0.03);
  --shadow-glow-blue: 0 6px 20px rgba(37, 99, 235, 0.28);
  
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
  font-size: 16px;
}

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

/* Background Canvas for Binary Network Particles */
#binary-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* Ambient Subtle Radial Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.glow-1 {
  top: -12%;
  left: 15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.7) 0%, rgba(186, 230, 253, 0) 70%);
}
.glow-2 {
  top: 40%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224, 231, 255, 0.65) 0%, rgba(224, 231, 255, 0) 70%);
}
.glow-3 {
  bottom: 5%;
  left: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(199, 210, 254, 0.5) 0%, rgba(199, 210, 254, 0) 70%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 10px rgba(15, 23, 42, 0.04);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-headline);
}

.brand-logo-img {
  height: 64px;
  width: auto;
  transition: transform var(--transition-fast);
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.03);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-blue);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--brand-blue);
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

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

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.45rem;
  background: var(--gradient-btn);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-glow-blue);
  transition: all var(--transition-fast);
}

.header-cta-btn:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
  color: #ffffff;
}

/* Mobile Nav Toggle & Drawer Base */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-headline);
  padding: 0.5rem 0.65rem;
  cursor: pointer;
}

.mobile-drawer {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.95rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.32);
}

.btn-primary:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-headline);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: #eff6ff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.15rem 2.4rem;
  font-size: 1.05rem;
}

/* ==============================================================================
   HERO SECTION
   ============================================================================== */
.hero-section {
  padding: 5.5rem 0 6.5rem;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.35rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1d4ed8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-xs);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.hero-motto {
  font-size: clamp(2.5rem, 6.2vw, 4.75rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1.85rem;
  text-transform: uppercase;
}

.hero-motto .motto-line-1 {
  color: var(--text-headline);
}

.hero-motto .motto-line-2 {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-statement-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-left: 5px solid var(--brand-blue);
  border-radius: var(--radius-md);
  padding: 1.6rem 2.2rem;
  margin: 0 auto 2.5rem;
  max-width: 820px;
  text-align: left;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hero-statement-box::before {
  content: '01000110 01010101 01010100 01010101 01010010 01000101';
  position: absolute;
  right: 15px;
  top: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(15, 23, 42, 0.05);
  letter-spacing: 2px;
}

.statement-past {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.statement-future {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-headline);
}

.statement-future span {
  color: var(--brand-blue);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Quick Metrics / Ticker Banner */
.ticker-banner {
  margin-top: 4.5rem;
  padding: 1.35rem 2.25rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
}

.ticker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ticker-val {
  font-size: 1.95rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ticker-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Brand Visual Showcase Frame */
.brand-visual-showcase {
  margin-top: 3.5rem;
  position: relative;
}

.visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xl);
  background: #090e1c;
}

.brand-visual-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.visual-frame:hover .brand-visual-img {
  transform: scale(1.015);
}

.visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.35rem 2rem;
  background: linear-gradient(0deg, rgba(9, 13, 26, 0.94) 0%, rgba(9, 13, 26, 0.45) 75%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.caption-tag {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 2px;
}

.caption-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #e2e8f0;
  letter-spacing: 1px;
}

/* SECTION TITLES */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--text-headline);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==============================================================================
   THE 3-STEP MOTTO SECTION: WE MEET, YOU TALK, WE DELIVER
   Each step with distinct, intentional harmony
   ============================================================================== */
.process-section {
  padding: 6rem 0;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Step 1: WE MEET - Royal Indigo Persona */
.card-meet {
  border-top: 4px solid var(--brand-indigo);
}
.card-meet:hover {
  border-color: var(--brand-indigo);
}
.card-meet .step-number {
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
}
.card-meet .process-icon-wrap {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #4f46e5;
}
.card-meet .process-bullets li::before {
  content: '✓';
  color: #4f46e5;
  font-weight: 800;
}

/* Step 2: YOU TALK - Vibrant Cobalt Persona */
.card-talk {
  border-top: 4px solid var(--brand-blue);
}
.card-talk:hover {
  border-color: var(--brand-blue);
}
.card-talk .step-number {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.card-talk .process-icon-wrap {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
}
.card-talk .process-bullets li::before {
  content: '✓';
  color: #2563eb;
  font-weight: 800;
}

/* Step 3: WE DELIVER - Mint & Emerald Persona */
.card-deliver {
  border-top: 4px solid var(--brand-emerald);
}
.card-deliver:hover {
  border-color: var(--brand-emerald);
}
.card-deliver .step-number {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.card-deliver .process-icon-wrap {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #059669;
}
.card-deliver .process-bullets li::before {
  content: '✓';
  color: #059669;
  font-weight: 800;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.process-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.process-title {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-headline);
  letter-spacing: -0.01em;
}

.process-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.process-bullets {
  list-style: none;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.process-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.65rem;
  font-weight: 500;
}

/* ==============================================================================
   PHILOSOPHY / PAST VS FUTURE COMPARISON
   ============================================================================== */
.philosophy-section {
  padding: 5rem 0;
}

.comparison-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
}

.comp-column {
  padding: 3.5rem 3rem;
  position: relative;
}

.comp-past {
  background: #f8fafc;
  border-right: 1px solid var(--border-subtle);
}

.comp-future {
  background: #ffffff;
  position: relative;
}

.comp-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.comp-past .comp-badge {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.comp-future .comp-badge {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.comp-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-headline);
}

.comp-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.comp-list {
  list-style: none;
}

.comp-list li {
  margin-bottom: 1.15rem;
  font-size: 0.96rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  line-height: 1.55;
}

.comp-past li {
  color: #64748b;
}

.comp-future li {
  color: #1e293b;
  font-weight: 500;
}

.comp-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 2px;
}

.comp-past .comp-icon {
  background: #fee2e2;
  color: #dc2626;
}

.comp-future .comp-icon {
  background: #dcfce7;
  color: #16a34a;
}

/* ==============================================================================
   CAPABILITIES SECTION
   ============================================================================== */
.capabilities-section {
  padding: 5rem 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.cap-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.cap-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cap-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.cap-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-headline);
}

.cap-text {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==============================================================================
   FOCAL CONTACT FORM SECTION ("PLEASE FILL THE CONTACT FORM BELOW")
   ============================================================================== */
.contact-section {
  padding: 6.5rem 0 7.5rem;
  position: relative;
}

.contact-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.contact-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4.5px;
  background: var(--gradient-brand);
}

.contact-headline-callout {
  text-align: center;
  margin-bottom: 3.25rem;
}

.contact-urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.contact-main-heading {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  color: var(--text-headline);
}

.contact-sub-instruction {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--brand-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Form Layout */
.contact-form {
  max-width: 880px;
  margin: 0 auto;
}

.form-group-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.15rem;
}

/* Service Pill Selectors */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.pill-option {
  position: relative;
}

.pill-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.35rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pill-label:hover {
  border-color: var(--brand-blue);
  color: var(--text-headline);
  background: #f1f5f9;
}

.pill-option input[type="radio"]:checked + .pill-label {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #1d4ed8;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.18);
}

/* Input Fields Grid */
.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.input-full {
  grid-column: span 2;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-headline);
  display: flex;
  justify-content: space-between;
}

.field-label .req {
  color: var(--brand-blue);
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-headline);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all var(--transition-fast);
  outline: none;
  box-shadow: var(--shadow-xs);
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
  background: #ffffff;
}

.field-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 14px;
}

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

.field-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Form Action Buttons */
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.form-privacy-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-privacy-note svg {
  color: var(--brand-blue);
  flex-shrink: 0;
}

.submit-btn {
  padding: 1.15rem 2.75rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Form Success State Card */
.form-success-card {
  display: none;
  text-align: center;
  padding: 3.5rem 2rem;
  background: #ffffff;
  border: 1px solid var(--brand-blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  animation: fadeIn 0.4s ease forwards;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #eff6ff;
  border: 2px solid var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--brand-blue);
}

.success-title {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: var(--text-headline);
}

.success-message {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.success-motto {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 2rem;
  letter-spacing: 1.5px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* Alternative Contact Direct Channels */
.direct-channels {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.channel-item:hover {
  color: var(--brand-blue);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
}

/* FOOTER */
.site-footer {
  padding: 4.5rem 0 2.25rem;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 10;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-motto-callout {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-headline);
  letter-spacing: 1px;
}

.footer-motto-callout span {
  color: var(--brand-blue);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==============================================================================
   SERVICES PAGE STYLES (services.html)
   ============================================================================== */
.services-hero {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--brand-blue);
}

.breadcrumbs span.current {
  color: var(--brand-blue);
  font-weight: 700;
}

.services-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.5rem 0 3.5rem;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.filter-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: #f8fafc;
}

.filter-btn.active {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #1d4ed8;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.18);
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.catalog-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.catalog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-xl);
}

.catalog-card:hover::before {
  opacity: 1;
}

.catalog-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.catalog-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-blue);
  background: #eff6ff;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.catalog-category-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.catalog-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  color: var(--brand-blue);
}

.catalog-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-headline);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.catalog-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.catalog-features {
  list-style: none;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.catalog-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.catalog-features li::before {
  content: '✓';
  color: var(--brand-blue);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.catalog-tech-stack {
  margin-top: auto;
  margin-bottom: 1.75rem;
}

.tech-stack-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.tech-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tech-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #334155;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
}

.catalog-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: #f8fafc;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-headline);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.catalog-action-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #ffffff;
  box-shadow: var(--shadow-glow-blue);
}

/* Service Delivery Banner */
.service-delivery-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0284c7 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  color: #ffffff;
  margin-bottom: 5rem;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.service-delivery-banner h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.service-delivery-banner p {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: #e0f2fe;
}

.delivery-mini-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.mini-step-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.mini-step-box span.num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: #67e8f9;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.5rem;
}

.mini-step-box h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.mini-step-box p {
  font-size: 0.88rem;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.4;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }
  
  .comparison-card {
    grid-template-columns: 1fr;
  }
  
  .comp-past {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  
  .ticker-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .header-cta-btn {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  /* Mobile menu drawer */
  .mobile-drawer {
    display: none;
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    z-index: 99;
  }
  
  .mobile-drawer.open {
    display: block;
  }
  
  .mobile-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .mobile-drawer a {
    color: var(--text-headline);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  .mobile-drawer .btn {
    margin-top: 1.5rem;
    width: 100%;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }
  
  .input-full {
    grid-column: span 1;
  }
  
  .contact-wrapper {
    padding: 2.25rem 1.25rem;
  }
  
  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .submit-btn {
    width: 100%;
  }
  
  .ticker-banner {
    grid-template-columns: 1fr;
  }
  
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
