/* ============================================
   ONSITE AV & STAGING — styles.css
   ============================================ */

:root {
  --navy:       #0D1F35;
  --navy-mid:   #1A3355;
  --blue:       #1B5DBF;
  --blue-hover: #1650AD;
  --blue-pale:  #EBF2FF;
  --blue-light: #5B9CF6;
  --white:      #FFFFFF;
  --off-white:  #F4F6F9;
  --border:     #E1E7EF;
  --ink:        #1A2332;
  --body:       #475569;
  --muted:      #8896A7;
  --green:      #059669;
  --green-pale: #D1FAE5;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.18s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; font-weight: 700; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.section-xs  { padding: 40px 0; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.eyebrow-white { color: rgba(255,255,255,0.5); }
.eyebrow-white::before { background: rgba(255,255,255,0.3); }

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}
.section-title.on-dark { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--body);
  line-height: 1.75;
  max-width: 600px;
  margin-top: 16px;
}
.section-sub.on-dark { color: rgba(255,255,255,0.7); }

.section-header         { margin-bottom: 56px; }
.section-header.center  { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .eyebrow::before { display: none; }

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.announcement-bar strong { color: var(--white); font-weight: 700; }
.announcement-bar a {
  color: var(--white);
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  transition: background var(--transition);
}
.announcement-bar a:hover { background: rgba(255,255,255,0.1); }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { flex-shrink: 0; line-height: 1.2; }
.nav-logo-top {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: block;
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--ink); background: var(--off-white); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 200;
  padding: 80px 32px 48px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}
.mobile-nav-link {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-sm  { font-size: 13px; padding: 9px 18px; }
.btn-md  { font-size: 14px; padding: 12px 24px; }
.btn-lg  { font-size: 15px; padding: 15px 32px; }
.btn-xl  { font-size: 16px; padding: 18px 44px; }

.btn-primary   { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }

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

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }

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

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  padding: 72px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.05;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--blue-light); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.hero-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: white;
  font-weight: 800;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero form card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 20px 64px rgba(0,0,0,0.35);
}
.hero-form-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero-form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ---- FORMS ---- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,93,191,0.12);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-btn {
  width: 100%;
  margin-top: 8px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.trust-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.trust-divider {
  width: 1px; height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-bullets li {
  font-size: 13px;
  color: var(--body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-bullets li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 8px; }

/* ---- CASE STUDY TEASER ---- */
.cs-band {
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.cs-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.05;
  pointer-events: none;
}
.cs-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.cs-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cs-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 28px;
}
.cs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cs-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.cs-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.cs-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
}
.cs-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cs-img-placeholder {
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  text-align: center;
  padding: 32px;
  line-height: 1.6;
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(27,93,191,0.14);
}
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.pricing-name {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.pricing-range {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.pricing-range em {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  font-style: normal;
}
.pricing-for {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-list li {
  font-size: 14px;
  color: var(--body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pricing-check { color: var(--green); font-weight: 800; flex-shrink: 0; }
.pricing-note {
  font-size: 12px;
  color: var(--muted);
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 12px 14px;
  line-height: 1.6;
  margin-top: 16px;
}

/* ---- WHO WE WORK WITH ---- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.client-card:hover { border-color: var(--blue); background: var(--blue-pale); }
.client-emoji { font-size: 28px; margin-bottom: 10px; }
.client-label { font-size: 13px; font-weight: 700; color: var(--ink); }

/* ---- TESTIMONIAL ---- */
.testimonial-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 40px;
  font-size: 96px;
  color: var(--blue);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 20px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.testimonial-pending {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.testimonial-author-name { font-size: 15px; font-weight: 700; color: var(--white); }
.testimonial-author-role { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--navy);
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.05;
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.cta-band-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-micro {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ---- FOOTER ---- */
.footer {
  background: #07111E;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-top {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  display: block;
}
.footer-logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-contact a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.28); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.page-hero.dark { background: var(--navy); border-bottom: none; }
.page-hero-label { margin-bottom: 16px; }
.page-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
.page-hero.dark .page-hero-title { color: var(--white); }
.page-hero-sub {
  font-size: 17px;
  color: var(--body);
  line-height: 1.75;
  max-width: 620px;
  margin-top: 16px;
}
.page-hero.dark .page-hero-sub { color: rgba(255,255,255,0.7); }

/* ---- SERVICE DETAIL (services page) ---- */
.svc-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.svc-detail-grid.flip { direction: rtl; }
.svc-detail-grid.flip > * { direction: ltr; }
.svc-big-num {
  font-size: 80px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.1;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -20px;
}
.svc-detail-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.svc-detail-desc {
  font-size: 16px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 24px;
}
.svc-detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.svc-detail-list li {
  font-size: 15px;
  color: var(--body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.svc-detail-list li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.svc-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--off-white);
  border: 1.5px solid var(--border);
}
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ---- CASE STUDY FULL PAGE ---- */
.cs-hero-dark {
  background: var(--navy);
  padding: 72px 0;
}
.cs-meta-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
  margin-top: 36px;
}
.cs-meta-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.cs-meta-value { font-size: 15px; font-weight: 700; color: var(--white); }
.cs-body-section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.cs-body-section:last-child { border-bottom: none; }
.cs-body-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; }
.cs-body-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}
.cs-body-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}
.cs-body-text {
  font-size: 16px;
  color: var(--body);
  line-height: 1.85;
  max-width: 680px;
}
.cs-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.cs-scope-item {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.cs-scope-item::before { content: '✓'; color: var(--green); font-weight: 800; }
.cs-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.cs-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.cs-photo img { width: 100%; height: 100%; object-fit: cover; }
.cs-photo-placeholder { font-size: 13px; color: var(--muted); text-align: center; padding: 24px; line-height: 1.6; }

/* ---- ABOUT PAGE ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.diff-card:hover { border-color: var(--blue); }
.diff-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 10px;
}
.diff-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.diff-desc  { font-size: 14px; color: var(--body); line-height: 1.65; }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 16px; font-weight: 700; color: var(--ink); }
.contact-info-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.mt-8  { margin-top:  8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0 !important; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 14px;
}
.tag-blue { background: var(--blue-pale); color: var(--blue); }
.tag-green { background: var(--green-pale); color: #065F46; }
.tag-white { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }

.divider { border: none; border-top: 1px solid var(--border); }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ---- MOBILE ---- */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .section   { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  .nav-links { display: none; }
  .nav-actions .btn-outline-dark { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 48px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { max-width: none; }

  .trust-bar-inner { justify-content: center; gap: 16px; }
  .trust-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .cs-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .cs-stats { grid-template-columns: repeat(3, 1fr); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  .svc-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-detail-grid.flip { direction: ltr; }

  .cs-meta-bar { grid-template-columns: repeat(2, 1fr); }
  .cs-body-grid { grid-template-columns: 1fr; gap: 16px; }
  .cs-scope-grid { grid-template-columns: 1fr; }
  .cs-photo-grid { grid-template-columns: 1fr; }

  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .diff-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .testimonial-card { padding: 36px 32px; }
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .hero-form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cs-stats { grid-template-columns: 1fr; gap: 12px; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-actions { flex-direction: column; align-items: center; }
}
