/* ==========================================================================
   TITAN CORE EDGE TECHNOLOGIES — MASTER STYLESHEET
   Tech stack: HTML5, CSS3 (Grid/Flexbox, custom properties), Vanilla JS
   ========================================================================== */

/* ---------------------------------------------------------------------
   1. CSS VARIABLES / DESIGN TOKENS
--------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --color-primary: #0F4C81;
  --color-primary-dark: #0B3A63;
  --color-secondary: #0099ff;
  --color-accent: #00C2CB;
  --color-bg: #FFFFFF;
  --color-dark: #0B1320;

  /* Derived neutrals */
  --color-white: #ffffff;
  --color-text: #1E2A38;
  --color-text-muted: #5B6B7C;
  --color-border: #E3E9F0;
  --color-dark-alt: #101B2D;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  --gradient-dark: linear-gradient(160deg, #0B1320 0%, #0F2942 60%, #0B4C6E 100%);

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Radii & shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(15, 76, 129, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 76, 129, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 19, 32, 0.18);

  /* Layout */
  --container-width: 1240px;
  --header-height: 84px;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------------------
   2. RESET & BASE — NO HORIZONTAL SCROLL
--------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
}

p { margin: 0 0 var(--space-sm); }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------
   3. UTILITIES / SECTION SCAFFOLDING
--------------------------------------------------------------------- */
.section {
  padding-block: var(--space-2xl);
}

.section-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.section-eyebrow-light { color: var(--color-accent); }

.section-title {
  font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  font-weight: 700;
  max-width: 640px;
  margin-inline: auto;
}

.section-head .section-title { margin-bottom: var(--space-sm); }

.section-text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.section-text-center { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-lg { padding: 1rem 2.1rem; font-size: 1rem; }

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 153, 255, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.btn-light {
  background: #fff;
  color: var(--color-primary-dark);
}
.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.btn-nav { margin-left: var(--space-sm); }

/* Glass card */
.glass-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------------
   4. HEADER / NAVBAR
--------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base), height var(--transition-base), border-color var(--transition-base);
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(248, 250, 252, 0.92);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}

.navbar {
  display: block;
  width: 100%;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-dark);
}

.brand-accent { color: var(--color-secondary); }

.primary-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 0.5rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-link.is-active { color: var(--color-primary); }

.dropdown-toggle {
  font-family: inherit;
  color: inherit;
}

.dropdown-toggle i { font-size: 0.7rem; transition: transform var(--transition-base); }

.has-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: 10;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--color-text);
  transition: background var(--transition-base), color var(--transition-base);
}
.dropdown-menu li a:hover {
  background: rgba(0, 153, 255, 0.08);
  color: var(--color-secondary);
}
.dropdown-menu li a i { width: 18px; color: var(--color-secondary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle-bar {
  width: 26px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   5. HERO
--------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 5rem;
  background: var(--gradient-dark);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
}

.hero-network { width: 100%; height: 100%; }
.hero-links line {
  stroke: url(#lineGrad);
  stroke-width: 1.4;
  opacity: 0.55;
}
.hero-nodes circle {
  fill: var(--color-accent);
  filter: drop-shadow(0 0 6px rgba(0, 194, 203, 0.9));
  animation: pulseNode 3.6s ease-in-out infinite;
}
.hero-nodes circle:nth-child(2n) { animation-delay: 0.6s; fill: var(--color-secondary); }
.hero-nodes circle:nth-child(3n) { animation-delay: 1.2s; }

@keyframes pulseNode {
  0%, 100% { r: var(--r, 5px); opacity: 0.7; }
  50% { opacity: 1; transform: scale(1.4); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero-title {
  color: #fff;
  font-size: clamp(2.2rem, 1.7rem + 2.4vw, 3.6rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-trust-label {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.hero-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.hero-trust-items span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-trust-items i { color: var(--color-accent); }

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-card {
  padding: var(--space-md);
}

.hero-card-main { display: flex; flex-direction: column; gap: 1.1rem; }

.hero-card-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.4rem;
}

.hero-card-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 1.1rem;
}

.hero-card-title { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; margin: 0; color: var(--color-dark); }
.hero-card-sub { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

.hero-card-float {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.4rem;
  animation: floatCard 4.5s ease-in-out infinite;
}
.hero-card-float i { font-size: 1.6rem; color: var(--color-accent); }
.hero-card-float-num { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin: 0; color: var(--color-dark); }
.hero-card-float-label { font-size: 0.8rem; color: var(--color-text-muted); margin: 0; }

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

.hero-scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
}
.hero-scroll-cue span {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  margin: 8px auto;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ---------------------------------------------------------------------
   6. COMPANY INTRODUCTION / COUNTERS
--------------------------------------------------------------------- */
.intro-section { background: var(--color-white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.counter-item {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.counter-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.counter-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}
.counter-label {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin: 0;
}

/* ---------------------------------------------------------------------
   7. ABOUT PREVIEW
--------------------------------------------------------------------- */
.about-preview { background: var(--color-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-frame {
  position: relative;
  height: 420px;
  display: grid;
  place-items: center;
}

.about-frame-glow {
  position: absolute;
  inset: 10%;
  background: var(--gradient-brand);
  filter: blur(80px);
  opacity: 0.25;
  border-radius: 50%;
}

.about-core {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--gradient-dark);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}
.about-core span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: transparent;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  max-width: 220px;
}
.about-mini-card i { color: var(--color-secondary); font-size: 1.1rem; }
.about-mini-1 { top: 6%; left: -4%; animation: floatCard 5s ease-in-out infinite; }
.about-mini-2 { bottom: 8%; right: -6%; animation: floatCard 5.5s ease-in-out infinite reverse; }

.check-list { margin-block: var(--space-md); display: grid; gap: 0.6rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: var(--color-text);
}
.check-list i { color: var(--color-accent); margin-top: 0.2rem; }

/* ---------------------------------------------------------------------
   8. SERVICES
--------------------------------------------------------------------- */
.services-section { background: var(--color-white); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-featured {
  background: var(--gradient-dark);
  color: #fff;
}
.service-card-featured .service-card-title,
.service-card-featured h3 { color: #fff; }
.service-card-featured .service-card-text,
.service-card-featured .service-card-list li { color: rgba(255, 255, 255, 0.75); }
.service-card-featured .service-card-link { color: var(--color-accent); }

.service-card-badge {
  position: absolute;
  top: -14px;
  left: var(--space-md);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.service-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.service-card-title { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-card-text { color: var(--color-text-muted); font-size: 0.95rem; }

.service-card-list {
  display: grid;
  gap: 0.45rem;
  margin-block: var(--space-sm);
}
.service-card-list li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.service-card-list li::before {
  content: '\2022';
  position: absolute;
  left: 0.2rem;
  color: var(--color-secondary);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-top: 0.4rem;
  transition: gap var(--transition-base);
}
.service-card-link:hover { gap: 0.85rem; }

/* ---------------------------------------------------------------------
   9. WHY CHOOSE US
--------------------------------------------------------------------- */
.why-section { background: var(--color-bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.why-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 153, 255, 0.1);
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.why-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.why-card p { color: var(--color-text-muted); font-size: 0.92rem; margin: 0; }

/* ---------------------------------------------------------------------
   10. INDUSTRIES
--------------------------------------------------------------------- */
.industries-section { background: var(--color-white); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
  transition: transform var(--transition-base), color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}
.industry-card i { font-size: 1.6rem; color: var(--color-secondary); transition: transform var(--transition-base); }
.industry-card:hover {
  transform: translateY(-6px);
  background: var(--gradient-dark);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.industry-card:hover i { color: var(--color-accent); transform: scale(1.15); }

/* ---------------------------------------------------------------------
   11. PROCESS
--------------------------------------------------------------------- */
.process-section { background: var(--color-bg); }

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0, var(--color-border) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.process-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.88rem; color: var(--color-text-muted); margin: 0; }

.process-cta { text-align: center; margin-top: var(--space-xl); }

/* ---------------------------------------------------------------------
   12. TESTIMONIALS
--------------------------------------------------------------------- */
.testimonials-section {
  background: var(--gradient-dark);
  position: relative;
}
.testimonials-section .section-eyebrow { color: var(--color-accent); }
.testimonials-section .section-title { color: #fff; }

.testimonial-track {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  min-height: 260px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}
.testimonial-card.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testimonial-quote-icon {
  font-size: 1.6rem;
  color: var(--color-secondary);
  opacity: 0.5;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--color-dark);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: var(--space-md);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; margin: 0; font-family: var(--font-display); }
.testimonial-role { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: var(--space-md);
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background var(--transition-base), transform var(--transition-base);
}
.testimonial-dot.is-active { background: var(--color-accent); transform: scale(1.3); }

/* ---------------------------------------------------------------------
   13. CTA BAND
--------------------------------------------------------------------- */
.cta-band {
  background: var(--gradient-brand);
  padding-block: var(--space-xl);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-band-title {
  color: #fff;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  max-width: 560px;
  margin-bottom: 0.5rem;
}

.cta-band-text {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0;
}

/* ---------------------------------------------------------------------
   14. BLOG PREVIEW
--------------------------------------------------------------------- */
.blog-section { background: var(--color-white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.blog-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.blog-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: rgba(0, 153, 255, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: var(--space-xs);
}

.blog-card-date { font-size: 0.82rem; color: var(--color-text-muted); }
.blog-card-title { font-size: 1.12rem; margin-bottom: 0.5rem; }
.blog-card-title a:hover { color: var(--color-secondary); }
.blog-card-text { font-size: 0.92rem; color: var(--color-text-muted); }

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-primary);
  transition: gap var(--transition-base);
}
.blog-card-link:hover { gap: 0.85rem; }

/* ---------------------------------------------------------------------
   15. FAQ
--------------------------------------------------------------------- */
.faq-section { background: var(--color-bg); }

.faq-accordion {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: var(--color-dark);
}
.faq-question i { color: var(--color-secondary); transition: transform var(--transition-base); flex-shrink: 0; margin-left: 1rem; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-inline: var(--space-md);
}
.faq-answer p { color: var(--color-text-muted); font-size: 0.95rem; padding-bottom: var(--space-sm); margin: 0; }

/* ---------------------------------------------------------------------
   16. CONTACT CTA
--------------------------------------------------------------------- */
.contact-cta {
  background: var(--gradient-dark);
  padding-block: var(--space-2xl);
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.contact-cta-copy .cta-band-title { color: #fff; }
.contact-cta-copy .cta-band-text { color: rgba(255, 255, 255, 0.75); }

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
}
.contact-cta-phone i { color: var(--color-accent); }

/* ---------------------------------------------------------------------
   17. FOOTER
--------------------------------------------------------------------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-2xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand { color: #fff; margin-bottom: var(--space-sm); }
.footer-about { font-size: 0.9rem; max-width: 280px; margin-bottom: var(--space-md); }

.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--transition-base), transform var(--transition-base), color var(--transition-base);
}
.footer-social a:hover {
  background: var(--gradient-brand);
  transform: translateY(-4px);
  color: #fff;
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.footer-list { display: grid; gap: 0.65rem; }
.footer-list a { font-size: 0.9rem; transition: color var(--transition-base), padding-left var(--transition-base); }
.footer-list a:hover { color: var(--color-accent); padding-left: 4px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
}
.footer-contact-list i { color: var(--color-accent); margin-top: 0.2rem; }

.footer-bottom { padding-block: var(--space-md); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: var(--space-md); }
.footer-legal a:hover { color: var(--color-accent); }

/* ---------------------------------------------------------------------
   18. BACK TO TOP (removed from HTML but kept for safety)
--------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: 900;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-5px); }

/* ---------------------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS
--------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .service-grid,
  .why-grid,
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); row-gap: var(--space-md); }
  .process-track::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner,
  .intro-grid,
  .about-grid { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .about-frame { height: 320px; margin-bottom: var(--space-md); }
}

@media (max-width: 768px) {
  :root { --header-height: 72px; }

  .nav-toggle { display: flex; }

  .primary-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    height: calc(100vh - var(--header-height));
    width: min(320px, 84vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .primary-menu.is-open { transform: translateX(0); }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .nav-link { padding: 0.85rem 0.5rem; }
  .nav-link::after { display: none; }

  .has-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 0.5rem;
  }
  .has-dropdown.is-open .dropdown-menu { display: block; }

  .btn-nav { margin: var(--space-sm) 0.5rem 0; text-align: center; justify-content: center; }

  .service-grid,
  .why-grid,
  .blog-grid,
  .industry-grid { grid-template-columns: 1fr; }

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

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }

  .cta-band-inner,
  .contact-cta-inner { flex-direction: column; text-align: left; }
}

@media (max-width: 520px) {
  .section { padding-block: var(--space-xl); }
  .counters { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust-items { gap: 0.9rem; }
  .back-to-top { right: 16px; bottom: 16px; }
}

/* ==========================================================================
   ABOUT PAGE — ADDITIONS
   ========================================================================== */

/* ---------------------------------------------------------------------
   20. INNER PAGE HERO
--------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  background: var(--gradient-dark);
  overflow: hidden;
  isolation: isolate;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero-grid { position: absolute; inset: 0; opacity: 0.7; }

.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.page-hero-blob-1 {
  width: 380px;
  height: 380px;
  background: var(--color-secondary);
  top: -120px;
  right: 8%;
}
.page-hero-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  bottom: -100px;
  left: 4%;
}

.page-hero-inner { max-width: 780px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-md);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.75); transition: color var(--transition-base); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb i { font-size: 0.7rem; opacity: 0.6; }
.breadcrumb span { color: var(--color-accent); }

.page-hero-title {
  color: #fff;
  font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.9rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 640px;
  margin: 0;
}

/* ---------------------------------------------------------------------
   21. COMPANY OVERVIEW
--------------------------------------------------------------------- */
.overview-section { background: var(--color-white); }

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
}

.overview-fact-card { padding: var(--space-lg) var(--space-md); }

.overview-fact-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}
.overview-fact-heading i { color: var(--color-secondary); }

.overview-fact-list { display: grid; gap: 0.85rem; }
.overview-fact-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.92rem;
}
.overview-fact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.overview-fact-list li span { color: var(--color-text-muted); }
.overview-fact-list li strong { font-family: var(--font-display); color: var(--color-dark); text-align: right; }

/* ---------------------------------------------------------------------
   22. MISSION & VISION
--------------------------------------------------------------------- */
.mission-vision-section { background: var(--color-bg); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.mv-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.mv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.mv-card-dark {
  background: var(--gradient-dark);
  border-color: transparent;
}
.mv-card-dark .mv-title,
.mv-card-dark .mv-text { color: #fff; }
.mv-card-dark .mv-text { color: rgba(255, 255, 255, 0.78); }
.mv-card-dark .mv-icon { background: rgba(255, 255, 255, 0.12); color: var(--color-accent); }

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.mv-title { font-size: 1.4rem; margin-bottom: 0.6rem; }
.mv-text { color: var(--color-text-muted); font-size: 1rem; margin: 0; }

/* ---------------------------------------------------------------------
   23. CORE VALUES
--------------------------------------------------------------------- */
.values-section { background: var(--color-white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.value-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.value-icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 194, 203, 0.12);
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.value-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-card p { color: var(--color-text-muted); font-size: 0.92rem; margin: 0; }

/* ---------------------------------------------------------------------
   24. LEADERSHIP MESSAGE
--------------------------------------------------------------------- */
.leadership-section { background: var(--color-bg); }

.leadership-card {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  padding: var(--space-xl);
  text-align: center;
}

.leadership-quote-icon {
  font-size: 2rem;
  color: var(--color-secondary);
  opacity: 0.4;
  margin-bottom: var(--space-sm);
}

.leadership-message {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.leadership-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.leadership-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-dark);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.leadership-name { font-weight: 700; margin: 0; font-family: var(--font-display); text-align: left; }
.leadership-role { font-size: 0.88rem; color: var(--color-text-muted); margin: 0; text-align: left; }

/* ---------------------------------------------------------------------
   25. COMPANY TIMELINE
--------------------------------------------------------------------- */
.timeline-section { background: var(--color-white); }

.timeline {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding-block: var(--space-sm);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--color-border), var(--color-border));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 var(--space-xl) var(--space-lg) 0;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 var(--space-lg) var(--space-xl);
}

.timeline-dot {
  position: absolute;
  top: 4px;
  right: -7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 0 5px var(--color-white), 0 0 0 6px var(--color-border);
}
.timeline-item:nth-child(even) .timeline-dot { right: auto; left: -7px; }

.timeline-content {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.timeline-content:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--gradient-brand);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.timeline-content h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* ---------------------------------------------------------------------
   26. STATS SECTION
--------------------------------------------------------------------- */
.stats-section { background: var(--color-bg); }

.counters-wide { grid-template-columns: repeat(6, 1fr); }

/* ---------------------------------------------------------------------
   27. ABOUT PAGE RESPONSIVE OVERRIDES
--------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-wide { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .overview-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .counters-wide { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 var(--space-lg) 2.75rem;
  }
  .timeline-item .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 13px;
    right: auto;
  }
  .leadership-card { padding: var(--space-lg); }
  .leadership-author { flex-direction: column; text-align: center; }
  .leadership-name, .leadership-role { text-align: center; }
}

@media (max-width: 520px) {
  .counters-wide { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   SERVICES PAGE ADDITIONS
   ========================================================================== */
.services-intro-section { background: var(--color-white); padding-bottom: 0; }

.service-detail-section { background: var(--color-white); }
.service-detail-alt { background: var(--color-bg); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

.service-detail-grid-reverse .service-detail-media { order: 2; }
.service-detail-grid-reverse .service-detail-copy { order: 1; }

.service-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}
.service-detail-media:hover { transform: translateY(-6px); }
.service-detail-media img { width: 100%; height: auto; border-radius: var(--radius-lg); }

.service-detail-title {
  font-size: clamp(1.4rem, 1.15rem + 1vw, 1.9rem);
  margin-bottom: var(--space-sm);
}

.service-detail-text {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.service-feature-list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: var(--space-md);
}
.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.96rem;
  color: var(--color-text);
}
.service-feature-list i {
  color: #fff;
  background: var(--gradient-brand);
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  margin-top: 0.15rem;
}

.service-tech-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.service-tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: var(--space-lg);
}
.service-tech-icons span {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 1.1rem;
  transition: transform var(--transition-base), background var(--transition-base), color var(--transition-base);
}
.service-detail-alt .service-tech-icons span { background: var(--color-white); }
.service-tech-icons span:hover {
  transform: translateY(-4px);
  background: var(--gradient-brand);
  color: #fff;
}

.service-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.service-price { display: flex; flex-direction: column; }
.service-price-label { font-size: 0.8rem; color: var(--color-text-muted); }
.service-price-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
}
.service-price-period { font-size: 0.9rem; font-weight: 500; color: var(--color-text-muted); }

.service-detail-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid-reverse .service-detail-media,
  .service-detail-grid-reverse .service-detail-copy { order: initial; }
  .service-detail-media { max-width: 460px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .service-detail-footer { flex-direction: column; align-items: flex-start; }
  .service-detail-actions { width: 100%; }
  .service-detail-actions .btn { flex: 1; justify-content: center; }
}

/* ---------------------------------------------------------------------
   PORTFOLIO GALLERY (Web Development page)
--------------------------------------------------------------------- */
.portfolio-section { background: var(--color-bg); }

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-base);
}
.filter-btn:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.filter-btn.is-active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-item.is-hidden { display: none; }

.portfolio-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 2.4rem;
}
.portfolio-thumb.thumb-alt-1 { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); }
.portfolio-thumb.thumb-alt-2 { background: linear-gradient(135deg, var(--color-secondary), var(--color-accent)); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 32, 0.78);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-within .portfolio-overlay { opacity: 1; }

.portfolio-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.portfolio-title { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin: 0; }

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   PREMIUM REDESIGN — 2026
   Deep-ink enterprise palette, glass navigation, refined typography,
   richer cards, consistent mobile behaviour, and new content components.
===================================================================== */
:root {
  --color-primary: #3454d1;
  --color-primary-dark: #101f56;
  --color-secondary: #5577ff;
  --color-accent: #4fe2da;
  --color-gold: #d6b56f;
  --color-bg: #ffffff;
  --color-dark: #07101f;
  --color-dark-alt: #0d1728;
  --color-text: #253149;
  --color-text-muted: #69758b;
  --color-border: rgba(12, 30, 62, 0.10);
  --gradient-brand: linear-gradient(135deg, #4b63e8 0%, #5577ff 46%, #39d7ce 100%);
  --gradient-dark: linear-gradient(145deg, #050914 0%, #0a1630 50%, #112d4e 100%);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 8px 30px rgba(9, 24, 52, .08);
  --shadow-md: 0 24px 55px rgba(9, 24, 52, .12);
  --shadow-lg: 0 38px 90px rgba(4, 12, 28, .22);
  --container-width: 1280px;
  --header-height: 88px;
}

body { background: #ffffff; color: var(--color-text); }
body::selection { background: rgba(85,119,255,.25); color: #07101f; }
.container { padding-inline: clamp(1.15rem, 3vw, 2.25rem); }
.section { padding-block: clamp(4.75rem, 8vw, 8.25rem); }
.section-title { letter-spacing: -.045em; font-size: clamp(2rem, 1.45rem + 2.2vw, 3.5rem); }
.section-text { line-height: 1.85; }
.section-eyebrow,.eyebrow { letter-spacing: .18em; font-size: .74rem; }

.site-header { height: var(--header-height); background: rgba(5,9,20,.78); border-bottom: 1px solid rgba(255,255,255,.09); backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%); }
.site-header.is-scrolled { height: 72px; background: rgba(5,9,20,.94); border-bottom-color: rgba(255,255,255,.1); box-shadow: 0 15px 45px rgba(0,0,0,.18); }
.brand { color: #fff; letter-spacing: -.035em; }
.brand-mark { filter: drop-shadow(0 0 14px rgba(79,226,218,.28)); }
.brand-accent { background: linear-gradient(90deg,#7f94ff,#4fe2da); -webkit-background-clip:text; background-clip:text; color: transparent; }
.nav-link { color: rgba(255,255,255,.72); font-size: .86rem; letter-spacing: .01em; }
.nav-link:hover,.nav-link.is-active { color:#fff; }
.nav-link::after { height:1px; bottom:-6px; }
.dropdown-menu { background: rgba(9,17,34,.98); border:1px solid rgba(255,255,255,.1); box-shadow:0 30px 70px rgba(0,0,0,.38); }
.dropdown-menu li a { color:rgba(255,255,255,.74); }
.dropdown-menu li a:hover { background:rgba(85,119,255,.14); color:#fff; }
.nav-toggle-bar { background:#fff; }
.btn { letter-spacing: -.01em; border:1px solid transparent; }
.btn-primary { background: var(--gradient-brand); box-shadow: 0 14px 35px rgba(72,98,225,.28); }
.btn-primary:hover { box-shadow:0 20px 48px rgba(72,98,225,.40); }
.btn-outline { border:1px solid rgba(52,84,209,.28); background:rgba(255,255,255,.75); }
.btn-outline:hover { background:#07101f; border-color:#07101f; }
.btn-light { box-shadow: 0 16px 40px rgba(0,0,0,.18); }

.hero { min-height: 850px; display:flex; align-items:center; padding-top:calc(var(--header-height) + 4.5rem); background:radial-gradient(circle at 78% 26%,rgba(85,119,255,.22),transparent 28%),radial-gradient(circle at 18% 82%,rgba(79,226,218,.12),transparent 28%),linear-gradient(145deg,#050914 0%,#09142a 52%,#0d2440 100%); }
.hero::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:72px 72px; mask-image:linear-gradient(to bottom,rgba(0,0,0,.7),transparent 88%); pointer-events:none; }
.hero-inner { grid-template-columns: minmax(0,1.2fr) minmax(360px,.8fr); gap:clamp(3rem,7vw,7rem); }
.hero-title { font-size:clamp(3.15rem,2.2rem + 4.8vw,6.25rem); line-height:.98; letter-spacing:-.065em; max-width:820px; margin-bottom:1.5rem; }
.hero-title::after { content:""; display:block; width:110px; height:3px; margin-top:1.65rem; background:linear-gradient(90deg,var(--color-gold),transparent); }
.hero-subtitle { font-size:clamp(1.05rem,.98rem + .4vw,1.3rem); line-height:1.8; color:rgba(255,255,255,.7); max-width:700px; }
.hero .eyebrow { padding:.65rem 1rem; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05); border-radius:999px; color:#b9c5ff; }
.hero-card-main { background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.055)); border-color:rgba(255,255,255,.17); box-shadow:0 35px 95px rgba(0,0,0,.35); }
.hero-card-main .hero-card-title { color:#fff; }
.hero-card-main .hero-card-sub { color:rgba(255,255,255,.6); }
.hero-card-row { padding:1rem; border-radius:18px; transition:.35s ease; }
.hero-card-row:hover { background:rgba(255,255,255,.08); transform:translateX(8px); }
.hero-card-float { background:rgba(10,18,36,.88); border-color:rgba(255,255,255,.14); }
.hero-card-float-num { color:#fff; }
.hero-card-float-label { color:rgba(255,255,255,.55); }
.hero-trust { padding-top:1.1rem; border-top:1px solid rgba(255,255,255,.09); }
.hero-scroll-cue { opacity:.6; }

.page-hero { min-height:620px; padding-top:calc(var(--header-height) + 5rem); padding-bottom:5.5rem; background:radial-gradient(circle at 75% 35%,rgba(85,119,255,.22),transparent 32%),radial-gradient(circle at 12% 78%,rgba(79,226,218,.12),transparent 28%),linear-gradient(145deg,#050914,#0c1a34 58%,#112b49); overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px); background-size:72px 72px; }
.page-hero-inner { position:relative; z-index:2; }
.page-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) 280px; align-items:end; gap:4rem; }
.page-hero-title { color:#fff; font-size:clamp(3rem,2rem + 4.5vw,6rem); line-height:1; letter-spacing:-.065em; max-width:950px; }
.page-hero-subtitle { color:rgba(255,255,255,.68); font-size:1.18rem; line-height:1.8; max-width:760px; }
.breadcrumb { color:rgba(255,255,255,.48); margin-bottom:2rem; }
.breadcrumb a:hover { color:#fff; }
.hero-monogram { min-height:230px; border:1px solid rgba(255,255,255,.12); border-radius:32px; background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.03)); box-shadow:0 30px 80px rgba(0,0,0,.24); display:flex; flex-direction:column; justify-content:space-between; padding:2rem; color:#fff; }
.hero-monogram span { font-family:var(--font-display); font-size:4.6rem; font-weight:700; letter-spacing:-.08em; background:linear-gradient(135deg,#fff,#8fa2ff 52%,#4fe2da); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-monogram small { color:rgba(255,255,255,.48); text-transform:uppercase; letter-spacing:.15em; line-height:1.7; }

.intro-section,.services-intro-section,.overview-section,.premium-section { background:#fff; }
.services-section,.why-section,.blog-section,.portfolio-section,.muted-section { background:#ffffff; }
.service-card,.why-card,.value-card,.counter-item,.blog-card,.faq-item,.timeline-content,.mv-card,.overview-fact-card { border:1px solid rgba(10,25,55,.08); box-shadow:none; }
.service-card,.why-card,.value-card,.blog-card { border-radius:24px; }
.service-card:hover,.why-card:hover,.value-card:hover,.blog-card:hover,.premium-card:hover { transform:translateY(-9px); box-shadow:0 28px 70px rgba(8,24,55,.12); border-color:rgba(85,119,255,.26); }
.service-card-icon,.why-icon,.value-icon,.mv-icon { box-shadow:0 14px 34px rgba(72,98,225,.2); }
.counter-num { background:var(--gradient-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.industry-card { background:#fff; border:1px solid rgba(10,25,55,.08); border-radius:18px; }
.process-step-num { box-shadow:0 14px 32px rgba(72,98,225,.25); }
.testimonial-card { background:linear-gradient(145deg,#0a1428,#101f3a); border:1px solid rgba(255,255,255,.1); box-shadow:0 30px 80px rgba(3,10,24,.22); }
.testimonial-text,.testimonial-name,.testimonial-role { color:#fff; }
.testimonial-role { opacity:.6; }
.faq-question { padding:1.45rem 1.6rem; }
.faq-item { border-radius:18px; overflow:hidden; }
.contact-cta { background:radial-gradient(circle at 85% 40%,rgba(85,119,255,.25),transparent 30%),linear-gradient(135deg,#07101f,#10264a); }
.site-footer { background:#050914; border-top:1px solid rgba(255,255,255,.08); }
.footer-top { padding-top:5.5rem; }
.footer-heading { color:#fff; }
.footer-list a,.footer-about,.footer-contact-list li { color:rgba(255,255,255,.55); }
.footer-list a:hover { color:#fff; transform:translateX(4px); }
.footer-bottom { border-top-color:rgba(255,255,255,.08); }
.back-to-top { background:linear-gradient(135deg,#5577ff,#4fe2da); box-shadow:0 15px 35px rgba(72,98,225,.28); }

/* New premium components */
.left-title { margin-inline:0; }
.premium-grid { display:grid; gap:1.5rem; }
.premium-grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.premium-grid-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
.premium-card { position:relative; padding:clamp(1.7rem,3vw,2.35rem); background:rgba(255,255,255,.92); border:1px solid rgba(10,25,55,.09); border-radius:26px; transition:transform .38s ease,box-shadow .38s ease,border-color .38s ease; overflow:hidden; }
.premium-card::before { content:""; position:absolute; width:160px; height:160px; right:-80px; top:-80px; background:radial-gradient(circle,rgba(85,119,255,.11),transparent 68%); }
.premium-card h3 { font-size:1.3rem; letter-spacing:-.035em; }
.premium-card p { color:var(--color-text-muted); }
.premium-card.compact { padding:1.6rem; }
.icon-box { width:52px; height:52px; display:grid; place-items:center; border-radius:16px; margin-bottom:1.3rem; color:#fff; background:var(--gradient-brand); box-shadow:0 16px 32px rgba(72,98,225,.2); }
.text-link { display:inline-flex; align-items:center; gap:.55rem; color:var(--color-primary); font-weight:700; font-size:.9rem; margin-top:.5rem; }
.text-link i { transition:transform .25s ease; }
.text-link:hover i { transform:translateX(5px); }
.dark-showcase { background:radial-gradient(circle at 80% 20%,rgba(85,119,255,.24),transparent 30%),linear-gradient(145deg,#050914,#10213f); color:#fff; }
.dark-showcase .section-title,.dark-showcase h3 { color:#fff; }
.dark-showcase .section-text { color:rgba(255,255,255,.63); }
.split-layout { display:grid; grid-template-columns:minmax(0,1fr) minmax(360px,.9fr); gap:clamp(3rem,7vw,7rem); align-items:center; }
.stack-list { display:grid; gap:1rem; }
.stack-list>div { display:grid; grid-template-columns:50px 1fr; gap:.4rem 1rem; padding:1.4rem; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05); border-radius:20px; }
.stack-list span { grid-row:span 2; color:#4fe2da; font-weight:700; }
.stack-list p { color:rgba(255,255,255,.58); margin:0; }
.process-luxe { position:relative; max-width:980px; margin:0 auto; }
.process-luxe::before { content:""; position:absolute; left:48px; top:30px; bottom:30px; width:1px; background:linear-gradient(#5577ff,#4fe2da,transparent); }
.process-luxe-item { position:relative; display:grid; grid-template-columns:96px 1fr; gap:2rem; padding:0 0 3rem; }
.process-luxe-item>span { width:96px; height:96px; display:grid; place-items:center; border-radius:28px; background:#07101f; color:#fff; font-family:var(--font-display); font-size:1.4rem; box-shadow:0 22px 55px rgba(7,16,31,.18); z-index:1; }
.process-luxe-item>div { background:#fff; border:1px solid rgba(10,25,55,.09); border-radius:24px; padding:2rem; }
.process-luxe-item h3 { font-size:1.45rem; }
.process-luxe-item p { color:var(--color-text-muted); }
.mini-label { color:var(--color-primary)!important; font-size:.73rem; text-transform:uppercase; letter-spacing:.15em; font-weight:700; }
.insight-feature { display:grid; grid-template-columns:1.2fr .8fr; gap:2rem; padding:clamp(2rem,5vw,4.5rem); border-radius:34px; color:#fff; background:radial-gradient(circle at 80% 30%,rgba(85,119,255,.32),transparent 30%),linear-gradient(145deg,#050914,#10264a); margin-bottom:6rem; }
.insight-feature h2 { color:#fff; font-size:clamp(2rem,1.5rem + 2vw,3.5rem); letter-spacing:-.05em; }
.insight-feature p { color:rgba(255,255,255,.66); max-width:720px; }
.insight-visual { min-height:340px; border:1px solid rgba(255,255,255,.13); background:rgba(255,255,255,.05); border-radius:26px; display:flex; flex-direction:column; justify-content:space-between; padding:2rem; }
.insight-visual i { font-size:4rem; color:#4fe2da; }
.insight-visual span { font-family:var(--font-display); font-size:2rem; font-weight:700; line-height:1.1; }
.insight-meta { display:flex; flex-wrap:wrap; gap:1rem; color:rgba(255,255,255,.48); font-size:.8rem; margin:1.2rem 0; }
.insight-card .insight-meta { color:var(--color-text-muted); }
.insight-tag,.resource-type { display:inline-flex; padding:.38rem .7rem; background:rgba(85,119,255,.1); color:var(--color-primary); border-radius:999px; font-size:.7rem; letter-spacing:.09em; text-transform:uppercase; font-weight:800; margin-bottom:1.15rem; }
.culture-panel { display:grid; grid-template-columns:repeat(2,1fr); background:linear-gradient(145deg,#07101f,#112b4c); border-radius:30px; padding:1rem; box-shadow:var(--shadow-lg); }
.culture-panel>div { padding:2rem; border:1px solid rgba(255,255,255,.08); }
.culture-panel>div:nth-child(1){border-radius:22px 0 0 0}.culture-panel>div:nth-child(2){border-radius:0 22px 0 0}.culture-panel>div:nth-child(3){border-radius:0 0 0 22px}.culture-panel>div:nth-child(4){border-radius:0 0 22px 0}
.culture-panel strong { display:block; color:#fff; font-family:var(--font-display); font-size:2.2rem; }
.culture-panel span { color:rgba(255,255,255,.55); }
.pill-row { display:flex; flex-wrap:wrap; gap:.65rem; margin-top:1.5rem; }
.pill-row span { border:1px solid rgba(52,84,209,.16); background:#fff; border-radius:999px; padding:.55rem .9rem; color:var(--color-primary); font-size:.84rem; font-weight:600; }
.jobs-list { display:grid; gap:1rem; max-width:1000px; margin:0 auto; }
.job-row { display:flex; justify-content:space-between; gap:2rem; align-items:center; padding:1.6rem 1.8rem; background:#fff; border:1px solid rgba(10,25,55,.09); border-radius:22px; }
.job-row h3 { margin-bottom:.35rem; }
.job-row p { color:var(--color-text-muted); margin:0; }
.faq-layout { display:grid; grid-template-columns:330px 1fr; gap:4rem; align-items:start; }
.faq-aside { position:sticky; top:120px; padding:2rem; background:linear-gradient(145deg,#07101f,#112b4c); border-radius:28px; color:#fff; }
.faq-aside h2 { color:#fff; font-size:2rem; }
.faq-aside p { color:rgba(255,255,255,.62); }
.contact-layout,.quote-layout { display:grid; grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr); gap:clamp(3rem,7vw,7rem); align-items:start; }
.quote-layout { grid-template-columns:360px minmax(0,1fr); }
.quote-aside { position:sticky; top:120px; }
.contact-detail-stack { display:grid; gap:.8rem; margin-top:2rem; }
.contact-detail-stack>a,.contact-detail-stack>div { display:flex; align-items:center; gap:1rem; padding:1rem; border:1px solid rgba(10,25,55,.08); border-radius:18px; background:#fff; }
.contact-detail-stack .icon-box { width:46px; height:46px; margin:0; border-radius:14px; }
.contact-detail-stack small,.contact-detail-stack strong { display:block; }
.contact-detail-stack small { color:var(--color-text-muted); }
.form-card { background:#fff; border:1px solid rgba(10,25,55,.09); border-radius:30px; padding:clamp(1.5rem,4vw,3rem); box-shadow:0 28px 75px rgba(8,24,55,.1); }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.25rem; margin-bottom:1.6rem; }
.form-group { display:grid; gap:.55rem; color:var(--color-dark); font-size:.88rem; font-weight:700; }
.form-group-full { grid-column:1/-1; }
.form-group input,.form-group select,.form-group textarea { width:100%; border:1px solid rgba(10,25,55,.12); border-radius:14px; background:#f7f8fb; padding:.95rem 1rem; color:var(--color-text); font:inherit; font-weight:400; transition:border-color .25s ease,box-shadow .25s ease,background .25s ease; }
.form-group textarea { resize:vertical; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { outline:none; border-color:#5577ff; background:#fff; box-shadow:0 0 0 4px rgba(85,119,255,.12); }
.form-note { color:var(--color-text-muted); font-size:.8rem; margin-top:1rem; }
.form-note a { color:var(--color-primary); }
.form-success { display:none; margin-top:1rem; padding:1rem; border-radius:14px; background:rgba(49,171,109,.1); color:#167344; font-weight:700; }
.form-success.is-visible { display:block; }
.quote-points { display:grid; gap:.85rem; margin-top:2rem; }
.quote-points li { display:flex; gap:.7rem; align-items:center; }
.quote-points i { color:#fff; width:23px; height:23px; display:grid; place-items:center; border-radius:50%; background:var(--gradient-brand); font-size:.65rem; }
.resource-card { display:block; color:inherit; }
.resource-type { position:absolute; right:1.5rem; top:1.5rem; }
.legal-content { max-width:860px; }
.legal-content h2 { font-size:2.5rem; }
.legal-content h3 { margin-top:2rem; }
.legal-content p { color:var(--color-text-muted); font-size:1.03rem; }
.sitemap-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; }
.sitemap-grid>div { background:#fff; border:1px solid rgba(10,25,55,.09); border-radius:22px; padding:1.8rem; }
.sitemap-grid a { display:block; color:var(--color-text-muted); padding:.45rem 0; }
.sitemap-grid a:hover { color:var(--color-primary); }

/* Reading progress */
.reading-progress { position:fixed; top:0; left:0; height:2px; width:0; background:linear-gradient(90deg,#d6b56f,#5577ff,#4fe2da); z-index:3000; box-shadow:0 0 12px rgba(79,226,218,.55); }

@media (max-width:1120px) {
  .nav-list { gap:1rem; }
  .nav-link { font-size:.79rem; }
  .btn-nav { padding:.75rem 1.1rem; }
  .premium-grid-4 { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:980px) {
  .hero { min-height:auto; }
  .hero-inner,.split-layout,.contact-layout,.quote-layout,.insight-feature,.faq-layout { grid-template-columns:1fr; }
  .hero-panel { max-width:620px; }
  .page-hero-grid { grid-template-columns:1fr; }
  .hero-monogram { display:none; }
  .quote-aside,.faq-aside { position:static; }
  .premium-grid-3 { grid-template-columns:repeat(2,1fr); }
  .sitemap-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .site-header,.site-header.is-scrolled { height:70px; }
  .primary-menu { background:rgba(5,9,20,.98); border-left:1px solid rgba(255,255,255,.1); box-shadow:-25px 0 70px rgba(0,0,0,.4); }
  .nav-list { align-items:stretch; }
  .nav-link { color:rgba(255,255,255,.78); font-size:1rem; }
  .dropdown-menu { background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.08); box-shadow:none; }
  .dropdown-menu li a { color:rgba(255,255,255,.65); }
  .btn-nav { margin:1rem 1.5rem; justify-content:center; }
  .hero { padding-top:calc(70px + 4rem); }
  .hero-title { font-size:clamp(2.8rem,12vw,4.4rem); }
  .hero-trust-items { gap:.85rem 1rem; }
  .page-hero { min-height:520px; padding-top:calc(70px + 4rem); }
  .page-hero-title { font-size:clamp(2.65rem,12vw,4.6rem); }
  .premium-grid-3,.premium-grid-4 { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .form-group-full { grid-column:auto; }
  .process-luxe::before { left:29px; }
  .process-luxe-item { grid-template-columns:58px 1fr; gap:1rem; }
  .process-luxe-item>span { width:58px; height:58px; border-radius:18px; font-size:1rem; }
  .job-row { flex-direction:column; align-items:flex-start; }
  .job-row .btn { width:100%; justify-content:center; }
  .culture-panel { grid-template-columns:1fr 1fr; }
}
@media (max-width:560px) {
  .section { padding-block:4.5rem; }
  .hero-actions .btn { width:100%; justify-content:center; }
  .hero-card-row { align-items:flex-start; }
  .page-hero { min-height:480px; }
  .premium-card,.form-card { border-radius:22px; }
  .culture-panel { grid-template-columns:1fr; }
  .culture-panel>div { border-radius:0!important; }
  .sitemap-grid { grid-template-columns:1fr; }
  .insight-visual { min-height:240px; }
}

/* Premium navigation collapse before the menu becomes crowded */
@media (max-width: 1120px) {
  .nav-toggle { display:flex; }
  .primary-menu {
    position:fixed; top:72px; right:0; height:calc(100vh - 72px); width:min(360px,88vw);
    background:rgba(5,9,20,.98); flex-direction:column; align-items:stretch; padding:1.5rem;
    transform:translateX(100%); transition:transform var(--transition-base);
    box-shadow:-25px 0 70px rgba(0,0,0,.42); overflow-y:auto; border-left:1px solid rgba(255,255,255,.1);
  }
  .primary-menu.is-open { transform:translateX(0); }
  .nav-list { flex-direction:column; align-items:stretch; gap:.2rem; }
  .nav-link { padding:.85rem .5rem; color:rgba(255,255,255,.8); font-size:.98rem; }
  .nav-link::after { display:none; }
  .has-dropdown .dropdown-menu { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; display:none; padding-left:.5rem; }
  .has-dropdown.is-open .dropdown-menu { display:block; }
  .btn-nav { margin:1rem .5rem 0; justify-content:center; }
}
@media (max-width: 980px) { .hero-panel { order:initial; } }

/* Editorial and downloadable-resource detail pages */
.article-shell,.resource-detail { max-width:900px; }
.article-meta { display:flex; flex-wrap:wrap; align-items:center; gap:1rem; color:var(--color-text-muted); font-size:.82rem; margin-bottom:1.5rem; }
.article-meta .insight-tag { margin:0; }
.article-lead { font-size:clamp(1.25rem,1.05rem + .7vw,1.65rem); line-height:1.75; color:var(--color-dark); margin-bottom:3rem; }
.article-shell>section { padding:0 0 1.7rem; margin-bottom:1.7rem; border-bottom:1px solid rgba(10,25,55,.09); }
.article-shell>section h2 { font-size:1.65rem; letter-spacing:-.035em; }
.article-shell>section p { color:var(--color-text-muted); font-size:1.05rem; }
.article-callout { margin:3rem 0 2rem; padding:2rem; border-radius:24px; background:linear-gradient(145deg,#07101f,#112b4c); color:#fff; }
.article-callout h3 { color:#fff; }
.article-callout p { color:rgba(255,255,255,.64); }
.resource-checklist { padding:2rem; border:1px solid rgba(10,25,55,.09); border-radius:24px; background:#fff; }
.resource-checklist ul { display:grid; gap:1rem; margin-top:1.5rem; }
.resource-checklist li { display:flex; gap:.8rem; align-items:flex-start; }
.resource-checklist i { width:23px; height:23px; flex:0 0 23px; display:grid; place-items:center; border-radius:50%; background:var(--gradient-brand); color:#fff; font-size:.65rem; margin-top:.1rem; }
@media (max-width:1120px) {
  :root { --header-height:72px; }
  .site-header,.site-header.is-scrolled { height:72px; }
}

/* ========================================================================== 
   TITAN CORE EDGE — LIVE MOTION SYSTEM
   Premium, performance-conscious animation with reduced-motion support.
   ========================================================================== */

:root {
  --tce-blue:#1477ff;
  --tce-cyan:#42d4ff;
  --tce-navy:#031127;
  --tce-silver:#dce8f6;
  --pointer-x:50vw;
  --pointer-y:30vh;
}

/* Supplied company logo */
.brand { min-width:clamp(150px,15vw,220px); display:flex; align-items:center; }
.brand picture { display:block; line-height:0; }
.brand-logo { display:block; width:clamp(150px,15vw,220px); height:auto; max-height:66px; object-fit:contain; object-position:left center; filter:drop-shadow(0 8px 20px rgba(0,0,0,.22)); }
.footer-brand .brand-logo { width:min(210px,100%); max-height:92px; }
@media (max-width:560px) {
  .brand { min-width:134px; }
  .brand-logo { width:145px; max-height:58px; }
}

/* Ambient animated layer */
.ambient-canvas {
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:-2;
  opacity:.34;
}
body::before {
  content:"";
  position:fixed;
  left:0; top:0;
  width:460px; height:460px;
  border-radius:50%;
  pointer-events:none;
  z-index:-1;
  transform:translate3d(calc(var(--pointer-x) - 230px),calc(var(--pointer-y) - 230px),0);
  background:radial-gradient(circle,rgba(20,119,255,.12),rgba(66,212,255,.04) 35%,transparent 68%);
  transition:opacity .3s ease;
  opacity:.75;
}

.hero,.page-hero,.dark-showcase,.contact-cta { isolation:isolate; }
.hero::after,.page-hero::after {
  content:"";
  position:absolute;
  inset:-30%;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(circle at 72% 38%,rgba(20,119,255,.25),transparent 26%),
    radial-gradient(circle at 30% 74%,rgba(66,212,255,.12),transparent 22%);
  animation:tce-aurora 13s ease-in-out infinite alternate;
}
.hero-network { animation:tce-grid-drift 18s ease-in-out infinite alternate; }
.hero-nodes circle { transform-box:fill-box; transform-origin:center; animation:tce-node-pulse 2.8s ease-in-out infinite; }
.hero-nodes circle:nth-child(2n) { animation-delay:.55s; }
.hero-nodes circle:nth-child(3n) { animation-delay:1.1s; }
.hero-links line { stroke-dasharray:9 12; animation:tce-data-flow 8s linear infinite; }
.page-hero-blob { animation:tce-orbit 11s ease-in-out infinite alternate; }
.page-hero-blob-2 { animation-delay:-4s; }

.gradient-text {
  color:transparent;
  background:linear-gradient(100deg,#fff 0%,#67b7ff 34%,#2fe0ff 58%,#fff 86%);
  background-size:230% auto;
  -webkit-background-clip:text;
  background-clip:text;
  animation:tce-text-shine 7s linear infinite;
}

.hero-card-main { animation:tce-float 6.2s ease-in-out infinite; }
.hero-card-row:nth-child(2) { animation-delay:.2s; }
.hero-card-float { animation:tce-float-small 4.8s ease-in-out infinite reverse; }
.live-status-card::before {
  content:"";
  width:9px; height:9px; border-radius:50%;
  position:absolute; right:15px; top:15px;
  background:#4ff7aa;
  box-shadow:0 0 0 0 rgba(79,247,170,.65);
  animation:tce-live-pulse 2s infinite;
}
.live-status-card .hero-card-float-num { font-size:1.35rem; letter-spacing:.13em; }

/* Moving capabilities ribbon */
.capability-ticker {
  overflow:hidden;
  position:relative;
  z-index:4;
  color:#dbe9ff;
  background:linear-gradient(90deg,#020b1c,#071b38 48%,#020b1c);
  border-top:1px solid rgba(88,166,255,.24);
  border-bottom:1px solid rgba(88,166,255,.17);
  box-shadow:0 12px 35px rgba(0,17,49,.18);
}
.capability-ticker::before,.capability-ticker::after {
  content:""; position:absolute; z-index:2; top:0; bottom:0; width:12%; pointer-events:none;
}
.capability-ticker::before { left:0; background:linear-gradient(90deg,#020b1c,transparent); }
.capability-ticker::after { right:0; background:linear-gradient(-90deg,#020b1c,transparent); }
.ticker-track { display:flex; width:max-content; align-items:center; gap:1.7rem; padding:1rem 0; animation:tce-ticker 27s linear infinite; }
.ticker-track span { white-space:nowrap; text-transform:uppercase; font-size:.73rem; font-weight:700; letter-spacing:.18em; }
.ticker-track i { width:5px; height:5px; flex:0 0 5px; border-radius:50%; background:#39cfff; box-shadow:0 0 12px #39cfff; }
.capability-ticker:hover .ticker-track { animation-play-state:paused; }

/* Interactive cards */
.tce-tilt {
  --tilt-x:0deg;
  --tilt-y:0deg;
  --shine-x:50%;
  --shine-y:50%;
  transform:perspective(950px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
  transform-style:preserve-3d;
  will-change:transform;
  transition:transform .28s ease,box-shadow .3s ease,border-color .3s ease;
}
.tce-tilt::after {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  opacity:0;
  background:radial-gradient(circle at var(--shine-x) var(--shine-y),rgba(255,255,255,.25),transparent 35%);
  transition:opacity .25s ease;
}
.tce-tilt:hover::after { opacity:1; }
.tce-tilt:hover { border-color:rgba(20,119,255,.34); box-shadow:0 25px 55px rgba(3,28,66,.17); }
.tce-tilt > * { transform:translateZ(12px); }

.icon-box,.service-card-icon,.hero-card-icon {
  position:relative;
  overflow:hidden;
}
.icon-box::after,.service-card-icon::after,.hero-card-icon::after {
  content:""; position:absolute; inset:-80%;
  background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,.38) 50%,transparent 60%);
  transform:translateX(-65%) rotate(12deg);
  animation:tce-icon-sheen 5.5s ease-in-out infinite;
}

.btn { position:relative; overflow:hidden; }
.btn::before {
  content:""; position:absolute; inset:-2px;
  background:linear-gradient(115deg,transparent 30%,rgba(255,255,255,.28) 48%,transparent 65%);
  transform:translateX(-130%);
  transition:transform .65s ease;
}
.btn:hover::before { transform:translateX(130%); }
.btn > * { position:relative; z-index:1; }
.btn.tce-magnetic { will-change:transform; transition:transform .18s ease,box-shadow .25s ease,background .25s ease; }

/* Section reveal refinements */
.reveal { filter:blur(7px); }
.reveal.is-visible { filter:blur(0); }
.section-head.is-visible .section-eyebrow { animation:tce-letter-in .65s ease both; }
.counter-num { text-shadow:0 8px 28px rgba(20,119,255,.12); }
.reading-progress { height:3px; background:linear-gradient(90deg,#1477ff,#42d4ff,#d8eaff,#1477ff); background-size:220% 100%; animation:tce-progress-shine 3s linear infinite; }

/* Soft page transition */
body { animation:tce-page-in .45s ease both; }
body.is-leaving { opacity:0; transition:opacity .18s ease; }

@keyframes tce-page-in { from{opacity:0} to{opacity:1} }
@keyframes tce-aurora { 0%{transform:translate3d(-1%,0,0) scale(1);filter:hue-rotate(0deg)} 100%{transform:translate3d(2%,1%,0) scale(1.08);filter:hue-rotate(13deg)} }
@keyframes tce-grid-drift { from{transform:translate3d(-1%,0,0) scale(1.01)} to{transform:translate3d(2%,-1.5%,0) scale(1.06)} }
@keyframes tce-node-pulse { 0%,100%{opacity:.55;transform:scale(.8)} 50%{opacity:1;transform:scale(1.35)} }
@keyframes tce-data-flow { to{stroke-dashoffset:-84} }
@keyframes tce-orbit { from{transform:translate3d(-2%,0,0) scale(.95)} to{transform:translate3d(4%,2%,0) scale(1.08)} }
@keyframes tce-text-shine { to{background-position:230% center} }
@keyframes tce-float { 0%,100%{transform:translateY(0) rotate(-.3deg)} 50%{transform:translateY(-11px) rotate(.35deg)} }
@keyframes tce-float-small { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(8px) rotate(1deg)} }
@keyframes tce-live-pulse { 0%{box-shadow:0 0 0 0 rgba(79,247,170,.6)} 70%{box-shadow:0 0 0 10px rgba(79,247,170,0)} 100%{box-shadow:0 0 0 0 rgba(79,247,170,0)} }
@keyframes tce-ticker { to{transform:translateX(-50%)} }
@keyframes tce-icon-sheen { 0%,68%{transform:translateX(-75%) rotate(12deg)} 88%,100%{transform:translateX(75%) rotate(12deg)} }
@keyframes tce-letter-in { from{opacity:0;letter-spacing:.35em} to{opacity:1;letter-spacing:var(--eyebrow-spacing,.16em)} }
@keyframes tce-progress-shine { to{background-position:220% 0} }

@media (hover:none),(pointer:coarse) {
  body::before { display:none; }
  .tce-tilt { transform:none!important; }
}
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { scroll-behavior:auto!important; animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important; }
  .ambient-canvas,body::before { display:none!important; }
  .ticker-track { transform:none!important; }
  .reveal { filter:none; }
}
.page-hero-blob,.hero-network,.hero-panel { translate:0 var(--parallax-y,0); }

/* ========================================================================== 
   CONTENT ARCHITECTURE UPDATE — SERVICES, INDUSTRIES, PROCESS & CONTACT
   ========================================================================== */
.industry-grid-12,.why-grid-8{grid-template-columns:repeat(4,minmax(0,1fr));}
.process-grid-8{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.25rem;counter-reset:stage;}
.process-step-card{position:relative;min-height:230px;padding:1.6rem;border:1px solid rgba(24,77,148,.13);border-radius:22px;background:linear-gradient(150deg,rgba(255,255,255,.98),rgba(242,247,255,.94));box-shadow:0 18px 46px rgba(5,31,69,.08);overflow:hidden;}
.process-step-card::after{content:"";position:absolute;right:-55px;bottom:-55px;width:140px;height:140px;border-radius:50%;background:radial-gradient(circle,rgba(34,122,255,.18),transparent 68%);}
.process-number{display:inline-grid;place-items:center;width:48px;height:48px;margin-bottom:1.15rem;border-radius:15px;background:linear-gradient(145deg,#096ef4,#42b9ff);color:#fff;font-family:var(--font-display);font-weight:800;box-shadow:0 10px 28px rgba(9,110,244,.24);}
.process-step-card h3{margin:0 0 .65rem;color:var(--color-navy);font-size:1.05rem;}.process-step-card p{margin:0;color:var(--color-text-muted);line-height:1.7;}
.feature-list-two-col{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem 1rem;}.feature-list-two-col li{margin:0;}
.tech-stack-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;margin:1.4rem 0 2rem;}
.tech-pill{display:flex;align-items:center;justify-content:center;min-height:62px;padding:.9rem 1rem;border:1px solid rgba(43,121,220,.18);border-radius:16px;background:linear-gradient(145deg,#fff,#f1f6ff);color:var(--color-navy);font-weight:750;text-align:center;box-shadow:0 12px 32px rgba(8,38,81,.07);transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;}
.tech-pill:hover{transform:translateY(-5px);border-color:rgba(34,126,255,.46);box-shadow:0 18px 40px rgba(8,77,166,.13);}
.compact-mv{margin-top:2rem;}.center-action{display:flex;justify-content:center;margin-top:2.25rem;}.cta-action-pair{display:flex;gap:.9rem;flex-wrap:wrap;justify-content:flex-end;}
.map-placeholder{min-height:360px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:2rem;border:1px dashed rgba(25,112,222,.35);border-radius:24px;background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(235,244,255,.95));box-shadow:0 24px 60px rgba(7,39,86,.08);}
.map-placeholder>i{font-size:3rem;color:var(--color-primary);margin-bottom:1rem;}.map-placeholder h3{margin:.25rem 0;color:var(--color-navy);}.map-placeholder p{max-width:650px;color:var(--color-text-muted);}.map-placeholder.has-map{padding:0;overflow:hidden;border-style:solid;}.map-placeholder iframe{width:100%;height:420px;border:0;}
.btn-whatsapp{margin-top:1.25rem;background:#16a85a;color:#fff!important;border-color:#16a85a;}.btn-whatsapp:hover{background:#128c4d;border-color:#128c4d;}
.whatsapp-float{position:fixed;right:22px;bottom:88px;z-index:990;display:flex;align-items:center;gap:.6rem;padding:.82rem 1rem;border-radius:999px;background:#16a85a;color:#fff!important;font-weight:750;box-shadow:0 16px 40px rgba(7,87,45,.3);transition:transform .25s ease,box-shadow .25s ease;}.whatsapp-float i{font-size:1.25rem;}.whatsapp-float:hover{transform:translateY(-4px);box-shadow:0 20px 48px rgba(7,87,45,.4);}
.social-links{display:flex;gap:.6rem;margin-top:1.1rem}.social-links a{display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(255,255,255,.15);border-radius:50%;color:#fff;transition:transform .2s ease,background .2s ease}.social-links a:hover{transform:translateY(-3px);background:rgba(58,151,255,.18)}
.config-pending{opacity:.72}.social-links a.config-pending{opacity:.42}.whatsapp-float.config-pending{background:#2476d2;}
@media(max-width:1120px){.industry-grid-12,.why-grid-8,.process-grid-8{grid-template-columns:repeat(2,minmax(0,1fr));}.tech-stack-grid{grid-template-columns:repeat(4,minmax(0,1fr));}}
@media(max-width:720px){.industry-grid-12,.why-grid-8,.process-grid-8,.tech-stack-grid,.feature-list-two-col{grid-template-columns:1fr;}.process-step-card{min-height:0}.whatsapp-float{right:14px;bottom:78px;padding:.82rem}.whatsapp-float span{display:none}.cta-action-pair{justify-content:flex-start}.map-placeholder{min-height:290px}}
.form-heading{margin-bottom:1.5rem}.form-heading h2{margin:.2rem 0 .45rem;color:var(--color-navy);font-size:clamp(1.45rem,2.3vw,2rem)}.form-heading p:last-child{margin:0;color:var(--color-text-muted);line-height:1.65}

/* ---------------------------------------------------------------------
   FLOATING WHATSAPP & CALL BUTTONS (draggable, mobile-optimised)
--------------------------------------------------------------------- */
.floating-btn {
  position: fixed;
  z-index: 9999;
  right: 24px;
  bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 60px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
  border: none;
  outline: none;
}
.floating-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.45);
}
.floating-btn i {
  font-size: 1.4rem;
}
.floating-btn svg {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-btn span {
  display: inline-block;
}
.floating-btn:active {
  cursor: grabbing;
}
.floating-btn-call {
  background: #0a7bff;
  box-shadow: 0 12px 35px rgba(10, 123, 255, 0.35);
  bottom: 180px; /* stacked above WhatsApp */
}
.floating-btn-call:hover {
  box-shadow: 0 18px 45px rgba(10, 123, 255, 0.45);
}
@media (max-width: 480px) {
  .floating-btn {
    padding: 12px 16px;
    font-size: 0.85rem;
    gap: 8px;
    right: 14px;
  }
  .floating-btn i {
    font-size: 1.2rem;
  }
  .floating-btn span {
    display: none; /* hide text on tiny screens, keep icon only */
  }
  .floating-btn-call {
    bottom: 150px;
  }
}

/* TITAN LOGO, INDIA ADDRESS & FLOATING WHATSAPP — FINAL FIX */
:root { --header-height: 104px; }
.site-header,
.site-header.is-scrolled { height: var(--header-height); }
.site-header.is-scrolled { --header-height: 88px; }

.site-header .brand,
.footer-brand {
  min-width: 0;
  width: auto;
  flex: 0 0 auto;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  overflow: hidden;
}
.site-header .brand picture,
.footer-brand picture { display: block; line-height: 0; }
.site-header .brand-logo {
  width: 130px;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: none;
  transition: width .25s ease;
}
.site-header.is-scrolled .brand-logo { width: 112px; }
.site-header.is-scrolled .brand { padding-block: 3px; }
.footer-brand {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 8px 12px;
}
.footer-brand .brand-logo {
  width: 185px;
  height: auto;
  max-height: none;
  filter: none;
}
.footer-contact-list [data-site-address-india] { line-height: 1.55; }

.floating-btn {
  right: 22px;
  left: auto;
  top: auto;
  bottom: 22px;
  min-width: 52px;
  min-height: 52px;
  z-index: 9999;
  cursor: pointer;
  touch-action: manipulation;
}
.floating-btn-whatsapp {
  display: flex;
  background: #25d366;
  box-shadow: 0 14px 38px rgba(37,211,102,.38);
}
.floating-btn-whatsapp:hover {
  background: #1fbd5a;
  box-shadow: 0 18px 46px rgba(37,211,102,.48);
}
.floating-btn-call {
  display: none;
  bottom: 88px;
  background: #0a7bff;
}

body.nav-open { overflow: hidden; }

@media (max-width: 1120px) {
  :root { --header-height: 82px; }
  .site-header,
  .site-header.is-scrolled { --header-height: 82px; height: var(--header-height); }
  .primary-menu { top: var(--header-height); height: calc(100dvh - var(--header-height)); }
  .site-header .brand { padding: 3px 8px; border-radius: 10px; }
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 96px; }
}
@media (max-width: 767px) {
  .floating-btn { right: 14px; bottom: max(18px, env(safe-area-inset-bottom)); padding: 13px; }
  .floating-btn span { display: none; }
  .floating-btn-call { display: none !important; }
  .footer-brand .brand-logo { width: 175px; }
  .footer-bottom { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
}
@media (max-width: 420px) {
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 90px; }
}

/* ========================================================================== 
   FINAL LOGO CORRECTION — exact supplied Titan logo, balanced header/footer
   ========================================================================== */
:root { --header-height: 112px; }
.site-header,
.site-header.is-scrolled { height: var(--header-height); }
.site-header.is-scrolled { --header-height: 92px; }

.site-header .brand,
.footer-brand {
  background: #fff;
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
  overflow: hidden;
}

.site-header .brand {
  padding: 4px 8px;
  border-radius: 14px;
}

.site-header .brand picture,
.footer-brand picture {
  display: block;
  line-height: 0;
}

.site-header .brand-logo {
  display: block;
  width: 145px;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.site-header.is-scrolled .brand-logo { width: 115px; }
.site-header.is-scrolled .brand { padding: 3px 7px; }

.footer-brand {
  padding: 8px 12px;
  border-radius: 16px;
}

.footer-brand .brand-logo {
  display: block;
  width: 210px;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: none;
}

@media (max-width: 1120px) {
  :root { --header-height: 82px; }
  .site-header,
  .site-header.is-scrolled {
    --header-height: 82px;
    height: var(--header-height);
  }
  .primary-menu {
    top: var(--header-height);
    height: calc(100dvh - var(--header-height));
  }
  .site-header .brand,
  .site-header.is-scrolled .brand {
    padding: 3px 7px;
    border-radius: 11px;
  }
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 100px; }
}

@media (max-width: 767px) {
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 96px; }
  .footer-brand .brand-logo { width: 190px; }
}

@media (max-width: 420px) {
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 90px; }
  .footer-brand .brand-logo { width: 175px; }
}

/* ========================================================================== 
   CLEAR LOGO VISIBILITY — enlarged, high-contrast header and footer badge
   ========================================================================== */
:root { --header-height: 132px; }
.site-header,
.site-header.is-scrolled { height: var(--header-height); }
.site-header.is-scrolled { --header-height: 100px; }

.site-header .brand,
.footer-brand {
  background: #ffffff;
  border: 2px solid rgba(255,255,255,.96);
  box-shadow: 0 14px 38px rgba(0,0,0,.32), 0 0 0 1px rgba(11,78,160,.08) inset;
  overflow: hidden;
}

.site-header .brand {
  padding: 6px 10px;
  border-radius: 16px;
}

.site-header .brand-logo {
  display: block;
  width: 174px;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.site-header.is-scrolled .brand-logo { width: 132px; }
.site-header.is-scrolled .brand { padding: 4px 8px; border-radius: 13px; }

.footer-brand {
  padding: 10px 14px;
  border-radius: 18px;
}
.footer-brand .brand-logo {
  display: block;
  width: 250px;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: none;
}

@media (max-width: 1120px) {
  :root { --header-height: 98px; }
  .site-header,
  .site-header.is-scrolled {
    --header-height: 98px;
    height: var(--header-height);
  }
  .primary-menu {
    top: var(--header-height);
    height: calc(100dvh - var(--header-height));
  }
  .site-header .brand,
  .site-header.is-scrolled .brand {
    padding: 4px 7px;
    border-radius: 12px;
  }
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 126px; }
}

@media (max-width: 767px) {
  :root { --header-height: 96px; }
  .site-header,
  .site-header.is-scrolled {
    --header-height: 96px;
    height: var(--header-height);
  }
  .primary-menu {
    top: var(--header-height);
    height: calc(100dvh - var(--header-height));
  }
  .site-header .brand,
  .site-header.is-scrolled .brand { padding: 3px 6px; }
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 124px; }
  .footer-brand .brand-logo { width: 220px; }
}

@media (max-width: 420px) {
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 116px; }
  .footer-brand .brand-logo { width: 205px; }
}


/* ==========================================================================
   WHITE WEBSITE BACKGROUND — final requested appearance
   Keeps dark hero/header/footer feature areas intact while all page surfaces
   and standard content sections use a clean white background.
   ========================================================================== */
:root { --color-bg: #ffffff; }
html, body { background-color: #ffffff; }
body { background: #ffffff; }
.intro-section,
.services-intro-section,
.overview-section,
.premium-section,
.services-section,
.why-section,
.blog-section,
.portfolio-section,
.muted-section,
.about-preview,
.process-section,
.faq-section,
.mission-vision-section,
.values-section,
.leadership-section,
.timeline-section,
.stats-section,
.industries-section,
.service-detail-section,
.service-detail-alt,
.services-intro-section {
  background: #ffffff;
}

/* ========================================================================== 
   ALL-WHITE WEBSITE THEME — final full-site white conversion
   Every structural surface is white; blue is retained only as an accent.
   ========================================================================== */
:root {
  --color-bg: #ffffff;
  --color-white: #ffffff;
  --gradient-dark: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

html,
body,
main,
section,
.site-header,
.site-header.is-scrolled,
.site-footer,
.primary-menu,
.dropdown-menu,
.hero,
.page-hero,
.testimonials-section,
.contact-cta,
.cta-band,
.dark-showcase,
.insight-feature,
.faq-aside,
.article-callout,
.culture-panel,
.capability-ticker,
.mv-card-dark,
.service-card-featured,
.testimonial-card,
.hero-card-main,
.hero-card-float,
.hero-monogram,
.insight-visual,
.stack-list > div,
.portfolio-thumb,
.portfolio-thumb.thumb-alt-1,
.portfolio-thumb.thumb-alt-2 {
  background: #ffffff !important;
  background-image: none !important;
}

/* Remove dark ambient overlays while preserving subtle blue detail. */
.hero::before,
.hero::after,
.page-hero::before,
.page-hero::after,
.capability-ticker::before,
.capability-ticker::after {
  background: none !important;
  background-image: none !important;
}
.ambient-canvas,
body::before { display: none !important; }

/* White header and navigation */
.site-header,
.site-header.is-scrolled {
  border-bottom: 1px solid rgba(12, 30, 62, 0.12) !important;
  box-shadow: 0 10px 34px rgba(9, 24, 52, 0.08) !important;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.nav-link,
.nav-link:visited,
.dropdown-menu li a,
.primary-menu .nav-link {
  color: #1f2f49 !important;
}
.nav-link:hover,
.nav-link.is-active,
.dropdown-menu li a:hover {
  color: var(--color-primary) !important;
}
.dropdown-menu {
  border: 1px solid rgba(12, 30, 62, 0.12) !important;
  box-shadow: 0 22px 55px rgba(9, 24, 52, 0.12) !important;
}
.dropdown-menu li a:hover { background: rgba(85, 119, 255, 0.08) !important; }
.nav-toggle-bar { background: #152440 !important; }

/* Hero and page-hero typography on white */
.hero-title,
.page-hero-title,
.hero-card-title,
.hero-card-float-num,
.hero-monogram,
.hero-monogram span,
.cta-band-title,
.contact-cta-copy .cta-band-title,
.testimonials-section .section-title,
.dark-showcase .section-title,
.dark-showcase h3,
.insight-feature h2,
.faq-aside h2,
.article-callout h3,
.mv-card-dark .mv-title,
.service-card-featured .service-card-title,
.service-card-featured h3,
.testimonial-name,
.culture-panel strong,
.footer-heading {
  color: #10213d !important;
}
.gradient-text,
.hero-monogram span {
  background: linear-gradient(100deg, #10213d 0%, #3454d1 48%, #168eb8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.hero-subtitle,
.page-hero-subtitle,
.hero-trust-label,
.hero-trust-items span,
.breadcrumb,
.breadcrumb a,
.hero-card-sub,
.hero-card-float-label,
.hero-monogram small,
.cta-band-text,
.contact-cta-copy .cta-band-text,
.dark-showcase .section-text,
.stack-list p,
.insight-feature p,
.insight-meta,
.faq-aside p,
.article-callout p,
.mv-card-dark .mv-text,
.service-card-featured .service-card-text,
.service-card-featured .service-card-list li,
.testimonial-text,
.testimonial-role,
.culture-panel span {
  color: #65728a !important;
}
.hero .eyebrow,
.page-hero .eyebrow,
.section-eyebrow-light,
.breadcrumb span,
.stack-list span { color: var(--color-primary) !important; }
.breadcrumb a:hover { color: var(--color-primary) !important; }

/* White cards with clear borders */
.hero-card-main,
.hero-card-float,
.hero-monogram,
.testimonial-card,
.mv-card-dark,
.service-card-featured,
.insight-feature,
.insight-visual,
.stack-list > div,
.faq-aside,
.article-callout,
.culture-panel,
.portfolio-thumb {
  border: 1px solid rgba(12, 30, 62, 0.12) !important;
  box-shadow: 0 18px 48px rgba(9, 24, 52, 0.08) !important;
}
.hero-card-row:hover { background: rgba(85, 119, 255, 0.06) !important; }
.hero-trust { border-top-color: rgba(12, 30, 62, 0.11) !important; }
.hero-scroll-cue { border-color: rgba(52, 84, 209, 0.38) !important; }
.mv-card-dark .mv-icon { background: rgba(85, 119, 255, 0.10) !important; color: var(--color-primary) !important; }
.service-card-featured .service-card-link { color: var(--color-primary) !important; }
.testimonial-role { opacity: 1 !important; }
.testimonial-dot { background: rgba(52, 84, 209, 0.22) !important; }
.testimonial-dot.is-active { background: var(--color-primary) !important; }

/* White capability ribbon */
.capability-ticker {
  color: #1f2f49 !important;
  border-top: 1px solid rgba(52, 84, 209, 0.15) !important;
  border-bottom: 1px solid rgba(52, 84, 209, 0.15) !important;
  box-shadow: 0 10px 28px rgba(9, 24, 52, 0.06) !important;
}
.ticker-track i { background: var(--color-primary) !important; box-shadow: none !important; }

/* White CTA, footer and contact areas */
.cta-band,
.contact-cta {
  border-top: 1px solid rgba(12, 30, 62, 0.10) !important;
  border-bottom: 1px solid rgba(12, 30, 62, 0.10) !important;
}
.contact-cta-phone { color: #10213d !important; }
.site-footer {
  color: #65728a !important;
  border-top: 1px solid rgba(12, 30, 62, 0.12) !important;
}
.footer-top { border-bottom-color: rgba(12, 30, 62, 0.10) !important; }
.footer-bottom { border-top-color: rgba(12, 30, 62, 0.10) !important; }
.footer-list a,
.footer-about,
.footer-contact-list li,
.footer-bottom,
.footer-legal a { color: #65728a !important; }
.footer-list a:hover,
.footer-legal a:hover { color: var(--color-primary) !important; }
.footer-social a,
.social-links a {
  background: #ffffff !important;
  border: 1px solid rgba(12, 30, 62, 0.14) !important;
  color: var(--color-primary) !important;
}
.footer-social a:hover,
.social-links a:hover { background: rgba(85, 119, 255, 0.08) !important; }

/* Keep action buttons visible against white. */
.btn-ghost {
  color: var(--color-primary) !important;
  border: 1px solid rgba(52, 84, 209, 0.30) !important;
  background: #ffffff !important;
}
.btn-ghost:hover,
.btn-outline:hover {
  color: #ffffff !important;
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}
.btn-light {
  color: var(--color-primary-dark) !important;
  background: #ffffff !important;
  border: 1px solid rgba(52, 84, 209, 0.26) !important;
  box-shadow: 0 12px 30px rgba(9, 24, 52, 0.08) !important;
}
.btn-light:hover { background: rgba(85, 119, 255, 0.08) !important; }

/* Portfolio previews remain white and readable. */
.portfolio-thumb { color: var(--color-primary) !important; }
.portfolio-overlay {
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(12, 30, 62, 0.10) !important;
}
.portfolio-overlay h3,
.portfolio-overlay p,
.portfolio-overlay span { color: #10213d !important; }

/* Mobile navigation must also remain fully white. */
@media (max-width: 1120px) {
  .primary-menu,
  .primary-menu.is-open {
    background: #ffffff !important;
    border-left: 1px solid rgba(12, 30, 62, 0.12) !important;
    box-shadow: -20px 0 55px rgba(9, 24, 52, 0.12) !important;
  }
  .dropdown-menu {
    background: #ffffff !important;
    border-color: rgba(12, 30, 62, 0.10) !important;
  }
  .dropdown-menu li a { color: #33415c !important; }
}

/* ========================================================================== 
   INTEGRATED BRAND LOCKUP — seamless logo treatment (no pasted-on badge)
   ========================================================================== */
:root { --header-height: 100px; }

.site-header,
.site-header.is-scrolled {
  height: var(--header-height) !important;
}
.site-header.is-scrolled { --header-height: 84px; }

.site-header .brand {
  min-width: 0 !important;
  width: auto !important;
  margin: 0 18px 0 0 !important;
  padding: 0 24px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  position: relative;
  flex: 0 0 auto;
}
.site-header .brand::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(16,33,61,.18), transparent);
}
.site-header .brand-logo,
.site-header.is-scrolled .brand-logo {
  display: block !important;
  width: 142px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
  transform: none !important;
  transition: width .22s ease, opacity .22s ease !important;
}
.site-header.is-scrolled .brand-logo { width: 120px !important; }
.site-header .brand:hover .brand-logo { opacity: .9; }

.footer-brand {
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 0 1rem !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.footer-brand .brand-logo {
  display: block !important;
  width: 220px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  filter: none !important;
}
.footer-brand:hover .brand-logo { opacity: .9; }

@media (max-width: 1120px) {
  :root { --header-height: 84px; }
  .site-header,
  .site-header.is-scrolled {
    --header-height: 84px;
    height: var(--header-height) !important;
  }
  .primary-menu {
    top: var(--header-height) !important;
    height: calc(100dvh - var(--header-height)) !important;
  }
  .site-header .brand,
  .site-header.is-scrolled .brand {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }
  .site-header .brand::after { display: none; }
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 112px !important; }
}

@media (max-width: 767px) {
  :root { --header-height: 82px; }
  .site-header,
  .site-header.is-scrolled {
    --header-height: 82px;
    height: var(--header-height) !important;
  }
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 108px !important; }
  .footer-brand .brand-logo { width: 190px !important; }
}

@media (max-width: 420px) {
  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo { width: 100px !important; }
  .footer-brand .brand-logo { width: 176px !important; }
}
