:root {
  --navy-950: #0a1733;
  --navy-900: #0d1d44;
  --navy-800: #122a5c;
  --brand-400: #ffc629;
  --brand-500: #f5b50a;
  --brand-600: #e0a200;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-900: #0f172a;
  --font-display: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 0.875rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

ul {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 100%;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--slate-50);
}

.section--dark {
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
}

.section--dark::before,
.section--dark::after {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: var(--brand-400);
  opacity: 0.1;
  filter: blur(60px);
  pointer-events: none;
}

.section--dark::before {
  top: -5rem;
  right: -5rem;
}

.section--dark::after {
  bottom: -5rem;
  left: -5rem;
}

.section__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-400);
  margin-bottom: 0.75rem;
}

.section__eyebrow--light {
  color: var(--brand-400);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-900);
}

.section__title--light {
  color: var(--white);
}

.section__title--small {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
}

.section__footer {
  margin-top: 3rem;
  text-align: center;
}

.text-brand {
  color: var(--brand-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn svg {
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--brand-400);
  color: var(--navy-950);
  box-shadow: 0 10px 25px -5px rgba(245, 181, 10, 0.35);
}

.btn--primary:hover {
  background: var(--brand-500);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--brand-400);
  color: var(--brand-400);
}

.btn--outline-dark {
  border: 2px solid var(--navy-900);
  color: var(--navy-900);
}

.btn--outline-dark:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn--outline-dark-alt {
  border: 2px solid var(--navy-950);
  color: var(--navy-950);
}

.btn--outline-dark-alt:hover {
  background: var(--navy-950);
  color: var(--white);
}

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

.btn--pill {
  border-radius: var(--radius-full);
}

.btn--full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

.site-header--scrolled {
  background: rgba(10, 23, 51, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.logo__accent {
  color: var(--brand-400);
}

.logo__tagline {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.15rem;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover {
  color: var(--brand-400);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.nav-phone__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: var(--brand-400);
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--white);
  border-radius: var(--radius);
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle--open .menu-icon {
  display: none;
}

.menu-toggle--open .close-icon {
  display: block;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay--open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 18rem;
  height: 100%;
  background: var(--navy-950);
  padding: 1.5rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-drawer--open {
  transform: translateX(0);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.drawer-close {
  color: var(--white);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav__link {
  padding: 0.875rem 0.75rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav__link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--brand-400);
}

.mobile-cta {
  margin-top: 1.5rem;
  width: 100%;
}

.mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.mobile-phone svg {
  color: var(--brand-400);
}

@media (min-width: 1024px) {
  .nav-menu,
  .nav-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-drawer,
  .mobile-overlay {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: var(--navy-950);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-950) 0%, rgba(10, 23, 51, 0.92) 50%, rgba(10, 23, 51, 0.3) 100%);
}

.hero__content {
  position: relative;
  max-width: 42rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
}

.hero__subtitle {
  margin-top: 1.25rem;
  max-width: 32rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.hero__ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__badges {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 36rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.hero-badge__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 198, 41, 0.4);
  display: grid;
  place-items: center;
  color: var(--brand-400);
  flex-shrink: 0;
}

.hero-badge__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.hero-badge__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 640px) {
  .hero__ctas {
    flex-direction: row;
  }

  .hero__badges {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-bottom: 5rem;
  }

  .hero__content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Brands */
.brands {
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  background: var(--white);
  padding: 1.5rem 0;
}

.brands__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.brands__intro {
  text-align: center;
}

.brands__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
}

.brands__count {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-900);
}

.brands__track {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands__marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.brands__marquee span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-400);
  filter: grayscale(1);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.brands__marquee span:hover {
  color: var(--slate-600);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 1024px) {
  .brands__inner {
    flex-direction: row;
    gap: 2.5rem;
  }

  .brands__intro {
    text-align: left;
    border-right: 1px solid var(--slate-200);
    padding-right: 2.5rem;
    flex-shrink: 0;
  }
}

/* About */
.about__grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.about__image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__text {
  margin-top: 1.25rem;
  line-height: 1.65;
  color: var(--slate-600);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.25rem 0;
}

.stat__icon {
  color: var(--brand-500);
}

.stat__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-top: 0.75rem;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--slate-500);
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  ring: 1px solid var(--slate-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card__image {
  height: 10rem;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.1);
}

.service-card__body {
  position: relative;
  padding: 1.25rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.service-card__desc {
  margin-top: 0.375rem;
  padding-right: 2rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--slate-500);
}

.service-card__arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-card__arrow {
  background: var(--brand-400);
  color: var(--navy-950);
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Why Us */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.why-item {
  text-align: center;
}

.why-item__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: var(--brand-400);
}

.why-item__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.why-item__desc {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-us__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .why-item {
    text-align: left;
  }

  .why-item__icon {
    margin: 0 0 1rem;
  }
}

/* Industries */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-100);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-400);
  box-shadow: var(--shadow-lg);
}

.industry-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--slate-50);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.industry-card:hover .industry-card__icon {
  background: var(--brand-400);
  color: var(--navy-950);
}

.industry-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-900);
}

@media (min-width: 640px) {
  .industries__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries__grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* Portfolio */
.portfolio__slider {
  padding-bottom: 3.5rem;
}

.portfolio-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  ring: 1px solid var(--slate-100);
}

.portfolio-card__image {
  height: 14rem;
  overflow: hidden;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.1);
}

.portfolio-card__body {
  padding: 1.25rem;
}

.portfolio-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-600);
}

.portfolio-card__tag {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}

/* Swiper custom styles */
.portfolio-swiper,
.testimonial-swiper {
  overflow: visible;
}

.portfolio-swiper .swiper-wrapper,
.testimonial-swiper .swiper-wrapper {
  display: grid;
  gap: 1.25rem;
}

.portfolio-swiper .swiper-wrapper {
  grid-template-columns: 1fr;
}

.testimonial-swiper .swiper-wrapper {
  grid-template-columns: 1fr;
}

.portfolio-swiper .swiper-slide,
.testimonial-swiper .swiper-slide {
  height: auto;
}

.swiper-pagination {
  display: none;
}

.portfolio-swiper .swiper-button-next,
.portfolio-swiper .swiper-button-prev {
  color: var(--navy-800) !important;
  background: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.portfolio-swiper .swiper-button-next::after,
.portfolio-swiper .swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: 700;
}

.portfolio-swiper .swiper-pagination-bullet-active {
  background: var(--navy-800) !important;
}

/* Process */
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.process-step {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-100);
  background: rgba(248, 250, 252, 0.6);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--brand-400);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.process-step__number {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: 1rem;
}

.process-step__desc {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--slate-500);
}

@media (min-width: 1024px) {
  .process__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .process-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-400);
    font-size: 1.25rem;
    font-weight: 700;
  }
}

/* Advantages & Testimonials */
.advantages__grid {
  display: grid;
  align-items: stretch;
  gap: 1.5rem;
}

.advantages__card {
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  ring: 1px solid var(--slate-100);
}

.advantages__list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.advantages__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}

.advantages__check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--brand-400);
  color: var(--navy-950);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.advantages__image {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.advantages__image img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.testimonials {
  border-radius: var(--radius-xl);
  background: var(--navy-950);
  padding: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.testimonial__quote {
  color: rgba(255, 198, 41, 0.7);
}

.testimonial__text {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.testimonial__author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brand-400);
  color: var(--navy-950);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.testimonial__name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-400);
}

.testimonial__role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.testimonial__stars {
  margin-left: auto;
  display: flex;
  gap: 0.125rem;
  color: var(--brand-400);
}

.testimonial-swiper {
  margin-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--brand-400) !important;
}

@media (min-width: 1024px) {
  .advantages__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Stats Banner */
.stats-banner__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  background: var(--navy-900);
}

.stats-banner__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--brand-400);
}

.stats-banner__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}

.stats-banner__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 1024px) {
  .stats-banner__grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 2.5rem 3rem;
  }

  .stats-banner__value {
    font-size: 2rem;
  }
}

/* Service Areas & CTA */
.service-areas__grid {
  display: grid;
  gap: 1.5rem;
}

.service-areas__card,
.cta-card {
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.service-areas__card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  ring: 1px solid var(--slate-100);
}

.map {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  background: var(--slate-50);
  overflow: hidden;
}

.map__svg {
  width: 100%;
  height: 100%;
  color: var(--slate-200);
}

.map__pin {
  position: absolute;
  color: var(--brand-500);
  transform: translate(-50%, -100%);
}

.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--brand-400);
}

.cta-card__content {
  position: relative;
  z-index: 1;
  max-width: 28rem;
}

.cta-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--navy-950);
}

.cta-card__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(10, 23, 51, 0.8);
}

.cta-card__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-card__image {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 110%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
  display: none;
}

@media (min-width: 640px) {
  .cta-card__actions {
    flex-direction: row;
  }

  .cta-card__image {
    display: block;
  }
}

@media (min-width: 1024px) {
  .service-areas__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact & FAQ */
.contact-faq__grid {
  display: grid;
  gap: 2.5rem;
}

.faq__list {
  margin-top: 1.25rem;
}

.faq__item {
  border-bottom: 1px solid var(--slate-100);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
}

.faq__icon {
  color: var(--brand-500);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item--open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item--open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer > * {
  overflow: hidden;
}

.faq__answer p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate-500);
  padding-bottom: 1rem;
}

.faq__all {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-600);
}

.contact-info__list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.contact-info__list a:hover,
.contact-info__list a:focus {
  color: var(--navy-900);
}

.contact-info__list svg {
  color: var(--brand-500);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.quote-form {
  border-radius: var(--radius-xl);
  background: var(--slate-50);
  padding: 1.5rem;
  border: 1px solid var(--slate-100);
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--slate-900);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--brand-400);
}

.quote-form textarea {
  margin-bottom: 0.75rem;
  resize: vertical;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-faq__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Footer */
.footer {
  background: var(--navy-950);
  color: var(--white);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

.footer__text {
  margin-top: 1.25rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer__social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer__social a:hover {
  background: var(--brand-400);
  color: var(--navy-950);
}

.footer__title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

.footer__column ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__column a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer__column a:hover {
  color: var(--brand-400);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a:hover {
  color: var(--brand-400);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Reveal animations - default hidden, shown by JS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible,
.hero-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .portfolio-swiper .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .portfolio-swiper .swiper-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-swiper .swiper-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* ************************************************** */
/* ---------- Design tokens ---------- */
:root {
  --blue:        #e2e8f0;   /* section background */
  --blue-dark:   #f5b50a;   /* heading color */
  --red:         #0f172a;   /* link / button color */
  --red-hover:   #f5b50a;
  --card-bg:     #f1f3f4;   /* light grey card */
  --rule:        #d8d8d8;   /* underline color */
  --text-soft:   #c8102e;   /* matches the design */
  --radius-card: 16px;
  --radius-btn:  999px;
  --maxw:        1320px;
}

/* ==========================================================================
   SECTION
   ========================================================================== */
.industries {
  background: var(--blue);
  padding: clamp(2.5rem, 6vw, 5rem) 1rem;
}

.industries__container {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;          /* mobile: stacked */
  gap: 1.5rem;
}

/* From tablet up: 1/3 + 2/3 layout */
@media (min-width: 900px) {
  .industries__container {
    grid-template-columns: minmax(280px, 1fr) 2fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   LEFT CARD — Intro
   ========================================================================== */
.industries__intro {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industries__title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--blue-dark);
}

.industries__subtitle {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--red);
  max-width: 22ch;
}

.industries__btn {
  margin-top: 2rem;
  align-self: flex-start;
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-btn);
  transition: background-color 0.25s ease, transform 0.25s ease,
              box-shadow 0.25s ease;
  box-shadow: 0 6px 16px -6px rgba(200, 16, 46, 0.55);
}

.industries__btn:hover,
.industries__btn:focus-visible {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(200, 16, 46, 0.7);
  outline: none;
}

.industries__btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* ==========================================================================
   RIGHT CARD — List of Industries (multi-column)
   ========================================================================== */
.industries__list-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 4vw, 3rem);
}

/*
  CSS multi-column layout balances the items automatically.
  - 1 col on mobile
  - 2 cols on tablet
  - 3 cols on desktop
*/
.industries__list {
  column-count: 1;
  column-gap: clamp(1.5rem, 3vw, 3rem);
}

@media (min-width: 600px) {
  .industries__list { column-count: 2; }
}

@media (min-width: 1000px) {
  .industries__list { column-count: 3; }
}

.industries__list li {
  break-inside: avoid;             /* keep each item in its column */
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

/* Remove the underline on the very last item of each column visually
   (multi-column doesn't expose :last-child per column, so we keep the
   border for visual rhythm — matches the reference design). */

.industries__list a {
  display: block;
  color: var(--red);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.05vw, 1.0625rem);
  line-height: 1.35;
  position: relative;
  transition: color 0.2s ease, padding-left 0.25s ease;
}

.industries__list a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(8px, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-weight: 700;
}

.industries__list a:hover,
.industries__list a:focus-visible {
  color: var(--red-hover);
  padding-left: 6px;
  outline: none;
}

.industries__list a:hover::after,
.industries__list a:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.industries__list a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ************************************************************************ */
/* ==========================================================================
   SECTION WRAPPER
   ========================================================================== */
.signs-section {
  background: var(--slate-100);
  padding: clamp(2.5rem, 6vw, 5rem) 1rem;
}

.signs-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Heading ---------- */
.signs-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.signs-section__eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.signs-section__title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.signs-section__subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--slate-500);
}

/* ==========================================================================
   GRID
   ========================================================================== */
.signs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* 2 columns on small tablets */
@media (min-width: 560px) {
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 4 columns on desktop */
@media (min-width: 1024px) {
  .signs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* ==========================================================================
   CARD
   ========================================================================== */
.sign-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sign-card:hover,
.sign-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ---------- Media ---------- */
.sign-card__media {
  position: relative;
  padding: 0.875rem 0.875rem 0;
}

.sign-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--slate-100);
  transition: transform 0.5s ease;
}

.sign-card:hover .sign-card__media img {
  transform: scale(1.03);
}

/* "Free Quote" pill */
.sign-card__badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: #2bb673;          /* green badge */
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.01em;
  z-index: 2;
}

/* ---------- Body ---------- */
.sign-card__body {
  padding: 1rem 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sign-card__title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-950);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sign-card__meta {
  margin-top: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--brand-600);
  letter-spacing: 0.01em;
}

.sign-card__desc {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* ---------- Button ---------- */
.sign-card__btn {
  margin-top: 1rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background-color 0.25s ease, transform 0.25s ease,
              box-shadow 0.25s ease, color 0.25s ease;
}

.sign-card__btn:hover,
.sign-card__btn:focus-visible {
  background: var(--brand-500);
  color: var(--navy-950);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  outline: none;
}

.sign-card__btn:focus-visible {
  outline: 2px solid var(--brand-400);
  outline-offset: 2px;
}
/* ******************************************************************* */
/* banner */
/* ******************************************************************* */
/* ==========================================================================
   Custom Signs Hero With Alternating Vertical Image Carousel
   ========================================================================== */
.sign-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 50%, rgba(150, 0, 255, 0.18), transparent 34%),
    linear-gradient(90deg, #060606 0%, #08050f 48%, #050505 100%);
  color: var(--white);
}

.sign-hero__glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: var(--radius-full);
  filter: blur(95px);
  opacity: 0.35;
  pointer-events: none;
}

.sign-hero__glow--left {
  left: 18%;
  bottom: 0;
  background: #7c00ff;
}

.sign-hero__glow--right {
  right: 10%;
  top: 8%;
  background: rgba(245, 181, 10, 0.3);
}

.sign-hero__container {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 4vw, 5.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .sign-hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr);
    gap: clamp(2rem, 5vw, 5rem);
  }
}

.sign-hero__content {
  max-width: 650px;
}

.sign-hero__rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  margin-bottom: 1.25rem;
}

.sign-hero__stars {
  color: var(--brand-500);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  line-height: 1;
}

.sign-hero__rating strong {
  color: var(--white);
  font-weight: 800;
}

.sign-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6vw, 4.85rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.055em;
  color: var(--white);
  max-width: 12ch;
}

.sign-hero__title span {
  color: var(--brand-400);
}

.sign-hero__text {
  margin-top: 1.6rem;
  max-width: 660px;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.65;
}

.sign-hero__features {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.65rem;
}

.sign-hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
}

.sign-hero__check {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #14d96f;
  border-radius: var(--radius-full);
  flex: 0 0 auto;
}

.sign-hero__check::after {
  content: "";
  width: 0.48rem;
  height: 0.25rem;
  border-left: 2px solid #14d96f;
  border-bottom: 2px solid #14d96f;
  transform: rotate(-45deg) translate(1px, -1px);
}

.sign-hero__actions {
  margin-top: 2.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.sign-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.25rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.sign-hero__btn:hover,
.sign-hero__btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.sign-hero__btn--primary {
  background: linear-gradient(135deg, #b000ff, #8c00d4);
  color: var(--white);
  box-shadow: 0 18px 35px -16px rgba(176, 0, 255, 0.95);
}

.sign-hero__btn--primary:hover,
.sign-hero__btn--primary:focus-visible {
  box-shadow: 0 24px 42px -16px rgba(176, 0, 255, 1);
}

.sign-hero__btn--secondary {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.sign-hero__btn--secondary:hover,
.sign-hero__btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   Right Side Image Columns
   Column 1: down, Column 2: up, Column 3: down
   ========================================================================== */
.sign-gallery {
  --gallery-gap: 1rem;
  --gallery-item: 12.25rem;
  --gallery-item-tall: 18.25rem;
  position: relative;
  height: min(680px, 82vh);
  min-height: 520px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gallery-gap);
  overflow: hidden;
  padding: 0 0.15rem;
  mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.sign-gallery__column {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.sign-gallery__track {
  display: flex;
  flex-direction: column;
  gap: var(--gallery-gap);
  will-change: transform;
}

.sign-gallery__column--down .sign-gallery__track {
  transform: translateY(-50%);
  animation: gallery-down 24s linear infinite;
}

.sign-gallery__column--up .sign-gallery__track {
  animation: gallery-up 24s linear infinite;
}

.sign-gallery:hover .sign-gallery__track {
  animation-play-state: paused;
}

.sign-gallery__item {
  height: var(--gallery-item);
  flex: 0 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--slate-900);
  box-shadow: 0 22px 50px -25px rgba(0, 0, 0, 0.85);
}

.sign-gallery__item--tall {
  height: var(--gallery-item-tall);
}

.sign-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

@keyframes gallery-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes gallery-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .sign-gallery {
    --gallery-gap: 1.05rem;
    --gallery-item: 13.1rem;
    --gallery-item-tall: 19.6rem;
  }
}

@media (max-width: 959px) {
  .sign-hero {
    min-height: auto;
  }

  .sign-hero__container {
    min-height: auto;
  }

  .sign-hero__content {
    text-align: center;
    margin: 0 auto;
  }

  .sign-hero__title {
    max-width: none;
  }

  .sign-hero__features,
  .sign-hero__actions,
  .sign-hero__rating {
    justify-content: center;
  }

  .sign-gallery {
    height: 520px;
    min-height: 520px;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .sign-hero__container {
    padding: 3rem 1rem;
    gap: 2.5rem;
  }

  .sign-hero__title {
    font-size: clamp(2.3rem, 12vw, 3.45rem);
  }

  .sign-hero__actions {
    flex-direction: column;
  }

  .sign-hero__btn {
    width: 100%;
  }

  .sign-gallery {
    --gallery-gap: 0.75rem;
    --gallery-item: 10rem;
    --gallery-item-tall: 14rem;
    grid-template-columns: repeat(3, minmax(125px, 1fr));
    overflow-x: auto;
    height: 420px;
    min-height: 420px;
    padding-bottom: 0.5rem;
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .sign-gallery__column--down .sign-gallery__track,
  .sign-gallery__column--up .sign-gallery__track {
    transform: translateY(0);
  }
}
/* ************************************************************************** */
/* testimonials  */
/* ************************************************************************** */
.reviews-section {
  --purple-1: #3b1c86;
  --purple-2: #462060;
  --card-bg: #191919;
  --card-text: #d7d7d7;
  --card-muted: #8b8b8b;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.24), transparent 38%),
    linear-gradient(90deg, var(--purple-1), var(--purple-2));
  color: var(--white);
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 4rem) 0 clamp(1.8rem, 4vw, 3rem);
}

.reviews-section__header {
  width: min(100% - 2rem, 900px);
  margin: 0 auto clamp(1.9rem, 4vw, 3rem);
  text-align: center;
}

.reviews-section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
}

.reviews-section__header p {
  margin-top: 0.8rem;
  color: #e9ddff;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
}

.reviews-marquee {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.reviews-row {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

.reviews-row--left .reviews-track {
  animation: reviews-left 38s linear infinite;
}

.reviews-row--right .reviews-track {
  animation: reviews-right 38s linear infinite;
  transform: translateX(-50%);
}

.reviews-row:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: clamp(260px, 22vw, 370px);
  min-height: 165px;
  flex: 0 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card__stars {
  color: var(--brand-500);
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 0.95rem;
}

.review-card p {
  color: var(--card-text);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 600;
  line-height: 1.55;
}

.review-card footer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.verified {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #10d969;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0 0 3px rgba(16, 217, 105, 0.12);
}

.review-card strong {
  display: block;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
}

.review-card small {
  display: block;
  color: var(--card-muted);
  font-size: 0.72rem;
  margin-top: 0.12rem;
}

@keyframes reviews-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes reviews-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 640px) {
  .reviews-section {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }

  .reviews-marquee {
    gap: 1rem;
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }

  .reviews-track {
    gap: 1rem;
  }

  .review-card {
    width: 280px;
    min-height: 170px;
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ************************************************************** */
/* section and image */
/* ************************************************************** */

/* ==========================================================================
   Why Choose Front Signs Section
   ========================================================================== */
.why-front {
  background: var(--white);
  padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.why-front__container {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.why-front__heading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.25;
  font-weight: 700;
  color: #171717;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.why-front__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-front__media,
.why-front__award {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-front__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.why-front__copy {
  max-width: 520px;
}

.why-front__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
  font-weight: 700;
  color: #151515;
  margin-bottom: 0.85rem;
}

.why-front__copy p {
  color: var(--slate-600);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  line-height: 1.65;
}

.why-front__copy a {
  color: var(--slate-900);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.why-front__copy a:hover,
.why-front__copy a:focus-visible {
  color: var(--brand-600);
  outline: none;
}

.why-front__award {
  min-height: 240px;
  background: #edf3f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #050505;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.why-front__award span,
.why-front__award strong {
  display: block;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-shadow: 0.08em 0.08em 0 rgba(0, 0, 0, 0.16);
}

.why-front__award span {
  font-size: clamp(4.2rem, 11vw, 8rem);
}

.why-front__award strong {
  font-size: clamp(5.2rem, 13vw, 9.4rem);
}

@media (min-width: 760px) {
  .why-front__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 5vw, 4.5rem);
    row-gap: clamp(2.5rem, 6vw, 4.5rem);
    align-items: center;
  }

  .why-front__media,
  .why-front__award {
    min-height: 345px;
  }

  .why-front__media img {
    min-height: 345px;
  }

  .why-front__copy--center {
    align-self: center;
  }

  .why-front__copy--left {
    justify-self: start;
  }
}

@media (min-width: 1024px) {
  .why-front {
    padding-top: 1.4rem;
    padding-bottom: 4.5rem;
  }

  .why-front__heading {
    margin-left: 1.8rem;
  }

  .why-front__grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-front__media,
  .why-front__award {
    min-height: 360px;
  }

  .why-front__media img {
    min-height: 360px;
  }
}

@media (max-width: 759px) {
  .why-front__grid > :nth-child(3) {
    order: 4;
  }

  .why-front__grid > :nth-child(4) {
    order: 3;
  }

  .why-front__grid > :nth-child(7) {
    order: 8;
  }

  .why-front__grid > :nth-child(8) {
    order: 7;
  }
}

/* ==========================================================================
   Trusted Platforms + CTA Section
   ========================================================================== */
.trust-cta {
  background: var(--white);
  color: #0b0b0f;
  padding: clamp(1.5rem, 3vw, 2.2rem) 1rem clamp(2rem, 4vw, 2.5rem);
  padding-top:  120px;
  padding-bottom:  100px;
}

.trust-cta__container {
  width: min(100%, 1480px);
  margin: 0 auto;
}

.trust-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.7vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
  color: #050505;
  text-align: center;
}

.trust-cta__logos {
  width: min(100%, 820px);
  margin: clamp(3.8rem, 8vw, 5.6rem) auto clamp(4.5rem, 9vw, 6.3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4.2rem);
  flex-wrap: wrap;
}

.platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.platform-logo:hover,
.platform-logo:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

/* BBB style mark */
.bbb-mark {
  width: 78px;
  height: 108px;
  background: #075c73;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  padding: 0.78rem 0.45rem;
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
}

.bbb-flame {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 26px;
  height: 48px;
  transform: translateX(-50%);
}

.bbb-flame::before,
.bbb-flame::after {
  content: "";
  position: absolute;
  background: var(--white);
}

.bbb-flame::before {
  width: 22px;
  height: 28px;
  left: 2px;
  top: 0;
  border-radius: 60% 40% 55% 45%;
  transform: rotate(-35deg);
}

.bbb-flame::after {
  width: 20px;
  height: 20px;
  left: 3px;
  top: 27px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.bbb-text {
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.bbb-text::after {
  content: "®";
  font-size: 0.45rem;
  margin-left: 0.15rem;
  vertical-align: top;
}

/* Yelp wordmark approximation */
.platform-logo--yelp {
  gap: 0.55rem;
}

.yelp-word {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  color: #000;
}

.yelp-burst {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-block;
}

.yelp-burst span {
  position: absolute;
  left: 18px;
  top: 4px;
  width: 13px;
  height: 25px;
  background: #ff1a1a;
  border-radius: 999px 999px 4px 4px;
  transform-origin: 4px 18px;
}

.yelp-burst span:nth-child(1) { transform: rotate(0deg); }
.yelp-burst span:nth-child(2) { transform: rotate(72deg); }
.yelp-burst span:nth-child(3) { transform: rotate(144deg); }
.yelp-burst span:nth-child(4) { transform: rotate(216deg); }
.yelp-burst span:nth-child(5) { transform: rotate(288deg); }

/* Trustpilot */
.platform-logo--trustpilot {
  gap: 0.65rem;
}

.trustpilot-star {
  color: #00b67a;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1;
}

.trustpilot-word {
  font-family: var(--font-display);
  color: #080808;
  font-size: clamp(1.85rem, 3.25vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
}

/* Google business shop icon approximation */
.google-shop {
  width: 88px;
  height: 82px;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
}

.google-body {
  width: 70px;
  height: 54px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(135deg, #2f80ed, #4f8df6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  box-shadow: var(--shadow-lg);
}

.google-awning {
  position: absolute;
  left: 8px;
  top: 0;
  width: 72px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px 8px 10px 10px;
}

.google-awning i:nth-child(1) { background: #6ca5ff; }
.google-awning i:nth-child(2) { background: #3c4fbb; }
.google-awning i:nth-child(3) { background: #5b78db; }

.google-awning::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 22px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.trust-cta__content {
  text-align: center;
}

.trust-cta__headline {
  font-family: var(--font-display);
  color: #17171b;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: -0.05em;
}

.trust-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.55rem;
  min-height: 34px;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius);
  background: #ffad13;
  color: #050505;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.trust-cta__button:hover,
.trust-cta__button:focus-visible {
  background: var(--brand-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.trust-cta__button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand-400), transparent 55%);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .trust-cta__title {
    text-align: center;
  }

  .trust-cta__logos {
    margin-top: 2.75rem;
    margin-bottom: 3.25rem;
    gap: 1.75rem 2.25rem;
  }

  .platform-logo {
    min-height: 76px;
  }

  .bbb-mark {
    width: 62px;
    height: 86px;
  }

  .bbb-flame {
    top: 15px;
    transform: translateX(-50%) scale(0.76);
  }

  .bbb-text {
    font-size: 1.2rem;
  }

  .google-shop {
    transform: scale(0.82);
  }

  .trust-cta__headline {
    line-height: 1.35;
  }

  .trust-cta__headline br {
    display: none;
  }
}

/* ==========================================================================
   Service Areas Section
   ========================================================================== */
.service-areas {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.service-areas__container {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .service-areas__container {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1fr);
  }
}

.service-areas__eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 0.8rem;
}

.service-areas__title {
  font-family: var(--font-display);
  color: var(--navy-950);
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.service-areas__title span {
  color: #f59e0b;
}

.service-areas__text {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  max-width: 610px;
  color: var(--navy-800);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.service-areas__cities {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem clamp(2rem, 7vw, 4.5rem);
  max-width: 580px;
}

@media (min-width: 560px) {
  .service-areas__cities {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-areas__cities ul {
  display: grid;
  gap: 0.86rem;
}

.service-areas__cities li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--navy-950);
  font-size: 0.94rem;
  font-weight: 700;
}

.service-areas__cities li::before {
  content: "";
  position: absolute;
  left: 0.13rem;
  top: 0.28rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: var(--radius-full);
  background: var(--brand-500);
}

.service-areas__cities li::after {
  content: "";
  position: absolute;
  left: 0.36rem;
  top: 0.5rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: var(--radius-full);
  background: var(--white);
}

.service-areas__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: clamp(1.8rem, 4vw, 2.25rem);
  min-height: 48px;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius);
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.service-areas__button:hover,
.service-areas__button:focus-visible {
  background: var(--brand-500);
  color: var(--navy-950);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.service-areas__map-card {
  border: 1px solid var(--slate-200);
  background: rgba(248, 250, 252, 0.65);
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow);
}

.service-areas__map-panel {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  background: #e9eff6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.service-areas__map {
  width: 100%;
  height: auto;
  max-height: 390px;
}

.map-shape {
  fill: #dfe8f2;
  stroke: #c8d6e5;
  stroke-width: 3;
}

.map-lines path {
  fill: none;
  stroke: #c8d6e5;
  stroke-width: 1.25;
  stroke-dasharray: 6 8;
  opacity: 0.9;
}

.pin-glow {
  fill: rgba(245, 181, 10, 0.18);
}

.pin-outer {
  fill: #5c3b16;
}

.pin-inner {
  fill: var(--brand-500);
}

.service-areas__legend {
  position: absolute;
  left: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.4rem);
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  background: var(--white);
  color: var(--navy-800);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-areas__legend span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--radius-full);
  background: var(--brand-500);
}

@media (max-width: 959px) {
  .service-areas__content {
    text-align: center;
  }

  .service-areas__text,
  .service-areas__cities {
    margin-left: auto;
    margin-right: auto;
  }

  .service-areas__cities {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .service-areas {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .service-areas__map-panel {
    min-height: 290px;
  }

  .service-areas__legend {
    position: static;
    margin: -0.2rem auto 0;
    width: fit-content;
  }
}

/* ***************************************************************************** */
/* process section */
/* ***************************************************************************** */
.process-section {
  background: var(--white);
  padding: clamp(2.8rem, 6vw, 5.2rem) 1rem clamp(3rem, 6vw, 5.5rem);
  color: var(--navy-950);
}

.process-section__container {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.process-section__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.7rem);
}

.process-section__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d66a00;
  margin-bottom: 0.85rem;
}

.process-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.15rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--navy-950);
}

.process-section__title span {
  color: #ff9900;
}

.process-section__subtitle {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  color: var(--navy-800);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-card {
  position: relative;
  min-height: 230px;
  padding: 6.9rem 1.4rem 1.6rem;
  background: var(--white);
  border: 1px solid #d9e2ee;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.process-card:hover{
  border-color: #ffa400;
}
.process-card__number:hover {
  background: #ffa400;
  color: var(--white);
  border-color: #ffad13;
}

.process-card__number {
  position: absolute;
  top: 1.75rem;
  left: 50%;
  width: 4.65rem;
  height: 4.65rem;
  transform: translateX(-50%);
  border-radius: var(--radius-full);
  background: #edf1f6;
  color: var(--navy-950);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 4px solid var(--white);
  box-shadow:
    0 12px 24px -14px rgb(15 23 42 / 0.45),
    0 3px 0 rgb(255 255 255),
    0 0 0 1px rgb(226 232 240 / 0.8);
  z-index: 2;
}


.process-card__line {
  display: none;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.process-card p {
  max-width: 19ch;
  color: #4d6486;
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }

  .process-card {
    min-height: 232px;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .process-card__line {
    position: absolute;
    top: 4.02rem;
    left: calc(100% - 0.1rem);
    width: 1.55rem;
    height: 2px;
    background: #ffa400;
    display: block;
    z-index: 3;
  }
}

@media (min-width: 1180px) {
  .process-card__line {
    width: 2.45rem;
  }
}

@media (max-width: 520px) {
  .process-section__header {
    margin-bottom: 2.5rem;
  }

  .process-card {
    min-height: 215px;
    padding-top: 6.4rem;
  }

  .process-card__number {
    width: 4.2rem;
    height: 4.2rem;
  }
}

/* ************************************************************************************ */
/* industries section */
/* ************************************************************************************ */
.industries-section {
  background: var(--white);
  padding: clamp(4rem, 7vw, 6.4rem) 1rem clamp(4.25rem, 7vw, 6rem);
}

.industries-section__container {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.industries-section__header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.industries-section__eyebrow {
  font-family: var(--font-display);
  color: var(--brand-600);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.industries-section__title {
  font-family: var(--font-display);
  color: var(--navy-950);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.industries-section__title span {
  color: var(--brand-600);
}

.industries-section__text {
  margin-top: 1.25rem;
  color: var(--navy-800);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.mobile-break {
  display: none;
}

.industry-grid {
  margin-top: clamp(3.25rem, 6vw, 5.4rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.industry-card {
  min-height: 138px;
  padding: 1.25rem 0.95rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--slate-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.industry-card:hover,
.industry-card:focus-visible {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--brand-500), var(--slate-200) 55%);
  background: var(--white);
  box-shadow: var(--shadow-xl);
  outline: none;
}

.industry-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand-400), transparent 55%);
  outline-offset: 4px;
}

.industry-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: transform 0.25s ease;
}

.industry-card:hover .industry-card__icon,
.industry-card:focus-visible .industry-card__icon {
  transform: scale(1.08) rotate(-2deg);
}

.industry-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.industry-card__label {
  font-family: var(--font-display);
  color: #020617;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.22;
}

@media (min-width: 640px) {
  .industry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .industry-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 1rem;
  }

  .industry-card {
    min-height: 136px;
  }
}

@media (max-width: 560px) {
  .industries-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .desktop-break {
    display: none;
  }

  .mobile-break {
    display: block;
  }

  .industries-section__title {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }
}