/* ============================
   CATALOGUE SERVICES — Styles
   ============================ */

:root {
  --bg-primary: #0B1120;
  --bg-secondary: #111827;
  --bg-card: #1A2332;
  --bg-card-alt: #141E2E;

  --text-white: #FFFFFF;
  --text-primary: #E2E8F0;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --accent-blue: #1454F0;
  --accent-blue-light: #4A7EFF;
  --accent-magenta: #C8176A;
  --accent-magenta-light: #E8247E;
  --accent-gold: #F0A500;
  --accent-teal: #00C9A7;
  --navy: #0D1E35;

  --border-dark: #1E293B;
  --border-subtle: rgba(255, 255, 255, 0.06);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 100px;
}

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

/* scroll-behavior handled by JS for navbar offset support */

body {
  font-family: var(--font-body);
  font-size: 17px;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; color: var(--text-white); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-magenta), var(--accent-gold));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ========== ANIMATIONS ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for hero children */
.hero-content [data-animate]:nth-child(1) { transition-delay: 0.1s; }
.hero-content [data-animate]:nth-child(2) { transition-delay: 0.3s; }
.hero-content [data-animate]:nth-child(3) { transition-delay: 0.5s; }
.hero-stats[data-animate] { transition-delay: 0.6s; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(11, 17, 32, 0.96);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.navbar.nav-open {
  transform: translateY(0) !important;
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  flex-shrink: 0;
}

.logo-bar {
  width: 5px;
  border-radius: 2.5px;
}

.logo-bar--blue   { height: 24px; background: var(--accent-blue-light); }
.logo-bar--magenta { height: 24px; background: var(--accent-magenta-light); }
.logo-bar--gold   { height: 24px; background: var(--accent-gold); }

.logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  margin-left: 1px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.logo-catalogue { color: var(--text-white); }
.logo-dash { color: var(--accent-magenta-light); }
.logo-services { color: var(--text-white); }

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 2px;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--accent-blue);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--accent-blue-light);
}

.nav-link--mobile-only {
  display: none;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent-blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-blue-light);
  box-shadow: 0 4px 20px rgba(20, 84, 240, 0.3);
  transform: translateY(-1px);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full { width: 100%; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  top: -300px;
  right: -200px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(20, 84, 240, 0.07) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  padding: 100px 24px 80px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text-white);
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-blue-light), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero stats — right column */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border-dark);
  padding-left: 40px;
}

.hero-stat {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dark);
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.hero-stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-white);
}

.hero-stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ========== SECTION COMMON ========== */
.section-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}

.section-tag--gold { color: var(--accent-gold); }
.section-tag--teal { color: var(--accent-teal); }
.section-tag--magenta { color: var(--accent-magenta-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

/* ========== SERVICES ========== */
.services {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.section-intro {
  margin-bottom: 56px;
}

/* Service featured — big card */
.service-featured {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.service-featured-content {
  padding: 48px;
}

.service-featured-visual {
  background: var(--bg-card-alt);
  border-left: 1px solid var(--border-dark);
  padding: 48px 36px;
  display: flex;
  align-items: center;
}

.service-number {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-blue-light);
  margin-bottom: 16px;
}

.service-number--magenta { color: var(--accent-magenta-light); }
.service-number--gold { color: var(--accent-gold); }

.service-featured-content h3,
.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.service-featured-content > p,
.service-card > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-list {
  margin-bottom: 28px;
}

.service-list li {
  font-size: 15px;
  color: var(--text-primary);
  padding: 7px 0;
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--accent-blue-light);
  border-radius: 50%;
}

.service-card:nth-child(1) .service-list li::before { background: var(--accent-magenta-light); }
.service-card:nth-child(2) .service-list li::before { background: var(--accent-gold); }

.service-cta {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-blue-light);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-cta:hover { gap: 8px; }

/* Visual card (fake dashboard) */
.visual-card {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.visual-card-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-dark);
  font-size: 14px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.visual-card.animated .visual-card-row {
  opacity: 1;
  transform: translateX(0);
}

.visual-card.animated .visual-card-row:nth-child(1) { transition-delay: 0.1s; }
.visual-card.animated .visual-card-row:nth-child(2) { transition-delay: 0.25s; }
.visual-card.animated .visual-card-row:nth-child(3) { transition-delay: 0.4s; }
.visual-card.animated .visual-card-row:nth-child(4) { transition-delay: 0.55s; }

.visual-card-row:last-child { border-bottom: none; }

.vc-label { color: var(--text-muted); }
.vc-value { color: var(--text-white); font-weight: 600; font-family: var(--font-mono); font-size: 13px; }
.vc-green { color: var(--accent-teal); }

/* Services duo */
.services-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  border-color: rgba(74, 126, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ========== INDUSTRIES ========== */
.industries {
  padding: 120px 0;
}

.industries-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 48px;
}

.industries-left { flex-shrink: 0; }

.industries-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}

.industries-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  border-color: rgba(240, 165, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.industry-card--large {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(240, 165, 0, 0.05) 100%);
}

.industry-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.industry-card--large h3 {
  font-size: 28px;
}

.industry-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.industry-card--large p {
  font-size: 17px;
}

/* ========== CASE STUDY ========== */
.case-study {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.case-header {
  margin-bottom: 56px;
}

.case-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
}

.case-block {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}

.case-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.case-label--challenge {
  color: var(--accent-gold);
  background: rgba(240, 165, 0, 0.1);
}

.case-label--solution {
  color: var(--accent-blue-light);
  background: rgba(74, 126, 255, 0.1);
}

.case-label--results {
  color: var(--accent-teal);
  background: rgba(0, 201, 167, 0.1);
}

.case-block > p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 800px;
}

.case-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.case-work strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.case-work p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.case-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.case-metric {
  text-align: center;
  transition: transform 0.3s ease;
}

.case-metric:hover {
  transform: scale(1.05);
}

.case-metric-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-teal);
  display: block;
  margin-bottom: 8px;
}

.case-metric-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Case quote */
.case-quote {
  border-left: 3px solid var(--accent-magenta);
  padding: 32px 40px;
  background: var(--bg-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.case-quote blockquote {
  font-size: 19px;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.case-quote cite {
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
}

/* ========== ABOUT ========== */
.about {
  padding: 120px 0;
}

.about-intro {
  max-width: 680px;
  margin-bottom: 56px;
}

.about-lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* About timeline — horizontal */
.about-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 80px;
}

.at-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border-dark);
}

.at-item:last-child { border-right: none; }

.at-item--current {
  background: rgba(0, 201, 167, 0.04);
}

.at-year {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-teal);
  display: block;
  margin-bottom: 16px;
}

.at-content strong {
  display: block;
  font-size: 17px;
  color: var(--text-white);
  margin-bottom: 6px;
}

.at-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* CEO */
.ceo-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}

.ceo-img-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
  width: 100%;
  height: 340px;
}

.ceo-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 6px;
}

.ceo-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-magenta-light);
  display: block;
  margin-bottom: 18px;
}

.ceo-info p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ========== CONTACT ========== */
.contact {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.contact-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text-primary);
}

.contact-detail svg { flex-shrink: 0; }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
}

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

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(11, 17, 32, 0.6);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 0.3s;
  outline: none;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
}

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

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

/* ========== FOOTER ========== */
.footer {
  padding: 72px 0 36px;
  background: #060D1B;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
  color: #334155;
}

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

.footer-legal a {
  color: #334155;
  transition: color 0.3s;
}

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

/* ========== FOCUS STYLES ========== */
:focus-visible {
  outline: 2px solid var(--accent-blue-light);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline-offset: 3px;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(20, 84, 240, 0.15);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-stats {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--border-dark);
    padding-left: 0;
    padding-top: 32px;
    margin-top: 20px;
  }
  .hero-stat {
    border-bottom: none;
    border-right: 1px solid var(--border-dark);
    padding: 0 28px;
  }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat:last-child { border-right: none; }

  .service-featured { grid-template-columns: 1fr; }
  .service-featured-visual { border-left: none; border-top: 1px solid var(--border-dark); }
  .services-duo { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card--large { grid-row: auto; }
  .industries-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .case-work-grid { grid-template-columns: 1fr; }
  .case-results-grid { grid-template-columns: repeat(2, 1fr); }
  .about-timeline { grid-template-columns: 1fr; }
  .at-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .at-item:last-child { border-bottom: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .ceo-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-link--mobile-only { display: block; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-dark);
    padding: 24px;
    gap: 16px;
  }

  .hero-stats { flex-direction: column; }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
    padding: 20px 0;
  }
  .hero-stat:last-child { border-bottom: none; }

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

  .form-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

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