/* ================================================
   WorkVision Labs — Design System v5
   Brand: Navy (#1B2D6B) + Orange (#E8751A)
   Text: Dark slate for headings, never colored
   Layout: Alternating section backgrounds
   ================================================ */

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

:root {
  /* Brand */
  --navy: #1B2D6B;
  --navy-light: #253A82;
  --navy-dark: #121e4a;
  --orange: #E8751A;
  --orange-hover: #d06610;
  --orange-light: #f5a623;

  /* Text — mature, no brand colors on text */
  --heading: #111827;
  --body: #4b5563;
  --muted: #9ca3af;
  --light: #d1d5db;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-navy: #1B2D6B;
  --bg-navy-deep: #121e4a;

  /* Borders */
  --border: #e5e7eb;
  --border-hover: #d1d5db;

  /* Functional */
  --success: #16a765;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.25rem;

  /* Spacing */
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);

  /* Transitions */
  --ease-fast: 0.15s ease;
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w: 1140px;
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
}

.section {
  padding: var(--s24) 0;
}

/* ---- gradient-text → rendered as normal heading, no color ---- */
.gradient-text {
  color: inherit;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--s16);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(232, 117, 26, 0.06);
  border: 1px solid rgba(232, 117, 26, 0.15);
  padding: 5px var(--s4);
  border-radius: var(--r-full);
  margin-bottom: var(--s5);
}

.section-title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--s4);
  letter-spacing: -0.025em;
  color: var(--heading);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--body);
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font);
  font-weight: 600;
  font-size: var(--text-sm);
  border: none;
  cursor: pointer;
  border-radius: var(--r-md);
  transition: all var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: var(--s3) var(--s6);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  padding: var(--s3) var(--s6);
}

.btn-orange:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--heading);
  padding: var(--s3) var(--s6);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(27, 45, 107, 0.03);
}

.btn-lg {
  padding: 14px var(--s8);
  font-size: var(--text-base);
  border-radius: var(--r-md);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-nav {
  background: var(--orange);
  color: #fff !important;
  padding: var(--s2) var(--s5) !important;
  border-radius: var(--r-md);
  margin-left: var(--s4);
  font-weight: 600;
  font-size: var(--text-sm) !important;
}

.btn-nav:hover {
  background: var(--orange-hover);
}

/* ---- Animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--ease);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  z-index: 101;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  object-fit: contain;
}

.logo-text {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.logo-accent {
  color: var(--orange);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s1);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--body);
  padding: var(--s2) var(--s4);
  border-radius: var(--r-sm);
  transition: color var(--ease-fast);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s2);
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   HERO — Dark Navy Background
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  background: var(--bg-navy);
  overflow: hidden;
}

/* Subtle radial glow for depth */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(37, 58, 130, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(232, 117, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg,
.hero-gradient-orb,
.hero-grid,
.hero-scroll-indicator {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding: var(--s20) var(--s6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px var(--s5);
  border-radius: var(--r-full);
  margin-bottom: var(--s8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-title {
  font-size: clamp(var(--text-4xl), 5.5vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--s6);
  color: #ffffff;
}

.hero .gradient-text {
  color: #ffffff;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: var(--s10);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: var(--s4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s16);
}

.hero .btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px var(--s8);
  font-size: var(--text-base);
  box-shadow: 0 4px 14px rgba(232, 117, 26, 0.3);
}

.hero .btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 20px rgba(232, 117, 26, 0.4);
  transform: translateY(-2px);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px var(--s8);
  font-size: var(--text-base);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s12);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-stat-suffix {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--orange);
}

.hero-stat-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}

/* ================================================
   APPROACH — white bg
   ================================================ */
.approach {
  background: var(--bg-white);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.approach-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8);
  transition: all var(--ease);
  position: relative;
}

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

/* Orange left border on hover */
.approach-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--orange);
  border-radius: 0 3px 3px 0;
  transition: height var(--ease);
}

.approach-card:hover::before {
  height: 40%;
}

.approach-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(27, 45, 107, 0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
  transition: all var(--ease);
}

.approach-icon-purple {
  background: rgba(27, 45, 107, 0.08);
  color: var(--navy-light);
}

.approach-icon-orange {
  background: rgba(232, 117, 26, 0.07);
  color: var(--orange);
}

.approach-card:hover .approach-icon {
  background: var(--orange);
  color: #fff;
}

.approach-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--s3);
  color: var(--heading);
}

.approach-card p {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.7;
}

/* ================================================
   SERVICES — light gray bg
   ================================================ */
.services {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s6) var(--s5);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  display: none;
}

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

/* Orange top border accent on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(27, 45, 107, 0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
}

.service-icon-blue {
  background: rgba(27, 45, 107, 0.06);
  color: var(--navy);
}

.service-icon-green {
  background: rgba(22, 167, 101, 0.06);
  color: var(--success);
}

.service-icon-orange {
  background: rgba(232, 117, 26, 0.06);
  color: var(--orange);
}

.service-icon-purple {
  background: rgba(27, 45, 107, 0.08);
  color: var(--navy-light);
}

.service-icon-pink {
  background: rgba(232, 117, 26, 0.06);
  color: var(--orange-hover);
}

.service-title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--s2);
  color: var(--heading);
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--s4);
}

.service-tags {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
}

.service-tags span {
  font-size: 11px;
  color: var(--muted);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 2px 10px;
  border-radius: var(--r-full);
  font-weight: 500;
}

/* ================================================
   PROCESS — white bg
   ================================================ */
.process {
  background: var(--bg-white);
}

.process-timeline {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step {
  display: flex;
  gap: var(--s6);
  margin-bottom: var(--s8);
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-dot {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all var(--ease);
}

.process-dot span {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--muted);
  transition: color var(--ease);
}

.process-step:hover .process-dot {
  border-color: var(--orange);
  background: var(--orange);
}

.process-step:hover .process-dot span {
  color: #fff;
}

.process-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  flex: 1;
  transition: all var(--ease);
}

.process-step:hover .process-card {
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.process-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--s2);
  color: var(--heading);
}

.process-card p {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.7;
}

/* ================================================
   TECHNOLOGIES — light gray bg
   ================================================ */
.technologies {
  background: var(--bg-light);
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
}

.tech-category {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  transition: all var(--ease);
}

.tech-category:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.tech-category-title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--s2);
  color: var(--heading);
}

.tech-category-desc {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.6;
  margin-bottom: var(--s4);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

.tech-item {
  font-size: var(--text-sm);
  font-weight: 500;
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--r-full);
  transition: all var(--ease-fast);
  color: var(--body);
}

.tech-item:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232, 117, 26, 0.04);
}

.tech-icon {
  font-size: var(--text-sm);
}

/* ================================================
   TESTIMONIALS — white bg
   ================================================ */
.testimonials {
  background: var(--bg-white);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  transition: all var(--ease);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--s4);
  right: var(--s5);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(232, 117, 26, 0.08);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.testimonial-stars {
  color: var(--orange);
  font-size: var(--text-xs);
  margin-bottom: var(--s4);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.75;
  margin-bottom: var(--s5);
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.ta-green {
  background: var(--navy-light);
}

.ta-purple {
  background: var(--orange);
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--heading);
}

.testimonial-position {
  font-size: var(--text-xs);
  color: var(--muted);
}

/* ================================================
   CTA — Dark Navy
   ================================================ */
.cta-section {
  padding: var(--s20) 0;
  background: var(--bg-white);
}

.cta-card {
  background: var(--bg-navy);
  border: none;
  border-radius: var(--r-2xl);
  padding: var(--s16) var(--s8);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(232, 117, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(37, 58, 130, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 800;
  margin-bottom: var(--s4);
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.cta-card .gradient-text {
  color: #fff;
}

.cta-card p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--s8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-card .btn-primary {
  background: var(--orange);
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(232, 117, 26, 0.3);
}

.cta-card .btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 20px rgba(232, 117, 26, 0.4);
}

/* ================================================
   CONTACT — light gray bg
   ================================================ */
.contact {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s10);
  align-items: start;
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  box-shadow: var(--shadow-xs);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.form-group {
  margin-bottom: var(--s4);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--heading);
  margin-bottom: var(--s2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px var(--s4);
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--heading);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 45, 107, 0.06);
  background: var(--bg-white);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s4) center;
  padding-right: var(--s10);
}

.form-group select option {
  background: var(--bg-white);
  color: var(--heading);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: var(--s4);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  transition: all var(--ease);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-hover);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(27, 45, 107, 0.05);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 1px;
  color: var(--heading);
}

.contact-info-card a,
.contact-info-card p {
  font-size: var(--text-sm);
  color: var(--body);
}

.contact-info-card a:hover {
  color: var(--orange);
}

.contact-social-links {
  display: flex;
  gap: var(--s3);
  margin-top: var(--s3);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--bg-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--ease);
}

.social-link:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(27, 45, 107, 0.03);
}

/* ================================================
   FOOTER — Dark Navy
   ================================================ */
.footer {
  background: var(--bg-navy-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--s16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s8);
  padding-bottom: var(--s12);
}

.footer .logo-text {
  color: #fff;
}

.footer .logo-accent {
  color: var(--orange);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  margin-top: var(--s3);
  max-width: 260px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-links h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--s2);
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--ease-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: var(--s6);
}

.footer-bottom-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ================================================
   TOAST
   ================================================ */
.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  transition: bottom var(--ease);
}

.toast.show {
  bottom: var(--s8);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: var(--s3);
  background: var(--navy);
  color: #fff;
  padding: var(--s3) var(--s6);
  border-radius: var(--r-lg);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-xl);
}

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--ease);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ================================================
   COMING SOON PAGE
   ================================================ */
.coming-soon-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  background: var(--bg-white);
}

.coming-soon-bg {
  display: none;
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: var(--s16) var(--s6);
}

.coming-soon-icon {
  margin-bottom: var(--s6);
}

.coming-soon-icon svg {
  stroke: var(--navy);
}

.coming-soon-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--s5);
  color: var(--heading);
}

.coming-soon-title .gradient-text {
  color: var(--heading);
}

.coming-soon-text {
  font-size: var(--text-base);
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--s8);
}

.coming-soon-features {
  display: flex;
  justify-content: center;
  gap: var(--s5);
  flex-wrap: wrap;
  margin-bottom: var(--s10);
}

.cs-feature {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  color: var(--body);
}

.cs-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.coming-soon-notify {
  margin-bottom: var(--s6);
}

.cs-notify-label {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--s3);
}

.cs-notify-form {
  display: flex;
  gap: var(--s3);
  max-width: 400px;
  margin: 0 auto;
}

.cs-notify-form input {
  flex: 1;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px var(--s4);
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--heading);
  outline: none;
}

.cs-notify-form input::placeholder {
  color: var(--light);
}

.cs-notify-form input:focus {
  border-color: var(--navy);
  background: var(--bg-white);
}

.coming-soon-back {
  margin-top: var(--s3);
}

/* ================================================
   TEAM / ABOUT PAGE
   ================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--s16));
  padding-bottom: var(--s16);
  background: var(--bg-navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(37, 58, 130, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .hero-bg {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.page-hero .section-tag {
  color: var(--orange);
  background: rgba(232, 117, 26, 0.1);
  border-color: rgba(232, 117, 26, 0.2);
}

.page-hero-title {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--s5);
  color: #ffffff;
}

.page-hero-title .gradient-text {
  color: #fff;
}

.page-hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}

.about-page-text h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--s5);
  color: var(--heading);
}

.about-page-text h2 .gradient-text {
  color: var(--heading);
}

.about-page-text p {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.75;
  margin-bottom: var(--s3);
}

.about-page-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.about-metric-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  text-align: center;
  transition: all var(--ease);
}

.about-metric-card:hover {
  box-shadow: var(--shadow-md);
}

.metric-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--s1);
}

.metric-number::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--orange);
}

.metric-label {
  font-size: var(--text-sm);
  color: var(--muted);
  font-weight: 500;
}

/* Values */
.values {
  background: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}

.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  text-align: center;
  transition: all var(--ease);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(27, 45, 107, 0.05);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s4);
}

.value-icon-purple {
  background: rgba(27, 45, 107, 0.07);
  color: var(--navy-light);
}

.value-icon-orange {
  background: rgba(232, 117, 26, 0.07);
  color: var(--orange);
}

.value-icon-green {
  background: rgba(22, 167, 101, 0.06);
  color: var(--success);
}

.value-card h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--s2);
  color: var(--heading);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.6;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
  max-width: 700px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  text-align: center;
  transition: all var(--ease);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  margin-bottom: var(--s5);
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: var(--text-xl);
  font-weight: 800;
  color: white;
}

.avatar-cto {
  background: var(--orange);
}

.team-info h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--s1);
  color: var(--heading);
}

.team-role {
  font-size: var(--text-sm);
  color: var(--orange);
  font-weight: 600;
  display: block;
  margin-bottom: var(--s3);
}

.team-quote {
  font-size: var(--text-sm);
  color: var(--body);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: var(--s5);
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: var(--s3);
}

.team-socials a {
  color: var(--muted);
  transition: color var(--ease-fast);
}

.team-socials a:hover {
  color: var(--navy);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-h) + var(--s8)) var(--s6) var(--s6);
    gap: var(--s1);
    transition: right var(--ease);
    border-left: 1px solid var(--border);
    z-index: 100;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  .btn-nav {
    margin-left: 0;
    margin-top: var(--s3);
  }

  .hero-stats {
    gap: var(--s6);
  }

  .hero-stat-divider {
    display: none;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    gap: var(--s3);
  }

  .process-line {
    display: none;
  }

  .tech-categories {
    grid-template-columns: 1fr;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-page-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--s3);
    text-align: center;
  }

  .cta-card {
    padding: var(--s10) var(--s5);
  }

  .cs-notify-form {
    flex-direction: column;
  }

  .coming-soon-features {
    flex-direction: column;
    gap: var(--s3);
  }

  .section {
    padding: var(--s16) 0;
  }

  .section-header {
    margin-bottom: var(--s10);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: var(--s4);
  }

  .about-page-stats {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }
}