/* ============================================
   Homepage — Full Width, Blue + Green (Solid)
   ============================================ */

.home-breadcrumb { display: none; }

main {
  width: 100%;
  overflow-x: hidden;
}

.tech-chip img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Animated tech orbit panel — right side, no image */
.tech-orbit-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.tech-orbit-panel__ring {
  position: absolute;
  inset: 8%;
  border: 2px dashed var(--gray-200);
  border-radius: 50%;
  animation: orbitSpin 40s linear infinite;
}

.tech-orbit-panel__ring--inner {
  inset: 28%;
  border-style: solid;
  border-color: rgba(37, 99, 235, 0.15);
  animation-direction: reverse;
  animation-duration: 28s;
}

.tech-orbit-panel__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
  z-index: 2;
}

.tech-orbit-panel__core strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.tech-orbit-panel__core span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-top: 4px;
}

.tech-orbit-panel__spin {
  position: absolute;
  inset: 0;
}

.tech-orbit-panel__icon {
  position: absolute;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  animation: orbitFloat 4s ease-in-out infinite;
}

.tech-orbit-panel__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.tech-orbit-panel__icon--1 { top: 4%; left: 50%; margin-left: -32px; animation-delay: 0s; }
.tech-orbit-panel__icon--2 { top: 22%; right: 6%; animation-delay: 0.6s; }
.tech-orbit-panel__icon--3 { bottom: 22%; right: 6%; animation-delay: 1.2s; }
.tech-orbit-panel__icon--4 { bottom: 4%; left: 50%; margin-left: -32px; animation-delay: 1.8s; }
.tech-orbit-panel__icon--5 { bottom: 22%; left: 6%; animation-delay: 2.4s; }
.tech-orbit-panel__icon--6 { top: 22%; left: 6%; animation-delay: 3s; }

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Tech Hero */
.tech-hero {
  position: relative;
  width: 100%;
  margin-top: var(--header-height);
  padding: 64px 0 56px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.tech-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.tech-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: heroBlob 14s ease-in-out infinite;
}

.tech-hero__blob--1 {
  width: 480px;
  height: 480px;
  background: var(--primary);
  top: -120px;
  right: -80px;
}

.tech-hero__blob--2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -100px;
  left: -60px;
  animation-delay: 4s;
}

.tech-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 30%, transparent 100%);
}

@keyframes heroBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.08); }
}

.tech-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 0 clamp(20px, 4vw, 60px);
  max-width: 1400px;
  margin: 0 auto;
}

.tech-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tech-hero__pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

.tech-hero__pill--blue {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.tech-hero__pill--green {
  color: var(--secondary-dark);
  background: var(--secondary-bg);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Homepage — agency typography */
main {
  --font-agency: 'Plus Jakarta Sans', var(--font-sans);
}

main .section__title {
  font-family: var(--font-agency);
  font-weight: 600;
  letter-spacing: -0.025em;
}

main .section__label {
  font-family: var(--font-agency);
  font-weight: 600;
  letter-spacing: 0.12em;
}

main .sale-box h3,
main .why-card h3,
main .product-box__body h3 {
  font-family: var(--font-agency);
  font-weight: 600;
  letter-spacing: -0.02em;
}

main .why-stat strong {
  font-family: var(--font-agency);
  font-weight: 700;
}

/* Agency hero — clean, refined */
.tech-hero--agency {
  padding: 72px 0 64px;
  background: #fafbfc;
}

.tech-hero--agency .tech-hero__blob {
  opacity: 0.18;
  filter: blur(100px);
}

.tech-hero--agency .tech-hero__grid {
  opacity: 0.5;
}

.agency-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-agency);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.agency-eyebrow__dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: agencyPulse 2s ease-in-out infinite;
}

@keyframes agencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

.agency-hero__title {
  font-family: var(--font-agency);
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 20px;
  max-width: 560px;
}

.agency-hero__title span {
  color: var(--primary);
  font-weight: 700;
}

.agency-hero__lead {
  font-family: var(--font-agency);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
}

.agency-hero__lead strong {
  color: var(--gray-800);
  font-weight: 600;
}

.agency-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.agency-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.agency-hero__stat strong {
  font-family: var(--font-agency);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1;
}

.agency-hero__stat:nth-child(2) strong {
  color: var(--primary);
}

.agency-hero__stat:nth-child(3) strong {
  color: var(--secondary-dark);
}

.agency-hero__stat span {
  font-family: var(--font-agency);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  text-transform: uppercase;
}

/* Expertise showcase — right panel */
.expertise-showcase {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.expertise-showcase__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.expertise-showcase__title {
  font-family: var(--font-agency);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.expertise-showcase__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-agency);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--secondary-dark);
  background: var(--secondary-bg);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

.expertise-showcase__pulse {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: agencyPulse 1.5s ease-in-out infinite;
}

.expertise-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.expertise-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.expertise-card--blue:hover {
  border-color: rgba(37, 99, 235, 0.25);
}

.expertise-card--green:hover {
  border-color: rgba(34, 197, 94, 0.25);
}

.expertise-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.expertise-card__icon img {
  object-fit: contain;
}

.expertise-card__body {
  flex: 1;
  min-width: 0;
}

.expertise-card__body strong {
  display: block;
  font-family: var(--font-agency);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.expertise-card__body span {
  display: block;
  font-family: var(--font-agency);
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.4;
  margin-bottom: 8px;
}

.expertise-card__bar {
  height: 3px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.expertise-card__bar i {
  display: block;
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}

.expertise-card--green .expertise-card__bar i {
  background: var(--secondary);
}

.expertise-showcase__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.expertise-showcase__footer span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-agency);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

.expertise-showcase__footer img {
  object-fit: contain;
}

/* Agency marquee strip */
.agency-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--gray-900);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.agency-marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: agencyMarquee 35s linear infinite;
  padding: 0 16px;
}

.agency-marquee__track span:not(.agency-marquee__dot) {
  font-family: var(--font-agency);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.agency-marquee__dot {
  color: var(--primary);
  font-size: 1rem;
}

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

.tech-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 20px;
}

.tech-hero__title--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
  margin-bottom: 24px;
}

.tech-hero__line {
  display: block;
  font-style: normal;
}

.tech-hero__line--1 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.tech-hero__line--2 {
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  background: var(--primary);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.35);
  letter-spacing: -0.04em;
  margin: 6px 0 10px;
}

.tech-hero__line--3 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.035em;
  padding-left: 4px;
}

.tech-hero__line--3 em {
  font-style: normal;
  color: var(--secondary-dark);
  position: relative;
}

.tech-hero__line--3 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  background: rgba(34, 197, 94, 0.3);
  z-index: -1;
  border-radius: 2px;
}

.tech-hero__highlight {
  color: var(--primary);
  position: relative;
  display: inline;
}

.tech-hero__highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: rgba(34, 197, 94, 0.25);
  z-index: -1;
  border-radius: 2px;
}

.tech-hero__text {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 540px;
}

.tech-hero__text strong {
  color: var(--gray-900);
  font-weight: 700;
}

.tech-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.tech-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tech-hero__stat strong {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.tech-hero__stat:nth-child(2) strong {
  color: var(--secondary-dark);
}

.tech-hero__stat span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

.tech-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.tech-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.tech-chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.tech-chip:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.tech-chip--green {
  color: var(--secondary-dark);
  border-color: rgba(34, 197, 94, 0.25);
}

.tech-chip--green:hover {
  border-color: var(--secondary);
}

.tech-hero__visual {
  position: relative;
}

.tech-hero__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  z-index: 0;
  animation: heroGlow 5s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.tech-hero__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.tech-hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.tech-hero__img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  background: var(--secondary);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
  animation: badgeBounce 3s ease-in-out infinite;
}

.tech-hero__img-badge svg {
  width: 16px;
  height: 16px;
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.tech-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.tech-chip img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.tech-orbit__item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  animation: orbitFloat 4s ease-in-out infinite;
  padding: 10px;
}

.tech-orbit__item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.tech-orbit__item--blue,
.tech-orbit__item--green {
  border-color: rgba(37, 99, 235, 0.2);
}

.tech-orbit__item--1 { top: 6%; right: -14px; animation-delay: 0s; }
.tech-orbit__item--2 { top: 32%; left: -22px; animation-delay: 0.6s; }
.tech-orbit__item--3 { bottom: 28%; right: -18px; animation-delay: 1.2s; }
.tech-orbit__item--4 { bottom: 6%; left: 8%; animation-delay: 1.8s; }
.tech-orbit__item--5 { top: 12%; left: 18%; animation-delay: 2.4s; }
.tech-orbit__item--6 { bottom: 42%; right: 12%; animation-delay: 3s; }

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.06); }
}

/* Featured services — highlighted top row */
.featured-services {
  margin-bottom: 40px;
  padding: 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}

.featured-services__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.featured-services__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-agency);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gray-900);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.featured-services__head p {
  font-family: var(--font-agency);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-500);
  margin: 0;
}

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

.sale-box--featured {
  border-width: 2px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.sale-box--featured.sale-box--blue {
  border-color: var(--primary);
  background: var(--primary-bg);
}

.sale-box--featured.sale-box--green {
  border-color: var(--secondary);
  background: var(--secondary-bg);
}

.sale-box--featured::before {
  transform: scaleX(1);
  height: 4px;
}

.sale-box--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.18);
}

.sale-box--featured.sale-box--green:hover {
  box-shadow: 0 24px 48px rgba(34, 197, 94, 0.18);
}

.sale-box__badge--featured {
  background: var(--gray-900) !important;
  animation: featuredBadge 2.5s ease-in-out infinite;
}

@keyframes featuredBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(15, 23, 42, 0); }
}

.sale-box__icon--brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.expertise-card--highlight {
  border-color: rgba(37, 99, 235, 0.35);
  background: var(--primary-bg);
}

.expertise-card--green.expertise-card--highlight {
  border-color: rgba(34, 197, 94, 0.35);
  background: var(--secondary-bg);
}

.expertise-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

/* Sale service boxes — animated hover */
.sale-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.sale-box {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 32px 28px 28px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.sale-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.sale-box--green::before {
  background: var(--secondary);
}

.sale-box:hover::before {
  transform: scaleX(1);
}

.sale-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.sale-box--blue:hover {
  background: var(--primary-bg);
  border-color: var(--primary);
}

.sale-box--green:hover {
  background: var(--secondary-bg);
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.sale-box__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--secondary);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  animation: salePulse 2s ease-in-out infinite;
}

.sale-box--blue .sale-box__badge {
  background: var(--primary);
}

.sale-box__badge svg {
  width: 12px;
  height: 12px;
}

@keyframes salePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.sale-box__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.sale-box__icon svg {
  width: 30px;
  height: 30px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sale-box--blue .sale-box__icon {
  color: var(--primary);
  background: var(--primary-bg);
  border-color: rgba(37, 99, 235, 0.15);
}

.sale-box--green .sale-box__icon {
  color: var(--secondary-dark);
  background: var(--secondary-bg);
  border-color: rgba(34, 197, 94, 0.2);
}

.sale-box--blue:hover .sale-box__icon {
  transform: scale(1.12) rotate(-6deg);
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.sale-box--green:hover .sale-box__icon {
  transform: scale(1.12) rotate(6deg);
  background: var(--white);
  border-color: var(--secondary);
  color: var(--secondary-dark);
}

.sale-box h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.sale-box--blue:hover h3 { color: var(--primary-dark); }
.sale-box--green:hover h3 { color: var(--secondary-dark); }

.sale-box p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.sale-box__link {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  transition: letter-spacing 0.3s ease;
}

.sale-box--green .sale-box__link { color: var(--secondary-dark); }

.sale-box:hover .sale-box__link {
  letter-spacing: 0.08em;
}

/* Hero Slider — legacy, unused */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--gray-900);
}

.hero-slider__track {
  display: flex;
  height: 100%;
  min-height: inherit;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide__bg {
  transform: scale(1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px clamp(20px, 4vw, 60px);
  max-width: 820px;
}

.hero-slide__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--primary);
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
}

.hero-slide:nth-child(2) .hero-slide__tag {
  background: var(--secondary);
}

.hero-slide:nth-child(3) .hero-slide__tag {
  background: var(--primary);
}

.hero-slide__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-slide__title span {
  color: var(--secondary-light);
}

.hero-slide__text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-slide__actions .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
}

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

.hero-slide:nth-child(2) .hero-slide__actions .btn--primary {
  background: var(--secondary);
}

.hero-slide:nth-child(2) .hero-slide__actions .btn--primary:hover {
  background: var(--secondary-dark);
}

.hero-slider__nav {
  position: absolute;
  bottom: 40px;
  left: clamp(20px, 4vw, 60px);
  right: clamp(20px, 4vw, 60px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-slider__dots {
  display: flex;
  gap: 8px;
}

.hero-slider__dot {
  width: 48px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hero-slider__dot.active {
  background: var(--primary);
}

.hero-slider__dot:nth-child(2).active {
  background: var(--secondary);
}

.hero-slider__arrows {
  display: flex;
  gap: 8px;
}

.hero-slider__arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.hero-slider__arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-slider__arrow:last-child:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.hero-slider__arrow svg {
  width: 20px;
  height: 20px;
}

/* Trust bar — full width */
.trust-bar {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.trust-bar__item {
  text-align: center;
  padding: 28px 20px;
  color: var(--gray-900);
  border-right: 1px solid var(--gray-100);
}

.trust-bar__item:last-child {
  border-right: none;
}

.trust-bar__item:nth-child(even) {
  background: var(--gray-50);
}

.trust-bar__number {
  display: block;
  font-family: var(--font-agency);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.trust-bar__item:nth-child(even) .trust-bar__number {
  color: var(--secondary-dark);
}

.trust-bar__label {
  display: block;
  font-family: var(--font-agency);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Main Services — 14+ full width grid */
.main-services {
  width: 100%;
  padding: 80px 0 0;
  background: var(--white);
}

.main-services__header {
  width: 100%;
  padding: 0 clamp(20px, 4vw, 60px) 48px;
  border-bottom: 1px solid var(--gray-200);
}

.main-services__header .section__label {
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--radius-sm);
}

.main-services__count {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-right: 12px;
}

.main-services__title-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.main-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.main-service {
  display: flex;
  flex-direction: column;
  padding: 32px clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition);
  min-height: 200px;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
}

.main-service:hover {
  background: var(--primary-bg);
}

.main-service:nth-child(even):hover {
  background: var(--secondary-bg);
}

.main-service__num {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
  padding: 4px 10px;
  width: fit-content;
}

.main-service:nth-child(odd) .main-service__num {
  color: var(--primary);
  background: var(--primary-bg);
}

.main-service:nth-child(even) .main-service__num {
  color: var(--secondary-dark);
  background: var(--secondary-bg);
}

.main-service__icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
  line-height: 1;
}

.main-service__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.35;
}

.main-service__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.main-service__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.main-service:nth-child(odd) .main-service__link {
  color: var(--primary);
}

.main-service:nth-child(even) .main-service__link {
  color: var(--secondary-dark);
}

.main-services__footer {
  width: 100%;
  padding: 40px clamp(20px, 4vw, 60px);
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

/* About strip — full width */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 480px;
}

.about-strip__image {
  position: relative;
  overflow: hidden;
}

.about-strip__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.about-strip__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  background: var(--gray-900);
  color: var(--white);
  width: 100%;
}

.about-strip__content .section__label {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
}

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

.about-strip__content .section__text {
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
}

.about-strip__list {
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-strip__list li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 20px;
  position: relative;
}

.about-strip__list li:nth-child(odd)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: var(--radius-sm);
}

.about-strip__list li:nth-child(even)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
}

/* Testimonials Slider — full width */
.testimonials {
  width: 100%;
  padding: 80px 0;
  background: var(--secondary-bg);
  overflow: hidden;
}

.testimonials__header {
  width: 100%;
  padding: 0 clamp(20px, 4vw, 60px) 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonials__header .section__label {
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.testimonials__nav {
  display: flex;
  gap: 8px;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.testimonial-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.testimonial-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.testimonial-arrow:disabled:hover {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--gray-700);
}

.testimonial-arrow svg {
  width: 18px;
  height: 18px;
}

.testimonials__track-wrap {
  overflow: hidden;
  width: 100%;
}

.testimonials__track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 clamp(20px, 4vw, 60px);
}

.testimonial-card__inner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  border-radius: var(--radius-sm);
}

.testimonial-card__quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  font-family: Georgia, serif;
}

.testimonial-card:nth-child(even) .testimonial-card__quote {
  color: var(--secondary);
}

.testimonial-card__text {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: var(--radius-sm);
}

.testimonial-card:nth-child(even) .testimonial-card__avatar {
  background: var(--secondary);
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-900);
  font-size: 1rem;
}

.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.testimonial-card__stars {
  color: var(--secondary);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 0 20px;
  width: 100%;
}

.testimonial-dot {
  width: 32px;
  height: 6px;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.testimonial-dot.active {
  background: var(--primary);
}

.testimonial-dot:nth-child(even).active {
  background: var(--secondary);
}

/* CTA full width */
.cta-full {
  width: 100%;
  background: var(--secondary);
  padding: clamp(48px, 8vw, 80px) clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-full__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  max-width: 600px;
  line-height: 1.3;
}

.cta-full__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-top: 12px;
}

.cta-full .btn--outline {
  background: var(--white);
  color: var(--secondary-dark);
  border-color: var(--white);
  border-radius: var(--radius-sm);
}

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

.cta-full__text a {
  color: var(--white);
  text-decoration: underline;
}

.cta-full__text a:hover {
  color: var(--primary-bg);
}

/* ===== Section blocks with animated bg ===== */
.section-block {
  position: relative;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
}

.section-block--dark {
  background: var(--gray-900);
}

.section-block--products {
  background: var(--gray-50);
}

.section-block--testimonials {
  background: var(--primary-bg);
}

.section-block__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.anim-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(60px);
  animation: blobFloat 12s ease-in-out infinite;
}

.anim-blob--1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -80px;
}

.anim-blob--2 {
  width: 350px;
  height: 350px;
  background: var(--secondary);
  bottom: -80px;
  left: -60px;
  animation-delay: 3s;
}

.anim-blob--3 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  top: 20%;
  left: 10%;
  animation-delay: 1.5s;
}

.anim-blob--4 {
  width: 380px;
  height: 380px;
  background: var(--primary);
  bottom: 10%;
  right: 5%;
  animation-delay: 5s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

.section-block__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section-block__header {
  text-align: center;
  margin-bottom: 48px;
}

.section-block__header .section__text--center {
  margin: 0 auto;
}

.section-block__footer {
  text-align: center;
  margin-top: 48px;
}

.section__label--green {
  background: var(--secondary) !important;
  color: var(--white) !important;
}

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

.section__text--light {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Service boxes — 3 per row */
.service-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.service-box {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-box__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.service-box__icon--blue {
  background: var(--primary-bg);
}

.service-box__icon--green {
  background: var(--secondary-bg);
}

.service-box h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.service-box__arrow {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.service-box:nth-child(even) .service-box__arrow {
  color: var(--secondary-dark);
}

/* Why Choose Us — catchy pro layout */
.text-highlight {
  color: var(--secondary-light);
}

.text-highlight-blue {
  color: var(--primary);
}

.section-block--why .section__title span {
  display: inline;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}

.why-stat {
  text-align: center;
  padding: 24px 16px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

.why-stat--green {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.why-stat:hover {
  transform: translateY(-4px);
}

.why-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat--green strong {
  color: var(--secondary-light);
}

.why-stat span {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.why-grid--pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.why-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 28px 24px 24px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:nth-child(even)::before {
  background: var(--secondary);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card__num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.why-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-card__icon--blue {
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
}

.why-card__icon--green {
  background: rgba(34, 197, 94, 0.2);
  color: var(--secondary-light);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.why-card p strong {
  color: var(--secondary-light);
}

/* Vertical timeline — center strip, cards on both sides */
.section-block--journey {
  background: var(--gray-50);
}

.timeline-v {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 8px 0 16px;
}

.timeline-v__strip {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gray-300);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-v__item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
}

.timeline-v__item:last-child {
  margin-bottom: 0;
}

.timeline-v__item--left .timeline-v__card {
  grid-column: 1;
  text-align: right;
}

.timeline-v__item--left .timeline-v__dot {
  grid-column: 2;
}

.timeline-v__item--right .timeline-v__dot {
  grid-column: 2;
}

.timeline-v__item--right .timeline-v__card {
  grid-column: 3;
  text-align: left;
}

.timeline-v__dot {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-300);
}

.timeline-v__dot--blue {
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-v__dot--green {
  background: var(--secondary);
  box-shadow: 0 0 0 2px var(--secondary);
}

.timeline-v__dot--pulse {
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
  animation: timeline-pulse 2s ease-in-out infinite;
}

@keyframes timeline-pulse {
  0%, 100% {
    box-shadow: 0 0 0 2px var(--primary), 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 0 2px var(--primary), 0 0 0 10px rgba(37, 99, 235, 0);
  }
}

.timeline-v__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-v__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.timeline-v__card--blue {
  border-top: 3px solid var(--primary);
}

.timeline-v__card--green {
  border-top: 3px solid var(--secondary);
}

.timeline-v__card--now {
  background: var(--primary-bg);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.timeline-v__year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--primary);
}

.timeline-v__card--green .timeline-v__year {
  color: var(--secondary-dark);
}

.timeline-v__badge {
  position: absolute;
  top: 14px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
}

.timeline-v__item--left .timeline-v__badge,
.timeline-v__item--right .timeline-v__badge {
  right: 24px;
  left: auto;
}

.timeline-v__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.timeline-v__card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials slider */
.journey-banner,
.journey-timeline {
  display: none;
}

/* Legacy timeline (inner pages) */
.section-block--timeline {
  background: var(--white);
}

.timeline--pro {
  display: none;
}

/* Testimonials slider */
.testimonials-slider__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.testimonials-slider__titles .section__label {
  display: inline-block;
  margin-bottom: 12px;
}

.testimonials-slider__titles .section__title {
  text-align: left;
  margin-bottom: 8px;
}

.testimonials-slider__titles .section__text {
  text-align: left;
  margin: 0;
  max-width: 520px;
}

.testimonials-slider__arrows {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.testimonials-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.testimonials-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonials-slider__slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.testi-card--green {
  border-top: 3px solid var(--secondary);
}

.testi-card:not(.testi-card--green) {
  border-top: 3px solid var(--primary);
}

.testi-card__quote {
  font-size: 3rem;
  line-height: 0.8;
  color: var(--primary);
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.testi-card--green .testi-card__quote {
  color: var(--secondary);
}

.testi-card__stars {
  color: var(--secondary);
  font-size: 0.8125rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-card__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.testi-card__avatar--green {
  background: var(--secondary);
}

.testi-card__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--gray-900);
}

.testi-card__author span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.testimonials-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

/* Professional footer */
.footer--pro {
  padding: 0;
  background: #0f172a;
}

.footer__cta-band {
  background: var(--primary);
  padding: 40px 0;
  border-bottom: 3px solid var(--secondary);
}

.footer__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__cta-brand {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__logo-link {
  display: block;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.footer__logo-link:hover {
  transform: scale(1.03);
}

.footer__logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer__cta-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.footer__cta-copy p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

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

.footer__badges {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.footer__badges-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer__badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-bg);
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
}

.footer__badge--green {
  color: var(--secondary-light);
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
}

.footer__grid--pro {
  padding-top: 56px;
}

.footer__brand--pro .footer__desc {
  max-width: 340px;
  margin-top: 0;
}

.footer__social--pro {
  margin-top: 20px;
}

.footer__phone-link {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary-light) !important;
  font-size: 1rem !important;
}

.footer__phone-link:hover {
  color: var(--white) !important;
}

.newsletter--pro {
  margin-top: 16px;
  border-radius: var(--radius-sm);
}

.footer__bottom--pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0 28px;
}

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* Why Choose Us — 3 per row */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.why-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  transition: all var(--transition);
}

.why-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.why-box__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why-box h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.why-box p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline__line {
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gray-200);
}

.timeline__item {
  display: grid;
  grid-template-columns: 100px 24px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 40px;
  position: relative;
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  padding-top: 4px;
}

.timeline__item:nth-child(even) .timeline__year {
  color: var(--secondary-dark);
}

.timeline__dot {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 2px var(--primary);
  position: relative;
  z-index: 1;
  margin-top: 6px;
}

.timeline__dot--green {
  background: var(--secondary);
  box-shadow: 0 0 0 2px var(--secondary);
}

.timeline__content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.timeline__content h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.timeline__content p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Products — 3 per row */
.product-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.product-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-box--featured {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}

.product-box--featured .product-box__tag {
  background: var(--gray-900);
}

.product-box--featured:nth-child(even) {
  border-color: var(--secondary);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.12);
}

.product-box__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.product-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-box:hover .product-box__img img {
  transform: scale(1.05);
}

.product-box__body {
  padding: 24px;
}

.product-box__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.product-box:nth-child(even) .product-box__tag {
  background: var(--secondary);
}

.product-box h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.product-box p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-box__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.product-box:nth-child(even) .product-box__link {
  color: var(--secondary-dark);
}

/* Testimonials — 3 per row */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.testi-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.testi-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-box__stars {
  color: var(--secondary);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-box__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-box__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-box__avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.testi-box__avatar--green {
  background: var(--secondary);
}

.testi-box__author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--gray-900);
}

.testi-box__author span {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* Enhanced Footer */
.footer--enhanced {
  position: relative;
}

.footer__top-bar {
  background: var(--primary);
  padding: 16px 0;
  width: 100%;
}

.footer__top-inner {
  display: flex;
  justify-content: center;
}

.footer__contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: opacity var(--transition);
}

.footer__contact-item:hover {
  opacity: 0.85;
  color: var(--white);
}

.footer__contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer__contact-item--whatsapp svg {
  color: #25d366;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--gray-300);
  transition: all var(--transition);
}

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

.footer__social-btn--wa:hover {
  background: #25d366;
  border-color: #25d366;
}

.footer__social-btn svg {
  width: 20px;
  height: 20px;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition);
  animation: waPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* Responsive — 3 col grids */
@media (max-width: 1024px) {
  .tech-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tech-hero__visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .expertise-showcase__grid {
    grid-template-columns: 1fr;
  }

  .featured-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-v__item {
    grid-template-columns: 1fr 40px 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .tech-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tech-hero__visual {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
  }

  .sale-boxes,
  .service-boxes,
  .why-grid,
  .why-grid--pro,
  .product-boxes,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .timeline-v__strip {
    left: 20px;
    transform: none;
  }

  .timeline-v__item,
  .timeline-v__item--left,
  .timeline-v__item--right {
    display: block;
    position: relative;
    padding-left: 52px;
    margin-bottom: 28px;
  }

  .timeline-v__item--left .timeline-v__card,
  .timeline-v__item--right .timeline-v__card {
    text-align: left;
  }

  .timeline-v__dot {
    position: absolute;
    left: 11px;
    top: 24px;
    margin: 0;
  }

  .timeline-v__item--left .timeline-v__badge,
  .timeline-v__item--right .timeline-v__badge {
    right: 24px;
    left: auto;
  }

  .tech-hero--agency {
    padding: 48px 0 40px;
  }

  .agency-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .expertise-showcase__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-services {
    padding: 20px 16px;
  }

  .featured-services__grid {
    grid-template-columns: 1fr;
  }

  .tech-hero {
    padding: 36px 0 32px;
  }

  .tech-orbit-panel {
    max-width: 280px;
  }

  .tech-orbit-panel__icon {
    width: 52px;
    height: 52px;
  }

  .tech-orbit-panel__icon img {
    width: 28px;
    height: 28px;
  }

  .tech-hero__highlights {
    gap: 16px;
  }

  .tech-hero__stat strong {
    font-size: 1.125rem;
  }

  .tech-orbit__item {
    width: 48px;
    height: 48px;
    padding: 8px;
  }

  .tech-orbit__item img {
    width: 26px;
    height: 26px;
  }

  .tech-hero__img-badge {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .sale-boxes,
  .service-boxes,
  .why-grid,
  .why-grid--pro,
  .product-boxes,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-slider__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-slider__slide {
    flex: 0 0 100%;
  }

  .footer__cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__cta-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom--pro {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar__item:nth-child(2) {
    border-right: none;
  }

  .trust-bar__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .timeline__line {
    left: 20px;
  }

  .timeline__item {
    grid-template-columns: 24px 1fr;
    gap: 16px;
    padding-left: 0;
  }

  .timeline__year {
    grid-column: 2;
    text-align: left;
    margin-bottom: -8px;
  }

  .timeline__dot {
    grid-row: span 2;
  }

  .footer__contact-strip {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-slider__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-slide__actions {
    flex-direction: column;
  }

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

@media (max-width: 600px) {
  .trust-bar__inner {
    grid-template-columns: 1fr;
  }

  .trust-bar__item {
    border-right: none;
  }
}

/* Home services — 4-column grid */
.home-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.home-svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.home-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.home-svc-card:nth-child(even)::before {
  background: var(--secondary);
}

.home-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.home-svc-card:hover::before {
  transform: scaleX(1);
}

.home-svc-card--featured {
  border-color: rgba(37, 99, 235, 0.2);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04) 0%, var(--white) 100%);
}

.home-svc-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-agency);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
}

.home-svc-card__tag--green {
  background: rgba(34, 197, 94, 0.12);
  color: var(--secondary-dark);
}

.home-svc-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.home-svc-card__icon--blue {
  background: rgba(37, 99, 235, 0.1);
}

.home-svc-card__icon--green {
  background: rgba(34, 197, 94, 0.1);
}

.home-svc-card__icon svg {
  color: var(--primary);
}

.home-svc-card:nth-child(even) .home-svc-card__icon svg {
  color: var(--secondary-dark);
}

.home-svc-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
  padding-right: 48px;
}

.home-svc-card p {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.home-svc-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.home-svc-card:nth-child(even) .home-svc-card__link {
  color: var(--secondary-dark);
}

/* Trust showcase — Why Us bento layout */
.trust-showcase {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
  width: 100%;
}

.trust-showcase__lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 16px 0 28px;
}

.trust-showcase__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.trust-showcase__stat {
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  text-align: center;
}

.trust-showcase__stat--green {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.trust-showcase__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-showcase__stat--green strong {
  color: var(--secondary-light);
}

.trust-showcase__stat span {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

.trust-showcase__avatars {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.trust-showcase__avatars span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--gray-900);
  margin-left: -8px;
}

.trust-showcase__avatars span:first-child {
  margin-left: 0;
}

.trust-showcase__avatars span:nth-child(even) {
  background: var(--secondary);
}

.trust-showcase__avatars-more {
  background: rgba(255, 255, 255, 0.15) !important;
  font-size: 0.625rem !important;
}

.trust-showcase__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-showcase__badges span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.trust-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-bento__card {
  position: relative;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease, background 0.3s ease;
}

.trust-bento__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.trust-bento__card--wide {
  grid-column: span 2;
}

.trust-bento__card--cta {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.trust-bento__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
}

.trust-bento__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.trust-bento__icon svg {
  width: 22px;
  height: 22px;
}

.trust-bento__icon--blue {
  background: rgba(37, 99, 235, 0.2);
  color: #93c5fd;
}

.trust-bento__icon--green {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

.trust-bento__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.trust-bento__card p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.trust-bento__card p strong {
  color: var(--secondary-light);
}

.trust-bento__btn {
  margin-top: 14px;
}

@media (max-width: 1200px) {
  .home-svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-showcase {
    grid-template-columns: 1fr;
  }
}

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

  .trust-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bento__card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .home-svc-grid,
  .trust-bento {
    grid-template-columns: 1fr;
  }

  .trust-bento__card--wide {
    grid-column: span 1;
  }
}

/* Why Us — light premium grid */
.section-block--why-new {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  padding: 72px 0;
}

.why-new__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.why-new__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.why-new__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-new__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-new__card--highlight {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(34, 197, 94, 0.08) 100%);
  border-color: rgba(37, 99, 235, 0.2);
}

.why-new__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.why-new__icon svg {
  width: 24px;
  height: 24px;
}

.why-new__icon--blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.why-new__icon--green {
  background: rgba(34, 197, 94, 0.1);
  color: var(--secondary-dark);
}

.why-new__card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.why-new__card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.why-new__card p strong {
  color: var(--primary);
}

.why-new__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary-dark);
}

.why-new__bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--gray-900);
  border-radius: var(--radius-sm);
  text-align: center;
}

.why-new__bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.why-new__bar span {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

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

  .why-new__bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-new__grid,
  .why-new__bar {
    grid-template-columns: 1fr;
  }
}

