/* ═══════════════════════════════════════════
   NAIRA TECH — Refined Warm Neutral Theme
   ═══════════════════════════════════════════ */

:root {
  --bg: #0F172A;
  --bg-alt: #1E293B;
  --bg-card: #253B52;
  --text: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-tertiary: #94A3B8;
  --accent: #06B6D4;
  --accent-light: rgba(6, 182, 212, 0.18);
  --bg-sage: #1E293B;
  --bg-sage-card: #2A3D52;
  --bg-slate: #182032;
  --bg-slate-card: #253B52;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(6, 182, 212, 0.35);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.6);
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-secondary);
  overflow-x: hidden;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

/* Performance — promote heavy sections to their own paint layer */
#hero,
.marquee-strip,
#stats,
#work {
  contain: layout paint;
}

.marquee-track {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
}

h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(22, 22, 22, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(22, 22, 22, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo span { color: #06B6D4; }

.nav-links { display: flex; gap: 40px; }

.nav-links a {
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: #06B6D4;
  transition: width 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: #ffffff; }

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

.nav-cta {
  background: #06B6D4;
  color: #0F172A !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: opacity 0.3s, transform 0.3s;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s var(--ease);
}

.mobile-menu.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-menu.active span:nth-child(2) { opacity: 0; }
.mobile-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06B6D4;
  color: #0F172A;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s, transform 0.3s;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-primary .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border-hover);
  transition: background 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--accent-light);
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
}

.section-header { margin-bottom: 64px; }

.section-header.center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--text-tertiary);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS — Scroll-triggered reveals
   ═══════════════════════════════════════════ */

/* Fade up */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Clip reveal — content wipes in from left */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease);
}

.reveal-clip.visible {
  clip-path: inset(0 0% 0 0);
}

/* Scale fade */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.1s !important; }
[data-delay="2"] { transition-delay: 0.2s !important; }
[data-delay="3"] { transition-delay: 0.3s !important; }
[data-delay="4"] { transition-delay: 0.4s !important; }
[data-delay="5"] { transition-delay: 0.5s !important; }

/* ─── HERO (HOME) ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 100px;
  position: relative;
}

.hero-content {
  max-width: 660px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFade 0.8s 0.3s var(--ease-out) forwards;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #06B6D4;
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

#hero h1 {
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFade 0.8s 0.45s var(--ease-out) forwards;
}

#hero h1 em {
  font-style: normal;
  position: relative;
}

#hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 2px;
  background: var(--text-tertiary);
  opacity: 0.3;
}

.hero-sub {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: heroFade 0.8s 0.6s var(--ease-out) forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroFade 0.8s 0.75s var(--ease-out) forwards;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ─── PAGE HERO (Inner pages) ─── */
.page-hero {
  padding-top: 60px;
  background: var(--bg-alt);
}

.page-hero .container {
  padding-top: 140px;
  padding-bottom: 80px;
}

.page-hero h1 {
  max-width: 650px;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFade 0.8s 0.2s var(--ease-out) forwards;
}

.page-hero-sub {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 520px;
  opacity: 0;
  animation: heroFade 0.8s 0.35s var(--ease-out) forwards;
}

.page-hero .section-label {
  opacity: 0;
  animation: heroFade 0.8s 0.1s var(--ease-out) forwards;
}

/* ─── SERVICES PREVIEW (Home) ─── */
#services-preview {
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  display: block;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

/* Animated gradient border on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--bg-card) 0%, #06B6D4 50%, var(--bg-card) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.5s;
}

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

.service-card:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.service-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  margin-bottom: 12px;
  transition: color 0.4s;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-tertiary);
}

.card-arrow {
  position: absolute;
  bottom: 40px; right: 38px;
  font-size: 1.2rem;
  color: var(--text);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── WHY US ─── */
#why { background: var(--bg-sage); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-text h2 { margin-bottom: 20px; }

.why-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--bg-sage-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.4s;
}

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

.why-icon {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h4 { margin-bottom: 8px; }

.why-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-tertiary);
}

/* ─── PROCESS ─── */
#process { background: var(--bg-alt); }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 64px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 260px;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 auto 20px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s, transform 0.5s var(--ease);
}

.step:hover .step-num {
  background: #06B6D4;
  color: #0F172A;
  border-color: #06B6D4;
  transform: translateY(-4px);
}

.step h4 { margin-bottom: 10px; }

.step p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-tertiary);
}

.step-line {
  width: 48px; height: 1px;
  background: var(--accent-light);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ─── CTA ─── */
#cta { background: var(--bg-slate); }

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 { margin-bottom: 16px; }

.cta-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── SERVICE DETAIL (Services page) ─── */
.service-detail { background: var(--bg); }
.service-detail.alt { background: var(--bg-slate); }

.service-detail .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.detail-content {
  max-width: 640px;
}

.service-detail:nth-child(even) .detail-content {
  margin-left: auto;
}

.detail-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.detail-text h2 { margin-bottom: 20px; }

.detail-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.detail-features {
  list-style: none;
  margin-bottom: 36px;
}

.detail-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.detail-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
}


/* ─── STORY (About page) ─── */
#story { background: var(--bg-slate); }

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-text h2 { margin-bottom: 24px; }

.story-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.story-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card {
  background: var(--bg-slate-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card h4 { margin-bottom: 8px; }

.value-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-tertiary);
}

/* ─── INDUSTRIES (About page) ─── */
#industries { background: var(--bg-sage); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.industry-card {
  background: var(--bg-sage-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.4s;
}

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

.industry-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.industry-card h4 { margin-bottom: 8px; }

.industry-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-tertiary);
}

/* ─── CONTACT ─── */
#contact { background: var(--bg); }


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.contact-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

a.contact-value { transition: color 0.3s; }
a.contact-value:hover { color: var(--text-secondary); }

/* ─── FORM ─── */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}

.contact-form h3 {
  margin-bottom: 32px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #06B6D4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
  opacity: 0.6;
}

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

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

.form-submit {
  width: 100%;
  background: #06B6D4;
  color: #0F172A;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  transition: opacity 0.3s, transform 0.3s;
}

.form-submit:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.form-submit .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.form-submit:hover .arrow { transform: translateX(4px); }

.form-submit.success {
  background: #5CA160;
  opacity: 1;
}

/* ─── FOOTER ─── */
footer {
  background: #0D1117;
  color: rgba(255, 255, 255, 0.4);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

footer .logo { color: #fff; }
footer .logo span { color: #06B6D4; }

.footer-brand p {
  font-size: 0.93rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a,
.footer-col li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.footer-col a:hover { color: rgba(255, 255, 255, 0.7); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .story-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }

  .mobile-menu { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(22, 22, 22, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 40px;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .nav-inner { padding: 16px 24px; }

  #hero {
    padding: 120px 24px 80px;
    min-height: auto;
  }

  .container { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; align-items: center; }

  .step-line {
    width: 1px; height: 32px;
    margin-top: 0;
  }

  .step { max-width: 300px; }
  .industries-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 24px;
  }

  .footer-bottom { padding: 20px 24px; }

  .cta-btns,
  .hero-btns { flex-direction: column; }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .page-hero .container {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .cta-static { white-space: normal; }
  .cta-rotator { display: block; }
  .cta-inner h2 { font-size: 1.75rem; letter-spacing: -0.5px; }
}

/* ═══════════════════════════════════════════
   NAV — Mega Menu Dropdown
   ═══════════════════════════════════════════ */
.has-dropdown {
  position: relative;
}

.has-dropdown > a .caret {
  font-size: 0.7em;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.has-dropdown:hover > a .caret { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  display: grid;
  grid-template-columns: repeat(3, 160px);
  gap: 28px;
  background: rgba(28, 28, 28, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

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

.mega-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 0;
  transition: color 0.25s, transform 0.25s var(--ease);
}

.mega-col a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   HERO — Decorative Background & Word Rotator
   ═══════════════════════════════════════════ */
#hero {
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: float 14s ease-in-out infinite;
}

.orb-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
  top: 10%;
  left: -8%;
}

.orb-2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(8, 51, 68, 0.5) 0%, transparent 70%);
  bottom: 5%;
  right: -10%;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -25px) scale(1.05); }
  66%      { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

/* Word Rotator — CSS grid stacks all words so container auto-sizes to widest */
.word-rotator {
  display: inline-grid;
  vertical-align: bottom;
  line-height: 1;
  overflow: hidden;
  padding: 0.08em 0.05em 0.12em 0.05em;
}

.rotating-word {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  text-align: left;
  font-style: italic;
  font-weight: 700;
  padding-right: 0.3em;
  color: var(--text);
  background: linear-gradient(120deg, #67E8F9 0%, #06B6D4 50%, #67E8F9 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
  white-space: nowrap;
  animation: shimmer 4s linear infinite;
  will-change: transform, opacity;
}

.rotating-word.active {
  opacity: 1;
  transform: translateY(0);
}

.rotating-word.exit {
  opacity: 0;
  transform: translateY(-110%);
}

/* Hero trust strip */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  padding: 10px 20px 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  opacity: 0;
  animation: heroFade 0.8s 0.95s var(--ease-out) forwards;
}

.trust-avatars {
  display: flex;
}

.trust-avatars .avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}

.trust-avatars .avatar:first-child { margin-left: 0; }

.avatar.a1 { background: linear-gradient(135deg, #06B6D4, #0E7490); }
.avatar.a2 { background: linear-gradient(135deg, #67E8F9, #06B6D4); }
.avatar.a3 { background: linear-gradient(135deg, #6366F1, #4338CA); }
.avatar.a4 { background: linear-gradient(135deg, #F59E0B, #D97706); }

.hero-trust p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
}

.hero-trust strong {
  color: var(--text);
  font-weight: 600;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0;
  animation: heroFade 0.8s 1.2s var(--ease-out) forwards;
}

.mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--text-tertiary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  display: block;
  width: 2px;
  height: 6px;
  border-radius: 2px;
  background: var(--text-tertiary);
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0);  opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

.scroll-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════ */
.marquee-strip {
  background: #0C1A2E;
  color: var(--text);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, #0C1A2E, transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(-90deg, #0C1A2E, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 40px;
}

.marquee-content span {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  padding: 0 28px;
  color: rgba(241, 245, 249, 0.8);
}

.marquee-content .dot {
  font-size: 0.4rem;
  color: rgba(6, 182, 212, 0.7);
  padding: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SERVICES PREVIEW — Card Tags
   ═══════════════════════════════════════════ */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.card-tags li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 12px;
}

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
#stats { background: var(--bg); }

#stats .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-card {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.4s;
}

.stat-card:last-child { border-right: none; }

.stat-card:hover { background: var(--bg-card); }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

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

/* ═══════════════════════════════════════════
   FEATURED WORK
   ═══════════════════════════════════════════ */
#work { background: var(--bg-alt); }

.section-sub-left {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-top: 16px;
  line-height: 1.75;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.4s;
}

.work-card.large {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
}

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

.work-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}

.work-card.large .work-image {
  width: 55%;
  aspect-ratio: auto;
}

.work-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A2F3F 0%, #0C1A2E 100%);
  transition: transform 1s var(--ease);
}

.work-placeholder.placeholder-2 {
  background: linear-gradient(135deg, #0F2535 0%, #0C1A2E 100%);
}
.work-placeholder.placeholder-3 {
  background: linear-gradient(135deg, #1A2235 0%, #131925 100%);
}
.work-placeholder.placeholder-4 {
  background: linear-gradient(135deg, #1F2937 0%, #0F172A 100%);
}

.work-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.15), transparent 50%);
}

.work-placeholder::after {
  content: 'Add your image here';
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.2);
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.work-card:hover .work-placeholder { transform: scale(1.06); }

.work-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.work-card:hover .work-image img { transform: scale(1.06); }

.work-meta {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-card.large .work-meta {
  padding: 44px 48px;
  justify-content: center;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.work-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 50px;
}

.work-meta h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.work-card.large .work-meta h3 {
  font-size: 1.8rem;
}

.work-meta p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-tertiary);
  margin-bottom: 18px;
}

.work-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s var(--ease);
}

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

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
#faq { background: var(--bg); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-intro h2 { margin-bottom: 20px; }

.faq-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}

.faq-item.is-open {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
  user-select: none;
}

.faq-summary:hover { color: var(--text-secondary); }
.faq-summary:focus-visible { outline: 2px solid var(--text-tertiary); outline-offset: 2px; }

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text);
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Wrapper animates height; inner holds the padding */
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.5s var(--ease);
}

.faq-answer-inner {
  padding: 0 26px 24px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s var(--ease) 0.05s, transform 0.4s var(--ease) 0.05s;
}

.faq-item.is-open .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   CTA — Word Rotator
   ═══════════════════════════════════════════ */
.cta-inner .section-label {
  margin-bottom: 18px;
  justify-content: center;
}

.cta-static {
  white-space: nowrap;
}

.cta-inner .section-label::before { display: none; }

.cta-rotator {
  display: inline-grid;
  vertical-align: bottom;
  line-height: 1;
  overflow: hidden;
  padding: 0.08em 0.05em 0.12em;
}

.cta-word {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  text-align: center;
  font-style: italic;
  background: linear-gradient(120deg, #67E8F9 0%, #06B6D4 50%, #67E8F9 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
  white-space: nowrap;
  animation: shimmer 4s linear infinite;
  will-change: transform, opacity;
}

.cta-word.active {
  opacity: 1;
  transform: translateY(0);
}

.cta-word.exit {
  opacity: 0;
  transform: translateY(-110%);
}

/* ═══════════════════════════════════════════
   FOOTER ENHANCEMENTS
   ═══════════════════════════════════════════ */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: lowercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.social-icon:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-tag {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — New Sections
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2) { border-bottom: 1px solid var(--border); }

  .faq-layout { grid-template-columns: 1fr; gap: 40px; }

  .work-card.large { flex-direction: column; }
  .work-card.large .work-image { width: 100%; aspect-ratio: 16 / 9; }
  .work-card.large .work-meta { padding: 32px; }

  .mega-menu {
    grid-template-columns: repeat(3, 130px);
    gap: 20px;
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .has-dropdown .caret { display: none; }
  .mega-menu { display: none; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card.large { grid-column: span 1; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-card {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .stat-card:last-child { border-bottom: none; }

  .marquee-content span { font-size: 1.1rem; padding: 0 18px; }

  .scroll-indicator { display: none; }

  .hero-orb { filter: blur(60px); opacity: 0.4; }
  .orb-1 { width: 260px; height: 260px; }
  .orb-2 { width: 300px; height: 300px; }

  .hero-trust {
    margin-top: 36px;
    padding: 8px 16px 8px 10px;
  }
  .hero-trust p { font-size: 0.74rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--bg-sage); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.4s;
}

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

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-card blockquote p {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: -0.3px;
  font-weight: 500;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-sage-card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: -0.2px;
}

.testimonial-role {
  font-size: 0.86rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}

