/* ============================================================
     WORDPRESS THEME OVERRIDE — whitelist approach.
     Hides EVERY direct child of <body> except our own wrapper,
     so no theme header/footer/post content can show through,
     regardless of the theme's naming or markup.
  ============================================================ */
  #wpadminbar { display: none !important; }
  html.wp-toolbar { margin-top: 0 !important; }

  body { margin: 0 !important; padding: 0 !important; overflow-x: hidden; }

  body > *:not(#sdc-site-root) {
    display: none !important;
  }

  #sdc-site-root {
    display: block !important;
    position: relative;
    width: 100%;
  }
  /* ============================================================
     END WORDPRESS THEME OVERRIDE
  ============================================================ */

  :root {
    --ink: #0f172a;
    --muted: #5b6577;
    --line: #e6e9ef;
    --soft: #f7f8fb;
    --red: #e51c23;
    --orange: #f97316;
    --blue: #00a8e1;
    --green: #56b947;
    --gold: #f4b000;
    --indigo: #3433c9;
    --indigo-deep: #211f8a;
    --indigo-darker: #15134f;
    --glass-bg: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.14);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  html, body {
    background: var(--soft);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
  }

  h1, h2, h3, .syne { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }

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

  button, input, textarea, select { font: inherit; }

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

  .container {
    width: min(1280px, 92%);
    margin: 0 auto;
  }

  ::selection { background: var(--orange); color: #fff; }

  /* ===== Section Label System ===== */
  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--red);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 16px;
  }

  .section-kicker .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(229,28,35,0.14);
  }

  .section-head {
    max-width: 640px;
    margin-bottom: 56px;
  }

  .section-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .section-head p {
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.65;
  }

  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

  /* Scroll reveal utility */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
  }
  .reveal.show { opacity: 1; transform: translateY(0); }
  .reveal-delay-1.show { transition-delay: 0.08s; }
  .reveal-delay-2.show { transition-delay: 0.16s; }
  .reveal-delay-3.show { transition-delay: 0.24s; }
  .reveal-delay-4.show { transition-delay: 0.32s; }

  /* ===== Loader ===== */
  #page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--indigo-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  #page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

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

  .loader-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--red), var(--orange) 45%, var(--blue) 80%, var(--green));
    margin: 0 auto 18px;
    animation: loaderSpin 1.1s cubic-bezier(.6,0,.4,1) infinite;
  }

  .loader-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }

  @keyframes loaderSpin {
    0%, 100% { transform: rotate(0deg) scale(1); border-radius: 16px; }
    50% { transform: rotate(180deg) scale(0.85); border-radius: 50%; }
  }

  /* ===== NAV ===== */
  nav.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 22px 0;
    transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  }

  nav.site-nav.scrolled {
    background: rgba(15, 19, 79, 0.78);
    backdrop-filter: blur(18px);
    padding: 14px 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  }

  .site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo-wrap {
    background: rgba(255,255,255,0.97);
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
  }

  .nav-logo-wrap img { height: 34px; width: auto; display: block; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
  }

  .nav-links a:not(.nav-cta-btn) {
    color: rgba(255,255,255,0.82);
    font-weight: 700;
    font-size: 14.5px;
    position: relative;
    padding: 4px 0;
  }

  .nav-links a:not(.nav-cta-btn)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.25s ease;
  }

  .nav-links a:not(.nav-cta-btn):hover::after { width: 100%; }
  .nav-links a:not(.nav-cta-btn):hover { color: #fff; }

  .nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 999px;
    padding: 11px 22px;
    background: transparent;
    color: #fff;
    font-weight: 800;
    font-size: 13.5px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .nav-cta-btn:hover { background: #fff; color: var(--indigo-deep); }

  .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.14);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .menu-toggle svg { width: 18px; height: 18px; }

  @media (max-width: 920px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(160deg, #3a39d6 0%, #3433c9 50%, #2724a8 100%);
    color: #fff;
  }

  #webgl-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  #webgl-stage canvas { display: block; }

  .hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 110px 0 40px;
    position: relative;
    z-index: 3;
    pointer-events: none;
  }

  .hero-main .container { pointer-events: none; }
  .hero-main a, .hero-main button { pointer-events: auto; }

  .text-col { max-width: 560px; }

  .eyebrow-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    opacity: 0;
    animation: rise 0.9s cubic-bezier(.16,1,.3,1) 0.3s forwards;
  }

  h1.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.12;
    letter-spacing: -1px;
    color: #fff;
  }

  h1.hero-title .line { display: block; overflow: hidden; }

  h1.hero-title .line span {
    display: block;
    opacity: 0;
    transform: translateY(115%);
    animation: riseText 1.05s cubic-bezier(.16,1,.3,1) forwards;
  }

  h1.hero-title .line:nth-child(1) span { animation-delay: 0.5s; }
  h1.hero-title .line:nth-child(2) span { animation-delay: 0.62s; }
  h1.hero-title .line:nth-child(3) span { animation-delay: 0.74s; }

  .hero-sub {
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.68);
    max-width: 430px;
    margin: 22px 0 30px;
    opacity: 0;
    animation: rise 0.9s cubic-bezier(.16,1,.3,1) 1s forwards;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 0.9s cubic-bezier(.16,1,.3,1) 1.15s forwards;
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 999px;
    padding: 16px 30px;
    background: transparent;
    color: #fff;
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
  }

  .btn-outline:hover { background: #fff; color: var(--indigo-deep); box-shadow: 0 0 0 8px rgba(255,255,255,0.08); }

  .btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 16px 30px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s ease;
    white-space: nowrap;
  }

  .btn-glow:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(249,115,22,0.5), 0 0 0 6px rgba(249,115,22,0.16); }

  .info-card {
    position: relative;
    z-index: 4;
    background: #ffffff;
    padding: 26px min(7%, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    animation: riseCard 0.9s cubic-bezier(.16,1,.3,1) 1.4s forwards;
  }

  .info-card p {
    color: var(--ink);
    font-weight: 600;
    font-size: 15px;
    max-width: 560px;
  }

  .info-card .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 15px 30px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.25s ease;
  }

  .info-card .btn-cta:hover { transform: translateY(-2px); }

  @keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes riseText { to { opacity: 1; transform: translateY(0); } }
  @keyframes riseCard { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  @media (max-width: 600px) {
    h1.hero-title { letter-spacing: -0.6px; font-size: 30px; }
    .hero-sub { font-size: 14px; }
    .btn-outline, .btn-glow { padding: 13px 22px; font-size: 12px; }
    .info-card { padding: 20px; flex-direction: column; align-items: flex-start; }
    .info-card .btn-cta { width: 100%; justify-content: center; }
  }

/* ===== Multi-page additions ===== */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.honeypot { display: none !important; }

.subpage-main { background: var(--soft); }

.page-hero {
  padding: 170px 0 92px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 16%, rgba(0,168,225,0.28), transparent 30%),
    linear-gradient(145deg, var(--indigo-darker), var(--indigo-deep) 58%, var(--indigo));
}

.page-hero__inner { max-width: 860px; }
.page-hero .section-kicker { color: var(--orange); }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1px;
  font-weight: 800;
  margin-bottom: 18px;
}
.page-hero p {
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  max-width: 700px;
}

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

.service-card--detail {
  min-height: auto;
}

.service-card[data-url] {
  cursor: pointer;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 18px 0 22px;
  position: relative;
  z-index: 1;
}

.service-detail-grid h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.detail-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.detail-layout .about-card {
  min-height: auto;
}

.industry-detail-grid,
.work-grid,
.faq-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-detail-grid .bento-card {
  min-height: 240px;
}

.industry-detail-grid a.bento-card,
a.bento-card {
  color: inherit;
  text-decoration: none;
}

.industry-detail-grid .bento-card p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

.industry-for {
  font-weight: 800;
  color: var(--ink) !important;
}

.industry-detail-feature {
  margin-bottom: 36px;
  min-height: auto;
}

.industry-detail-feature .industry-for {
  color: #fff !important;
}

.work-grid .portfolio-card {
  width: auto;
}

/* ===== Markets band ===== */
.markets-section {
  padding: 90px 0;
  background: #fff;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.market-card {
  position: relative;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
}

.market-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15,23,42,0.09);
}

.market-flagline {
  display: block;
  width: 44px;
  height: 5px;
  border-radius: 99px;
  background: var(--accent, var(--orange));
}

.market-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.market-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.market-meta {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.market-meta dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--muted);
}

.market-meta dd {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* ===== Service detail card =====
   The base .services-grid rule (3 columns) appears later in this file than
   .services-grid--details, and both are single-class selectors, so the base
   rule was winning and squeezing the detail card into a third of the width.
   Two classes here raises specificity so this wins regardless of order or
   media query. */
.services-grid.services-grid--details {
  grid-template-columns: 1fr;
}

.service-card.service-card--detail {
  min-height: auto;
  padding: 34px 36px;
}

.service-card--detail .service-detail-grid {
  gap: 28px;
}

.service-card--detail .modal-list li {
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .service-card--detail .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .service-card.service-card--detail { padding: 26px 24px; }
}

/* ===== Long-form content ===== */
.longform-section {
  padding: 90px 0;
  background: var(--soft);
}

.longform-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.longform-toc {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 20px;
}

.longform-toc__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.longform-toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  gap: 9px;
}

.longform-toc li {
  counter-increment: toc;
  display: flex;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.45;
}

.longform-toc li::before {
  content: counter(toc, decimal-leading-zero);
  flex: none;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  padding-top: 2px;
}

.longform-toc a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.longform-toc a:hover {
  color: var(--indigo);
}

.longform-body {
  display: grid;
  gap: 28px;
}

.longform-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 34px;
  scroll-margin-top: 110px;
}

.longform-block h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
}

.longform-block p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
}

.longform-block p:last-child {
  margin-bottom: 0;
}

.longform-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.longform-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.longform-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--orange);
}

@media (max-width: 980px) {
  .longform-layout { grid-template-columns: 1fr; gap: 28px; }
  .longform-toc { position: static; }
  .longform-toc ol { grid-template-columns: 1fr 1fr; display: grid; }
}

@media (max-width: 620px) {
  .longform-section { padding: 64px 0; }
  .longform-block { padding: 26px 22px; }
  .longform-block h3 { font-size: 20px; }
  .longform-toc ol { grid-template-columns: 1fr; }
}

/* ===== Filter chips ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

/* Nav now carries up to 8 items - tighten spacing so it stays on one line. */
@media (min-width: 1025px) and (max-width: 1320px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 14px; }
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.25s ease;
}

.filter-chip:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.filter-chip.is-active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.filter-chip__count {
  font-size: 11px;
  opacity: 0.7;
}

/* ===== Case studies ===== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15,23,42,0.1);
}

.case-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft);
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  flex: 1;
}

.case-card__body h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
}

.case-card__client {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent, var(--orange));
}

.case-card__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.case-card .service-link {
  margin-top: auto;
  padding-top: 8px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 12px;
  margin: 6px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.case-metrics strong {
  display: block;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent, var(--ink));
  line-height: 1.1;
}

.case-metrics span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

.case-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 26px;
}

.case-facts dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--muted);
}

.case-facts dd {
  margin: 3px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.case-hero-image {
  margin: 34px 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.stats-grid--metrics {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

/* ===== Shared bits ===== */
.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.pagination-row {
  margin-top: 40px;
}

.pagination-row .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pagination-row .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.pagination-row .page-numbers.current,
.pagination-row .page-numbers:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.empty-state {
  max-width: 620px;
  margin: 0 auto;
  padding: 56px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.empty-state h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.empty-state p {
  color: var(--muted);
  margin-bottom: 24px;
}

.page-hero__markets {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.75;
}

.faq-answer {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .case-grid { grid-template-columns: 1fr; }
  .markets-section { padding: 64px 0; }
  .case-facts { gap: 14px 24px; }
}

.blog-section {
  padding: 90px 0;
  background: var(--soft);
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(15,23,42,0.1);
}

.blog-card__media {
  height: 210px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  color: #fff;
  font-size: 62px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 24px;
}

.blog-card h2 {
  font-size: 20px;
  line-height: 1.25;
  margin: 8px 0 10px;
}

.blog-card p {
  color: var(--muted);
  font-size: 14.5px;
}

.content-body {
  max-width: 820px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 42px;
}

.content-body p,
.content-body li {
  color: #344054;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.content-body h2,
.content-body h3 {
  margin: 30px 0 12px;
  line-height: 1.2;
}

.article-featured {
  margin-bottom: 28px;
  border-radius: 18px;
  overflow: hidden;
}

.form-notice {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
}

.form-notice--success {
  background: rgba(86,185,71,0.14);
  color: #86efac;
  border: 1px solid rgba(86,185,71,0.35);
}

.form-notice--error {
  background: rgba(229,28,35,0.16);
  color: #fecaca;
  border: 1px solid rgba(229,28,35,0.35);
}

.writer-portal {
  display: grid;
  gap: 24px;
}

.writer-portal .form-notice--success {
  color: #166534;
}

.writer-portal .form-notice--error {
  color: #991b1b;
}

.writer-admin-code,
.writer-toolbar,
.writer-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.writer-admin-code {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.writer-admin-code code {
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--soft);
  color: var(--indigo);
  font-weight: 800;
}

.writer-toolbar {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.writer-toolbar span,
.writer-post-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.writer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.writer-grid--dashboard {
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
}

.writer-panel {
  padding: 28px;
}

.writer-panel--wide {
  display: grid;
  gap: 16px;
}

.writer-panel h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.writer-panel label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.writer-panel input,
.writer-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.writer-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.writer-panel input:focus,
.writer-panel textarea:focus {
  border-color: rgba(249,115,22,0.55);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.12);
}

.writer-post-list {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
}

.writer-post-list a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.pagination-wrap {
  margin-top: 42px;
}

.pagination-wrap .nav-links,
.page-numbers {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.page-numbers {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.page-numbers.current {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

@media (max-width: 920px) {
  .detail-layout,
  .writer-grid,
  .writer-grid--dashboard,
  .service-detail-grid,
  .industry-detail-grid,
  .work-grid,
  .faq-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .page-hero { padding: 135px 0 70px; }
  .detail-layout,
  .writer-grid,
  .writer-grid--dashboard,
  .service-detail-grid,
  .industry-detail-grid,
  .work-grid,
  .faq-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .content-body { padding: 26px; }
}

/* ===== SECTION 2: STATS (glassmorphism, floating counters) ===== */
  .stats-section {
    position: relative;
    padding: 0;
    background: linear-gradient(180deg, #211f8a 0%, var(--soft) 100%);
  }

  .stats-band {
    position: relative;
    z-index: 2;
    margin-top: -64px;
    padding-bottom: 90px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 26px;
    text-align: left;
    transition: transform 0.35s cubic-bezier(.16,1,.3,1), background 0.35s ease;
  }

  .stat-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }

  .stat-card .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: var(--accent, var(--orange));
    color: #fff;
  }

  .stat-card .stat-icon svg { width: 22px; height: 22px; }

  .stat-card strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-card span {
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    font-size: 13.5px;
  }

  @media (max-width: 920px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stats-band { margin-top: -40px; padding-bottom: 60px; }
  }

  /* ===== ABOUT US / MISSION / VISION ===== */
  .about-section { padding: 30px 0 100px; background: var(--soft); }

  .about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .about-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s ease;
  }

  .about-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(15,23,42,0.1); }

  .about-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--accent, var(--blue));
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 14px 28px rgba(15,23,42,0.12);
  }

  .about-icon svg { width: 24px; height: 24px; }

  .about-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
  .about-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

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

  /* ===== SECTION 3: SERVICES GRID (premium 3D cards) ===== */
  .services-section { padding: 30px 0 100px; background: var(--soft); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease, border-color 0.4s ease;
    min-height: 270px;
    display: flex;
    flex-direction: column;
  }

  .service-card::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -60%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--accent, var(--orange));
    opacity: 0.08;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(15,23,42,0.12);
    border-color: transparent;
  }

  .service-card:hover::before { transform: scale(1.4); opacity: 0.14; }

  .service-card .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--accent, var(--orange));
    color: #fff;
    margin-bottom: 22px;
    box-shadow: 0 16px 32px rgba(15,23,42,0.12);
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  }

  .service-card:hover .service-icon { transform: scale(1.1) rotate(-6deg); }

  .service-card .service-icon svg { width: 26px; height: 26px; }

  .service-card h3 {
    font-size: 19.5px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }

  .service-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }

  .service-card .service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 13.5px;
    color: var(--ink);
    position: relative;
    z-index: 1;
  }

  .service-card .service-link svg {
    width: 15px; height: 15px;
    transition: transform 0.3s ease;
  }

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

  @media (max-width: 920px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 24px; min-height: auto; }
  }

/* ===== SECTION 4: INDUSTRIES — BENTO GRID ===== */
  .industries-section { padding: 100px 0; background: #ffffff; }

  .bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 18px;
  }

  .bento-card {
    position: relative;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
  }

  .bento-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(15,23,42,0.1); }

  .bento-card.span-2 { grid-column: span 2; }
  .bento-card.span-2-row { grid-row: span 2; }

  .bento-card .bento-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--accent, var(--blue));
    color: #fff;
  }

  .bento-card .bento-icon svg { width: 21px; height: 21px; }

  .bento-card span.bento-label {
    font-weight: 800;
    font-size: 16px;
    color: var(--ink);
  }

  .bento-card p { color: var(--muted); font-size: 13px; margin-top: 6px; }

  .bento-card.dark {
    background: linear-gradient(150deg, var(--indigo) 0%, var(--indigo-deep) 100%);
    color: #fff;
  }

  .bento-card.dark span.bento-label { color: #fff; }
  .bento-card.dark p { color: rgba(255,255,255,0.65); font-size: 13px; margin-top: 6px; }

  @media (max-width: 920px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .bento-card.span-2 { grid-column: span 2; }
  }
  @media (max-width: 560px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-card { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 130px; }
  }

  /* ===== Industry Detail Modal ===== */
  .modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 19, 79, 0.72);
    backdrop-filter: blur(10px);
    overflow-y: auto;
  }

  .modal-overlay.active { display: flex; }

  .modal-box {
    width: min(620px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 26px;
    padding: 40px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.35);
    animation: modalPop 0.35s cubic-bezier(.16,1,.3,1) both;
  }

  @keyframes modalPop {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--soft);
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.25s ease;
  }

  .modal-close-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
  .modal-close-btn svg { width: 17px; height: 17px; }

  .modal-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--accent, var(--orange));
    color: #fff;
    margin-bottom: 22px;
    box-shadow: 0 16px 32px rgba(15,23,42,0.16);
  }

  .modal-icon-wrap svg { width: 28px; height: 28px; }

  .modal-box h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }

  .modal-intro {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .modal-section-block { margin-bottom: 24px; }

  .modal-section-block h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .modal-list { list-style: none; display: grid; gap: 10px; }

  .modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #344054;
    font-weight: 600;
    padding: 12px 14px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .modal-list li svg {
    width: 17px; height: 17px;
    color: var(--accent, var(--orange));
    flex: 0 0 auto;
    margin-top: 1px;
  }

  .modal-plain {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
  }

  .modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 16px 24px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
    margin-top: 4px;
  }

  .modal-cta-btn:hover { transform: translateY(-2px); background: #e0670f; }

  @media (max-width: 600px) {
    .modal-box { padding: 26px; border-radius: 20px; }
    .modal-box h3 { font-size: 22px; }
  }

  /* ===== SECTION 5: WHY CHOOSE US — TIMELINE ===== */
  .why-section { padding: 100px 0; background: var(--soft); position: relative; overflow: hidden; }

  .timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--line);
  }

  .timeline::after {
    content: "";
    position: absolute;
    left: 27px;
    top: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--red), var(--orange), var(--blue), var(--green));
    height: var(--progress, 0%);
    transition: height 1.2s cubic-bezier(.16,1,.3,1);
  }

  .timeline-item {
    position: relative;
    padding: 0 0 52px 76px;
  }

  .timeline-item:last-child { padding-bottom: 0; }

  .timeline-dot {
    position: absolute;
    left: 12px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent, var(--red));
    display: grid;
    place-items: center;
    color: var(--accent, var(--red));
    font-weight: 800;
    font-size: 13px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    z-index: 1;
  }

  .timeline-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .timeline-item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    max-width: 560px;
  }

  @media (max-width: 600px) {
    .timeline-item { padding-left: 60px; padding-bottom: 40px; }
    .timeline::before, .timeline::after { left: 22px; }
    .timeline-dot { width: 28px; height: 28px; font-size: 12px; }
  }

/* ===== SECTION 6: PORTFOLIO — HORIZONTAL SCROLL ===== */
  .portfolio-section {
    padding: 100px 0 100px;
    background: #ffffff;
    overflow: hidden;
  }

  .portfolio-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 44px;
    flex-wrap: wrap;
  }

  .portfolio-scroll-nav {
    display: flex;
    gap: 10px;
  }

  .scroll-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.25s ease;
  }

  .scroll-nav-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
  .scroll-nav-btn svg { width: 18px; height: 18px; }

  .portfolio-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .portfolio-track::-webkit-scrollbar { display: none; }

  .portfolio-card {
    flex: 0 0 auto;
    width: min(380px, 78vw);
    scroll-snap-align: start;
    border-radius: 22px;
    overflow: hidden;
    background: var(--soft);
    border: 1px solid var(--line);
    transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  }

  .portfolio-card:hover { transform: translateY(-8px); }

  .portfolio-card .thumb {
    height: 230px;
    background: var(--accent, var(--indigo));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .portfolio-card .thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 55%);
  }

  .portfolio-card .thumb svg {
    width: 64px; height: 64px;
    color: rgba(255,255,255,0.85);
    transition: transform 0.5s cubic-bezier(.16,1,.3,1);
  }

  .portfolio-card:hover .thumb svg { transform: scale(1.15) rotate(-4deg); }

  .portfolio-card .body { padding: 22px 24px 26px; }

  .portfolio-card .tag {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent, var(--indigo));
    margin-bottom: 8px;
    display: block;
  }

  .portfolio-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .portfolio-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

  @media (max-width: 600px) {
    .portfolio-section { padding: 70px 0; }
    .portfolio-scroll-nav { display: none; }
  }

  /* ===== SECTION 7: TESTIMONIALS — FLOATING GLASS CARDS, CAROUSEL ===== */
  .testimonials-section {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--indigo-darker) 0%, var(--indigo-deep) 55%, var(--indigo) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .testimonials-section .section-head h2,
  .testimonials-section .section-head p { color: #fff; }
  .testimonials-section .section-head p { color: rgba(255,255,255,0.65); }

  .testimonial-carousel {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    min-height: 280px;
  }

  .testimonial-slide {
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 44px 40px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s cubic-bezier(.16,1,.3,1), transform 0.6s cubic-bezier(.16,1,.3,1);
    pointer-events: none;
  }

  .testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
  }

  .testimonial-slide .quote-mark {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
  }

  .testimonial-slide p.quote-text {
    font-size: 19px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 28px;
    font-weight: 500;
  }

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

  .testimonial-author .avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--blue));
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    flex: 0 0 auto;
  }

  .testimonial-author strong { display: block; font-size: 15px; }
  .testimonial-author span { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
  }

  .carousel-dots button {
    width: 9px; height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: 0.3s ease;
    padding: 0;
  }

  .carousel-dots button.active { background: var(--orange); width: 26px; border-radius: 5px; }

  @media (max-width: 600px) {
    .testimonial-slide { padding: 30px 24px; }
    .testimonial-slide .quote-mark { font-size: 42px; }
    .testimonial-slide p.quote-text { font-size: 16px; }
  }

/* ===== SECTION 8: CTA — LARGE CENTERED, GRADIENT ===== */
  .cta-section {
    padding: 110px 0;
    background: linear-gradient(120deg, var(--red) 0%, var(--orange) 50%, #ffb13d 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 20%, rgba(255,255,255,0.22), transparent 40%),
      radial-gradient(circle at 85% 80%, rgba(255,255,255,0.16), transparent 42%);
  }

  .cta-section .container { position: relative; z-index: 1; }

  .cta-section h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    max-width: 760px;
    margin: 0 auto 18px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 36px;
  }

  .btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 18px 36px;
    background: #fff;
    color: var(--red);
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s ease;
  }

  .btn-cta-white:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.22); }

  /* ===== SECTION 9: CONTACT — SPLIT LAYOUT, GLASS FORM ===== */
  .contact-section {
    padding: 100px 0;
    background: var(--indigo-darker);
    color: #fff;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
  }

  .contact-copy .section-kicker { color: var(--orange); }
  .contact-copy h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 16px; }
  .contact-copy p.lead { color: rgba(255,255,255,0.68); font-size: 16px; line-height: 1.65; margin-bottom: 32px; }

  .contact-detail-list { display: grid; gap: 14px; }

  .contact-detail-list a, .contact-detail-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14.5px;
    color: #fff;
  }

  .contact-detail-list svg { width: 19px; height: 19px; color: var(--orange); flex: 0 0 auto; }

  .contact-form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px;
  }

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

  .contact-form-card input,
  .contact-form-card textarea,
  .contact-form-card select {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    outline: none;
    margin-bottom: 16px;
    transition: border-color 0.25s ease, background 0.25s ease;
  }

  .contact-form-card .form-row input { margin-bottom: 0; }

  .contact-form-card input::placeholder,
  .contact-form-card textarea::placeholder { color: rgba(255,255,255,0.4); }

  .contact-form-card input:focus,
  .contact-form-card textarea:focus,
  .contact-form-card select:focus {
    border-color: var(--orange);
    background: rgba(255,255,255,0.1);
  }

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

  .contact-form-card select option { background: var(--indigo-darker); color: #fff; }

  .form-submit-btn {
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 16px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: 14.5px;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
  }

  .form-submit-btn:hover { transform: translateY(-2px); background: #e0670f; }

  .form-success-msg {
    display: none;
    text-align: center;
    padding: 30px 10px;
  }

  .form-success-msg.show { display: block; }

  .form-success-msg .check-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(86,185,71,0.18);
    color: var(--green);
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
  }

  .form-success-msg h4 { color: #fff; margin-bottom: 8px; }
  .form-success-msg p { color: rgba(255,255,255,0.6); font-size: 14px; }

  @media (max-width: 920px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 560px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-card { padding: 24px; }
  }

  /* ===== FOOTER — MINIMAL LUXURY, MULTI-COLUMN ===== */
  footer.site-footer {
    background: #0c0b3a;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 28px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.15fr 1.15fr 1fr;
    gap: 36px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-brand-col .nav-logo-wrap { margin-bottom: 18px; }

  .footer-markets {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
  }
  .footer-brand-col p { font-size: 14px; line-height: 1.65; max-width: 280px; color: rgba(255,255,255,0.55); margin-bottom: 22px; }

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

  .footer-socials a {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: 0.25s ease;
  }

  .footer-socials a:hover { background: var(--orange); transform: translateY(-3px); }
  .footer-socials svg { width: 18px; height: 18px; }

  .footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
  }

  .footer-col ul { list-style: none; display: grid; gap: 12px; }
  .footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
  .footer-col a:hover { color: #fff; }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
  }

  @media (max-width: 1180px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  }
  @media (max-width: 920px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  }
