/* A&I Master Trades — brand tokens & shared styles */
:root {
  --navy: #002D72;
  --navy-deep: #001a45;
  --graphite: #5A5A5A;
  --orange: #F9C400;
  --orange-hover: #e0b000;
  --gold: #F9C400;
  --concrete: #D9D9D9;
  --concrete-soft: #EDEDED;
  --bg-soft: #F5F5F5;
  --white: #FFFFFF;
  --text: #1a1a1a;
  --muted: #5A5A5A;
  --border: rgba(0,0,0,.08);
  --shadow-sm: 0 2px 8px rgba(13,27,42,.06);
  --shadow-md: 0 8px 24px rgba(13,27,42,.10);
  --shadow-lg: 0 20px 50px rgba(13,27,42,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, .display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
  text-transform: none;
}
h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Accessibility utilities */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.skip-link:focus { top: 8px; }

.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  margin-top: 8px;
}
.section-title .accent { color: var(--orange); }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header.dark {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--white);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 32px;
}
.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--orange);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .desktop-only {
  display: inline-flex;
}
.nav-cta .mobile-only {
  display: none;
}
.nav-cta .btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  min-width: 120px;
}
.nav-cta .btn-icon svg {
  width: 16px;
  height: 16px;
}
.mobile-toggle { display: none; }
.quote-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease;
}
.quote-float svg {
  width: 18px;
  height: 18px;
}
.quote-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.site-header.dark .btn-outline {
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,0.06);
}
.site-header.dark .btn-outline:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255,255,255,0.12);
}

@media (max-width: 960px) {
  .nav {
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    padding: 14px 18px;
  }
  .nav-cta {
    display: flex;
    width: auto;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
    flex: 0 0 auto;
    min-width: 0;
  }
  .nav-cta .desktop-only {
    display: none;
  }
  .nav-cta .mobile-only {
    display: inline-flex;
  }
  .nav-cta .btn-icon {
    min-width: 100px;
  }
  .nav-cta .btn-primary,
  .nav-cta .btn-outline {
    width: auto;
  }
  .nav-cta .btn-primary.mobile-only {
    padding: 12px 18px;
    font-size: 12px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
}

@media (min-width: 961px) {
  .nav-cta .mobile-only {
    display: none !important;
  }
  .quote-float {
    display: none !important;
  }
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  display: block;
  height: 72px;
  width: auto;
}
.logo-footer img { height: 84px; }
@media (max-width: 600px) {
  .logo img { height: 48px; }
  .logo-footer img { height: 70px; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy-deep);
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(249,196,0,.4); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 18px 32px; font-size: 14px; }
.btn-block { width: 100%; }

.icon-arrow {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

/* ─── Sections ─── */
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head.left { text-align: left; }
.section-head p.lead {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
}
.section-head.left p.lead { margin-left: 0; }

/* ─── Footer ─── */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/bg-blueprint.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,26,69,.55) 0%, rgba(0,26,69,.9) 100%);
  z-index: 0;
}
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);}
.footer-grid h3 {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 14px; color: rgba(255,255,255,.7); }
.footer-grid ul a:hover { color: var(--orange); }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; padding-top: 32px; font-size: 13px; color: rgba(255,255,255,.5); gap: 24px; flex-wrap: wrap;}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.socials a:hover { background: var(--orange); border-color: var(--orange); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
  @media (max-width: 600px) {
    .footer-grid { 
      grid-template-columns: 1fr; 
      gap: 32px; 
      text-align: center; 
    }
    .footer-grid ul {
      align-items: center;
      justify-items: center;
    }
    .socials {
      justify-content: center;
      margin-bottom: 24px;
    }
    .footer-credentials {
      justify-content: center;
    }
    .logo-footer,
    .site-footer .logo.logo-footer {
      display: block;
      margin: 0 auto 16px;
      text-align: center;
    }
    .logo-footer img {
      margin: 0 auto 16px;
    }
    .footer-grid > div:first-child {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-chip {
  background: var(--white);
  border-radius: 6px;
  padding: 7px 12px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.trust-chip img {
  display: block;
  height: 28px;
  width: auto;
}
.form-trust {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.form-trust .row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.form-trust .row > .trust-chip { height: 38px; padding: 6px 10px; }
.form-trust .row > .trust-chip img { height: 24px; }
.form-trust .caption {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--muted);
}
/* Variant for dark-bg forms (Design 2 form is navy) */
.quote-card.dark .form-trust { border-top-color: rgba(255,255,255,.1); }
.quote-card.dark .form-trust .caption { color: rgba(255,255,255,.55); }

/* Footer credentials strip */
.footer-credentials {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 48px;
}
.footer-credentials .label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 8px;
}
@media (max-width: 600px) {
  .footer-credentials { justify-content: center; }
  .footer-credentials .label { width: 100%; text-align: center; margin-right: 0; margin-bottom: 4px; }
}
.trust-strip {
  background: var(--bg-soft);
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.trust-strip .row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }
@media (max-width: 768px) {
  .trust-strip .row { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Service cards ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: visible;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card .img-wrap {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.service-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .img-wrap img { transform: scale(1.05); }
.service-card .price-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}
.service-card .price-pill strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}
/* Custom icon variant — icon image is self-contained orange circle, so strip the wrapper bg */
.service-card .icon-badge.icon-custom {
  background: transparent;
  border: none;
  box-shadow: none;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 16px;
  padding: 0;
}
@media (max-width: 600px) {
  .service-card .icon-badge.icon-custom {
    width: 96px;
    height: 96px;
    margin: -48px 0 0 14px;
  }
}
.service-card .icon-badge.icon-custom img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.service-card .icon-badge {
  position: relative;
  margin: -28px 0 0 24px;
  align-self: flex-start;
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255,106,0,.35);
  border: 4px solid var(--white);
  z-index: 2;
}
/* Custom icon variant — icon image is self-contained orange circle, so strip wrapper bg */
.service-card .icon-badge.icon-custom {
  background: transparent;
  border: none;
  box-shadow: none;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 20px;
  padding: 0;
}
.service-card .icon-badge.icon-custom img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.service-card .body {
  padding: 16px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
}
.service-card .learn-more {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─── Process steps ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,255,255,.2);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 4px solid var(--navy);
}
.step .icon-wrap {
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background: var(--orange);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(249,196,0,.25);
}
.step .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.step h3 {
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.step p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
}

/* ─── Projects gallery ─── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.project-card { position: relative; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.06); } .project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; } .project-card:hover img { transform: scale(1.06); } .project-card .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,45,114,.85) 100%); display: flex; align-items: flex-end; padding: 24px; color: var(--white); opacity: 1; text-align: left; } .project-card .overlay > div { transform: translateY(10px); transition: transform 0.3s ease; } .project-card:hover .overlay > div { transform: translateY(0); } .project-card .overlay h4 { font-size: 18px; margin-bottom: 6px; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.4); margin-top:0; } .project-card .overlay .meta { font-size: 13px; color: rgba(255,255,255,0.9); font-weight: 500; }
@media (max-width: 900px) { .projects-grid { grid-template-columns: 1fr 1fr; } }

/* ─── Why us ─── */
.why-grid {
  display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 0 12px;
  }
  .why-item {
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(0, 45, 114, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 45, 114, 0.1);
  }
  .why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    border-radius: 50%;
    overflow: hidden;
  }
  .why-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }
  .why-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    color: var(--navy);
  }
  .why-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
  }
  @media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
  @media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; gap: 16px; } }
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.testimonials-track > .testimonial {
  margin: 0;
}
.testimonial {
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(221,221,221,.8);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(13,27,42,.08);
}
.testimonial .stars { color: var(--orange); font-size: 16px; letter-spacing: 4px; margin-bottom: 18px; }
.testimonial p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(36,45,60,.12);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
}
.testimonial .role {
  font-size: 12px;
  color: var(--muted);
}
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}
.testimonials-carousel .testimonials-track {
  display: flex;
  gap: 24px;
  grid-template-columns: none;
  overflow: visible;
  transition: transform .45s cubic-bezier(.23,1,.32,1);
  will-change: transform;
}
.testimonials-carousel .testimonials-track > .testimonial {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  min-width: 0;
}
.testimonials-carousel .testimonials-prev,
.testimonials-carousel .testimonials-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(13,27,42,.12);
  background: rgba(255,255,255,.95);
  color: var(--navy);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(13,27,42,.12);
  z-index: 2;
}
.testimonials-carousel .testimonials-prev { left: 10px; }
.testimonials-carousel .testimonials-next { right: 10px; }
.testimonials-carousel .testimonials-dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 32px;
}
.testimonials-carousel .testimonials-dots span,
.testimonials-carousel .testimonials-dots button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.testimonials-carousel .testimonials-dots span::before,
.testimonials-carousel .testimonials-dots button::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13,27,42,.18);
  transform: translate(-50%, -50%);
  transition: background .2s ease, width .2s ease, border-radius .2s ease;
}
.testimonials-carousel .testimonials-dots span.active::before,
.testimonials-carousel .testimonials-dots button.active::before {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}
@media (min-width: 901px) {
  .testimonials-carousel[data-mobile-carousel="true"] {
    overflow: visible;
  }
  .testimonials-carousel[data-mobile-carousel="true"] .testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: none !important;
    will-change: auto;
  }
  .testimonials-carousel[data-mobile-carousel="true"] .testimonials-track > .testimonial {
    flex: initial;
    max-width: none;
  }
  .testimonials-carousel[data-mobile-carousel="true"] .testimonials-prev,
  .testimonials-carousel[data-mobile-carousel="true"] .testimonials-next,
  .testimonials-carousel[data-mobile-carousel="true"] .testimonials-dots {
    display: none;
  }
}
@media (max-width: 1100px) {
  .testimonials-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonials-carousel .testimonials-track > .testimonial {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .testimonials-carousel[data-mobile-carousel="true"] .testimonials-track > .testimonial {
    flex: initial;
    max-width: none;
  }
}
@media (max-width: 900px) {
  .testimonials-track {
    grid-template-columns: 1fr;
  }
  .testimonials-carousel .testimonials-track {
    flex-direction: row;
    gap: 16px;
  }
  .testimonials-carousel .testimonials-track > .testimonial {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .testimonials-carousel .testimonials-prev,
  .testimonials-carousel .testimonials-next {
    display: none;
  }
  .testimonials-carousel .testimonials-dots {
    margin-top: 22px;
  }
}

/* ─── CTA banner ─── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/bg-blueprint.svg') center/cover;
  opacity: .18;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,45,114,.95) 0%, rgba(0,45,114,.6) 100%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-inner h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; margin-bottom: 24px; }
.cta-inner h2 .accent { color: var(--orange); }
.cta-checks { display: grid; gap: 12px; margin-bottom: 0; }
.cta-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  list-style: none;
}
.cta-checks svg { color: var(--orange); flex-shrink: 0; }
.cta-actions { display: grid; gap: 12px; }
.cta-actions .btn { width: 100%; }
.cta-actions .contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.cta-actions .contact-row svg { display: none; }
@media (max-width: 900px) { .cta-inner { grid-template-columns: 1fr; } }

/* Helpers */
.text-orange { color: var(--orange); }

/* ─── Hero trust badges (above the form) ─── */
.hero-trust {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hero-trust-chip {
  background: var(--white);
  border-radius: 6px;
  padding: 8px 12px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.6);
}
.hero-trust-chip img {
  display: block;
  height: 30px;
  width: auto;
}
@media (max-width: 600px) {
  .hero-trust { gap: 8px; }
  .hero-trust-chip { height: 42px; padding: 6px 10px; }
  .hero-trust-chip img { height: 26px; }
}

/* ─── Service detail expand panel ─── */
.service-card.is-active {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card.is-active .icon-badge {
  transform: scale(1.06);
}

.service-detail {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition:
    max-height .5s cubic-bezier(.2,0,.2,1),
    opacity .35s ease;
}
.service-detail.is-open {
  max-height: 1600px;
  opacity: 1;
}
.service-detail .sd-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: all .2s;
}
.service-detail .sd-close:hover { background: var(--orange); color: var(--white); }

.service-detail .sd-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
}
.service-detail .sd-media {
  position: relative;
  overflow: hidden;
}
.service-detail .sd-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.service-detail .sd-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
}
.service-detail .sd-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail .sd-title {
  font-size: clamp(24px, 2.4vw, 32px);
  margin: 8px 0 14px;
}
.service-detail .sd-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-detail .sd-section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 14px;
}
.service-detail .sd-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  align-items: start;
}
.service-detail .sd-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
}
.service-detail .sd-checks svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}
.service-detail .sd-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}
.service-detail .sd-meta-item {
  background: var(--bg-soft);
  padding: 16px 18px;
}
.service-detail .sd-meta-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.service-detail .sd-meta-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.service-detail .sd-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .service-detail .sd-grid { grid-template-columns: 1fr; }
  .service-detail .sd-media img { min-height: 240px; height: 240px; }
  .service-detail .sd-body { padding: 28px 24px; }
  .service-detail .sd-checks { grid-template-columns: 1fr; gap: 10px; }
  .service-detail .sd-meta { grid-template-columns: 1fr; }
  .service-detail .sd-actions .btn { width: 100%; }
}

/* ─── Before / After comparison slider ─── */
#before-after {
  padding: 104px 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(249,196,0,.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}
#before-after .section-head {
  text-align: left;
  margin: 0 auto 28px;
  max-width: 1100px;
}
#before-after .container > * {
  width: 100%;
}

.ba-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 14px;
}
.ba-tab {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border: 0;
  border-bottom: 2px solid rgba(0,45,114,.14);
  border-radius: 0;
  background: transparent;
  padding: 0 4px 10px;
}
.ba-tab.is-active {
  color: var(--navy-deep);
  border-bottom-color: var(--orange);
}

.ba-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ba-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(13, 27, 42, .14);
  border: 1px solid rgba(0, 45, 114, .12);
  background: #0b1a36;
  user-select: none;
  --pos: 50%;
}
.ba-frame.is-active { display: block; }

@media (min-width: 980px) {
  .ba-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .ba-tab { pointer-events: none; }
}

@media (max-width: 979px) {
  .ba-tab {
    pointer-events: auto;
    cursor: pointer;
  }
  .ba-frame { display: none; }
  .ba-frame.is-active { display: block; }
}

@media (max-width: 900px) {
  .ba-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

.ba-frame.is-dragging { cursor: ew-resize; }
.ba-frame.is-dragging * { pointer-events: none; }

.ba-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  -webkit-clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-before-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 48px;
  height: 100%;
  z-index: 3;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,.14);
}
.ba-handle .knob {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 6px 20px rgba(0,0,0,.28), 0 0 0 4px rgba(249,196,0,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ba-handle:hover .knob,
.ba-handle:focus-visible .knob {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,.34), 0 0 0 4px rgba(249,196,0,.34);
  outline: none;
}
.ba-handle .knob svg { color: var(--white); }

.ba-label {
  position: absolute;
  top: 14px;
  z-index: 4;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 7px 12px;
  border-radius: 7px;
  pointer-events: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: opacity .2s ease, transform .2s ease;
  transform: none;
}
.ba-label-before {
  left: 14px;
  background: rgba(0,0,0,.88);
  border: 1px solid rgba(255,255,255,.12);
}
.ba-label-after {
  left: auto;
  right: 14px;
  background: var(--orange);
  color: var(--navy-deep);
  border: 1px solid rgba(255,255,255,.12);
}

.ba-review-slider {
  grid-column: 1 / -1;
  margin: 32px auto 0;
  max-width: 680px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}
.ba-review-track {
  display: flex;
  transition: transform .45s cubic-bezier(.23,1,.32,1);
  width: 100%;
  will-change: transform;
}
.ba-review-card {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  margin: 0;
  background: #ffffff;
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(36, 45, 60, 0.08);
  text-align: left;
}
.ba-review-card.is-active {
  /* retained for accessibility state marking */
}
.ba-review-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.ba-google-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(36, 45, 60, 0.12);
  color: #4285F4;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
}
.ba-review-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.ba-review-stars {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
}
.ba-review-card p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #2c2f36;
}
.ba-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #6b6b6b;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.ba-review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.ba-review-controls button,
.ba-review-dot {
  border: 1px solid rgba(36, 45, 60, 0.12);
  background: #fff;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  transition: all .2s ease;
}
.ba-review-prev,
.ba-review-next {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ba-review-prev:hover,
.ba-review-next:hover,
.ba-review-dot:hover {
  background: rgba(255,255,255,.85);
}
.ba-review-dots {
  display: flex;
  gap: 4px;
}
.ba-review-dot {
  width: 28px;
  height: 28px;
  padding: 0;
  position: relative;
  background: transparent;
  border-color: transparent;
}
.ba-review-dot::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(36, 45, 60, 0.18);
  transition: background .2s ease, border-color .2s ease;
}
.ba-review-dot.is-active::before {
  background: var(--orange);
  border-color: var(--orange);
}
.ba-review-dot:hover::before { background: rgba(255,255,255,.85); }

/* CTA banner below the slider — drives traffic to the modal */
.ba-cta {
  margin: 40px auto 0;
  max-width: 1100px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.ba-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--orange);
}
.ba-cta-copy { flex: 1; min-width: 0; }
.ba-cta-copy h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--white);
  margin-bottom: 8px;
}
.ba-cta-copy p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  margin: 0;
}
.ba-cta .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 700px) {
  #before-after { padding: 72px 0; }
  #before-after .section-head {
    text-align: center;
    padding: 0;
    width: 100%;
    max-width: none;
  }
  #before-after .section-head .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .ba-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 20px;
    padding: 0;
  }
  .ba-tab {
    text-align: center;
    padding: 12px 8px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .ba-stage {
    width: 100%;
    padding: 0;
  }
  .ba-frame {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .ba-label { font-size: 10px; padding: 6px 10px; letter-spacing: 0.14em; }
  .ba-handle .knob { width: 42px; height: 42px; }
  .ba-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 26px 24px;
    gap: 20px;
  }
  .ba-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* ─── Scroll reveal ─── *
 * Restrained — only the main content cards and section heads animate.
 * Hero, stat bar, and footer stay static so the page doesn't feel busy.
 */
.section-head,
.services-grid > .service-card,
.process-steps > .step,
.projects-grid > .project-card,
.why-grid > .why-item,
.testimonials-track > .testimonial {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .8s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0s),
    transform .8s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.section-head.is-in,
.services-grid.is-in > .service-card,
.process-steps.is-in > .step,
.projects-grid.is-in > .project-card,
.why-grid.is-in > .why-item,
.testimonials-track.is-in > .testimonial {
  opacity: 1;
  transform: none;
}

/* Subtle scale on cards */
.services-grid > .service-card,
.projects-grid > .project-card,
.why-grid > .why-item {
  transform: translateY(28px) scale(.97);
}
.services-grid.is-in > .service-card,
.projects-grid.is-in > .project-card,
.why-grid.is-in > .why-item {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .section-head,
  .services-grid > .service-card,
  .process-steps > .step,
  .projects-grid > .project-card,
  .why-grid > .why-item,
  .testimonials-track > .testimonial {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── A&I layout: hero, trust bar, about, icon services ─── */
.hero-ai {
  position: relative;
  min-height: 78vh;
  color: var(--navy-deep);
  display: flex;
  flex-direction: column;
}
.hero-ai-bg {
  position: absolute;
  inset: 0;
}
.hero-ai-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 32px 48px;
  width: 100%;
}
.hero-ai h1 {
  font-size: clamp(36px, 5vw, 58px);
  max-width: 640px;
  margin-bottom: 20px;
  color: var(--navy-deep);
}
.hero-ai .lead {
  font-size: 18px;
  max-width: 520px;
  color: rgba(0,26,69,.82);
  margin-bottom: 32px;
}
.hero-ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 640px) {
  .hero-ai-inner { padding: 72px 20px 40px; }
  .hero-ai-actions { flex-direction: column; }
  .hero-ai-actions .btn { width: 100%; justify-content: center; }
}

.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--navy);
  color: var(--white);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 88px 0;
}
.about-split .media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: clamp(320px, 42vw, 520px);
  box-shadow: var(--shadow-lg);
}
.about-split .media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}
.about-split .checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  gap: 12px;
}
.about-split .checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--graphite);
}
.about-split .checks svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; }
  .about-split .media { min-height: clamp(260px, 65vw, 400px); }
}

.services-grid--icons {
  grid-template-columns: repeat(3, 1fr);
}
.services-grid--icons .service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.services-grid--icons .service-card .icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--orange);
}
.services-grid--icons .service-card h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.services-grid--icons .service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .services-grid--icons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .services-grid--icons { grid-template-columns: 1fr; }
}

.logo img { height: 64px; width: auto; }
.logo-footer img {
  width: clamp(150px, 22vw, 220px);
  height: auto;
  filter: none;
  opacity: 1;
}

/* ─── Stratify IQ Agency Credit ─────────────────── */
.siq-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(108,99,255,.13) 0%, rgba(62,207,207,.07) 100%);
  border: 1px solid rgba(108,99,255,.2);
  border-radius: 100px;
  padding: 5px 12px 5px 7px;
  text-decoration: none;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.siq-credit:hover {
  background: linear-gradient(135deg, rgba(108,99,255,.22) 0%, rgba(62,207,207,.15) 100%);
  border-color: rgba(108,99,255,.4);
  color: rgba(255,255,255,.8);
  transform: translateY(-1px);
}
.siq-credit-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #6C63FF 0%, #3ECFCF 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.siq-credit strong { color: #a89fff; font-weight: 700; }

