/* ============================================================
   TRIVIKRA TECH 4.0 — DESIGN SYSTEM & GLOBAL STYLES
   File: assets/css/style.css
   
   Premium minimal aesthetic inspired by Stripe, Linear, Vercel.
   Pure white backgrounds. No gradients. No flashy animations.
   Generous white space. Professional typography.
   ============================================================ */

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

/* ════════════════════════════════════════════════════════════
   1. DESIGN SYSTEM TOKENS
   ════════════════════════════════════════════════════════════ */
:root {
  --nav-height: 100px;

  /* ── Brand Colors ── */
  --primary: #213C72;
  --primary-light: #2E4F8E;
  --primary-dark: #172B54;
  --primary-subtle: rgba(33, 60, 114, 0.06);
  --primary-hover: rgba(33, 60, 114, 0.08);

  /* ── Accent ── */
  --accent: #FF7474;
  --accent-light: #FF9090;
  --accent-dark: #E65C5C;
  --accent-subtle: rgba(255, 116, 116, 0.08);

  /* ── Neutrals ── */
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-subtle: #F9FAFB;
  --bg-muted: #F3F4F6;
  --bg-dark: #0F1629;

  /* ── Text ── */
  --text: #1B1B1B;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --text-white: #FFFFFF;

  /* ── Borders ── */
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --border-hover: #D1D5DB;
  --border-focus: #213C72;

  /* ── Shadows (soft, minimal) ── */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 8px 24px rgba(33, 60, 114, 0.10);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);

  /* ── Typography ── */
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Font Sizes */
  --text-xs: 14px;
  --text-sm: 16px;
  --text-base: 18px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 42px;
  --text-5xl: 52px;
  --text-hero: 60px;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.05em;

  /* ── Border Radii ── */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* ── Spacing Scale ── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ── Transitions ── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.15s;
  --duration: 0.25s;
  --duration-slow: 0.4s;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Z-Index Scale ── */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-loader: 9999;
}


/* ════════════════════════════════════════════════════════════
   2. GLOBAL RESET & BASE
   ════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-relaxed);
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--primary-light);
}

/* Images */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text);
}

h1 {
  font-size: var(--text-hero);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

/* Focus Visible */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-subtle);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}


/* ════════════════════════════════════════════════════════════
   3. UTILITY CLASSES
   ════════════════════════════════════════════════════════════ */

/* Text Colors */
.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-light {
  color: var(--text-light) !important;
}

.text-white {
  color: var(--text-white) !important;
}

/* Backgrounds */
.bg-white {
  background: var(--white) !important;
}

.bg-subtle {
  background: var(--bg-subtle) !important;
}

.bg-muted {
  background: var(--bg-muted) !important;
}

.bg-primary {
  background: var(--primary) !important;
}

.bg-dark {
  background: var(--bg-dark) !important;
}

/* Section Padding */
.section {
  padding: var(--space-24) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-16) 0;
}

.section-lg {
  padding: 120px 0;
}

/* Section Header */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--primary);
  display: inline-block;
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  color: var(--text);
  margin-bottom: var(--space-4);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: var(--leading-relaxed);
}

.section-desc.centered {
  margin-left: auto;
  margin-right: auto;
}

/* Divider */
.divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
  margin: var(--space-6) 0;
}

.divider.centered {
  margin-left: auto;
  margin-right: auto;
}


/* ════════════════════════════════════════════════════════════
   4. PAGE LOADER
   ════════════════════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  z-index: var(--z-loader);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo img {
  height: 40px;
  width: auto;
}

.loader-bar {
  width: 160px;
  height: 3px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-bar-fill {
  width: 0;
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-full);
  animation: loaderFill 1.5s var(--ease) forwards;
}

@keyframes loaderFill {
  to {
    width: 100%;
  }
}


/* ════════════════════════════════════════════════════════════
   5. SCROLL PROGRESS BAR
   ════════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  z-index: calc(var(--z-sticky) + 10);
  transition: width 0.1s linear;
}


/* ════════════════════════════════════════════════════════════
   6. HERO SECTION
   ════════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  padding: 140px 0 var(--space-20);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #FAFBFE;
}

.hero-inner {
  padding: 140px 0 var(--space-16);
  position: relative;
  overflow: hidden;
  background: #FAFBFE;
}

/* Animated Liquid Mesh & Ken Burns Background Effect for ALL hero sections */
.hero-section::before,
.hero-inner::before {
  content: '';
  position: absolute;
  top: -6%;
  left: -6%;
  width: 112%;
  height: 112%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.2) 100%),
    url('../images/hero-bg.png') center/cover no-repeat;
  z-index: 0;
  animation: heroBgMotion 12s ease-in-out infinite alternate;
  pointer-events: none;
  filter: contrast(106%) saturate(115%);
}

.hero-academy::before {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(33, 60, 114, 0.55) 100%),
    url('../images/academy-hero.jpg') center/cover no-repeat;
}

.hero-blog::before {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(33, 60, 114, 0.55) 100%),
    url('../images/blog-hero.jpg') center/cover no-repeat;
}

.hero-about::before {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(33, 60, 114, 0.55) 100%),
    url('../images/about-hero.jpg') center/cover no-repeat;
}

.hero-contact::before {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(33, 60, 114, 0.55) 100%),
    url('../images/contact-hero.jpg') center/cover no-repeat;
}

.hero-services::before {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(33, 60, 114, 0.55) 100%),
    url('../images/service-hero.jpg') center/cover no-repeat;
}

.hero-services {
  min-height: 80vh;
  padding: 190px 0 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Academy, Blog, About, Contact & Services Hero White Content Styling */
.hero-academy .hero-badge,
.hero-blog .hero-badge,
.hero-about .hero-badge,
.hero-contact .hero-badge,
.hero-services .hero-badge {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-academy .hero-badge .badge-dot,
.hero-blog .hero-badge .badge-dot,
.hero-about .hero-badge .badge-dot,
.hero-contact .hero-badge .badge-dot,
.hero-services .hero-badge .badge-dot {
  background: #FF7474;
}

.hero-academy .hero-title,
.hero-blog .hero-title,
.hero-about .hero-title,
.hero-contact .hero-title,
.hero-services .hero-title {
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-academy .hero-desc,
.hero-blog .hero-desc,
.hero-about .hero-desc,
.hero-contact .hero-desc,
.hero-services .hero-desc {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}


.hero-academy .btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-academy .btn-secondary:hover {
  background: #FFFFFF;
  color: var(--primary);
  border-color: #FFFFFF;
}



/* Subtle Animated Ambient Glow Sphere in background for ALL hero sections */
.hero-section::after,
.hero-inner::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(33, 60, 114, 0.08) 0%, rgba(255, 116, 116, 0.04) 50%, transparent 70%);
  border-radius: var(--radius-full);
  filter: blur(60px);
  z-index: 0;
  animation: heroGlowPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-section .container,
.hero-inner .container {
  position: relative;
  z-index: 2;
}

@keyframes heroBgMotion {
  0% {
    transform: scale(1) translate(0, 0);
    filter: contrast(106%) saturate(115%);
  }

  50% {
    transform: scale(1.15) translate(-20px, -14px);
    filter: contrast(114%) saturate(135%);
  }

  100% {
    transform: scale(1.08) translate(18px, 16px);
    filter: contrast(110%) saturate(125%);
  }
}

@keyframes heroGlowPulse {
  0% {
    transform: translateX(-50%) scale(1) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) scale(1.45) translateY(-28px);
    opacity: 0.95;
  }

  100% {
    transform: translateX(-50%) scale(1.2) translateY(14px);
    opacity: 0.7;
  }
}

.hero-section .carousel {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-10);
  text-align: center;
}

.hero-carousel-indicators {
  bottom: -40px;
  margin-bottom: 0;
  gap: var(--space-2);
  justify-content: center;
}

.hero-carousel-indicators button {
  width: 28px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  border: none;
  opacity: 0.25;
  transition: all var(--duration) var(--ease);
}

.hero-carousel-indicators button.active {
  width: 48px;
  opacity: 1;
  background-color: var(--primary);
}

.hero-carousel-control {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: opacity var(--duration) var(--ease);
  z-index: 5;
}

.hero-carousel-control:hover {
  opacity: 1;
}

.hero-carousel-control.carousel-control-prev {
  left: 10px;
}

.hero-carousel-control.carousel-control-next {
  right: 10px;
}

.hero-control-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: var(--text-lg);
  transition: all var(--duration) var(--ease);
}

.hero-control-icon:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--primary-subtle);
  border: 1px solid rgba(33, 60, 114, 0.12);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--primary);
  margin-bottom: var(--space-6);
  margin-left: auto;
  margin-right: auto;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: var(--radius-full);
  display: inline-block;
  animation: badgeDotBreathing 1.8s infinite ease-in-out;
}

@keyframes badgeDotBreathing {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 116, 116, 0.7);
  }

  50% {
    transform: scale(1.45);
    box-shadow: 0 0 0 6px rgba(255, 116, 116, 0);
  }
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: var(--weight-extrabold);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-subtitle {
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  text-align: center;
}

.hero-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 680px;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  justify-content: center;
}

.hero-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  font-weight: var(--weight-medium);
}

/* Inner page hero (80vh min-height for all pages except home) */
.hero-inner {
  min-height: 80vh;
  padding: 140px 0 var(--space-16);
  background: var(--bg-subtle);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-inner .hero-badge {
  margin-left: auto;
  margin-right: auto;
}

.hero-inner .hero-title {
  font-size: var(--text-5xl);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner .hero-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner .hero-actions {
  justify-content: center;
  display: flex;
}

/* Typewriter cursor */
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--primary);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}


/* ════════════════════════════════════════════════════════════
   7. BREADCRUMB
   ════════════════════════════════════════════════════════════ */
.breadcrumb-nav {
  display: none !important;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: var(--text-xs);
}

.breadcrumb-list a {
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}

.breadcrumb-list a:hover {
  color: var(--primary);
}

.breadcrumb-list .separator {
  color: var(--text-light);
}

.breadcrumb-list .current {
  color: var(--text);
  font-weight: var(--weight-medium);
}


/* ════════════════════════════════════════════════════════════
   8. TRUSTED COMPANIES / LOGO BAR
   ════════════════════════════════════════════════════════════ */
.trusted-section {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  font-size: var(--text-xs);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  font-weight: var(--weight-semibold);
  text-align: center;
  margin-bottom: var(--space-8);
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.trusted-logo {
  height: 28px;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: var(--transition);
}

.trusted-logo:hover {
  opacity: 0.7;
  filter: grayscale(0%);
}


/* ════════════════════════════════════════════════════════════
   9. ABOUT / WHO WE ARE
   ════════════════════════════════════════════════════════════ */
.about-video-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.video-card-badge {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--text);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.about-feature i {
  color: var(--primary);
  font-size: var(--text-base);
}


/* ════════════════════════════════════════════════════════════
   10. PROCESS / TIMELINE
   ════════════════════════════════════════════════════════════ */
.process-step {
  position: relative;
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-5);
}

.process-step-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: var(--space-3);
}

.process-step-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* Vertical Timeline */
.timeline {
  position: relative;
  padding-left: var(--space-10);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-10);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: calc(-1 * var(--space-10) + 8px);
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 3px solid var(--primary);
  z-index: 1;
}

.timeline-year {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--primary);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.timeline-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: var(--space-2);
}

.timeline-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
}


/* ════════════════════════════════════════════════════════════
   11. STATISTICS / COUNTERS
   ════════════════════════════════════════════════════════════ */
.stat-item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.stat-number {
  font-size: var(--text-5xl);
  font-weight: var(--weight-extrabold);
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stats-grid .stat-item {
  border-right: 1px solid var(--border);
}

.stats-grid .stat-item:last-child {
  border-right: none;
}


/* ════════════════════════════════════════════════════════════
   12. CTA SECTIONS
   ════════════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--space-24) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-lg);
  max-width: 540px;
  margin: 0 auto var(--space-8);
}

.cta-section .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.cta-section .section-label::before {
  background: var(--accent);
}

/* Light CTA */
.cta-light {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-light h2 {
  color: var(--text);
}

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


/* ════════════════════════════════════════════════════════════
   13. INDUSTRIES
   ════════════════════════════════════════════════════════════ */
.industry-item {
  text-align: center;
  padding: var(--space-6);
}

.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  transition: var(--transition);
}

.industry-item:hover .industry-icon {
  background: var(--primary);
  color: var(--white);
}

.industry-name {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--text);
}


/* ════════════════════════════════════════════════════════════
   14. TECHNOLOGY STACK GRID
   ════════════════════════════════════════════════════════════ */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
}

.tech-item {
  flex: 1 1 110px;
  min-width: 105px;
  max-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 22px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.tech-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(33, 60, 114, 0.1);
  transform: translateY(-4px);
}

.tech-item i {
  font-size: var(--text-2xl);
  color: var(--primary);
}

.tech-item span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: var(--weight-medium);
}


/* ════════════════════════════════════════════════════════════
   15. CONTACT / FORMS SECTION
   ════════════════════════════════════════════════════════════ */
.contact-info-card {
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: var(--text-lg);
}

.contact-info-label {
  font-size: var(--text-xs);
  color: var(--text-light);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-1);
}

.contact-info-value {
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: var(--weight-medium);
}

.contact-info-value a {
  color: var(--text);
}

.contact-info-value a:hover {
  color: var(--primary);
}

/* Google Map */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ════════════════════════════════════════════════════════════
   16. ABOUT PAGE SPECIFIC
   ════════════════════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.value-card {
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
}

.value-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: var(--space-3);
}

.value-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* Founder Message */
.founder-card {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-10);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
}

.founder-image {
  width: 180px;
  height: 180px;
  min-width: 180px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.founder-quote {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.founder-name {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--text);
}

.founder-role {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Achievements */
.achievement-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: var(--transition);
}

.achievement-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.achievement-icon {
  font-size: var(--text-3xl);
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.achievement-number {
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  color: var(--text);
  margin-bottom: var(--space-2);
}

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


/* ════════════════════════════════════════════════════════════
   17. 404 PAGE
   ════════════════════════════════════════════════════════════ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-12);
}

.error-code {
  font-size: 120px;
  font-weight: var(--weight-extrabold);
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.05em;
}

.error-title {
  font-size: var(--text-3xl);
  color: var(--text);
  margin-bottom: var(--space-4);
}

.error-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto var(--space-8);
}


/* ════════════════════════════════════════════════════════════
   18. BACK TO TOP
   ════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--text);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: var(--z-sticky);
}

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

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}


/* ════════════════════════════════════════════════════════════
   19. WORKING HOURS / INFO BLOCKS
   ════════════════════════════════════════════════════════════ */
.hours-grid {
  display: grid;
  gap: var(--space-3);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: var(--text-sm);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--text);
  font-weight: var(--weight-medium);
}

.hours-time {
  color: var(--text-muted);
}

.hours-time.closed {
  color: var(--accent);
}


/* ════════════════════════════════════════════════════════════
   20. MISC PAGE-LEVEL
   ════════════════════════════════════════════════════════════ */

/* Icon Wrap Utility */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.icon-wrap-lg {
  width: 52px;
  height: 52px;
  font-size: var(--text-xl);
}

.icon-wrap-accent {
  background: var(--accent-subtle);
  color: var(--accent);
}

.icon-wrap-primary {
  background: var(--primary-subtle);
  color: var(--primary);
}

.icon-wrap-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

/* Link Arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--primary);
  transition: var(--transition);
}

.link-arrow:hover {
  gap: var(--space-3);
  color: var(--primary-light);
}

.link-arrow i {
  transition: transform var(--duration) var(--ease);
}

.link-arrow:hover i {
  transform: translateX(4px);
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.feature-list-item i {
  color: var(--primary);
  font-size: var(--text-base);
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-list-item span {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}