:root {
  --bg: #f4f7fc;
  --surface: #fff;
  --surface-alt: #eef2ff;
  --text: #172033;
  --muted: #5f6b85;
  --line: rgba(23, 32, 51, .1);
  --primary: #1d4ed8;
  --primary-dark: #143a9e;
  --secondary: #6d28d9;
  --accent: #06b6d4;
  --success: #0f9f6e;
  --shadow: 0 20px 45px rgba(22, 34, 67, .12);
  --shadow-soft: 0 12px 28px rgba(27, 41, 77, .08);
  --container: 1180px;
  --transition: .3s ease
}

*,
:before,
:after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(109, 40, 217, .08), transparent 35%), radial-gradient(circle at bottom right, rgba(29, 78, 216, .08), transparent 32%), var(--bg);
  line-height: 1.7
}

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

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

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

textarea {
  resize: vertical
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto
}

.section {
  padding: 88px 0
}

.section-sm {
  padding: 68px 0
}

.section-title {
  max-width: 720px;
  margin-bottom: 2.5rem
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, .08);
  color: var(--primary);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 1rem
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -.02em
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem)
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem)
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem)
}

p {
  margin: 0 0 1rem;
  color: var(--muted)
}

ul {
  padding-left: 1.1rem;
  color: var(--muted)
}

.grid {
  display: grid;
  gap: 1.5rem
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.4rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer
}

.btn {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 32px rgba(65, 73, 190, .28)
}

.btn-secondary {
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow-soft)
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.card:hover,
.client-logo:hover,
.post-card:hover,
.feature-card:hover,
.service-card:hover,
.case-card:hover {
  transform: translateY(-3px)
}

.topbar {
  background: #0f172a;
  color: rgba(255, 255, 255, .85);
  font-size: .92rem
}

.topbar .container,
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

.topbar .container {
  min-height: 44px
}

.topbar-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(244, 247, 252, .82);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition)
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  border-color: var(--line);
  background: rgba(255, 255, 255, .92)
}

.site-header .container {
  min-height: 82px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-weight: 700
}

.brand img {
  width: 48px;
  height: 48px
}

.brand-text span {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted)
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem
}

.site-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.2rem
}

.site-nav a,
.dropdown-toggle {
  color: var(--text);
  font-weight: 500;
  background: none;
  border: 0;
  padding: 0
}

.site-nav li {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  min-width: 260px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: .85rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition)
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.dropdown-menu a {
  display: block;
  padding: .45rem .6rem;
  border-radius: 10px
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--surface-alt);
  color: var(--primary)
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, .08);
  font-weight: 600;
  color: var(--primary-dark)
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  position: relative;
  border-radius: 999px
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0
}

.menu-toggle span::before {
  top: -6px
}

.menu-toggle span::after {
  top: 6px
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 23, 46, .92), rgba(45, 29, 101, .78)), url("../images/pattern.svg") center/cover no-repeat;
  z-index: -2
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center
}

.hero-copy,
.hero-copy p,
.hero-copy h1 {
  color: #fff
}

.hero-copy p {
  color: rgba(255, 255, 255, .8);
  max-width: 640px
}

.hero-actions,
.hero-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem
}

.hero-stat {
  min-width: 140px
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  color: #fff
}

.slider-shell {
  position: relative;
  min-height: 440px
}

.slider {
  position: relative;
  min-height: 100%
}

.slide {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .55s ease, transform .55s ease
}

.slide.active {
  opacity: 1;
  transform: translateX(0)
}

.slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px
}

.slide-caption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(11, 18, 36, .65);
  color: #fff
}

.slider-dots {
  display: flex;
  gap: .55rem;
  margin-top: 1rem;
  justify-content: center
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .35)
}

.slider-dots button.active {
  background: #fff
}

.card,
.feature-card,
.service-card,
.post-card,
.client-logo,
.testimonial-card,
.faq-item,
.stat-card,
.contact-card,
.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft)
}

.service-card,
.feature-card,
.post-card,
.testimonial-card,
.stat-card,
.contact-card,
.card,
.case-card {
  padding: 1.6rem
}

.service-card .icon,
.feature-card .icon,
.process-icon,
.contact-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(29, 78, 216, .12), rgba(109, 40, 217, .12));
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 1rem
}

.process-step {
  position: relative;
  padding: 1.8rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f7f9ff);
  border: 1px solid var(--line)
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: .9rem;
  font-weight: 700;
  color: rgba(29, 78, 216, .2)
}

.gradient-panel {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #1d4ed8, #6d28d9);
  color: #fff;
  box-shadow: var(--shadow)
}

.gradient-panel p,
.gradient-panel h2,
.gradient-panel h3 {
  color: #fff
}

.quote-cta .content-card h3 {
  color: #1e293b;
}

.content-card .black-text {
  color: #1e293b;
}

.expertise-strip {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap
}

.pill {
  padding: .7rem 1rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, .08);
  color: var(--primary-dark);
  font-weight: 600
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem
}

.client-logo {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem
}

.client-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    
}

.quote-cta {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  align-items: center
}

.faq-list {
  display: grid;
  gap: 1rem
}

.faq-item {
  padding: 1.25rem 1.4rem
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item p {
  margin-top: .85rem
}

.page-hero {
  padding: 84px 0 56px;
  background: linear-gradient(135deg, rgba(14, 23, 46, .94), rgba(29, 78, 216, .82)), url("../images/pattern.svg") center/cover no-repeat;
  color: #fff
}

.page-hero p,
.page-hero h1 {
  color: #fff
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  color: rgba(255, 255, 255, .74);
  font-size: .95rem;
  margin-bottom: 1rem
}

.split-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1.8rem;
  align-items: start
}

.content-card {
  padding: 2rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft)
}

.form-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.form-grid {
  display: grid;
  gap: 1rem
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.field label {
  display: block;
  margin-bottom: .45rem;
  font-weight: 600;
  color: var(--text)
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(95, 107, 133, .22);
  border-radius: 14px;
  padding: .95rem 1rem;
  background: #fff;
  color: var(--text)
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(29, 78, 216, .18);
  border-color: rgba(29, 78, 216, .45)
}

.form-note,
.error-message {
  color: var(--muted)
}

.error-message {
  display: none;
  margin-top: .35rem;
  color: #b42318;
  font-size: .92rem
}

.field.invalid .error-message {
  display: block
}

.field.invalid input,
.field.invalid textarea,
.field.invalid select {
  border-color: #d92d20
}

.recaptcha-placeholder {
  min-height: 78px;
  padding: 1rem;
  border: 1px dashed rgba(29, 78, 216, .35);
  border-radius: 16px;
  background: rgba(29, 78, 216, .04);
  color: var(--muted);
  margin: 1rem 0
}

.tech-list,
.industry-list,
.benefit-list,
.resource-list {
  display: grid;
  gap: .8rem
}

.tech-item,
.industry-item,
.benefit-item,
.resource-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--line)
}

.tick {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 159, 110, .1);
  color: var(--success);
  flex: 0 0 auto
}

.meta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: .95rem
}

.post-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem
}

.post-card img,
.case-card img {
  border-radius: 18px;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 1.1rem
}

.sidebar-card {
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft)
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow-soft)
}

.newsletter-form {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap
}

.site-footer {
  padding-top: 72px;
  background: #0f172a;
  color: rgba(255, 255, 255, .72)
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .72)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr 1.1fr;
  gap: 1.5rem
}

.footer-title {
  color: #fff;
  margin-bottom: 1rem
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .7rem
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0)
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1001;
  padding: .8rem 1rem;
  background: #fff;
  color: var(--text);
  border-radius: 999px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

@media (max-width:1080px) {

  .hero-grid,
  .split-layout,
  .quote-cta,
  .footer-grid,
  .grid-4,
  .clients-grid,
  .post-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:860px) {
  .menu-toggle {
    display: inline-flex
  }

  .site-nav {
    position: absolute;
    top: calc(100% + .5rem);
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition)
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
  }

  .site-nav ul,
  .nav-wrap {
    display: block
  }

  .site-nav li {
    margin-bottom: .9rem
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    box-shadow: none;
    margin-top: .75rem;
    display: none
  }

  .dropdown.is-open .dropdown-menu {
    display: grid
  }

  .header-cta {
    display: none
  }

  .hero-grid,
  .split-layout,
  .quote-cta,
  .footer-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .clients-grid,
  .post-grid,
  .case-grid,
  .form-grid.two {
    grid-template-columns: 1fr
  }

  .slider-shell {
    min-height: 360px
  }
}

@media (max-width:560px) {

  .section,
  .section-sm {
    padding: 64px 0
  }

  .site-header .container {
    min-height: 74px
  }

  .hero {
    padding-top: 74px
  }

  .hero-actions,
  .newsletter-form {
    flex-direction: column
  }

  .slide-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem
  }
}

.testimonial-shell {
  min-height: 360px
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 2rem
}

.testimonial-body {
  position: relative;
  padding-top: 1.2rem
}

.testimonial-body::before {
  content: "\201C";
  position: absolute;
  top: -.25rem;
  left: 0;
  font-size: 3.75rem;
  line-height: 1;
  color: rgba(29, 78, 216, .18);
  font-weight: 700
}

.testimonial-quote {
  margin: 0 0 1.5rem;
  color: var(--text);
  font-size: 1.05rem
}

.testimonial-author h3 {
  margin: 0 0 .35rem
}

.testimonial-author p {
  margin: 0;
  color: var(--muted)
}

.insights-grid .post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover
}

body {
  color: #162133
}

.page-hero p,
.content-card p,
.content-card li,
.form-card p,
.service-overview p,
.service-visual-copy p {
  color: #45556f
}

.page-hero .split-layout {
  gap: 1.15rem;
  align-items: stretch
}

.page-hero .form-card {
  padding: 1.3rem 1.35rem
}

.page-hero .form-grid {
  gap: .85rem
}

.page-hero .field input,
.page-hero .field textarea,
.page-hero .field select {
  padding: .82rem .95rem
}

.page-hero .recaptcha-placeholder {
  min-height: 66px;
  margin: .85rem 0
}

.service-page {
  padding-top: 0
}

.service-overview {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.5rem;
  align-items: start
}

.service-visual {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23, 32, 51, .1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft)
}

.service-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover
}

.service-visual-copy {
  padding: 1.5rem 1.65rem 1.7rem
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem
}

.service-detail-card,
.service-stack-card,
.service-proof-card {
  background: #fff;
  border: 1px solid rgba(23, 32, 51, .1);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 1.6rem
}

.service-list {
  display: grid;
  gap: .9rem;
  padding: 0;
  list-style: none;
  margin: 0
}

.service-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  color: #45556f
}

.service-list li img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: rgba(29, 78, 216, .1);
  border-radius: 50px;
  padding: 8px;
}

/*.service-list li::before {*/
/*  content: '+';*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  width: 26px;*/
/*  height: 26px;*/
/*  border-radius: 50%;*/
/*  background: rgba(29, 78, 216, .1);*/
/*  color: var(--primary);*/
/*  font-weight: 700;*/
/*  flex: 0 0 auto*/
/*}*/

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem
}

.tech-stack-item {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid rgba(23, 32, 51, .1)
}

.tech-stack-item strong {
  display: block;
  margin-bottom: .28rem;
  color: #162133
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem
}

.service-proof-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: .35rem
}

.service-band {
  background: linear-gradient(135deg, rgba(29, 78, 216, .06), rgba(109, 40, 217, .06));
  border: 1px solid rgba(29, 78, 216, .12);
  border-radius: 28px;
  padding: 2rem
}

.service-band h2,
.service-band h3 {
  color: #162133
}

.service-band p,
.service-band li {
  color: #45556f
}

.service-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem
}

.service-icon-box {
  background: #fff;
  border: 1px solid rgba(23, 32, 51, .1);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft)
}

.service-icon-box .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(29, 78, 216, .14), rgba(109, 40, 217, .14));
  color: var(--primary);
  font-weight: 700;
  margin-bottom: .9rem
}

.service-faq-intro {
  max-width: 760px
}

.service-cta-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.3rem;
  align-items: center
}

.service-cta-panel .content-card {
  height: 100%
}

@media (max-width:1080px) {

  .service-overview,
  .service-detail-grid,
  .service-proof-grid,
  .service-cta-panel {
    grid-template-columns: 1fr
  }

  .service-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:760px) {

  .tech-stack-grid,
  .service-icon-grid {
    grid-template-columns: 1fr
  }

  .service-visual img {
    height: 240px
  }
}

.detail-stats {
  display: grid;
  gap: 1rem;
  margin-top: 1rem
}

.detail-stat {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid rgba(23, 32, 51, .1)
}

.detail-stat strong {
  display: block;
  margin-bottom: .38rem;
  color: #162133
}

.detail-stat span {
  display: block;
  color: #45556f;
  line-height: 1.65
}

.service-page .section,
.service-page .section-sm {
  position: relative
}

.service-page .section:nth-of-type(odd)::before,
.service-page .section-sm:nth-of-type(odd)::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto 0;
  height: calc(100% - 36px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(244, 247, 252, .25));
  border-block: 1px solid rgba(29, 78, 216, .06);
  z-index: -1
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 64px
}
/* -------HERO BACKGROUND--------- */
.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(5,18,44,.65);
    z-index:1;
}

.page-hero .container{
    position:relative;
    z-index:2;
}
/* -------End of HERO BACKGROUND */
/* .page-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(6, 182, 212, .22), transparent 68%);
  filter: blur(6px)
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(167, 139, 250, .26), transparent 70%)
} */

.page-hero .container {
  position: relative;
  z-index: 1
}

.page-hero h1 {
  max-width: 11ch;
  text-shadow: 0 10px 30px rgba(7, 12, 26, .22)
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .84)
}

.page-hero .breadcrumb {
  margin-bottom: 1.2rem
}

.page-hero .eyebrow,
.service-visual-copy .eyebrow,
.service-band .eyebrow,
.service-faq-intro .eyebrow {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 8px 18px rgba(17, 24, 39, .08)
}

.page-hero .hero-actions {
  margin-top: 1.8rem
}

.page-hero .btn-secondary {
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  color: #102042;
  box-shadow: 0 18px 34px rgba(10, 18, 38, .18)
}

.page-hero .btn-ghost {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, .22)
}

.page-hero .form-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 249, 255, .96));
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: 0 28px 60px rgba(7, 12, 26, .2)
}

.page-hero .form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #06b6d4, #3b82f6, #7c3aed)
}

.page-hero .form-card h2 {
  margin-bottom: .65rem;
  color: #101d36
}

.page-hero .field label {
  font-size: .95rem;
  letter-spacing: .01em
}

.page-hero .field input,
.page-hero .field textarea,
.page-hero .field select {
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, .04)
}

.page-hero .btn {
  width: 100%;
  justify-content: center
}

.service-overview-copy,
.service-stack-card,
.service-proof-card,
.service-icon-box,
.detail-stat,
.service-cta-panel .content-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.service-overview-copy:hover,
.service-stack-card:hover,
.service-proof-card:hover,
.service-icon-box:hover,
.detail-stat:hover,
.service-cta-panel .content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(14, 25, 48, .12);
  border-color: rgba(59, 130, 246, .18)
}

.service-overview-copy {
  padding: 2.2rem;
  background: linear-gradient(180deg, #ffffff, #fbfcff)
}

.service-overview-copy h2,
.service-stack-card h2,
.service-band h2,
.service-cta-panel h2 {
  letter-spacing: -.03em
}

.service-overview-copy p+p {
  margin-top: .4rem
}

.service-visual {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f7f9ff)
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: auto 24px 18px 24px;
  height: 42px;
  background: radial-gradient(circle, rgba(29, 78, 216, .16), transparent 70%);
  filter: blur(16px);
  pointer-events: none
}

.service-visual img {
  height: 340px;
  background: linear-gradient(135deg, #edf4ff, #f6efff)
}

.service-visual-copy h3 {
  margin-bottom: .55rem
}

.service-list li {
  padding: .8rem .9rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(23, 32, 51, .08)
}

.service-list li::before {
  margin-top: .05rem;
  box-shadow: 0 8px 16px rgba(29, 78, 216, .14)
}

.service-band {
  padding: 2.2rem;
  background: linear-gradient(135deg, rgba(29, 78, 216, .08), rgba(109, 40, 217, .08));
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06)
}

.service-band .section-title {
  margin-bottom: 1.8rem
}

.service-icon-box {
  padding: 1.35rem;
  background: linear-gradient(180deg, #ffffff, #f9fbff)
}

.service-icon-box h3 {
  margin-bottom: .55rem;
  font-size: 1.1rem
}

.service-icon-box p {
  margin-bottom: 0;
  color: #51627d
}

.service-icon-box .icon {
  box-shadow: 0 12px 20px rgba(79, 70, 229, .12)
}

.service-stack-card {
  background: linear-gradient(180deg, #ffffff, #fbfcff)
}

.tech-stack-item {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.05rem 1rem 1.15rem
}

.tech-stack-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
}

.tech-aqua::before {
    background: linear-gradient(180deg, #06b6d4, #2563eb);
}

.tech-green::before {
    background: linear-gradient(180deg, #8b5cf6, #6d28d9);
}

.tech-orange::before {
    background: linear-gradient(180deg, #22c55e, #15803d);
}

.tech-blue::before {
    background: linear-gradient(180deg, #f59e0b, #ea580c);
}

.tech-turquoise::before {
    background: linear-gradient(180deg, #ef4444, #b91c1c);
}

.tech-aqua::before {
    background: linear-gradient(180deg, #0ea5e9, #0891b2);
}

.tech-stack-item span {
  display: block;
  color: #50607a
}

.service-proof-card {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  padding: 1.45rem 1.5rem
}

.service-proof-card p {
  margin-bottom: 0;
  color: #51627d
}

.detail-stats {
  margin-top: 1.15rem
}

.detail-stat {
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(242, 247, 255, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7)
}

.detail-stat strong {
  font-size: 1.02rem
}

.service-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 2.2rem
}

.service-cta-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 70%)
}

.service-cta-panel>* {
  position: relative;
  z-index: 1
}

.service-cta-panel .content-card {
  background: rgba(255, 255, 255, .98)
}

.service-cta-panel ul {
  padding-left: 1rem
}

.service-cta-panel li {
  color: #4b5a73;
  margin-bottom: .55rem
}

.service-faq-intro+.faq-list .faq-item {
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border-radius: 20px
}

.service-faq-intro+.faq-list .faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #12213d
}

.service-faq-intro+.faq-list .faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(29, 78, 216, .08);
  color: #1d4ed8;
  font-size: 1.1rem;
  flex: 0 0 auto
}

.service-faq-intro+.faq-list .faq-item[open] summary::after {
  content: '-'
}

@media (max-width:860px) {
  .page-hero h1 {
    max-width: none
  }

  .service-page .section:nth-of-type(odd)::before,
  .service-page .section-sm:nth-of-type(odd)::before {
    inset: 10px 0 auto 0;
    height: calc(100% - 20px)
  }

  .page-hero {
    padding: 84px 0 56px
  }
}

.form-card {
  padding: 1.2rem 1.2rem 1.15rem
}

.form-card h2 {
  margin-bottom: .45rem;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem)
}

.form-card p {
  margin-bottom: .75rem
}

.form-card form {
  display: grid;
  gap: .8rem
}

.form-grid {
  gap: .8rem
}

.form-grid.two {
  column-gap: .8rem;
  row-gap: .8rem
}

.field label {
  margin-bottom: .32rem;
  font-size: .92rem
}

.field input,
.field textarea,
.field select {
  padding: .78rem .9rem;
  border-radius: 12px
}

.field textarea {
  min-height: 112px
}

.form-note {
  min-height: 1.1rem;
  font-size: .92rem
}

.recaptcha-placeholder {
  min-height: 58px;
  padding: .8rem .9rem;
  margin: .65rem 0;
  border-radius: 14px;
  font-size: .92rem;
  display: flex;
  align-items: center
}

.form-card .btn {
  padding: .85rem 1.2rem
}

.page-hero .split-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 1rem
}

.page-hero .form-card {
  max-width: 420px;
  justify-self: end;
  padding: 1.1rem 1.1rem 1rem
}

.page-hero .form-card p {
  font-size: .95rem
}

.page-hero .field input,
.page-hero .field textarea,
.page-hero .field select {
  padding: .74rem .86rem
}

.page-hero .recaptcha-placeholder {
  min-height: 54px;
  margin: .55rem 0
}

.page-hero .hero-actions {
  margin-top: 1.35rem
}

.page-hero p {
  margin-bottom: .85rem
}

@media (max-width:1080px) {
  .page-hero .form-card {
    max-width: none;
    justify-self: stretch
  }
}

@media (max-width:860px) {
  .form-card {
    padding: 1.05rem 1rem
  }

  .page-hero .split-layout {
    gap: 1.15rem
  }

  .page-hero .form-card {
    padding: 1rem
  }

  .field textarea {
    min-height: 100px
  }
}

@media (max-width:560px) {
  .form-card {
    padding: 1rem .95rem
  }

  .form-grid.two {
    grid-template-columns: 1fr
  }

  .field input,
  .field textarea,
  .field select {
    padding: .72rem .82rem
  }

  .recaptcha-placeholder {
    min-height: 52px;
    padding: .72rem .8rem
  }
}

.page-hero h1 {
  max-width: 18ch;
  text-wrap: balance
}

.page-hero .split-layout {
  grid-template-columns: minmax(0, 1fr) minmax(460px, .9fr);
  align-items: start
}

.page-hero .form-card {
  width: min(100%, 460px);
  max-width: 460px;
  padding: .95rem 1rem .92rem;
  border-radius: 22px
}

.page-hero .form-card::before {
  left: 16px;
  right: 16px;
  top: 0;
  inset: auto;
  position: absolute;
  height: 4px;
  border-radius: 999px;
  margin-top: 0;
  transform: translateY(0)
}

.page-hero .form-card h2 {
  margin-bottom: .35rem
}

.page-hero .form-card p {
  margin-bottom: .6rem;
  font-size: .93rem;
  line-height: 1.55
}

.page-hero .form-card form {
  gap: .68rem
}

.page-hero .form-grid.two {
  column-gap: .68rem;
  row-gap: .68rem
}

.page-hero .field label {
  margin-bottom: .26rem;
  font-size: .89rem
}

.page-hero .field input,
.page-hero .field textarea,
.page-hero .field select {
  padding: .68rem .8rem
}

.page-hero .field textarea {
  min-height: 88px
}

.page-hero .recaptcha-placeholder {
  min-height: 46px;
  padding: .68rem .78rem;
  margin: .45rem 0;
  font-size: .88rem
}

.page-hero .form-card .btn {
  padding: .78rem 1rem
}

@media (max-width:1200px) {
  .page-hero .split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr)
  }

  .page-hero .form-card {
    width: min(100%, 420px);
    max-width: 420px
  }
}

@media (max-width:860px) {
  .page-hero h1 {
    max-width: none
  }

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

  .page-hero .form-card {
    width: 100%;
    max-width: none
  }

  .page-hero .field textarea {
    min-height: 100px
  }
}

/* Responsive refinement layer */
html,
body {
  overflow-x: hidden
}

.container {
  width: min(calc(100% - 2.25rem), var(--container))
}

.hero-copy,
.content-card,
.form-card,
.service-stack-card,
.service-proof-card,
.service-icon-box,
.hub-card-content,
.detail-hero-copy,
.detail-article,
.detail-sidebar-card {
  min-width: 0
}

.hero-stat,
.detail-stat,
.client-logo,
.service-card,
.feature-card,
.post-card,
.case-card,
.hub-card {
  min-width: 0
}

.slide-caption,
.meta-row,
.hub-card-meta,
.footer-bottom,
.hero-actions,
.hero-stats,
.topbar-links,
.newsletter-form {
  row-gap: .7rem
}

.site-header .container,
.topbar .container,
.nav-wrap,
.brand,
.hero-grid,
.split-layout,
.quote-cta,
.footer-grid,
.service-overview,
.service-detail-grid,
.service-proof-grid,
.service-cta-panel,
.clients-grid,
.grid,
.hub-feature-banner,
.detail-shell {
  min-width: 0
}

.hero-copy h1,
.page-hero h1,
.section-title h2,
.hub-card-content h3,
.detail-hero-copy h1,
.detail-article h2 {
  overflow-wrap: anywhere
}

.hero-copy p,
.page-hero p,
.content-card p,
.service-visual-copy p,
.hub-summary,
.hub-card-content p,
.detail-article p {
  max-width: 100%
}

.map-frame {
  min-height: 320px
}

@media (max-width:1280px) {
  .clients-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr)
  }
}

@media (max-width:1120px) {
  .container {
    width: min(calc(100% - 2rem), var(--container))
  }

  .hero {
    padding: 84px 0 64px
  }

  .hero-grid {
    gap: 1.4rem
  }

  .slider-shell {
    min-height: 400px
  }

  .slide-caption {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem
  }

  .grid-4,
  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .site-header .container {
    gap: .85rem
  }

  .brand-text {
    min-width: 0
  }

  .brand-text span {
    white-space: normal
  }
}

@media (max-width:980px) {
  .topbar .container {
    align-items: flex-start;
    padding: .55rem 0
  }

  .topbar-links {
    flex-direction: column;
    gap: .35rem
  }

  .hero-grid,
  .quote-cta,
  .service-overview,
  .service-detail-grid,
  .service-proof-grid,
  .service-cta-panel,
  .clients-grid,
  .grid-4,
  .post-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .hero-copy {
    order: 1
  }

  .slider-shell {
    order: 2;
    min-height: 360px
  }

  .service-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .footer-grid {
    gap: 1.15rem
  }

  .page-hero {
    padding: 78px 0 52px
  }

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

  .page-hero .form-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-top: .35rem
  }

  .page-hero h1 {
    max-width: none;
    text-wrap: pretty
  }

  .content-card,
  .service-stack-card,
  .service-proof-card,
  .service-icon-box {
    padding: 1.35rem
  }
}

@media (max-width:820px) {
  .section {
    padding: 72px 0
  }

  .section-sm {
    padding: 58px 0
  }

  .site-header .container {
    min-height: 72px
  }

  .site-nav {
    max-height: calc(100vh - 110px);
    overflow: auto
  }

  .topbar {
    font-size: .88rem
  }

  .hero {
    padding: 74px 0 56px
  }

  .hero-actions,
  .hero-stats,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-stats {
    gap: .8rem
  }

  .hero-stat strong {
    font-size: 1.55rem
  }

  .service-band,
  .gradient-panel,
  .content-card,
  .form-card,
  .service-stack-card,
  .service-proof-card,
  .hub-intro,
  .detail-article,
  .detail-sidebar-card,
  .related-strip {
    padding: 1.35rem
  }

  .clients-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .quote-cta .content-card {
    width: 100%
  }

  .map-frame {
    min-height: 280px
  }
}

@media (max-width:680px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container))
  }

  .topbar .container,
  .site-header .container {
    gap: .65rem
  }

  .brand {
    gap: .65rem;
    max-width: calc(100% - 58px)
  }

  .brand img {
    width: 48px;
    height: 48px
  }

  .brand-text {
    font-size: .96rem
  }

  .brand-text span {
    font-size: .74rem
  }

  .hero {
    padding: 68px 0 52px
  }

  .slider-shell {
    min-height: 310px
  }

  .slide {
    padding: .85rem;
    border-radius: 22px
  }

  .slide img {
    border-radius: 16px
  }

  .slide-caption {
    padding: .8rem .85rem;
    font-size: .93rem
  }

  .section-title {
    margin-bottom: 1.7rem
  }

  .grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .clients-grid,
  .post-grid,
  .case-grid,
  .service-overview,
  .service-detail-grid,
  .service-proof-grid,
  .service-icon-grid,
  .quote-cta,
  .footer-grid,
  .form-grid.two {
    grid-template-columns: 1fr
  }

  .hero-actions .btn,
  .hero-actions .btn-secondary,
  .hero-actions .btn-ghost,
  .newsletter-form .btn-secondary,
  .newsletter-form .btn {
    width: 100%
  }

  .clients-grid {
    gap: .85rem
  }

  .client-logo {
    min-height: 82px;
    padding: 1rem
  }

  .footer-bottom {
    padding-top: 1rem
  }

  .page-hero {
    padding: 70px 0 46px
  }

  .page-hero .breadcrumb {
    font-size: .85rem
  }

  .page-hero .btn-secondary,
  .page-hero .btn-ghost {
    width: 100%
  }

  .service-visual img {
    height: 220px
  }

  .service-band,
  .gradient-panel {
    border-radius: 22px
  }

  .faq-item {
    padding: 1rem 1rem 1.05rem
  }

  .faq-item summary {
    font-size: .98rem
  }
}

@media (max-width:520px) {
  h1 {
    font-size: clamp(2rem, 9vw, 2.7rem)
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 2.15rem)
  }

  h3 {
    font-size: 1.1rem
  }

  .container {
    width: min(calc(100% - 1.1rem), var(--container))
  }

  .topbar {
    display: none
  }

  .site-header .container {
    min-height: 68px
  }

  .menu-toggle {
    width: 42px;
    height: 42px
  }

  .site-nav {
    left: .55rem;
    right: .55rem;
    padding: .85rem;
    border-radius: 18px
  }

  .site-nav li {
    margin-bottom: .8rem
  }

  .dropdown-menu {
    padding: .75rem
  }

  .hero {
    padding: 62px 0 46px
  }

  .hero-copy p,
  .page-hero p {
    font-size: .96rem
  }

  .slider-shell {
    min-height: 280px
  }

  .slide-caption {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    font-size: .88rem
  }

  .hero-stat {
    min-width: 0
  }

  .service-card,
  .feature-card,
  .post-card,
  .testimonial-card,
  .stat-card,
  .contact-card,
  .card,
  .case-card,
  .hub-card-content {
    padding: 1.1rem
  }

  .content-card,
  .form-card,
  .service-stack-card,
  .service-proof-card,
  .service-icon-box,
  .detail-article,
  .detail-sidebar-card,
  .related-strip {
    padding: 1.05rem
  }

  .service-icon-box .icon,
  .service-card .icon,
  .feature-card .icon,
  .process-icon,
  .contact-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem
  }

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

  .newsletter-form {
    flex-direction: column
  }

  .newsletter-form>* {
    width: 100%
  }

  .map-frame {
    min-height: 240px
  }

  .detail-article blockquote {
    padding: 1rem 1rem 1rem 1.1rem
  }

  .service-faq-intro+.faq-list .faq-item summary {
    align-items: flex-start
  }
}

@media (max-width:400px) {
  .container {
    width: min(calc(100% - .9rem), var(--container))
  }

  .hero {
    padding: 58px 0 42px
  }

  .slider-shell {
    min-height: 250px
  }

  .slide {
    padding: .7rem
  }

  .slide-caption {
    font-size: .82rem
  }

  .section,
  .section-sm {
    padding: 52px 0
  }

  .btn,
  .btn-secondary,
  .btn-ghost {
    padding: .82rem 1rem
  }

  .brand-text {
    font-size: .9rem
  }
}

/* Home + Contact mobile polish */
@media (max-width: 760px) {

  .home-page .hero-copy .eyebrow,
  .contact-page .page-hero .breadcrumb {
    margin-bottom: .8rem;
  }

  .home-page .hero-copy h1 {
    max-width: 13ch;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: .9rem;
  }

  .home-page .hero-copy p {
    font-size: .97rem;
    line-height: 1.68;
    margin-bottom: .8rem;
  }

  .home-page .hero-actions {
    width: 100%;
    gap: .75rem;
    margin-top: 1.1rem;
  }

  .home-page .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: .7rem;
    margin-top: 1.15rem;
  }

  .home-page .hero-stat {
    min-width: 0;
    padding: .8rem .7rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
  }

  .home-page .hero-stat strong {
    font-size: 1.25rem;
    margin-bottom: .2rem;
  }

  .home-page .hero-stat span {
    display: block;
    font-size: .8rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, .78);
  }

  .home-page .slider-shell {
    min-height: 270px;
    margin-top: .35rem;
  }

  .home-page .slider-dots {
    margin-top: .8rem;
  }

  .home-page .section-title p,
  .home-page .hub-summary {
    font-size: .95rem;
  }

  .home-page .service-card,
  .home-page .process-step,
  .home-page .testimonial-card,
  .home-page .client-logo {
    border-radius: 20px;
  }

  .home-page .process-step,
  .home-page .testimonial-card {
    padding: 1.1rem;
  }

  .home-page .testimonial-shell {
    min-height: 330px;
  }

  .home-page .testimonial-quote {
    font-size: .98rem;
    line-height: 1.7;
  }

  .home-page .quote-cta .content-card {
    margin-top: .15rem;
  }

  .home-page .pill {
    padding: .62rem .88rem;
    font-size: .84rem;
  }

  .contact-page .page-hero {
    padding: 62px 0 38px;
  }

  .contact-page .page-hero h1 {
    max-width: 12ch;
    line-height: 1.08;
    margin-bottom: .75rem;
  }

  .contact-page .page-hero p {
    font-size: .97rem;
    margin-bottom: 0;
  }

  .contact-page .content-card>h2 {
    line-height: 1.16;
  }

  .contact-page .content-card .grid.grid-2 {
    gap: .8rem;
    margin-top: 1rem;
  }

  .contact-page .contact-card {
    padding: 1rem;
    border-radius: 18px;
  }

  .contact-page .contact-icon {
    width: 52px;
    height: 52px;
    margin-bottom: .85rem;
  }

  .contact-page .map-frame {
    min-height: 240px;
    margin-top: 1rem;
    border-radius: 20px;
  }

  .contact-page .split-layout {
    gap: 1rem;
  }

  .contact-page .form-card {
    padding: 1rem .95rem;
    border-radius: 20px;
  }

  .contact-page .form-card h2 {
    margin-bottom: .35rem;
  }

  .contact-page .form-card p {
    font-size: .94rem;
    line-height: 1.6;
  }

  .contact-page .field label {
    font-size: .9rem;
  }

  .contact-page .field:has(input[type="checkbox"]) label {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    line-height: 1.5;
  }

  .contact-page .field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: .15rem;
    flex: 0 0 auto;
  }
}

@media (max-width: 520px) {
  .home-page .hero {
    padding: 56px 0 40px;
  }

  .home-page .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 9vw, 2.45rem);
  }

  .home-page .hero-copy p:last-of-type {
    margin-bottom: .15rem;
  }

  .home-page .hero-stats {
    grid-template-columns: 1fr;
  }

  .home-page .hero-stat {
    padding: .78rem .85rem;
  }

  .home-page .slider-shell {
    min-height: 238px;
  }

  .home-page .slide-caption {
    padding: .72rem .78rem;
    border-radius: 14px;
  }

  .home-page .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .client-logo {
    min-height: 74px;
    padding: .85rem;
  }

  .home-page .service-card p,
  .home-page .process-step p,
  .home-page .hub-card-content p,
  .contact-page .contact-card p,
  .contact-page .form-card p {
    font-size: .93rem;
  }

  .contact-page .page-hero {
    padding: 56px 0 32px;
  }

  .contact-page .page-hero h1 {
    max-width: 10ch;
  }

  .contact-page .content-card,
  .contact-page .form-card {
    padding: .95rem .9rem;
  }

  .contact-page .map-frame {
    min-height: 220px;
  }

  .contact-page .form-card .btn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - .75rem), var(--container));
  }

  .site-header .container {
    min-height: 64px;
    gap: .5rem;
  }

  .brand {
    gap: .5rem;
    max-width: calc(100% - 50px);
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: .84rem;
  }

  .brand-text span {
    font-size: .68rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    left: .4rem;
    right: .4rem;
    padding: .75rem;
  }

  h1 {
    font-size: clamp(1.7rem, 10vw, 2.1rem);
  }

  h2 {
    font-size: clamp(1.4rem, 8vw, 1.8rem);
  }

  h3 {
    font-size: 1rem;
  }

  .btn,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
    padding: .78rem .9rem;
    font-size: .92rem;
  }

  .hero,
  .home-page .hero {
    padding: 54px 0 38px;
  }

  .home-page .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.72rem, 10vw, 2.05rem);
    line-height: 1.07;
  }

  .home-page .hero-copy p,
  .page-hero p,
  .contact-page .form-card p,
  .contact-page .contact-card p,
  .service-card p,
  .process-step p,
  .hub-card-content p {
    font-size: .9rem;
    line-height: 1.6;
  }

  .home-page .hero-actions,
  .hero-actions,
  .newsletter-form {
    gap: .6rem;
  }

  .home-page .hero-stats {
    gap: .55rem;
  }

  .home-page .hero-stat,
  .detail-stat {
    padding: .72rem .78rem;
    border-radius: 16px;
  }

  .home-page .hero-stat strong {
    font-size: 1.12rem;
  }

  .home-page .hero-stat span {
    font-size: .76rem;
  }

  .slider-shell,
  .home-page .slider-shell,
  .testimonial-shell {
    min-height: 220px;
  }

  .slide {
    padding: .62rem;
    border-radius: 18px;
  }

  .slide img {
    border-radius: 12px;
  }

  .slide-caption,
  .home-page .slide-caption {
    left: .55rem;
    right: .55rem;
    bottom: .55rem;
    padding: .62rem .68rem;
    font-size: .78rem;
    line-height: 1.45;
    border-radius: 12px;
  }

  .slider-dots button {
    width: 10px;
    height: 10px;
  }

  .section,
  .section-sm {
    padding: 46px 0;
  }

  .section-title,
  .service-band .section-title {
    margin-bottom: 1.25rem;
  }

  .eyebrow,
  .hub-pill,
  .hub-card-badge {
    font-size: .74rem;
    padding: .48rem .72rem;
  }

  .service-card,
  .feature-card,
  .post-card,
  .testimonial-card,
  .stat-card,
  .contact-card,
  .card,
  .case-card,
  .hub-card-content,
  .content-card,
  .form-card,
  .service-stack-card,
  .service-proof-card,
  .service-icon-box,
  .detail-article,
  .detail-sidebar-card,
  .related-strip,
  .gradient-panel,
  .service-band {
    padding: .92rem .85rem;
    border-radius: 18px;
  }

  .service-icon-box .icon,
  .service-card .icon,
  .feature-card .icon,
  .process-icon,
  .contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: .75rem;
    font-size: 1.05rem;
  }

  .faq-item {
    padding: .9rem .85rem .95rem;
  }

  .faq-item summary {
    font-size: .94rem;
  }

  .field label {
    font-size: .86rem;
  }

  .field input,
  .field textarea,
  .field select,
  .page-hero .field input,
  .page-hero .field textarea,
  .page-hero .field select {
    padding: .66rem .72rem;
    font-size: .92rem;
  }

  .field textarea,
  .page-hero .field textarea {
    min-height: 90px;
  }

  .recaptcha-placeholder,
  .page-hero .recaptcha-placeholder {
    min-height: 44px;
    padding: .62rem .7rem;
    font-size: .82rem;
  }

  .map-frame,
  .contact-page .map-frame {
    min-height: 200px;
  }

  .client-logo {
    min-height: 68px;
    padding: .75rem;
  }

  .footer-bottom {
    gap: .55rem;
    font-size: .84rem;
  }
}

/* Home page responsive fix */
@media (max-width: 1100px) {

  .home-page .hero-grid,
  .home-page .quote-cta,
  .home-page .grid.grid-4,
  /*.home-page .clients-grid,*/
  .home-page .home-case-grid,
  .home-page .insights-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-copy,
  .home-page .slider-shell {
    width: 100%;
    max-width: none;
  }

  .home-page .slider-shell {
    min-height: 340px;
  }

  .home-page .quote-cta .content-card {
    margin-top: .35rem;
  }
}

@media (max-width: 900px) {

  .home-page .grid.grid-3,
  .home-page .grid.grid-4,
  /*.home-page .clients-grid,*/
  .home-page .home-case-grid,
  .home-page .insights-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero {
    padding: 70px 0 52px;
  }

  .home-page .hero-copy h1 {
    max-width: none;
  }

  .home-page .hero-stats {
    grid-template-columns: 1fr;
  }

  .home-page .slider-shell,
  .home-page .testimonial-shell {
    min-height: 300px;
  }
}

@media (max-width: 640px) {

  .home-page .hero-grid,
  .home-page .grid.grid-3,
  .home-page .grid.grid-4,
  /*.home-page .clients-grid,*/
  .home-page .home-case-grid,
  .home-page .insights-grid,
  .home-page .quote-cta {
    grid-template-columns: 1fr;
  }

  .home-page .slider-shell,
  .home-page .testimonial-shell {
    min-height: 260px;
  }
}


  /* Clients Logo Grid Responsive Fix */

  @media (max-width: 1100px) {

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

@media (max-width: 900px) {

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

@media (max-width: 640px) {

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

@media (max-width: 360px) {
  .home-page .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

  .home-page .clients-grid {
    gap: .8rem;
  }
}
  .home-page .clients-grid {
    gap: .8rem;
  }
}

/* Home mobile overlap fix */
@media (max-width: 760px) {

  .home-page .hero-copy,
  .home-page .section-title,
  .home-page .hub-card-content,
  .home-page .testimonial-card,
  .home-page .quote-cta>div {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .home-page .slider,
  .home-page .slider-shell {
    min-height: 320px;
  }

  .home-page .testimonial-shell,
  .home-page .testimonial-shell .slider {
    min-height: 430px;
  }

  .home-page .testimonial-card {
    min-height: 390px;
    padding: 1.15rem;
  }

  .home-page .testimonial-body {
    padding-top: 1rem;
  }

  .home-page .testimonial-quote {
    margin-bottom: 1rem;
    font-size: .96rem;
    line-height: 1.65;
  }

  .home-page .slide-caption {
    max-width: calc(100% - 1.1rem);
    overflow-wrap: anywhere;
  }

  .home-page .hub-card-content h3,
  .home-page .service-card h3,
  .home-page .process-step h3,
  .home-page .section-title h2 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {

  .home-page .slider,
  .home-page .slider-shell {
    min-height: 280px;
  }

  .home-page .testimonial-shell,
  .home-page .testimonial-shell .slider {
    min-height: 470px;
  }

  .home-page .testimonial-card {
    min-height: 430px;
  }
}

@media (max-width: 360px) {

  .home-page .slider,
  .home-page .slider-shell {
    min-height: 250px;
  }

  .home-page .testimonial-shell,
  .home-page .testimonial-shell .slider {
    min-height: 520px;
  }

  .home-page .testimonial-card {
    min-height: 480px;
  }

  .home-page .slide-caption {
    font-size: .76rem;
  }
}

/* Home premium polish */
.home-page .hero::after {
  content: "";
  position: absolute;
  inset: auto 10% 6% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(34, 211, 238, .18), transparent 72%);
  filter: blur(10px);
  pointer-events: none
}

.home-page .hero-copy {
  position: relative
}

.home-page .hero-copy h1 {
  max-width: 11.5ch;
  text-shadow: 0 12px 36px rgba(7, 12, 26, .24)
}

.home-page .hero-copy p {
  color: rgba(255, 255, 255, .82)
}

.home-page .hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.1rem
}

.home-page .hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  padding: .62rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  font-weight: 600;
  font-size: .88rem;
  backdrop-filter: blur(10px)
}

.home-page .hero-stat {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08)
}

.home-page .slider-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  padding: 1rem;
  box-shadow: 0 25px 60px rgba(4, 11, 28, .28)
}

.home-page .slider {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 500px;
}

.home-page .slide {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0
}

.home-page .slide img {
  border-radius: 22px
}

.home-page .slide-caption {
  background: linear-gradient(180deg, rgba(8, 15, 30, .56), rgba(8, 15, 30, .84));
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 28px rgba(2, 8, 23, .24)
}

.home-page .section-title {
  max-width: 780px
}

.home-page .service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, .08);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .07)
}

.home-page .service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -34px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(167, 139, 250, .18), transparent 70%)
}

.home-page .service-card .icon {
  box-shadow: 0 14px 24px rgba(79, 70, 229, .14)
}

.home-page .process-step {
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .06)
}

.home-page .process-step .process-icon {
  box-shadow: 0 12px 22px rgba(37, 99, 235, .12)
}

.home-page .home-visual-showcase {
  position: relative
}

.home-page .home-showcase-intro {
  margin-bottom: 1.8rem
}

.home-page .home-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem
}

.home-page .home-showcase-card {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border: 1px solid rgba(37, 99, 235, .08);
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, .08)
}

.home-page .home-showcase-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, #eff6ff, #f5f3ff)
}

.home-page .home-showcase-copy {
  padding: 1.35rem 1.35rem 1.45rem
}

.home-page .home-showcase-tag {
  display: inline-flex;
  align-items: center;
  padding: .48rem .78rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, .08);
  color: #1d4ed8;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: .9rem
}

.home-page .home-showcase-copy h3 {
  margin-bottom: .65rem
}

.home-page .home-showcase-copy p {
  margin-bottom: 0;
  color: #52627d
}

.home-page .home-showcase-card.accent-card {
  background: linear-gradient(180deg, #f7f7ff, #eef6ff)
}

.home-page .quote-cta {
  overflow: hidden;
  position: relative
}

.home-page .quote-cta::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 70%)
}

.home-page .quote-cta>* {
  position: relative;
  z-index: 1
}

.home-page .home-expertise-card {
  background: rgba(255, 255, 255, .98)
}

.home-page .home-inline-visual {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #eff6ff, #ede9fe)
}

.home-page .pill {
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(235, 243, 255, .96));
  border: 1px solid rgba(29, 78, 216, .1);
  color: #143a9e
}

.home-page .testimonial-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 26px
}

.home-page .testimonial-body::before {
  color: rgba(124, 58, 237, .14)
}

.home-page .hub-card {
  border-radius: 26px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, .08)
}

.home-page .hub-card-media img {
  height: 350px
}

.home-page .hub-card-badge {
  background: linear-gradient(180deg, rgba(15, 23, 42, .88), rgba(29, 78, 216, .88))
}

.home-page .client-logo {
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border-radius: 22px
}

.home-page .faq-item {
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff)
}

@media (max-width: 1100px) {
  .home-page .home-showcase-grid {
    grid-template-columns: 1fr
  }

  .home-page .home-showcase-card img {
    height: 230px
  }
}

@media (max-width: 760px) {
  .home-page .hero-trust-strip {
    gap: .55rem
  }

  .home-page .hero-trust-strip span {
    font-size: .8rem;
    padding: .55rem .78rem
  }

  .home-page .slider-shell {
    padding: .75rem;
    border-radius: 24px
  }

  .home-page .slide img {
    border-radius: 18px
  }

  .home-page .home-inline-visual {
    height: 150px
  }

  .home-page .home-showcase-copy {
    padding: 1.05rem
  }

  .home-page .hub-card-media img {
    height: 220px
  }
}

@media (max-width: 520px) {
  .home-page .hero-trust-strip {
    display: grid;
    grid-template-columns: 1fr
  }

  .home-page .hero-trust-strip span {
    justify-content: center
  }

  .home-page .home-showcase-card img {
    height: 190px
  }

  .home-page .home-inline-visual {
    height: 130px
  }

  .home-page .hub-card-media img {
    height: 200px
  }
}

/* Home spacing + typography balance */
.home-page .section-title h2 {
  max-width: 14ch;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin-bottom: .8rem
}

.home-page .section-title p,
.home-page .hub-summary {
  max-width: 66ch;
  font-size: 1rem;
  line-height: 1.75;
  color: #54637d
}

.home-page .hero-copy h1 {
  margin-bottom: 1rem;
  line-height: 1.02
}

.home-page .hero-copy p {
  max-width: 62ch;
  font-size: 1.01rem;
  line-height: 1.78
}

.home-page .hero-copy p+p {
  margin-top: .2rem
}

.home-page .hero-actions {
  margin-top: 1.45rem
}

.home-page .hero-trust-strip {
  margin-top: 1rem;
  margin-bottom: .15rem
}

.home-page .hero-stats {
  margin-top: 1.25rem
}

.home-page .home-showcase-intro {
  margin-bottom: 2rem
}

.home-page .home-showcase-copy {
  padding: 1.45rem 1.45rem 1.55rem
}

.home-page .home-showcase-copy h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: .7rem
}

.home-page .home-showcase-copy p {
  font-size: .98rem;
  line-height: 1.72
}

.home-page .service-card h3,
.home-page .process-step h3,
.home-page .hub-card-content h3,
.home-page .testimonial-author h3 {
  letter-spacing: -.02em
}

.home-page .service-card h3 {
  margin-bottom: .6rem
}

.home-page .service-card p,
.home-page .process-step p,
.home-page .hub-card-content p {
  font-size: .97rem;
  line-height: 1.72
}

.home-page .process-step {
  padding: 1.65rem
}

.home-page .process-step p {
  margin-bottom: 0
}

.home-page .quote-cta {
  gap: 1.7rem;
  padding: 2.2rem
}

.home-page .quote-cta h2 {
  max-width: 13ch;
  line-height: 1.08;
  margin-bottom: .85rem
}

.home-page .quote-cta p {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.74
}

.home-page .home-expertise-card {
  padding: 1.35rem
}

.home-page .home-expertise-card h3 {
  margin-bottom: .9rem
}

.home-page .expertise-strip {
  gap: .75rem
}

.home-page .pill {
  padding: .72rem .98rem;
  font-size: .88rem
}

.home-page .testimonial-card {
  padding: 1.65rem
}

.home-page .testimonial-quote {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem
}

.home-page .testimonial-author p {
  font-size: .95rem;
  line-height: 1.6
}

.home-page .hub-card-content {
  padding: 1.45rem
}

.home-page .hub-card-meta {
  margin-bottom: .8rem;
  font-size: .9rem
}

.home-page .hub-card-content h3 {
  font-size: 1.24rem;
  line-height: 1.24;
  margin-bottom: .7rem
}

.home-page .hub-card-actions {
  margin-top: 1rem
}

.home-page .client-logo {
  padding: 1.1rem
}

.home-page .faq-item summary {
  line-height: 1.45
}

.home-page .faq-item p {
  line-height: 1.75
}

@media (max-width: 900px) {

  .home-page .section-title h2,
  .home-page .quote-cta h2 {
    max-width: none
  }

  .home-page .hero-copy p,
  .home-page .section-title p,
  .home-page .hub-summary,
  .home-page .quote-cta p {
    max-width: none
  }

  .home-page .home-showcase-copy,
  .home-page .hub-card-content {
    padding: 1.2rem
  }

  .home-page .quote-cta {
    padding: 1.6rem
  }

  .home-page .testimonial-card {
    padding: 1.3rem
  }
}

@media (max-width: 520px) {

  .home-page .hero-copy p,
  .home-page .section-title p,
  .home-page .hub-summary,
  .home-page .service-card p,
  .home-page .process-step p,
  .home-page .hub-card-content p,
  .home-page .quote-cta p {
    font-size: .95rem;
    line-height: 1.68
  }

  .home-page .section-title h2,
  .home-page .hub-card-content h3,
  .home-page .home-showcase-copy h3 {
    line-height: 1.16
  }

  .home-page .home-showcase-intro {
    margin-bottom: 1.35rem
  }

  .home-page .home-showcase-copy,
  .home-page .hub-card-content,
  .home-page .testimonial-card {
    padding: 1rem
  }

  .home-page .quote-cta {
    padding: 1.25rem
  }

  .home-page .pill {
    padding: .66rem .86rem;
    font-size: .83rem
  }
}

/* Final home hero banner fix */
.home-page .hero {
  padding: 88px 0 68px
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 2rem;
  align-items: center
}

.home-page .hero-copy {
  max-width: 100%
}

.home-page .hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
  margin-bottom: 1rem
}

.home-page .hero-copy p {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.78
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.35rem
}

.home-page .hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1rem 0 .2rem
}

.home-page .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.2rem;
  max-width: 720px
}

.home-page .hero-stat {
  min-width: 0
}

.home-page .slider-shell {
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
  padding: 1rem;
  border-radius: 30px
}

.home-page .slider-shell .slider {
  min-height: 100%
}

.home-page .slider-shell .slide {
  inset: 0
}

.home-page .slider-shell .slide img {
  height: 100%;
  min-height: clamp(330px, 40vw, 488px);
  object-fit: cover
}

.home-page .slide-caption {
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: none
}

@media (max-width: 1100px) {
  .home-page .hero {
    padding: 76px 0 58px
  }

  .home-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem
  }

  .home-page .hero-copy h1,
  .home-page .hero-copy p,
  .home-page .hero-stats {
    max-width: none
  }

  .home-page .slider-shell {
    min-height: 420px
  }
}

@media (max-width: 760px) {
  .home-page .hero {
    padding: 64px 0 48px
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2.1rem, 8.2vw, 3rem);
    max-width: none;
    line-height: 1.02
  }

  .home-page .hero-copy p {
    font-size: .96rem;
    line-height: 1.7
  }

  .home-page .hero-actions,
  .home-page .hero-trust-strip {
    display: grid;
    grid-template-columns: 1fr
  }

  .home-page .hero-stats {
    grid-template-columns: 1fr
  }

  .home-page .slider-shell {
    min-height: 320px;
    padding: .75rem
  }

  .home-page .slider-shell .slide img {
    min-height: 280px
  }

  .home-page .slide-caption {
    left: .8rem;
    right: .8rem;
    bottom: .8rem
  }
}

@media (max-width: 420px) {
  .home-page .hero {
    padding: 58px 0 42px
  }

  .home-page .hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.35rem)
  }

  .home-page .slider-shell {
    min-height: 280px;
    padding: .65rem
  }

  .home-page .slider-shell .slide img {
    min-height: 240px
  }

  .home-page .slide-caption {
    padding: .7rem .75rem;
    font-size: .82rem
  }
}

/* Home cleanup: titles, alignment, smaller testimonials */
.home-page .section-title h2,
.home-page .home-showcase-copy h3,
.home-page .service-card h3,
.home-page .process-step h3,
.home-page .hub-card-content h3,
.home-page .quote-cta h2,
.home-page .faq-item summary,
.home-page .testimonial-author h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.home-page .hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(2.45rem, 4vw, 4.2rem)
}

.home-page .hero-copy p,
.home-page .section-title p,
.home-page .hub-summary,
.home-page .home-showcase-copy p,
.home-page .service-card p,
.home-page .process-step p,
.home-page .hub-card-content p,
.home-page .quote-cta p {
  font-size: .96rem;
  line-height: 1.68
}

.home-page .service-card,
.home-page .process-step,
.home-page .hub-card,
.home-page .home-showcase-card,
.home-page .quote-cta>div {
  display: flex;
  flex-direction: column;
  height: 100%
}

.home-page .service-card p,
.home-page .process-step p,
.home-page .hub-card-content p,
.home-page .home-showcase-copy p {
  margin-bottom: 0
}

.home-page .hub-card-content,
.home-page .home-showcase-copy {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  height: 100%
}

.home-page .hub-card-actions {
  margin-top: auto;
  padding-top: .2rem
}

.home-page .hero-actions .btn,
.home-page .hero-actions .btn-secondary {
  min-width: 190px
}

.home-page .quote-cta .btn-secondary {
  align-self: flex-start
}

.home-page .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem
}

.home-page .testimonial-card {
  min-height: auto;
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.home-page .testimonial-body {
  padding-top: .8rem
}

.home-page .testimonial-body::before {
  font-size: 2.8rem;
  top: -.15rem
}

.home-page .testimonial-quote {
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: .9rem
}

.home-page .testimonial-author p {
  font-size: .9rem;
  line-height: 1.5
}

@media (max-width: 980px) {
  .home-page .testimonial-grid {
    grid-template-columns: 1fr
  }

  .home-page .hero-actions .btn,
  .home-page .hero-actions .btn-secondary {
    min-width: 0
  }

  .home-page .quote-cta .btn-secondary {
    width: 100%
  }
}

@media (max-width: 760px) {
  .home-page .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 7.8vw, 2.8rem)
  }

  .home-page .section-title h2,
  .home-page .quote-cta h2 {
    max-width: none
  }

  .home-page .service-card,
  .home-page .process-step,
  .home-page .hub-card,
  .home-page .home-showcase-card {
    height: auto
  }

  .home-page .testimonial-card {
    padding: 1rem
  }

  .home-page .testimonial-quote {
    font-size: .92rem
  }
}

/* Final hero micro-pass */
.home-page .hero-copy .eyebrow {
  margin-bottom: .85rem;
  font-size: .82rem;
  letter-spacing: .03em
}

.home-page .hero-copy h1 {
  max-width: 9.5ch;
  font-size: clamp(2.55rem, 4.15vw, 4.35rem);
  line-height: .96;
  letter-spacing: -.05em;
  margin-bottom: .85rem
}

.home-page .hero-copy p {
  max-width: 56ch;
  font-size: .98rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, .84);
  margin-bottom: .78rem
}

.home-page .hero-actions {
  gap: .8rem;
  margin-top: 1.15rem
}

.home-page .hero-actions .btn,
.home-page .hero-actions .btn-secondary {
  padding: .9rem 1.28rem
}

.home-page .hero-trust-strip {
  gap: .6rem;
  margin: .85rem 0 .15rem
}

.home-page .hero-trust-strip span {
  padding: .56rem .82rem;
  font-size: .84rem
}

.home-page .hero-stats {
  gap: .75rem;
  margin-top: 1.05rem;
  max-width: 680px
}

.home-page .hero-stat {
  padding: .92rem .96rem
}

.home-page .hero-stat strong {
  font-size: 1.55rem;
  margin-bottom: .15rem
}

.home-page .hero-stat span {
  font-size: .83rem;
  line-height: 1.4
}

.home-page .slider-shell {
  padding: .9rem;
  border-radius: 28px
}

.home-page .slide-caption {
  padding: .9rem .95rem;
  border-radius: 15px
}

.home-page .slide-caption strong {
  display: block;
  font-size: 1rem;
  margin-bottom: .18rem
}

@media (max-width: 760px) {
  .home-page .hero-copy .eyebrow {
    margin-bottom: .72rem
  }

  .home-page .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 7.4vw, 2.75rem);
    line-height: 1
  }

  .home-page .hero-copy p {
    max-width: none;
    font-size: .95rem;
    line-height: 1.66
  }

  .home-page .hero-actions {
    margin-top: 1rem
  }

  .home-page .hero-trust-strip {
    margin: .78rem 0 .05rem
  }

  .home-page .hero-stats {
    margin-top: .92rem
  }

  .home-page .slide-caption strong {
    font-size: .94rem
  }
}

/* Final testimonial section fix */
.home-page .home-testimonials-section .section-title {
  max-width: 760px
}

.home-page .home-testimonials-section .section-title h2 {
  max-width: 13ch
}

.home-page .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch
}

.home-page .home-testimonials-section .testimonial-card {
  min-height: auto;
  height: 100%;
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(37, 99, 235, .08);
  box-shadow: 0 16px 32px rgba(15, 23, 42, .06)
}

.home-page .home-testimonials-section .testimonial-body {
  padding-top: .8rem
}

.home-page .home-testimonials-section .testimonial-body::before {
  font-size: 2.5rem;
  top: -.1rem;
  color: rgba(124, 58, 237, .14)
}

.home-page .home-testimonials-section .testimonial-quote {
  font-size: .94rem;
  line-height: 1.68;
  margin-bottom: .85rem
}

.home-page .home-testimonials-section .testimonial-author h3 {
  margin-bottom: .25rem;
  font-size: 1.02rem
}

.home-page .home-testimonials-section .testimonial-author p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.45;
  color: #5b6880
}

@media (max-width: 980px) {
  .home-page .testimonial-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 520px) {
  .home-page .home-testimonials-section .testimonial-card {
    padding: 1rem
  }

  .home-page .home-testimonials-section .testimonial-quote {
    font-size: .91rem
  }
}

/* Hero heading readability fix */
.home-page .hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr)
}

.home-page .hero-copy {
  max-width: 760px
}

.home-page .hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
  overflow: visible;
  display: block;
  line-clamp: unset;
  -webkit-line-clamp: unset
}

.home-page .hero-copy p {
  max-width: 62ch
}

@media (max-width: 1100px) {
  .home-page .hero-grid {
    grid-template-columns: 1fr
  }

  .home-page .hero-copy,
  .home-page .hero-copy p,
  .home-page .hero-copy h1 {
    max-width: none
  }
}

@media (max-width: 760px) {
  .home-page .hero-copy h1 {
    font-size: clamp(2rem, 7vw, 2.9rem);
    line-height: 1.06
  }
}

/* Enquiry form description visibility fix */
.page-hero .form-card p,
.service-page .form-card p,
.contact-page .form-card p {
  color: #44526b;
  opacity: 1;
}

.page-hero .form-card h2+p,
.service-page .form-card h2+p,
.contact-page .form-card h2+p {
  color: #3f4f69;
  font-weight: 500;
}

/* Heading wrap cleanup */
h1,
h2,
h3,
.faq-item summary,
.service-faq-intro+.faq-list .faq-item summary {
  overflow: visible;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: break-word;
}

.home-page .section-title h2,
.home-page .quote-cta h2,
.home-page .home-testimonials-section .section-title h2 {
  max-width: 18ch;
}

.service-page .section-title h2,
.service-page .service-stack-card h2,
.service-page .service-visual-copy h3,
.service-page .service-cta-panel h2,
.service-page .service-faq-intro h2 {
  max-width: 18ch;
}

@media (max-width: 900px) {

  .home-page .section-title h2,
  .home-page .quote-cta h2,
  .home-page .home-testimonials-section .section-title h2,
  .service-page .section-title h2,
  .service-page .service-stack-card h2,
  .service-page .service-visual-copy h3,
  .service-page .service-cta-panel h2,
  .service-page .service-faq-intro h2 {
    max-width: none;
  }
}

/* About page redesign */
.about-page .about-hero {
  padding: 92px 0 68px
}

.about-page .about-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center
}

.about-page .about-hero-copy p {
  max-width: 64ch
}

.about-page .about-hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 248, 255, .96));
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 30px;
  padding: 1rem;
  box-shadow: 0 26px 60px rgba(9, 17, 34, .18)
}

.about-page .about-hero-panel img,
.about-page .about-visual-panel img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover
}

.about-page .about-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1rem
}

.about-page .about-stat {
  padding: 1rem 1rem .95rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(23, 32, 51, .08);
  box-shadow: var(--shadow-soft)
}

.about-page .about-stat strong {
  display: block;
  font-size: 1.5rem;
  color: #10203d;
  margin-bottom: .2rem
}

.about-page .about-stat span {
  color: #56657f;
  font-size: .9rem;
  line-height: 1.45
}

.about-page .about-story-grid,
.about-page .about-culture-grid {
  gap: 1.5rem
}

.about-page .about-story-side,
.about-page .about-visual-panel {
  height: 100%
}

.about-page .about-story-side .resource-list,
.about-page .about-values-list {
  gap: 1rem
}

.about-page .about-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem
}

.about-page .about-pill-card {
  position: relative;
  overflow: hidden
}

.about-page .about-pill-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(29, 78, 216, .12), transparent 70%)
}

.about-page .accent-surface {
  background: linear-gradient(180deg, #ffffff, #f5f3ff)
}

.about-page .about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem
}

.about-page .about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem
}

.about-page .about-visual-panel h3 {
  margin: 1rem 0 .6rem
}

.about-page .about-visual-panel p {
  margin-bottom: 0
}

@media (max-width:1080px) {

  .about-page .about-hero-grid,
  .about-page .about-dual-grid,
  .about-page .about-culture-grid,
  .about-page .about-process-grid,
  .about-page .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:760px) {
  .about-page .about-hero {
    padding: 74px 0 54px
  }

  .about-page .about-hero-grid,
  .about-page .about-dual-grid,
  .about-page .about-culture-grid,
  .about-page .about-process-grid,
  .about-page .about-team-grid {
    grid-template-columns: 1fr
  }

  .about-page .about-hero-stats {
    grid-template-columns: 1fr 1fr
  }

  .about-page .about-hero-panel {
    padding: .8rem
  }
}

@media (max-width:520px) {
  .about-page .about-hero-stats {
    grid-template-columns: 1fr
  }

  .about-page .about-stat {
    padding: .9rem
  }

  .about-page .about-hero-panel {
    border-radius: 24px
  }

  .about-page .about-hero-panel img,
  .about-page .about-visual-panel img {
    border-radius: 18px
  }
}

/* About page spacing and mobile polish */
.about-page .section-title {
  max-width: 760px;
  margin-bottom: 2rem
}

.about-page .section-title h2 {
  max-width: 18ch;
  line-height: 1.08;
  margin-bottom: .75rem
}

.about-page .section-title p,
.about-page .about-hero-copy p {
  font-size: 1rem;
  line-height: 1.74;
  color: #43618f
}

.about-page .about-hero-copy .light-text{
  color: rgb(255 255 255 / 84%);
}

.about-page .about-hero-copy h1 {
  max-width: 13ch;
  line-height: 1.02;
  margin-bottom: .9rem
}

.about-page .about-hero-copy .eyebrow {
  margin-bottom: .8rem
}

.about-page .hero-actions {
  margin-top: 1.2rem
}

.about-page .content-card,
.about-page .service-card {
  padding: 1.5rem
}

.about-page .about-story-side .resource-item,
.about-page .about-values-list .resource-item {
  padding: 1rem 1rem 1rem .95rem
}

.about-page .about-team-grid .service-card,
.about-page .about-process-grid .process-step {
  height: 100%
}

.about-page .about-team-grid .service-card p,
.about-page .about-process-grid .process-step p {
  margin-bottom: 0
}

.about-page .about-visual-panel,
.about-page .about-story-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start
}

.about-page .quote-cta {
  gap: 1.6rem
}

.about-page .quote-cta h2 {
  max-width: 16ch;
  line-height: 1.08
}

.about-page .quote-cta p {
  max-width: 58ch
}

@media (max-width:900px) {

  .about-page .section-title h2,
  .about-page .about-hero-copy h1,
  .about-page .quote-cta h2 {
    max-width: none
  }

  .about-page .section {
    padding: 76px 0
  }

  .about-page .section-sm {
    padding: 58px 0
  }

  .about-page .content-card,
  .about-page .service-card {
    padding: 1.25rem
  }

  .about-page .quote-cta {
    padding: 1.5rem
  }
}

@media (max-width:760px) {

  .about-page .about-hero-copy p,
  .about-page .section-title p {
    font-size: .96rem;
    line-height: 1.68
  }

  .about-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .8rem
  }

  .about-page .hero-actions .btn,
  .about-page .hero-actions .btn-secondary {
    width: 100%
  }

  .about-page .about-story-grid,
  .about-page .about-culture-grid {
    gap: 1rem
  }

  .about-page .about-team-grid,
  .about-page .about-process-grid {
    gap: 1rem
  }

  .about-page .about-hero-panel {
    margin-top: .35rem
  }

  .about-page .quote-cta>div {
    width: 100%
  }
}

@media (max-width:520px) {
  .about-page .about-hero {
    padding: 66px 0 46px
  }

  .about-page .about-hero-copy h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.04
  }

  .about-page .section-title {
    margin-bottom: 1.45rem
  }

  .about-page .content-card,
  .about-page .service-card,
  .about-page .quote-cta,
  .about-page .about-hero-panel {
    padding: 1rem
  }

  .about-page .about-hero-copy p,
  .about-page .section-title p,
  .about-page .quote-cta p {
    font-size: .94rem;
    line-height: 1.65
  }

  .about-page .about-hero-stats {
    gap: .7rem
  }

  .about-page .about-team-grid .icon,
  .about-page .about-process-grid .process-icon {
    margin-bottom: .8rem
  }
}

/* About hero height reduction */
.about-page .about-hero {
  padding: 74px 0 52px
}

.about-page .about-hero-copy h1 {
  margin-bottom: .75rem
}

.about-page .about-hero-copy p {
  margin-bottom: .78rem
}

.about-page .hero-actions {
  margin-top: 1rem
}

.about-page .about-hero-panel {
  padding: .85rem
}

.about-page .about-hero-panel img {
  max-height: 300px;
  object-fit: cover
}

.about-page .about-hero-stats {
  gap: .75rem;
  margin-top: .85rem
}

.about-page .about-stat {
  padding: .9rem .95rem .85rem
}

.about-page .about-stat strong {
  font-size: 1.35rem
}

@media (max-width:760px) {
  .about-page .about-hero {
    padding: 62px 0 42px
  }

  .about-page .about-hero-panel img {
    max-height: 240px
  }

  .about-page .about-hero-stats {
    margin-top: .75rem
  }
}

@media (max-width:520px) {
  .about-page .about-hero {
    padding: 58px 0 38px
  }

  .about-page .about-hero-panel {
    padding: .72rem
  }

  .about-page .about-hero-panel img {
    max-height: 200px
  }

  .about-page .about-stat {
    padding: .82rem .88rem .8rem
  }
}

/* About process chart redesign */
.about-page .about-process-chart {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.25rem
}

.about-page .about-process-chart::before {
  content: "";
  position: absolute;
  left: 24px;
  top: .4rem;
  bottom: .4rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(59, 130, 246, .32), rgba(124, 58, 237, .24))
}

.about-page .about-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  align-items: start
}

.about-page .about-flow-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: .15rem
}

.about-page .about-flow-marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #6d28d9);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(52, 72, 191, .25)
}

.about-page .about-flow-card {
  padding: 1.3rem 1.35rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid rgba(23, 32, 51, .08);
  box-shadow: var(--shadow-soft)
}

.about-page .about-flow-label {
  display: inline-flex;
  margin-bottom: .55rem;
  padding: .36rem .72rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, .08);
  color: #1d4ed8;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em
}

.about-page .about-flow-card h3 {
  margin-bottom: .55rem;
  line-height: 1.2
}

.about-page .about-flow-card p:last-child {
  margin-bottom: 0;
  color: #54637d
}

@media (max-width:760px) {
  .about-page .about-process-chart {
    padding-left: 0
  }

  .about-page .about-process-chart::before {
    left: 23px
  }

  .about-page .about-flow-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: .8rem
  }

  .about-page .about-flow-marker span {
    width: 44px;
    height: 44px
  }

  .about-page .about-flow-card {
    padding: 1.05rem 1rem
  }
}

@media (max-width:520px) {
  .about-page .about-process-chart::before {
    left: 21px
  }

  .about-page .about-flow-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: .7rem
  }

  .about-page .about-flow-marker span {
    width: 42px;
    height: 42px;
    font-size: .92rem
  }

  .about-page .about-flow-label {
    margin-bottom: .48rem;
    font-size: .76rem
  }

  .about-page .about-flow-card h3 {
    font-size: 1.05rem
  }
}

/* About visual height reduction */
.about-page .about-visual-panel img {
  max-height: 240px;
}

@media (max-width: 760px) {
  .about-page .about-visual-panel img {
    max-height: 210px;
  }
}

@media (max-width: 520px) {
  .about-page .about-visual-panel img {
    max-height: 180px;
  }
}

/* About team redesign */
.about-page .about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem
}

.about-page .about-team-card {
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid rgba(23, 32, 51, .08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden
}

.about-page .about-team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: linear-gradient(135deg, #e8f0ff, #f4edff)
}

.about-page .about-team-copy {
  padding: 1.15rem 1.15rem 1.2rem
}

.about-page .about-team-copy h3 {
  margin-bottom: .28rem
}

.about-page .about-team-role {
  margin-bottom: .6rem;
  color: #1d4ed8;
  font-weight: 600
}

.about-page .about-team-copy p:last-child {
  margin-bottom: 0;
  color: #55657f
}

@media (max-width:1080px) {
  .about-page .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:760px) {
  .about-page .about-team-grid {
    grid-template-columns: 1fr
  }

  .about-page .about-team-card img {
    height: 240px
  }

  .about-page .about-team-copy {
    padding: 1rem
  }
}

@media (max-width:520px) {
  .about-page .about-team-card img {
    height: 220px
  }
}

/* Premium about team polish */
.about-page .about-team-grid {
  align-items: stretch
}

.about-page .about-team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid rgba(23, 32, 51, .08);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.about-page .about-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, .12);
  border-color: rgba(37, 99, 235, .16)
}

.about-page .about-team-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(124, 58, 237, .1), transparent 68%);
  pointer-events: none
}

.about-page .about-team-card img {
  height: 290px
}

.about-page .about-team-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  align-items: stretch;
  background: linear-gradient(135deg, #ffffff, #eef4ff 55%, #f6efff)
}

.about-page .about-team-card-featured img {
  height: 100%;
  min-height: 100%;
  max-height: none
}

.about-page .about-team-card-featured .about-team-copy {
  padding: 1.4rem 1.4rem 1.45rem
}

.about-page .about-team-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: .55rem;
  padding: .38rem .76rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, .09);
  color: #1d4ed8;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em
}

.about-page .about-team-role {
  margin-bottom: .55rem;
  color: #1d4ed8;
  font-weight: 600
}

.about-page .about-team-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.15rem 1.2rem
}

.about-page .about-team-copy p:last-of-type {
  margin-bottom: 0;
  color: #55657f
}

.about-page .about-team-socials {
  display: flex;
  gap: .55rem;
  margin-top: 1rem
}

.about-page .about-team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(29, 78, 216, .12);
  color: #16305c;
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, .05);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease
}

.about-page .about-team-socials a:hover {
  transform: translateY(-2px);
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff
}

@media (max-width:1080px) {
  .about-page .about-team-card-featured {
    grid-column: span 2
  }
}

@media (max-width:760px) {
  .about-page .about-team-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr
  }

  .about-page .about-team-card img {
    height: 240px
  }

  .about-page .about-team-card-featured img {
    height: 260px
  }

  .about-page .about-team-card-featured .about-team-copy {
    padding: 1rem
  }
}

@media (max-width:520px) {
  .about-page .about-team-card {
    border-radius: 22px
  }

  .about-page .about-team-card img,
  .about-page .about-team-card-featured img {
    height: 220px
  }

  .about-page .about-team-socials a {
    min-width: 36px;
    height: 36px
  }
}

/* About team image height reduction */
.about-page .about-team-card img {
  height: 240px;
}

.about-page .about-team-card-featured img {
  height: 240px;
  min-height: 240px;
}

@media (max-width: 760px) {

  .about-page .about-team-card img,
  .about-page .about-team-card-featured img {
    height: 210px;
    min-height: 210px;
  }
}

@media (max-width: 520px) {

  .about-page .about-team-card img,
  .about-page .about-team-card-featured img {
    height: 190px;
    min-height: 190px;
  }
}

/* Founder card refinement */
.about-page .about-team-card-featured {
  position: relative;
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(250px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
  background: linear-gradient(135deg, #fcfdff, #eef4ff 52%, #f7f0ff);
  border: 1px solid rgba(59, 130, 246, .14);
  box-shadow: 0 24px 52px rgba(20, 31, 66, .12)
}

.about-page .about-team-card-featured::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(180deg, rgba(16, 32, 61, .04), transparent 55%);
  pointer-events: none
}

.about-page .about-founder-media {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 1rem 0 1rem 1rem
}

.about-page .about-founder-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: none;
  border-radius: 24px;
  background: linear-gradient(135deg, #eaf2ff, #f4ecff);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .08)
}

.about-page .about-founder-highlight {
  position: absolute;
  left: 1.8rem;
  right: 1.8rem;
  bottom: 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .8rem .95rem;
  border-radius: 18px;
  background: rgba(11, 18, 36, .72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .8rem;
  font-weight: 600
}

.about-page .about-founder-copy {
  padding: 1.55rem 1.55rem 1.5rem
}

.about-page .about-founder-copy h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  margin-bottom: .3rem
}

.about-page .about-founder-intro {
  font-size: .98rem;
  line-height: 1.72;
  color: #4d5d77
}

.about-page .about-founder-quote {
  margin: 1rem 0 0;
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 3px solid rgba(109, 40, 217, .28);
  background: rgba(255, 255, 255, .68);
  border-radius: 18px;
  color: #1b2d52;
  font-weight: 500;
  line-height: 1.68
}

.about-page .about-founder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem
}

.about-page .about-founder-meta span {
  display: inline-flex;
  align-items: center;
  padding: .42rem .76rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, .08);
  color: #163b79;
  font-size: .8rem;
  font-weight: 600
}

.about-page .about-team-card-featured .about-team-socials {
  margin-top: 1.05rem
}

@media (max-width:1080px) {
  .about-page .about-team-card-featured {
    grid-column: span 2;
    grid-template-columns: minmax(220px, .84fr) minmax(0, 1.16fr)
  }
}

@media (max-width:760px) {
  .about-page .about-team-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr
  }

  .about-page .about-founder-media {
    padding: 1rem 1rem 0
  }

  .about-page .about-founder-media img {
    height: 230px;
    min-height: 230px
  }

  .about-page .about-founder-highlight {
    left: 1.65rem;
    right: 1.65rem;
    bottom: 1rem
  }

  .about-page .about-founder-copy {
    padding: 1rem 1rem 1.1rem
  }
}

@media (max-width:520px) {
  .about-page .about-founder-media img {
    height: 200px;
    min-height: 200px
  }

  .about-page .about-founder-highlight {
    left: 1.45rem;
    right: 1.45rem;
    padding: .68rem .8rem;
    font-size: .74rem
  }

  .about-page .about-founder-quote {
    padding: .9rem .9rem .9rem 1rem;
    font-size: .93rem
  }
}

/* Premium footer polish */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 84px 0 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(59, 130, 246, .22), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(124, 58, 237, .2), transparent 22%),
    linear-gradient(180deg, #111b34 0%, #0b1327 100%);
  color: rgba(255, 255, 255, .76);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .74);
}

.site-footer a {
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  gap: 1.8rem;
  align-items: start;
}

.footer-grid>div {
  position: relative;
  min-width: 0;
}

.footer-grid>div:first-child,
.footer-grid>div:last-child {
  padding: 1.35rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 36px rgba(3, 8, 22, .16);
  backdrop-filter: blur(10px);
}

.footer-title {
  position: relative;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  font-size: 1.02rem;
  letter-spacing: -.01em;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #8b5cf6);
}

.footer-links {
  gap: .78rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  opacity: .9;
}

.footer-links a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .08);
}

.footer-links a:hover {
  transform: translateX(4px);
  opacity: 1;
}

.site-footer .newsletter-form {
  gap: .7rem;
  margin-top: 1rem;
}

.site-footer .newsletter-form .field {
  flex: 1 1 220px;
}

.site-footer .newsletter-form input {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 10px 24px rgba(7, 12, 26, .14);
}

.site-footer .newsletter-form .btn-secondary {
  background: linear-gradient(135deg, #ffffff, #eef4ff);
  color: #10203d;
  box-shadow: 0 14px 28px rgba(6, 11, 24, .18);
}

.site-footer .newsletter-form .btn-secondary:hover {
  transform: translateY(-2px);
}

.site-footer .form-note,
.site-footer .error-message {
  color: rgba(255, 255, 255, .72);
}

.footer-bottom {
  margin-top: 2.2rem;
  padding: 1.35rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .62);
  font-size: .94rem;
}

@media (max-width:1120px) {

  .footer-grid>div:first-child,
  .footer-grid>div:last-child {
    padding: 1.15rem;
  }
}

@media (max-width:680px) {
  .site-footer {
    padding-top: 72px;
  }

  .footer-grid {
    gap: 1.2rem;
  }

  .footer-grid>div:first-child,
  .footer-grid>div:last-child {
    padding: 1rem;
    border-radius: 20px;
  }

  .footer-title {
    margin-bottom: .9rem;
    padding-bottom: .7rem;
  }

  .footer-bottom {
    margin-top: 1.6rem;
    padding: 1.1rem 0 1.35rem;
    font-size: .9rem;
  }
}

/* Newsletter input width increase */
.site-footer .newsletter-form .field {
  flex: 1 1 300px;
}

.site-footer .newsletter-form input {
  min-width: 280px;
}

@media (max-width: 680px) {

  .site-footer .newsletter-form .field,
  .site-footer .newsletter-form input {
    min-width: 0;
  }
}

/* Newsletter alignment fix */
.site-footer .newsletter-form {
  align-items: flex-start;
}

.site-footer .newsletter-form .field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-footer .newsletter-form .btn-secondary {
  flex: 0 0 auto;
  align-self: stretch;
  min-height: 50px;
  white-space: nowrap;
}

.site-footer .newsletter-form .form-note {
  flex-basis: 100%;
  width: 100%;
  margin-top: .2rem;
}

@media (max-width: 680px) {
  .site-footer .newsletter-form {
    align-items: stretch;
  }

  .site-footer .newsletter-form .btn-secondary {
    align-self: auto;
  }
}

/* Connected newsletter bar */
.site-footer .newsletter-form {
  gap: 0;
  align-items: stretch;
}

.site-footer .newsletter-form .field {
  flex: 1 1 320px;
  margin: 0;
}

.site-footer .newsletter-form input {
  min-width: 0;
  width: 100%;
  height: 52px;
  padding: 0 1rem;
  border-radius: 16px 0 0 16px;
  border-right: 0;
}

.site-footer .newsletter-form .btn-secondary {
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 10px 24px rgba(6, 11, 24, .16);
}

.site-footer .newsletter-form .field .error-message {
  margin-top: .45rem;
}

.site-footer .newsletter-form .form-note {
  margin-top: .55rem;
}

@media (max-width: 680px) {
  .site-footer .newsletter-form {
    gap: .7rem;
  }

  .site-footer .newsletter-form input,
  .site-footer .newsletter-form .btn-secondary {
    border-radius: 14px;
    border-right: 1px solid rgba(255, 255, 255, .16);
  }
}

/* Footer address and newsletter separation */
.footer-contact-stack {
  display: grid;
  gap: 1rem;
}

.footer-contact-block {
  padding: 1.1rem 1.1rem 1.15rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
}

.footer-contact-block .footer-title {
  margin-bottom: .85rem;
}

.footer-contact-block p:last-child,
.footer-newsletter-block .newsletter-form {
  margin-bottom: 0;
}

.footer-newsletter-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
}

@media (max-width:680px) {
  .footer-contact-stack {
    gap: .85rem;
  }

  .footer-contact-block {
    padding: 1rem;
    border-radius: 18px;
  }
}

/* Footer social links */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(3, 8, 22, .14);
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  border-color: transparent;
}

@media (max-width:680px) {
  .footer-socials {
    gap: .55rem;
  }

  .footer-socials a {
    min-width: 36px;
    height: 36px;
  }
}

/* Footer social icon polish */
.footer-socials a svg {
  width: 16px;
  height: 16px;
  display: block;
}

@media (max-width:680px) {
  .footer-socials a svg {
    width: 15px;
    height: 15px;
  }
}

/* Premium header and navbar polish */
.topbar {
  position: relative;
  background: linear-gradient(90deg, #0e1730, #111f42 55%, #142755);
  color: rgba(255, 255, 255, .84);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, .45), transparent);
}

.topbar a {
  color: rgba(255, 255, 255, .9);
}

.site-header {
  top: 10px;
  width: min(calc(100% - 24px), 1280px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(247, 250, 255, .82));
  box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, .45);
  box-shadow: 0 20px 42px rgba(15, 23, 42, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(246, 249, 255, .9));
}

.site-header .container {
  min-height: 76px;
  padding-inline: 1.1rem;
}

.brand {
  gap: .8rem;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  /* box-shadow: 0 10px 20px rgba(29,78,216,.16); */
}

.brand-text {
  letter-spacing: -.015em;
}

.brand-text span {
  margin-top: .12rem;
  font-size: .76rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.nav-wrap {
  gap: .85rem;
}

.site-nav ul {
  gap: .45rem;
}

.site-nav a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 .92rem;
  border-radius: 999px;
  color: #17243d;
  font-weight: 600;
  font-size: .95rem;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible,
.dropdown.is-open>.dropdown-toggle {
  background: rgba(29, 78, 216, .08);
  color: #143a9e;
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, .08);
}

.dropdown-menu {
  top: calc(100% + .8rem);
  min-width: 280px;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .6);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 248, 255, .97));
  box-shadow: 0 24px 48px rgba(15, 23, 42, .12);
}

.dropdown-menu a {
  justify-content: flex-start;
  min-height: 44px;
  padding: 0 .8rem;
  border-radius: 14px;
}

.header-cta {
  min-height: 46px;
  padding: 0 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(29, 78, 216, .12), rgba(109, 40, 217, .12));
  color: #12336f;
  border: 1px solid rgba(29, 78, 216, .12);
  box-shadow: 0 14px 28px rgba(29, 78, 216, .12);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(29, 78, 216, .16);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(23, 32, 51, .1);
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  box-shadow: 0 10px 20px rgba(15, 23, 42, .06);
}

@media (max-width: 860px) {
  .site-header {
    top: 8px;
    width: min(calc(100% - 16px), 1280px);
    border-radius: 18px;
  }

  .site-header .container {
    min-height: 70px;
    padding-inline: .85rem;
  }

  .site-nav {
    top: calc(100% + .7rem);
    left: .75rem;
    right: .75rem;
    padding: .9rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .55);
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 248, 255, .97));
    box-shadow: 0 22px 44px rgba(15, 23, 42, .12);
  }

  .site-nav a,
  .dropdown-toggle {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 0 .85rem;
    border-radius: 14px;
  }

  .dropdown-menu {
    margin-top: .65rem;
    padding: .65rem;
    border-radius: 16px;
    background: rgba(240, 245, 255, .9);
    border: 1px solid rgba(29, 78, 216, .08);
    box-shadow: none;
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 6px;
    width: min(calc(100% - 10px), 1280px);
    border-radius: 16px;
  }

  .site-header .container {
    min-height: 66px;
    padding-inline: .7rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-text span {
    font-size: .72rem;
  }
}

/* Home industries section */
.home-page .industries-header-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none
}

.home-page .industries-header-row>div:first-child {
  max-width: 760px
}

.home-page .industry-controls {
  display: flex;
  gap: .7rem;
  flex: 0 0 auto
}

.home-page .industry-control {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #eef4ff);
  color: #16305c;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease
}

.home-page .industry-control:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, .12);
  background: linear-gradient(135deg, #eff6ff, #ede9fe)
}

.home-page .industry-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 31%);
  gap: 1.15rem;
  overflow-x: auto;
  padding-bottom: .4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none
}

.home-page .industry-carousel::-webkit-scrollbar {
  display: none
}

.home-page .industry-card {
  position: relative;
  min-height: 410px;
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 46px rgba(15, 23, 42, .14);
  scroll-snap-align: start
}

.home-page .industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(11, 18, 36, .16) 35%, rgba(8, 14, 28, .88));
  transition: opacity .3s ease
}

.home-page .industry-card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.35rem 1.3rem 1.25rem;
  color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: flex-end
}

.home-page .industry-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: .85rem;
  padding: .42rem .76rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em
}

.home-page .industry-card h3 {
  max-width: 12ch;
  margin-bottom: .55rem;
  color: #fff;
  line-height: 1.12
}

.home-page .industry-card p {
  max-width: 30ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82)
}

.home-page .industry-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  align-self: flex-start;
  margin-top: 1rem;
  padding: .72rem .96rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease, background .28s ease
}

.home-page .industry-link::after {
  content: '\2192';
  font-size: .95rem
}

.home-page .industry-card:hover .industry-link,
.home-page .industry-card:focus-within .industry-link {
  opacity: 1;
  transform: translateY(0)
}

.home-page .industry-card:hover .industry-link {
  background: rgba(255, 255, 255, .22)
}

.home-page .industry-card:hover::after {
  opacity: .92
}

@media (max-width:980px) {
  .home-page .industry-carousel {
    grid-auto-columns: minmax(280px, 66%)
  }

  .home-page .industries-header-row {
    align-items: flex-start;
    flex-direction: column
  }

  .home-page .industry-controls {
    align-self: flex-end
  }
}

@media (max-width:680px) {
  .home-page .industry-carousel {
    grid-auto-columns: 88%
  }

  .home-page .industry-card {
    min-height: 360px
  }

  .home-page .industry-link {
    opacity: 1;
    transform: none
  }

  .home-page .industry-controls {
    gap: .55rem
  }

  .home-page .industry-control {
    width: 42px;
    height: 42px
  }
}

/* Home industries fine-tune */
.home-page .home-industries-section {
  position: relative;
}

.home-page .industries-header-row {
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
}

.home-page .industries-header-row>div:first-child {
  max-width: 700px;
}

.home-page .industry-controls {
  align-self: flex-start;
  margin-top: .35rem;
  padding: .28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(148, 163, 184, .22);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
}

.home-page .industry-control {
  width: 44px;
  height: 44px;
  box-shadow: none;
}

.home-page .industry-carousel {
  grid-auto-columns: minmax(280px, 32.2%);
  gap: 1.25rem;
  padding-top: .15rem;
}

.home-page .industry-card {
  min-height: 392px;
  border-radius: 28px;
  background-position: center center;
  box-shadow: 0 24px 44px rgba(15, 23, 42, .16);
}

.home-page .industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 18, 33, .08), rgba(13, 18, 33, 0) 28%, rgba(4, 10, 22, .18) 48%, rgba(4, 10, 22, .82) 100%);
  z-index: 0;
}

.home-page .industry-card::after {
  background: linear-gradient(180deg, rgba(6, 12, 24, .02), rgba(6, 12, 24, .14) 26%, rgba(7, 12, 24, .52) 62%, rgba(5, 10, 20, .92) 100%);
}

.home-page .industry-card-content {
  padding: 1.45rem 1.35rem 1.35rem;
  justify-content: flex-end;
}

.home-page .industry-tag {
  margin-bottom: .9rem;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .96);
}

.home-page .industry-card h3 {
  max-width: 11ch;
  margin-bottom: .6rem;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .2);
}

.home-page .industry-card p {
  max-width: 29ch;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .18);
}

.home-page .industry-link {
  position: relative;
  margin-top: 1.05rem;
  padding: .78rem 1rem;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
}

.home-page .industry-card:hover .industry-link,
.home-page .industry-card:focus-within .industry-link {
  background: rgba(255, 255, 255, .24);
}

@media (max-width: 1100px) {
  .home-page .industry-carousel {
    grid-auto-columns: minmax(280px, 48%);
  }
}

@media (max-width: 980px) {
  .home-page .industries-header-row {
    margin-bottom: 1.1rem;
  }

  .home-page .industry-controls {
    align-self: flex-end;
    margin-top: 0;
  }

  .home-page .industry-card {
    min-height: 372px;
  }
}

@media (max-width: 680px) {
  .home-page .industries-header-row {
    gap: .85rem;
  }

  .home-page .industry-controls {
    margin-left: auto;
    padding: .24rem;
  }

  .home-page .industry-carousel {
    grid-auto-columns: 86%;
    gap: 1rem;
  }

  .home-page .industry-card {
    min-height: 338px;
    border-radius: 24px;
  }

  .home-page .industry-card-content {
    padding: 1.1rem 1rem 1rem;
  }

  .home-page .industry-card h3 {
    max-width: 12ch;
  }
}

@media (max-width: 420px) {
  .home-page .industry-carousel {
    grid-auto-columns: 92%;
  }

  .home-page .industry-card {
    min-height: 320px;
  }

  .home-page .industry-control {
    width: 40px;
    height: 40px;
  }
}

/* Home industries premium polish */
.home-page .home-industries-section .section-title h2 {
  max-width: 18ch;
}

.home-page .industry-carousel {
  padding-top: .2rem;
  padding-bottom: .6rem;
}

.home-page .industry-card {
  isolation: isolate;
  min-height: 400px;
  border: 1px solid rgba(255, 255, 255, .18);
  background-color: #0f172a;
  box-shadow: 0 24px 52px rgba(15, 23, 42, .18);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.home-page .industry-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 18%),
    linear-gradient(180deg, rgba(9, 16, 32, .02), rgba(9, 16, 32, .1) 30%, rgba(5, 10, 20, .24) 52%, rgba(5, 10, 20, .86) 100%);
}

.home-page .industry-card::after {
  background:
    radial-gradient(circle at top right, rgba(109, 40, 217, .2), rgba(109, 40, 217, 0) 34%),
    linear-gradient(180deg, rgba(5, 10, 20, .04), rgba(5, 10, 20, .18) 28%, rgba(5, 10, 20, .58) 66%, rgba(5, 10, 20, .94) 100%);
  opacity: .98;
}

.home-page .industry-card-content {
  gap: 0;
  padding: 1.5rem 1.4rem 1.4rem;
}

.home-page .industry-tag {
  padding: .46rem .82rem;
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.home-page .industry-card h3 {
  max-width: 10.5ch;
  margin-bottom: .7rem;
  font-size: clamp(1.3rem, 1.05rem + .7vw, 1.7rem);
  line-height: 1.08;
}

.home-page .industry-card p {
  max-width: 28ch;
  line-height: 1.58;
  color: rgba(255, 255, 255, .94);
}

.home-page .industry-link {
  margin-top: 1.15rem;
  padding: .82rem 1.08rem;
  font-size: .96rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .12));
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

.home-page .industry-card:hover,
.home-page .industry-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(191, 219, 254, .34);
  box-shadow: 0 28px 58px rgba(15, 23, 42, .22);
}

.home-page .industry-card:hover .industry-link,
.home-page .industry-card:focus-within .industry-link {
  background: linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .16));
}

.home-page .industry-card:hover::after,
.home-page .industry-card:focus-within::after {
  opacity: 1;
}

@media (max-width: 1100px) {
  .home-page .industry-card {
    min-height: 384px;
  }
}

@media (max-width: 680px) {
  .home-page .industry-card {
    min-height: 344px;
  }

  .home-page .industry-card-content {
    padding: 1.15rem 1rem 1rem;
  }

  .home-page .industry-card h3 {
    max-width: 11.5ch;
    font-size: clamp(1.18rem, 1rem + .8vw, 1.38rem);
  }

  .home-page .industry-card p {
    max-width: 30ch;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .home-page .industry-card {
    min-height: 326px;
  }
}

/* Home service icon SVG support */
.service-card .icon svg,
.feature-card .icon svg,
.service-icon-box .icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Home service icon image support */
.service-card .icon img,
.feature-card .icon img,
.service-icon-box .icon img {
  width: 28px;
  height: 28px;
  display: block;
}

/* Home service icons larger and more colorful */
.home-page .service-card .icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  /* background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(124,58,237,.2) 58%, rgba(6,182,212,.16)); */
  background: red;
  box-shadow: 0 16px 30px rgba(79, 70, 229, .18), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.home-page .service-card .icon img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 6px 12px rgba(37, 99, 235, .18));
}

@media (max-width: 760px) {
  .home-page .service-card .icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .home-page .service-card .icon img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 520px) {
  .home-page .service-card .icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .home-page .service-card .icon img {
    width: 33px;
    height: 33px;
  }
}

/* Home service icons keep original box size, enlarge artwork only */
.home-page .service-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  /* background: linear-gradient(135deg, rgba(29,78,216,.12), rgba(109,40,217,.12)); */
  background: linear-gradient(217deg, rgb(216 209 29 / 12%), rgba(109, 40, 217, .12));
  box-shadow: 0 14px 24px rgba(79, 70, 229, .14);
}

.home-page .service-card .icon img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 4px 10px rgba(37, 99, 235, .14));
}

@media (max-width: 760px) {
  .home-page .service-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .home-page .service-card .icon img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 520px) {
  .home-page .service-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .home-page .service-card .icon img {
    width: 32px;
    height: 32px;
  }
}

/* Home industry card content premium arrangement */
.home-page .industry-card-content {
  inset: auto .95rem .95rem .95rem;
  min-height: auto;
  padding: 1.25rem 1.2rem 1.15rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 14, 28, .18), rgba(8, 14, 28, .76));
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, .16);
  gap: 0;
}

.home-page .industry-tag {
  margin-bottom: .8rem;
  padding: .42rem .78rem;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .1));
}

.home-page .industry-card h3 {
  max-width: 12ch;
  margin-bottom: .52rem;
  font-size: clamp(1.26rem, 1.05rem + .65vw, 1.62rem);
  line-height: 1.08;
}

.home-page .industry-card p {
  max-width: 31ch;
  margin-bottom: 0;
  font-size: .95rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, .88);
}

.home-page .industry-link {
  margin-top: 1rem;
  min-height: 44px;
  padding: .76rem 1rem;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, .26), rgba(255, 255, 255, .14));
}

.home-page .industry-link::after {
  margin-left: .1rem;
}

@media (max-width: 680px) {
  .home-page .industry-card-content {
    inset: auto .8rem .8rem .8rem;
    padding: 1rem .95rem .95rem;
    border-radius: 20px;
  }

  .home-page .industry-card h3 {
    max-width: 13ch;
    margin-bottom: .45rem;
  }

  .home-page .industry-card p {
    font-size: .92rem;
    line-height: 1.56;
  }

  .home-page .industry-link {
    min-height: 42px;
    padding: .7rem .92rem;
  }
}

/* Home industry card content redesign */
.home-page .industry-card-content {
  inset: 0;
  min-height: 100%;
  padding: 1.2rem;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(7, 12, 24, .08) 0%, rgba(7, 12, 24, .12) 24%, rgba(7, 12, 24, .36) 56%, rgba(5, 10, 20, .92) 100%);
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.home-page .industry-tag {
  margin-bottom: 0;
  padding: .5rem .82rem;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(10, 18, 36, .42);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
}

.home-page .industry-card h3 {
  max-width: 11.5ch;
  margin-top: auto;
  margin-bottom: .55rem;
  font-size: clamp(1.32rem, 1.08rem + .72vw, 1.72rem);
  line-height: 1.06;
}

.home-page .industry-card p {
  max-width: 29ch;
  margin-bottom: 0;
  font-size: .93rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, .9);
}

.home-page .industry-link {
  margin-top: 1.1rem;
  min-height: 46px;
  width: 100%;
  padding: .84rem 1rem;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .1));
  border-color: rgba(255, 255, 255, .16);
}

.home-page .industry-link::after {
  margin-left: .4rem;
}

@media (max-width: 680px) {
  .home-page .industry-card-content {
    padding: 1rem;
  }

  .home-page .industry-card h3 {
    max-width: 12.5ch;
    margin-bottom: .45rem;
  }

  .home-page .industry-card p {
    font-size: .92rem;
    line-height: 1.54;
  }

  .home-page .industry-link {
    min-height: 42px;
    padding: .76rem .9rem;
  }
}

/* Service featured projects */
.featured-projects-section .section-title {
  max-width: 760px;
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.featured-project-card {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border: 1px solid rgba(23, 32, 51, .1);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.featured-project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 78, 216, .16);
  box-shadow: 0 20px 40px rgba(15, 23, 42, .12);
}

.featured-project-media {
  display: block;
  overflow: hidden;
}

.featured-project-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .4s ease;
}

.featured-project-card:hover .featured-project-media img {
  transform: scale(1.03);
}

.featured-project-copy {
  padding: 1rem 1rem 1.15rem;
}

.featured-project-copy h3 {
  margin-bottom: .45rem;
  font-size: 1.08rem;
  line-height: 1.24;
}

.featured-project-copy h3 a {
  color: #162133;
}

.featured-project-copy p {
  margin-bottom: 0;
  color: #53637d;
  line-height: 1.62;
}

@media (max-width: 1180px) {
  .featured-projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .featured-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .featured-projects-grid {
    grid-template-columns: 1fr;
  }

  .featured-project-media img {
    height: 220px;
  }
}

/* Service featured projects: 6-card layout with larger images */
.featured-projects-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.featured-project-media img {
  height: 250px;
}

@media (max-width: 1180px) {
  .featured-projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .featured-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-project-media img {
    height: 230px;
  }
}

@media (max-width: 560px) {
  .featured-project-media img {
    height: 220px;
  }
}

/* Desktop services dropdown hover fix */
@media (min-width: 861px) {
  .dropdown {
    position: relative;
  }

  .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
  }

  .dropdown-menu {
    top: calc(100% + .2rem);
  }
}

/* FORM SUBMIT BUTTON STYLING */
#submitBtn:disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  background: #999;
}

.form-note {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
}

.form-note.success {
  color: #16a34a;
}

.form-note.error {
  color: #dc2626;
}

button:disabled {
  opacity: .7;
  cursor: not-allowed;
}

/* Consent Checkbox */
/* ===========================
   Consent Checkbox Responsive
   =========================== */

.consent-field {
    margin-top: 10px;
}

.consent-field label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    color: #333;
}

.consent-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    margin-top: 3px;
    accent-color: #0d6efd;
    cursor: pointer;
}

.consent-field label span {
    flex: 1;
}

.consent-field .error-message {
    margin-top: 6px;
    margin-left: 28px;
}

/* Tablet */
@media (max-width: 992px) {
    .consent-field label {
        font-size: 14px;
    }

    .consent-field input[type="checkbox"] {
        width: 17px;
        height: 17px;
        min-width: 17px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .consent-field {
        margin-top: 8px;
    }

    .consent-field label {
        gap: 8px;
        font-size: 14px;
        line-height: 1.5;
    }

    .consent-field input[type="checkbox"] {
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-top: 2px;
    }

    .consent-field .error-message {
        margin-left: 24px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .consent-field label {
        font-size: 13px;
        gap: 8px;
        line-height: 1.5;
    }

    .consent-field input[type="checkbox"] {
        width: 15px;
        height: 15px;
        min-width: 15px;
    }

    .consent-field .error-message {
        margin-left: 22px;
        font-size: 12px;
    }
}

.form-message{

    margin-top:20px;

    padding:15px;

    border-radius:8px;

    font-size:15px;

    transition:.4s;

}

.form-message.success{

    background:#e8f8ee;

    color:#0f7a3d;

    border:1px solid #bde5ca;

}

.form-message.error{

    background:#fff1f0;

    color:#c62828;

    border:1px solid #ffc9c9;

}

.spinner{

    width:16px;

    height:16px;

    border:2px solid rgba(255,255,255,.4);

    border-top-color:#fff;

    border-radius:50%;

    display:inline-block;

    animation:spin .7s linear infinite;

    margin-right:8px;

    vertical-align:middle;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}