/* ═══════════════════════════════════════════════════════
   STATURE OPTICS MANAGEMENT — Stylesheet
   Based on: Lumière Aesthetics Template
   Design: Dark editorial, high-contrast, cinematic
   Palette: Charcoal bg, teal accent, off-white text
   ═══════════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --bg-base:    #0b0e13;
  --bg-dark:    #0f1319;
  --bg-darker:  #090c10;
  --bg-card:    #141a23;
  --bg-glass:   rgba(14, 18, 25, 0.65);
  --text:       #e8e6e1;
  --text-muted: #9a9490;
  --text-dim:   #5a5450;
  --accent:     #f9a72b;
  --accent-lt:  #fbbe54;
  --accent-dk:  #c8851f;
  --white:      #ffffff;

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #c8851f 0%, #f9a72b 50%, #fbbe54 100%);
  --gradient-hero-bg: linear-gradient(135deg, #090c10 0%, #0f1319 50%, #0b0e13 100%);
  --gradient-card: linear-gradient(145deg, rgba(249,167,43,0.04) 0%, rgba(20,26,35,0.95) 100%);

  /* Type */
  --font-heading: 'Sora', -apple-system, sans-serif;
  --font-body:    'Public Sans', -apple-system, sans-serif;

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

  /* Borders */
  --border-subtle: 1px solid rgba(249, 167, 43, 0.12);
  --border-glow: 1px solid rgba(249, 167, 43, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;

  /* Shadows */
  --shadow-glow: 0 0 40px rgba(249, 167, 43, 0.08);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1200px;
  --section-pad: clamp(5rem, 10vh, 9rem);
  --gap: clamp(2rem, 4vw, 4rem);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

h1 {
  text-transform: uppercase;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-base);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; transition: var(--transition-fast); }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

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

/* ─── UTILITY ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  text-transform: none;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── ANIMATED ELEMENTS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: var(--transition-slow);
}

.btn:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 167, 43, 0.3);
}

.btn:hover::before {
  left: 100%;
}

.btn:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(232, 230, 225, 0.25);
}

.btn--outline:hover {
  border-color: var(--accent-lt);
  color: var(--accent-lt);
  background: transparent;
}

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

.btn--nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
  margin-left: 0.25rem;
}

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

/* ─── NAVBAR ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.navbar.scrolled {
  background: rgba(11, 14, 19, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
  padding: 0.35rem 0;
}

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

.navbar__logo img {
  height: 100px;
  width: auto;
  transition: opacity 0.2s;
}
.navbar__logo:hover img { opacity: 0.85; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.navbar__links a:not(.btn) {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.navbar__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-lt);
  transition: var(--transition-smooth);
}

.navbar__links a:not(.btn):hover {
  color: var(--white);
}

.navbar__links a:not(.btn):hover::after {
  width: 100%;
}

/* Burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
}
.navbar__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 1px;
}
.navbar__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO — SPLIT LAYOUT ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero-bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 167, 43, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: var(--gap);
  padding-top: 8rem;
  padding-bottom: 0;
}

.hero__content {
  max-width: 580px;
  align-self: center;
  margin-bottom: 3.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__title-line--accent {
  color: var(--accent);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  margin-top: 0.1em;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

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

.hero__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 100%;
}

.hero__image.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 1.2s ease;
}

.hero__image.reveal.visible {
  opacity: 1;
  transform: none;
}

.hero__image img {
  max-height: clamp(680px, 85vh, 920px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  display: block;
}

.hero__image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(249, 167, 43, 0.08) 0%, transparent 70%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(249, 167, 43, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

/* Scroll hint removed */

/* ─── FEATURED STRIP ──────────────────────────────── */
.featured-strip {
  background: var(--bg-dark);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  padding: var(--space-lg) 0;
}

.featured-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.featured-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-align: left;
}

.featured-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-subtle);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--accent-lt);
  font-size: 1.2rem;
}

.featured-text h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2px;
}

.featured-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.featured-divider {
  width: 1px;
  height: 40px;
  background: rgba(249, 167, 43, 0.1);
}

/* ─── SECTIONS (shared) ───────────────────────────── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

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

.section--cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(249,167,43,0.08) 0%, transparent 70%),
    var(--bg-base);
  text-align: center;
}

.section__header {
  margin-bottom: 3rem;
}

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

.section__header--center .section-label::before {
  display: none;
}

.section__header--center .section-label {
  padding-left: 0;
}

.section__header--center .section-subtitle {
  margin: 0 auto;
}

.section__intro {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

.section__cta {
  text-align: center;
  margin-top: 3rem;
}

/* Grid layout */
.section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: center;
}

@media (min-width: 768px) {
  .section__grid--text-left  { grid-template-columns: 1.3fr 0.7fr; }
  .section__grid--text-right { grid-template-columns: 0.7fr 1.3fr; }
}

/* ─── STAT BLOCK ──────────────────────────────────── */
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-block__item {
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-block__item:hover {
  transform: translateX(4px);
  box-shadow: -4px 0 20px rgba(249,167,43,0.12);
}

.stat-block__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--accent-lt);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-block__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ─── FEATURE CARDS ───────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features { grid-template-columns: 1fr 1fr; }
}

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent-lt);
  margin-bottom: 1.5rem;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: none;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.feature-card__text {
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── PULL QUOTE ──────────────────────────────────── */
.pull-quote {
  padding: 2.5rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
}

.pull-quote blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* ─── MARQUEE ─────────────────────────────────────── */
.marquee-section {
  padding: var(--space-xl) 0;
  background: var(--bg-base);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: var(--space-2xl);
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

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

/* ─── CTA BLOCK ───────────────────────────────────── */
.cta-block {
  max-width: 680px;
  margin: 0 auto;
}

.cta-block .section-label::before { display: none; }
.cta-block .section-label { padding-left: 0; }

.cta-block p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── SHIMMER ─────────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.shimmer {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-lt) 50%, var(--accent) 100%);
  background-size: 1000px 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite linear;
}

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--bg-base);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand img {
  height: 130px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer__brand:hover img { opacity: 0.9; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
}

.footer__links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.footer__links a:hover { color: var(--accent-lt); }

.footer__copy {
  font-size: 0.8rem;
  color: rgba(138,154,174,0.5);
}

/* ─── SELECTION ───────────────────────────────────── */
::selection {
  background: var(--accent);
  color: var(--white);
}

/* ─── FOCUS VISIBLE ───────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent-lt);
  outline-offset: 3px;
}

/* ─── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: var(--accent-dk);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
/* ─── NAV DROPDOWN ─────────────────────────────────── */
.nav-item { position: relative; }

.nav-item > a { cursor: pointer; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 520px;
  background: rgba(14, 18, 25, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.nav-item:hover .nav-dropdown,
.nav-item.active .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-subtle);
}

.nav-dropdown a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.15s, padding-left 0.15s;
}

.nav-dropdown a:hover {
  color: var(--white);
  padding-left: 6px;
}

/* ─── PAGE HERO ────────────────────────────────────── */
.page-hero {
  padding: 10rem 0 var(--space-2xl);
  background: var(--gradient-hero-bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 167, 43, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  margin-bottom: var(--space-sm);
}

.page-hero .section-subtitle {
  max-width: 640px;
}

.page-hero--flagship {
  padding: 12rem 0 var(--space-2xl);
}

.page-hero--flagship .section-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
}

/* ─── BREADCRUMB ───────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: color 0.15s;
}

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

.breadcrumb__sep {
  font-size: 0.7rem;
  color: var(--text-dim);
  opacity: 0.5;
}

.breadcrumb__current {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── TWO-COL SERVICE GRID ─────────────────────────── */
.services-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.services-hub__col-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-subtle);
}

.service-link-card {
  display: block;
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.03);
  margin-bottom: var(--space-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.service-link-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.service-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  border-color: rgba(249, 167, 43, 0.1);
}

.service-link-card:hover::before { transform: scaleY(1); }

.service-link-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-link-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-link-card .card-arrow {
  position: absolute;
  top: 50%;
  right: var(--space-lg);
  transform: translateY(-50%);
  color: var(--text-dim);
  transition: color 0.2s, transform 0.2s;
}

.service-link-card:hover .card-arrow {
  color: var(--accent);
  transform: translateY(-50%) translateX(4px);
}

/* ─── PRICING CARDS ────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(249, 167, 43, 0.08);
}

.pricing-card__badge {
  position: absolute;
  top: -1px; right: var(--space-lg);
  background: var(--accent);
  color: var(--bg-base);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.pricing-card__price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.pricing-card__features {
  margin-bottom: var(--space-lg);
}

.pricing-card__features li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ─── CASE STUDY CARDS ─────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.case-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  padding: var(--space-xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.case-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid rgba(249, 167, 43, 0.25);
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

.case-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.case-card__metric {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(249, 167, 43, 0.04);
  border-left: 3px solid var(--accent);
}

.case-card__metric-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
}

.case-card__metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.case-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── FILTER BAR ───────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-base);
  font-weight: 600;
}

/* ─── FORMS ────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-field {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-field::placeholder {
  color: var(--text-dim);
}

.form-field:focus {
  border-color: var(--accent);
}

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

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

/* ─── TIMELINE ─────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dk), transparent);
}

.timeline__step {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline__step:last-child { padding-bottom: 0; }

.timeline__step::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-base);
  z-index: 1;
}

.timeline__step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.timeline__step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── AI MOCKUP ────────────────────────────────────── */
.ai-mockup {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ai-mockup__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ai-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
}

.ai-mockup__dot--red { background: #e5534b; }
.ai-mockup__dot--yellow { background: #d29922; }
.ai-mockup__dot--green { background: #57ab5a; }

.ai-mockup__title {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-left: auto;
}

.ai-mockup__body {
  padding: var(--space-lg);
}

.ai-mockup__query {
  font-size: 0.9rem;
  color: var(--text);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--text-dim);
}

.ai-mockup__answer {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: var(--space-md);
}

.ai-mockup__answer--negative {
  border-left: 3px solid #e5534b;
  background: rgba(229, 83, 75, 0.04);
}

.ai-mockup__answer--positive {
  border-left: 3px solid #57ab5a;
  background: rgba(87, 171, 90, 0.04);
}

.ai-mockup__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: var(--space-sm);
}

.ai-mockup__label--before {
  color: #e5534b;
  background: rgba(229, 83, 75, 0.1);
}

.ai-mockup__label--after {
  color: #57ab5a;
  background: rgba(87, 171, 90, 0.1);
}

/* ─── TEAM CARDS ───────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.team-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.3s ease;
}

.team-card:hover { transform: translateY(-3px); }

.team-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(249, 167, 43, 0.08);
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── ACCORDION ────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  transition: color 0.2s;
}

.accordion-trigger:hover { color: var(--accent); }

.accordion-trigger__icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-trigger__icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-item.open .accordion-content {
  max-height: 500px;
  padding-bottom: var(--space-md);
}

.accordion-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── FOOTER GRID ──────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: var(--space-lg);
}

.footer-col__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 3px 0;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--accent); }

.footer-col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── LEGAL PAGES ──────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.legal-content li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 0.5rem;
}

.placeholder-notice {
  background: rgba(249, 167, 43, 0.08);
  border: 1px solid rgba(249, 167, 43, 0.2);
  padding: var(--space-md);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

/* ─── RESOURCE CARDS ───────────────────────────────── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.resource-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  padding: var(--space-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.resource-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.resource-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.resource-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── CAREER CARDS ─────────────────────────────────── */
.career-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  margin-bottom: var(--space-sm);
  transition: border-color 0.2s;
}

.career-card:hover { border-color: rgba(249, 167, 43, 0.15); }

.career-card__info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.career-card__info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.career-card__tags {
  display: flex;
  gap: var(--space-xs);
}

.career-card__tag {
  font-size: 0.65rem;
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  border-radius: 2px;
}

/* ─── SPLIT FORM LAYOUT ────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* ─── Tablet ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    gap: var(--space-lg);
  }

  .hero__title-line {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
  }

  .hero__title-line--accent {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .hero__image img {
    max-height: 460px;
  }

  .navbar__links {
    gap: var(--space-md);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

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

  .split-layout {
    grid-template-columns: 1fr;
  }

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

/* ─── Mobile ──────────────────────────────────────── */
@media (max-width: 767px) {

  /* Navbar */
  .navbar__links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2.5rem;
    background: rgba(11,14,19,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid rgba(255,255,255,0.05);
  }

  .navbar__links.open { transform: translateX(0); }
  .navbar__burger { display: flex; }

  .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr;
    padding: var(--space-sm);
    background: rgba(255,255,255,0.03);
    border: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav-item.active .nav-dropdown {
    display: grid;
  }

  /* Hero — stack vertically on mobile */
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 7rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    order: 2;
  }

  .hero__image {
    order: 1;
    margin-bottom: var(--space-sm);
  }

  .hero__image img {
    max-height: 320px;
    margin: 0 auto;
  }

  .hero__title-line {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero__title-line--accent {
    font-size: clamp(1.5rem, 6vw, 2.4rem);
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Page hero */
  .page-hero {
    padding: 7rem 0 var(--space-xl);
  }

  .page-hero--flagship {
    padding: 8rem 0 var(--space-xl);
  }

  /* Featured Strip */
  .featured-strip .container {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .featured-divider {
    display: none;
  }

  .featured-item {
    width: 100%;
    padding: var(--space-xs) 0;
    border-bottom: var(--border-subtle);
  }

  .featured-item:last-of-type {
    border-bottom: none;
  }

  /* Sections */
  .section__grid--text-right > .section__visual { order: 2; }
  .section__grid--text-right > .section__content { order: 1; }

  .section-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  /* Service hub */
  .services-hub {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Resources */
  .resource-grid {
    grid-template-columns: 1fr;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Career cards */
  .career-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  /* Marquee */
  .marquee-item {
    font-size: 1rem;
  }

  .marquee-track {
    gap: var(--space-lg);
  }
}

/* ─── Small Mobile ────────────────────────────────── */
@media (max-width: 480px) {
  .hero__image img {
    max-height: 260px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .btn {
    padding: 0.85rem 1.75rem;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .marquee-item {
    font-size: 0.85rem;
  }
}

