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

/* ── DESIGN TOKENS ── */
:root {
  --bg: #101418;
  --bg-2: #161b21;
  --bg-3: #1f262e;
  --bg-light: #f3f2ee;
  --bg-white: #ffffff;

  --accent: #3fb5a2;
  --accent-dim: rgba(63, 181, 162, 0.08);
  --accent-border: rgba(63, 181, 162, 0.22);
  --accent-dark: #2f9384;

  --text: #f4f5f3;
  --text-muted: rgba(244, 245, 243, 0.52);
  --text-sub: rgba(244, 245, 243, 0.28);
  --text-dark: #141a17;
  --text-gray: #56616a;
  --text-gray-2: #828d96;

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --border-light: rgba(0, 0, 0, 0.08);

  --font: 'Inter', system-ui, sans-serif;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 22px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}

::selection {
  background: rgba(63, 181, 162, 0.24);
}

::-webkit-scrollbar {
  width: 4px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--bg-3);
  border-radius: 2px;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 0;
  border-bottom-color: var(--border);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.5px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s var(--ease);
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

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

/* Nav CTA */
.btn-nav {
  background: var(--accent);
  color: var(--text-dark);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s var(--ease);
  letter-spacing: -0.2px;
}

.btn-nav:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

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

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

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

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  transition: color 0.2s var(--ease);
}

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

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  border: none;
  font-family: var(--font);
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

/* ══════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════ */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 56px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-sm {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 28px;
}

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

.text-center .section-desc {
  margin: 0 auto;
}

/* Dividers between sections */
.section-dark {
  background: var(--bg);
}

.section-dark-2 {
  background: var(--bg-2);
}

.section-dark-3 {
  background: var(--bg-3);
}

.section-light {
  background: var(--bg-light);
}

.section-white {
  background: var(--bg-white);
}

/* Section labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-label-line {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-label.dark {
  color: var(--text-gray);
}

.section-label.dark .section-label-line {
  background: var(--text-gray-2);
}

/* Section titles */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 18px;
}

.section-title.on-light {
  color: var(--text-dark);
}

.accent-word {
  color: var(--accent);
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

.section-desc.on-light {
  color: var(--text-gray);
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}

.delay-4 {
  transition-delay: .32s;
}

.delay-5 {
  transition-delay: .40s;
}

.delay-6 {
  transition-delay: .48s;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--bg);
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px 28px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Subtle noise texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Thin accent line top-right decoration */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 160px;
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.hero-location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 900px;
}

.hero-title .accent-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-desc-right {
  max-width: 300px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: right;
}

/* Hero stats bar */
.hero-stats-bar {
  position: relative;
  border-top: 1px solid var(--border);
  margin-top: 64px;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 28px 0;
  border-right: 1px solid var(--border);
  text-align: center;
}

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

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-sub);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   CLIENTS STRIP
══════════════════════════════════════ */
.clients-strip {
  padding: 44px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-sub);
  margin-bottom: 28px;
}

.clients-track {
  display: flex;
  gap: 56px;
  animation: marquee 24s linear infinite;
  width: max-content;
}

.clients-track-set {
  display: flex;
  gap: 56px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.client-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-sub);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.client-logo {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clients-track:hover {
  animation-play-state: paused;
}

/* ══════════════════════════════════════
   SERVICES CARDS
══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s var(--ease);
  position: relative;
}

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

.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}

.svc-icon svg {
  width: 20px;
  height: 20px;
}

.service-card:hover .svc-icon {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  color: var(--accent);
}

.svc-number {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.5px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.service-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.service-tag {
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--bg-3);
  color: var(--text-muted);
  border: 1px solid var(--border);
  letter-spacing: 0.2px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.service-link svg {
  transition: transform 0.2s var(--ease);
}

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

.service-link:hover svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   PORTFOLIO / WORK CARDS
══════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.work-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.work-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.work-card-visual {
  width: 100%;
  height: 100%;
  background: var(--bg-3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* dot-grid pattern */
.work-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* accent stripe bottom */
.work-card-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.wc-num {
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: relative;
  z-index: 1;
  user-select: none;
}

/* Work card images */
.work-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-out);
}

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

/* Color accents per card */
.wv-1::after {
  background: #2563EB;
}

.wv-2::after {
  background: #059669;
}

.wv-3::after {
  background: #7c3aed;
}

.wv-4::after {
  background: #ea580c;
}

.wv-5::after {
  background: #0284c7;
}

.wv-6::after {
  background: #db2777;
}

.wv-7::after {
  background: #78350f;
}

.wv-8::after {
  background: #134e4a;
}

.wv-9::after {
  background: #1e3a5f;
}

.work-card-body {
  padding: 24px;
}

.work-card-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-sub);
  margin-bottom: 8px;
}

.work-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.work-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.work-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.work-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--bg-3);
  color: var(--text-sub);
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  background: var(--bg-2);
  transition: background 0.2s var(--ease);
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: var(--bg-3);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--accent-border), transparent);
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s var(--ease);
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star {
  width: 14px;
  height: 14px;
  background: #f59e0b;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-text {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-gray);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.author-role {
  font-size: 12px;
  color: var(--text-gray);
}

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s var(--ease);
}

.team-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.team-card-avatar {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  position: relative;
  letter-spacing: 0.5px;
}

/* soft portrait vignette so monogram reads as an intentional avatar */
.team-card-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 15%, rgba(255, 255, 255, 0.06), transparent 60%);
}

.tca-1 {
  background: linear-gradient(160deg, #1b2b33, #101a1f);
}

.tca-2 {
  background: linear-gradient(160deg, #22303a, #151d23);
}

.tca-3 {
  background: linear-gradient(160deg, #1e2c2a, #12201d);
}

.tca-4 {
  background: linear-gradient(160deg, #2a2f34, #181c20);
}

.tca-5 {
  background: linear-gradient(160deg, #182a2b, #0f1c1d);
}

.tca-6 {
  background: linear-gradient(160deg, #242c33, #141a1f);
}

.team-card-body {
  padding: 18px 18px 22px;
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.team-member-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.team-member-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.team-member-desc {
  font-size: 12.5px;
  color: var(--text-gray-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   VALUES
══════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: border-color 0.2s var(--ease);
}

.value-card:hover {
  border-color: var(--border-hover);
}

.value-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.value-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.value-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   TECH PILLS
══════════════════════════════════════ */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}

.tech-pill:hover {
  border-color: var(--accent-border);
  color: var(--text);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.tech-icon {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--bg-3);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(205, 255, 59, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 28px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

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

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

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}

.ci-icon svg {
  width: 18px;
  height: 18px;
}

.ci-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-sub);
  margin-bottom: 4px;
}

.ci-value {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
}

.ci-value a {
  color: var(--accent);
  transition: opacity 0.2s;
}

.ci-value a:hover {
  opacity: 0.8;
}

/* Contact form */
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

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

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

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14.5px;
  font-family: var(--font);
  transition: border-color 0.2s var(--ease);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-sub);
}

.form-control:focus {
  border-color: var(--accent-border);
  background: rgba(205, 255, 59, 0.02);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(255,255,255,0.2)' d='M12 15l-7-7h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

select.form-control option {
  background: var(--bg-2);
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  background: var(--bg-2);
  overflow: hidden;
}

.faq-item.open {
  background: var(--bg-3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 500;
  user-select: none;
  gap: 16px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 240px;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: var(--bg);
  padding: 160px 28px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.3;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 12.5px;
}

.breadcrumb a {
  color: var(--text-sub);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--text-sub);
}

.breadcrumb .current {
  color: var(--text-muted);
  font-weight: 500;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 760px;
}

.page-hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ══════════════════════════════════════
   SERVICE DETAIL (services page)
══════════════════════════════════════ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border-light);
}

.service-detail:first-child {
  padding-top: 0;
}

.service-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse>* {
  direction: ltr;
}

.sd-icon-large {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--text-gray);
}

.sd-icon-large svg {
  width: 28px;
  height: 28px;
}

.sd-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.12;
}

.sd-desc {
  font-size: 15.5px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.sd-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #374151;
}

.sd-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--text-gray);
}

.sd-check svg {
  width: 18px;
  height: 18px;
}

.sd-visual {
  border-radius: var(--radius-xl);
  background: var(--bg);
  border: 1px solid var(--border-light);
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}

.sd-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.sd-visual-letter {
  font-family: var(--font-heading);
  font-size: 160px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1;
  line-height: 1;
  user-select: none;
}

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

.sd-visual:hover .sd-visual-img {
  transform: scale(1.05);
}

.sd-visual-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  box-sizing: border-box;
  z-index: 2;
  background: rgba(16, 20, 24, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.sd-visual-stat {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.1;
}

.sd-visual-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.sd-visual-pill {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-weight: 500;
}

/* ══════════════════════════════════════
   ABOUT / STORY
══════════════════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-text p {
  font-size: 15.5px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-visual {
  border-radius: var(--radius-xl);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
}

.about-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-metric {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--border);
}

.about-metric-num {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.about-metric-num .am-accent {
  color: var(--accent);
}

.about-metric-label {
  font-size: 12px;
  color: var(--text-sub);
  font-weight: 500;
}

/* ══════════════════════════════════════
   TIMELINE
══════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), rgba(205, 255, 59, 0.1), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--accent);
}

.timeline-year {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 5px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   FILTER TABS
══════════════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}

.filter-tab:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.filter-tab.active {
  background: var(--accent);
  border-color: transparent;
  color: var(--text-dark);
  font-weight: 700;
}

/* ══════════════════════════════════════
   STATS INLINE (in sections)
══════════════════════════════════════ */
.stats-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-inline {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--bg-2);
}

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

.stat-inline-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-inline-num .si-accent {
  color: var(--accent);
}

.stat-inline-label {
  font-size: 12.5px;
  color: var(--text-sub);
  font-weight: 500;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 68px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s var(--ease);
}

.social-link:hover {
  background: var(--accent);
  color: var(--text-dark);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

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

.footer-copy {
  font-size: 12.5px;
  color: var(--text-sub);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12.5px;
  color: var(--text-sub);
  transition: color 0.2s;
}

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

/* ══════════════════════════════════════
   COOKIE BAR
══════════════════════════════════════ */
.cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  width: calc(100% - 40px);
  transition: all 0.3s var(--ease);
}

.cookie-bar.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
}

.cookie-text {
  font-size: 12.5px;
  color: var(--text-muted);
  flex: 1;
}

.cookie-text a {
  color: var(--accent);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all 0.2s var(--ease);
}

.btn-cookie-accept {
  background: var(--accent);
  color: var(--text-dark);
}

.btn-cookie-decline {
  background: var(--bg-3);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════
   ACCREDITATIONS / TRUST BADGES
══════════════════════════════════════ */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.badge-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--accent);
}

.badge-mark svg {
  width: 16px;
  height: 16px;
}

.badge-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.badge-sub {
  font-size: 11px;
  color: var(--text-sub);
  margin-top: 1px;
}

/* ══════════════════════════════════════
   INSIGHTS / ARTICLE LIST
══════════════════════════════════════ */
.article-list {
  display: flex;
  flex-direction: column;
}

.article-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s var(--ease);
}

.article-thumb-wrap {
  width: 140px;
  height: 95px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.article-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease);
}

.article-row:hover .article-thumb {
  transform: scale(1.06);
}

.article-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  margin: 32px 0;
}

.article-row:first-child {
  border-top: 1px solid var(--border);
}

.article-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.article-date {
  width: 110px;
  flex-shrink: 0;
  font-size: 12.5px;
  color: var(--text-sub);
  font-weight: 500;
  letter-spacing: 0.3px;
  padding-top: 2px;
}

.article-main {
  flex: 1;
  min-width: 0;
}

.article-byline {
  font-size: 12.5px;
  color: var(--text-sub);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.article-main {}

.article-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 8px;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.article-row:hover .article-title {
  color: var(--accent);
}

.article-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
}

.article-byline {
  font-size: 12.5px;
  color: var(--text-sub);
  white-space: nowrap;
}

.article-read {
  font-size: 12.5px;
  color: var(--text-sub);
  white-space: nowrap;
}

/* ── Article body (single post prose) ── */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose .kicker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

.prose h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.prose .post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.prose .post-meta strong {
  color: var(--text-muted);
  font-weight: 500;
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
  margin: 40px 0 16px;
}

.prose h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
}

.prose p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.prose p strong {
  color: var(--text);
  font-weight: 600;
}

.prose ul.plain {
  margin: 0 0 20px;
  padding-left: 0;
}

.prose ul.plain li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.prose ul.plain li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
}

.prose blockquote {
  border-left: 2px solid var(--accent);
  padding: 6px 0 6px 24px;
  margin: 28px 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}

.prose .post-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════
   CAREERS / JOB LISTINGS
══════════════════════════════════════ */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: var(--bg-2);
  transition: background 0.2s var(--ease);
}

.job-row:hover {
  background: var(--bg-3);
}

.job-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}

.job-meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-sub);
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-apply {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.job-row:hover .job-apply {
  color: var(--accent);
}

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

  .hero-title {
    letter-spacing: -3px;
  }

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

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

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

  .about-story {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail.reverse {
    direction: ltr;
  }

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

@media (max-width:768px) {
  .section {
    padding: 68px 0;
  }

  .nav-links,
  .nav-cta .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  .portfolio-grid.two-col {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

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

  .hero-stat:nth-child(2) {
    border-right: none;
  }

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

  .stat-inline:nth-child(2) {
    border-right: none;
  }

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

  .hero-desc-right {
    text-align: left;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .article-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .article-thumb-wrap {
    width: 100%;
    height: 180px;
  }

  .article-date {
    width: auto;
  }

  .article-read {
    display: none;
  }

  .job-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-stats-bar {
    grid-template-columns: 1fr 1fr;
  }

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