/* ============================================================
   DHARMA CONSULTING — GLOBAL STYLESHEET
   Design System: Dark Mode | Cyan Accent | Premium Medical Device
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --bg-primary:       #060B14;
  --bg-secondary:     #0A1628;
  --card-surface:     #0D1F35;
  --glass-surface:    rgba(13,31,53,0.6);
  --accent-primary:   #00C2FF;
  --accent-secondary: #0066FF;
  --accent-glow:      #00E5FF;
  --text-primary:     #F0F6FF;
  --text-secondary:   #8BAAC8;
  --text-muted:       #4A6585;
  --border-default:   rgba(0,194,255,0.12);
  --border-hover:     rgba(0,194,255,0.35);
  --hero-gradient:    linear-gradient(135deg, #00C2FF 0%, #0066FF 50%, #6B00FF 100%);
  --card-gradient:    linear-gradient(145deg, rgba(0,194,255,0.08), rgba(0,102,255,0.04));
  --success:          #00D68F;
  --warning:          #FFB800;
  --error:            #FF4D6A;
  --shadow-card:      0 4px 24px rgba(0,0,0,0.4), 0 1px 4px rgba(0,194,255,0.06);
  --shadow-glow:      0 0 40px rgba(0,194,255,0.2), 0 0 80px rgba(0,102,255,0.1);
  --shadow-hover:     0 8px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,194,255,0.15);
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --radius-xl:        32px;
  --radius-full:      9999px;
  --space-xs:         0.25rem;
  --space-sm:         0.5rem;
  --space-md:         1rem;
  --space-lg:         1.5rem;
  --space-xl:         2rem;
  --space-2xl:        3rem;
  --space-3xl:        5rem;
  --space-4xl:        8rem;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY (Task 3 — Responsive Type Scale) ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  color: var(--text-primary);
}

.hero-h1 {
  font-size: clamp(2.2rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
}

h1, .h1 { font-size: clamp(1.9rem, 6vw, 4rem); font-weight: 700; line-height: 1.1; }
h2, .h2 { font-size: clamp(1.5rem, 4.5vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3, .h3 { font-size: clamp(1.15rem, 3vw, 1.6rem); font-weight: 600; line-height: 1.3; }

.body-lg { font-size: clamp(1rem, 2.5vw, 1.125rem); line-height: 1.75; }
.body    { font-size: clamp(0.9rem, 2vw, 1rem); line-height: 1.65; }
.small   { font-size: clamp(0.8rem, 1.8vw, 0.875rem); }
.xsmall  { font-size: clamp(0.68rem, 1.5vw, 0.75rem); font-family: 'JetBrains Mono', monospace; }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── EYEBROW TAG (Task 5 — Typography Hierarchy) ── */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.68rem, 1.5vw, 0.72rem);
  font-weight: 500;
  color: var(--accent-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,194,255,0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  background: rgba(0,194,255,0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.68rem, 1.5vw, 0.72rem);
  font-weight: 500;
  color: var(--accent-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

/* ── BUTTONS (Task 1 — Button Animations) ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00C2FF, #0066FF);
  color: #060B14;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 0 24px rgba(0,194,255,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  will-change: transform, opacity;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(0,194,255,0.5);
}

.btn-primary.sm {
  padding: 10px 22px;
  font-size: 0.9rem;
  min-height: 44px;
}

.btn-primary.white {
  background: #fff;
  color: #060B14;
  box-shadow: 0 0 24px rgba(255,255,255,0.2);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(0,194,255,0.4);
  color: var(--accent-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 13px 31px;
  border-radius: var(--radius-full);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.btn-ghost:hover {
  border-color: rgba(0,194,255,1);
  background: rgba(0,194,255,0.07);
}

.btn-ghost.sm {
  padding: 9px 21px;
  font-size: 0.875rem;
  min-height: 44px;
}

/* ── GLASS CARD (Task 5 — Card Improvements + Task 1 Hover Effects) ── */
.glass-card {
  background: rgba(13,31,53,0.6);
  border: 1px solid rgba(0,194,255,0.12);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(0,194,255,0.35);
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,194,255,0.15);
}

/* ── INPUT FIELDS ── */
.input-field {
  width: 100%;
  background: rgba(6,11,20,0.8);
  border: 1px solid rgba(0,194,255,0.18);
  border-radius: 10px;
  color: var(--text-primary);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.input-field:focus {
  border-color: rgba(0,194,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,194,255,0.12);
}

.input-field::placeholder { color: var(--text-muted); }

/* ── SECTION LAYOUT (Task 5 — Section Spacing) ── */
.section {
  padding: var(--space-3xl) var(--space-lg);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .eyebrow {
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1.25rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #F0F6FF;
}

.section-header p {
  color: #8BAAC8;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.75;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

/* ── VISUAL DIVIDERS (Task 5) ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,194,255,0.15), transparent);
  border: none;
  margin: 0;
}

/* ── GRID SYSTEMS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── DIVIDER ── */
.divider { width: 60px; height: 3px; background: var(--hero-gradient); border-radius: 2px; margin: 1.5rem auto; }

/* ── BADGE / TAG ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(13,31,53,0.8);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.68rem, 1.5vw, 0.72rem);
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.badge.cyan {
  background: rgba(0,194,255,0.08);
  border-color: rgba(0,194,255,0.25);
  color: var(--accent-primary);
}

/* ── ANIMATIONS ── */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes charReveal {
  from { opacity: 0; transform: translateY(20px) skewY(3deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.08); }
}

@keyframes particleDrift {
  0%   { transform: translateY(0px) translateX(0px); opacity: 0.3; }
  33%  { transform: translateY(-20px) translateX(10px); opacity: 0.6; }
  66%  { transform: translateY(-10px) translateX(-8px); opacity: 0.4; }
  100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
}

@keyframes countUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Task 1 — CTA Gradient Animation */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideRight {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes slideInDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Task 1 — Hero Orb Float Animation */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -15px) scale(1.05); }
  66%       { transform: translate(-15px, 10px) scale(0.97); }
}

/* Task 1 — Page Loader Pulse */
@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* Task 1 — Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── PAGE LOADER (Task 1) ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: #060B14;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: opacity 0.5s ease;
}

#page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

#page-loader .loader-logo {
  height: 60px;
  width: auto;
  animation: loaderPulse 1.2s ease-in-out infinite;
  will-change: opacity;
}

#page-loader .loader-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  text-transform: uppercase;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

/* ── SCROLL REVEAL (Task 1) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}

[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.93); opacity: 0; }

[data-reveal].visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-lg);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

/* Task 1 — Navbar Scroll Behavior */
.nav.scrolled {
  background: rgba(6,11,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(0,194,255,0.1);
}

/* Task 4 — Logo Image in Navbar */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 2rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.nav-logo .logo-accent { color: var(--accent-primary); }
.nav-logo .logo-main   { color: var(--text-primary); }

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

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.2s ease;
  padding: 12px 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 32px);
}

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

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6,11,20,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* Task 4 — Mobile Menu Logo */
.mobile-menu-logo {
  height: 32px;
  width: auto;
  margin-bottom: 2.5rem;
}

.mobile-menu .mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu .mobile-link {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  padding: 12px 0;
  min-height: 52px;
}

.mobile-menu .mobile-link:hover { color: var(--accent-primary); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 30px; }
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(0,194,255,0.08);
  padding: 4rem var(--space-lg) 0;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { text-align: center; }
}

/* Task 4 — Footer Logo */
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

@media (max-width: 640px) {
  .footer-logo-img { margin: 0 auto 1rem; }
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
  color: var(--accent-primary);
  border-color: rgba(0,194,255,0.4);
  background: rgba(0,194,255,0.06);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover { color: var(--accent-primary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-secondary); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent-primary); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(0,194,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--text-secondary); }

@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { flex-wrap: wrap; justify-content: center; }
  .footer-socials { justify-content: center; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 68px;
  right: 0;
  background: rgba(6,11,20,0.95);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-family: 'DM Sans', sans-serif;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-default);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO COMMON ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px var(--space-lg) var(--space-4xl);
}

.hero-subhead {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.75;
  max-width: 680px;
  margin: var(--space-lg) auto 0;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.trust-item svg { color: var(--accent-primary); flex-shrink: 0; }

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.scroll-indicator svg {
  color: var(--text-muted);
  animation: bounce 2s infinite;
  will-change: transform;
}

.scroll-indicator span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
}

/* ── METRICS STRIP ── */
.metrics-strip {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0,194,255,0.08);
  border-bottom: 1px solid rgba(0,194,255,0.08);
  padding: 3rem var(--space-lg);
}

.metrics-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

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

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

.metric-item {
  text-align: center;
  padding: var(--space-lg);
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(0,194,255,0.12);
}

@media (max-width: 768px) {
  .metric-item:nth-child(2)::after { display: none; }
  .metric-item:nth-child(3)::after,
  .metric-item:nth-child(4)::after { display: none; }
}

.metric-bar {
  width: 3px;
  height: 32px;
  background: linear-gradient(180deg, #00C2FF, #0066FF);
  border-radius: 2px;
  margin: 0 auto var(--space-md);
}

.metric-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--accent-primary);
  line-height: 1;
  display: block;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.4;
}

/* ── SERVICE CARD (Task 5 — Card Improvements) ── */
.service-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: clamp(1.15rem, 3vw, 1.6rem);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  color: var(--accent-primary);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.service-card-link:hover { gap: 10px; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 3.5rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-lg);
  position: relative;
}

.process-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid transparent;
  background-clip: padding-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 2;
}

.process-step-number::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--hero-gradient);
  z-index: -1;
}

.process-connector {
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: rgba(0,194,255,0.2);
  background: repeating-linear-gradient(90deg, rgba(0,194,255,0.3) 0, rgba(0,194,255,0.3) 8px, transparent 8px, transparent 16px);
}

@media (max-width: 768px) {
  .process-steps { flex-direction: column; gap: 2rem; }
  .process-step  { padding: 0; text-align: left; display: flex; gap: var(--space-lg); }
  .process-step-number { margin: 0; flex-shrink: 0; }
  .process-connector   { display: none; }
  .process-step-text   { text-align: left; }
}

/* ── WHY DHARMA 2-col ── */
.why-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

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

.why-differentiators { display: flex; flex-direction: column; gap: var(--space-xl); margin-top: var(--space-xl); }

.why-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.why-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.why-item-text h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-item-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Geometric art for "Why" right side */
.geo-art {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,102,255,0.12) 0%, transparent 70%);
  border: 1px solid var(--border-default);
}

.geo-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0,194,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.geo-art-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,194,255,0.15);
  animation: ambientPulse 6s ease-in-out infinite;
  will-change: transform, opacity;
}

/* ── JOB CARDS ── */
.job-card {
  border-left: 3px solid var(--accent-primary);
  padding: 2rem 1.75rem;
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.job-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-lg);
}

.job-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: var(--space-md) 0;
}

.job-check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.job-check-item svg { 
  color: var(--accent-primary); 
  flex-shrink: 0;
  margin-top: 2px;
}

.job-check-item.nice {
  color: var(--text-muted);
}

.job-check-item.nice svg { color: var(--text-muted); }

/* ── TESTIMONIAL CARDS ── */
.testimonial-card {
  padding: 2rem 1.75rem;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 5rem;
  color: var(--accent-primary);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.testimonial-star { color: #FFB800; font-size: 1rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #060B14;
  flex-shrink: 0;
}

.testimonial-name { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 600; }
.testimonial-title { font-size: 0.8rem; color: var(--text-muted); }

/* ── BLOG CARDS ── */
.blog-card { overflow: hidden; }

.blog-card-body { padding: 2rem 1.75rem; }

.blog-category {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.68rem, 1.5vw, 0.68rem);
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-read-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── CTA BANNER (Task 1 — Gradient Animation) ── */
.cta-banner {
  background: var(--hero-gradient);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  text-align: center;
  padding: 5rem 2rem;
  will-change: background-position;
}

.cta-banner h2 { color: #F0F6FF; margin-bottom: var(--space-md); }

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.cta-banner-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: var(--space-md);
}

/* CTA Primary Button Glow (Task 5) */
.cta-banner .btn-primary,
.btn-primary.glow {
  box-shadow: 0 0 24px rgba(0,194,255,0.3);
}
.cta-banner .btn-primary:hover,
.btn-primary.glow:hover {
  box-shadow: 0 0 40px rgba(0,194,255,0.5);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px var(--space-lg) 5rem;
  text-align: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.page-hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,102,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 { margin-bottom: var(--space-md); }
.page-hero p  { color: var(--text-secondary); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }

/* ── FORM STYLES ── */
.form-label {
  display: block;
  font-size: clamp(0.8rem, 1.8vw, 0.875rem);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  min-font-size: 13px;
}

.form-label .required { color: var(--accent-primary); margin-left: 3px; }

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

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 6px;
  display: none;
}

.form-error.show { display: block; }

.input-field.error { border-color: var(--error); }

/* File upload */
.file-upload-zone {
  border: 2px dashed rgba(0,194,255,0.3);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
}

.file-upload-zone:hover,
.file-upload-zone.drag-over {
  border-color: rgba(0,194,255,0.6);
  background: rgba(0,194,255,0.04);
}

.file-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon { color: var(--accent-primary); margin-bottom: var(--space-sm); }
.file-upload-text { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 4px; }
.file-upload-hint { font-size: 0.78rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.file-upload-filename { font-size: 0.85rem; color: var(--accent-primary); margin-top: 8px; display: none; }

/* Char counter */
.char-counter {
  font-size: 0.78rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  text-align: right;
  margin-top: 6px;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0,194,255,0.3);
  border-radius: 4px;
  background: rgba(6,11,20,0.8);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #060B14;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Select */
select.input-field {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238BAAC8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(6,11,20,0.8);
  padding-right: 48px;
  cursor: pointer;
}

select.input-field option { background: #0A1628; }

/* Success card */
.success-card {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0,214,143,0.1);
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  color: var(--success);
  animation: scaleIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

/* ── CONTACT PAGE ── */
.contact-2col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-2col { grid-template-columns: 1fr; }
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  transition: border-color 0.2s ease;
  margin-bottom: var(--space-md);
}

.contact-info-item:hover { border-color: var(--border-hover); }
.contact-info-icon { color: var(--accent-primary); flex-shrink: 0; }
.contact-info-label { font-size: 0.78rem; font-family: 'JetBrains Mono', monospace; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--text-primary); }
.contact-info-value a { color: var(--text-primary); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--accent-primary); }

/* ── FAQ (Task 1 — Accordion Animation) ── */
.faq-item {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: color 0.2s ease;
  min-height: 52px;
}

.faq-question:hover { color: var(--accent-primary); }
.faq-icon {
  flex-shrink: 0;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
  will-change: transform;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* Task 1 — Accordion smooth animation using JS maxHeight */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── INDUSTRIES ── */
.industry-card {
  padding: 2rem 1.75rem;
  text-align: center;
}

/* ── HOW TO APPLY STEPS ── */
.apply-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: 2rem;
}

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

.apply-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,194,255,0.1);
  border: 2px solid rgba(0,194,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
}

/* ── CASE STUDIES ── */
.case-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0,214,143,0.1);
  border: 1px solid rgba(0,214,143,0.3);
  border-radius: var(--radius-full);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.68rem, 1.5vw, 0.68rem);
  color: var(--success);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

/* ── INDUSTRIES HERO LIST ── */
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: var(--space-lg);
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--text-secondary);
  background: rgba(13,31,53,0.4);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.industry-pill:hover {
  border-color: var(--border-hover);
  color: var(--accent-primary);
  background: rgba(0,194,255,0.06);
}

/* ── CONFIDENTIALITY BANNER ── */
.conf-banner {
  background: rgba(10,22,40,0.8);
  border: 1px solid rgba(0,194,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  backdrop-filter: blur(20px);
}

.conf-banner-icon {
  color: var(--accent-primary);
  margin: 0 auto var(--space-md);
}

.conf-banner h3 { font-size: 1.4rem; margin-bottom: var(--space-md); }
.conf-banner p  { color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ── CANVAS PARTICLE ── */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── NOISE TEXTURE OVERLAY ── */
.noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── OPEN BADGE ── */
.openings-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,214,143,0.1);
  border: 1px solid rgba(0,214,143,0.3);
  color: var(--success);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-left: 10px;
  vertical-align: middle;
}

.openings-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: ambientPulse 2s ease-in-out infinite;
  will-change: transform, opacity;
}

/* ── CANVAS HERO GRADIENT ORBS (Task 1 — Animated Orbs) ── */
.hero-orb-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse 80% 80% at 15% 20%, rgba(0,102,255,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
  will-change: transform;
}

.hero-orb-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 65%;
  height: 70%;
  background: radial-gradient(ellipse 70% 70% at 85% 80%, rgba(107,0,255,0.14) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 16s ease-in-out infinite;
  animation-delay: 4s;
  will-change: transform;
}

/* ── COLLAPSIBLE SECTION ── */
.section-collapsible-title {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-default);
}

/* ── BLOG HEADER IMAGE PLACEHOLDER ── */
.blog-card-image {
  height: 180px;
  background: var(--card-gradient);
  border-bottom: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,194,255,0.06) 0%, rgba(107,0,255,0.06) 100%);
}

.blog-card-image svg { color: rgba(0,194,255,0.2); position: relative; z-index: 1; }

/* ── MISC UTILITY ── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm  { gap: var(--space-sm); }
.gap-md  { gap: var(--space-md); }
.gap-lg  { gap: var(--space-lg); }
.gap-xl  { gap: var(--space-xl); }
.w-full  { width: 100%; }
.color-muted   { color: var(--text-muted); }
.color-secondary { color: var(--text-secondary); }
.color-accent  { color: var(--accent-primary); }
.bg-secondary  { background: var(--bg-secondary); }

/* ── MOBILE OVERRIDES (Task 3) ── */
@media (max-width: 767px) {
  .section { padding: 3rem 1.25rem; }
  .hero { padding: 0; }
  .hero-content { padding: 5rem 1.25rem 3rem; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-ghost { width: 100%; justify-content: center; }
  .glass-card { padding: 1.5rem 1.25rem !important; }
  .service-card { padding: 1.5rem 1.25rem; }
  .job-card { padding: 1.5rem 1.25rem; }
  .testimonial-card { padding: 1.5rem 1.25rem; }
  .cta-banner { padding: 3rem 1.25rem; }
  .cta-banner .btn-primary { width: 100%; justify-content: center; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; gap: 1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-2col { grid-template-columns: 1fr; }
  .btn-primary, .btn-ghost { min-height: 48px; }
  .page-hero { padding: 120px 1.25rem 3rem; }
}

@media (max-width: 480px) {
  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* ── TABLET OVERRIDES (Task 3) ── */
@media (min-width: 768px) and (max-width: 1023px) {
  .section { padding: 4rem 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
