/* Home Visual V2: scoped experimental home sections. */

.techy-hero,
.techy-brand-access,
.techy-ecosystem,
.techy-needs,
.techy-trust,
.techy-gallery,
.techy-results,
.techy-featured-products,
.techy-cta-contact {
  position: relative;
  width: 100%;
  overflow: clip;
}

.techy-hero *,
.techy-brand-access *,
.techy-ecosystem *,
.techy-needs *,
.techy-trust *,
.techy-gallery *,
.techy-results *,
.techy-featured-products *,
.techy-cta-contact * {
  box-sizing: border-box;
}

.techy-section-title {
  max-width: 840px;
  margin: 0;
  color: var(--carbon);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.techy-section-title--light {
  margin-inline: auto;
  color: var(--white);
  text-align: center;
}

.techy-section-title--center {
  margin-inline: auto;
  text-align: center;
}

.techy-home-btn {
  box-sizing: border-box;
  max-width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  transition:
    background var(--t2) var(--ease),
    border-color var(--t2) var(--ease),
    color var(--t2) var(--ease),
    transform var(--t2) var(--ease),
    box-shadow var(--t2) var(--ease),
    filter var(--t2) var(--ease);
}

.techy-home-btn:hover {
  transform: translateY(-2px);
}

.techy-home-btn:focus-visible,
.techy-product-carousel__btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.techy-home-btn--primary {
  color: var(--white);
  background: var(--brand-primary, var(--gold));
  border-color: var(--brand-primary, var(--gold));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.techy-home-btn--primary:hover {
  color: var(--white);
  filter: brightness(.96);
}

.techy-home-btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .45);
}

.techy-home-btn--ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.techy-home-btn--ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .38);
}

.techy-home-btn--ghost-light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.techy-home-btn--card,
.techy-home-btn--brand,
.techy-home-btn--need {
  width: fit-content;
  color: var(--white);
  background: var(--brand-accent, var(--brand-primary, var(--gold)));
  border-color: transparent;
}

.techy-home-btn--card:hover,
.techy-home-btn--brand:hover,
.techy-home-btn--need:hover {
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

.techy-home-btn--whatsapp {
  color: var(--white);
  background: #25D366;
  border-color: #25D366;
}

.techy-home-btn--whatsapp:hover {
  color: var(--white);
  background: #1ebc59;
  border-color: #1ebc59;
}

/* Hero */

.techy-hero {
  min-height: clamp(560px, 88svh, 720px);
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--brand-bg, var(--ink)) 0%, var(--brand-primary, var(--gold)) 100%);
}

.techy-hero__media,
.techy-hero__overlay {
  position: absolute;
  inset: 0;
}

.techy-hero__media {
  z-index: 0;
  background-image: var(--techy-hero-image, none);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1.01);
}

.techy-hero__overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 22% 48%, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, 0) 28%),
    linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .54) 52%, rgba(0, 0, 0, .35) 100%),
    rgba(0, 0, 0, .5);
}

.techy-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding: calc(var(--tc-header-height, 68px) + 30px) var(--pad-x-sm) 42px;
}

.techy-hero__copy {
  min-width: 0;
  width: min(100%, 680px);
  display: grid;
  gap: 18px;
}

.techy-hero__title {
  margin: 0;
  max-width: 11ch;
  color: var(--white);
  font-size: clamp(2.6rem, 6.2vw, 5.6rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: 0;
}

.techy-hero__subtitle {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.45;
}

.techy-hero__actions,
.techy-ecosystem__cta {
  margin-top: 8px;
}

.techy-hero__actions {
  min-width: 0;
  display: grid;
  gap: 12px;
  width: 100%;
}

/* Brand Access */

.techy-brand-access {
  background: var(--surface-0);
}

.techy-brand-access__inner {
  width: min(100%, calc(var(--max-w) + 260px));
  margin-inline: auto;
  padding: 76px var(--pad-x-sm);
  display: grid;
  gap: 34px;
}

.techy-brand-access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.techy-brand-access__card {
  --brand-accent: var(--techy-brand-access-accent, var(--brand-primary, var(--gold)));
  --brand-accent-2: var(--techy-brand-access-bg, var(--ink));
  --brand-border-speed: 8s;
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: calc(var(--r-md) + 4px);
  background: var(--techy-brand-access-bg, var(--ink));
  isolation: isolate;
  box-shadow: 0 22px 46px rgba(8, 8, 8, .16);
  transform: translateY(0);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    filter .3s ease;
}

.techy-brand-access__card::before,
.techy-brand-access__card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.techy-brand-access__card::before {
  z-index: 0;
  inset: -45%;
  background:
    conic-gradient(
      from 0deg,
      color-mix(in srgb, var(--brand-accent) 16%, transparent),
      var(--brand-accent),
      color-mix(in srgb, var(--brand-accent-2) 72%, var(--white)),
      color-mix(in srgb, var(--brand-accent) 28%, transparent),
      var(--brand-accent)
    );
  animation: techy-brand-border-spin var(--brand-border-speed) linear infinite;
  opacity: .78;
}

.techy-brand-access__card::after {
  z-index: 1;
  inset: 2px;
  border-radius: var(--r-md);
  background: var(--techy-brand-access-bg, var(--ink));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    0 0 28px color-mix(in srgb, var(--brand-accent) 24%, transparent);
}

.techy-brand-access__image,
.techy-brand-access__shade {
  position: absolute;
  inset: 2px;
  border-radius: var(--r-md);
}

.techy-brand-access__image {
  z-index: 2;
  background-image: var(--techy-brand-access-image, none);
  background-position: center center;
  background-size: cover;
  transition: transform .38s ease;
}

.techy-brand-access__shade {
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .74) 100%),
    color-mix(in srgb, var(--brand-accent) 30%, transparent);
  transition: background .3s ease;
}

.techy-brand-access__card:hover,
.techy-brand-access__card:focus-within {
  transform: translateY(-8px);
  filter: brightness(1.05);
  box-shadow: 0 30px 64px rgba(8, 8, 8, .24);
}

.techy-brand-access__card:hover .techy-brand-access__image,
.techy-brand-access__card:focus-within .techy-brand-access__image {
  transform: scale(1.045);
}

.techy-brand-access__card:hover .techy-brand-access__shade,
.techy-brand-access__card:focus-within .techy-brand-access__shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .66) 100%),
    color-mix(in srgb, var(--brand-accent) 18%, transparent);
}

.techy-brand-access__content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 32px;
  display: grid;
  gap: 12px;
}

.techy-brand-access__name {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 2.6vw, 2.6rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.techy-brand-access__tagline {
  max-width: 24ch;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .88);
  font-size: var(--fs-sm);
  font-weight: 750;
  line-height: 1.35;
}

@keyframes techy-brand-border-spin {
  to {
    transform: rotate(1turn);
  }
}

/* Ecosystem */

.techy-ecosystem {
  color: var(--white);
  background: var(--ink);
}

.techy-ecosystem__inner {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding: 72px var(--pad-x-sm);
  display: grid;
  justify-items: center;
  gap: 34px;
}

.techy-ecosystem__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.techy-ecosystem__item {
  min-height: 176px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 26px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .045);
}

.techy-ecosystem__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary, var(--gold));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .08);
}

.techy-ecosystem__icon i {
  font-size: 20px;
}

.techy-ecosystem__label {
  margin: 0;
  color: var(--white);
  font-size: var(--fs-md);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.techy-ecosystem__desc {
  max-width: 220px;
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: var(--fs-xs);
  font-weight: 600;
  line-height: 1.45;
}

/* Needs */

.techy-needs {
  background: var(--surface-1);
}

.techy-needs__inner,
.techy-trust__inner,
.techy-results__inner,
.techy-featured-products__inner,
.techy-cta-contact__inner {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding: 72px var(--pad-x-sm);
}

.techy-needs__inner {
  display: grid;
  gap: 30px;
}

.techy-needs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.techy-needs__path {
  --brand-accent: var(--brand-primary, var(--gold));
  min-height: 230px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface-0);
  box-shadow: 0 16px 36px rgba(8, 8, 8, .06);
}

.techy-needs__path--products {
  --brand-accent: #009DDA;
}

.techy-needs__path--services {
  --brand-accent: #E4007D;
  --brand-accent-2: #009DDA;
  border-color: color-mix(in srgb, #E4007D 24%, var(--line));
  background:
    radial-gradient(circle at 18% 18%, rgba(228, 0, 125, .12), transparent 32%),
    radial-gradient(circle at 92% 0%, rgba(0, 157, 218, .16), transparent 34%),
    var(--surface-0);
  box-shadow:
    0 18px 42px rgba(228, 0, 125, .10),
    0 16px 36px rgba(0, 157, 218, .07);
}

.techy-needs__path--training {
  --brand-accent: #c5a97e;
}

.techy-needs__path--colorimetry {
  --brand-accent: #111111;
  color: var(--carbon);
  border-color: rgba(17, 17, 17, .38);
  background: var(--surface-0);
  box-shadow: 0 18px 42px rgba(8, 8, 8, .09);
}

.techy-needs__path--professional {
  --brand-accent: #D8852B;
  background: color-mix(in srgb, #0d0805 7%, var(--surface-0));
}

.techy-needs__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  color: var(--white);
  border-radius: var(--r-pill);
  background: var(--brand-accent);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--brand-accent) 26%, transparent);
}

.techy-needs__path--services .techy-needs__icon {
  background: linear-gradient(135deg, #E4007D 0%, #E4007D 54%, #009DDA 100%);
}

.techy-needs__path--colorimetry .techy-needs__icon {
  color: #111111;
  border: 1px solid rgba(17, 17, 17, .22);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(8, 8, 8, .10);
}

.techy-needs__icon img {
  display: block;
  width: 64%;
  height: 64%;
  object-fit: contain;
}

.techy-needs__copy {
  display: grid;
  gap: 8px;
}

.techy-needs__copy h3 {
  margin: 0;
  color: var(--carbon);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 850;
  line-height: 1.1;
}

.techy-needs__path--colorimetry .techy-needs__copy h3 {
  color: var(--carbon);
}

.techy-needs__copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 650;
  line-height: 1.45;
}

.techy-needs__path--colorimetry .techy-needs__copy p {
  color: var(--muted);
}

.techy-needs__path .techy-home-btn {
  grid-column: 1 / -1;
}

.techy-needs__path--colorimetry .techy-home-btn--need {
  color: var(--white);
  background: #111111;
  border-color: #111111;
}

.techy-needs__path--colorimetry .techy-home-btn--need:hover {
  color: var(--white);
  box-shadow: 0 14px 30px rgba(8, 8, 8, .18);
}

/* Trust */

.techy-trust {
  color: var(--carbon);
  background: var(--surface-0);
}

.techy-trust__inner {
  display: grid;
  gap: 30px;
}

.techy-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.techy-trust__metric {
  min-height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 26px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface-1);
}

.techy-trust__number {
  margin: 0;
  color: var(--brand-primary, var(--gold));
  font-size: clamp(2.05rem, 4.5vw, 3.65rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.techy-trust__label {
  max-width: 220px;
  margin: 0;
  color: var(--carbon);
  font-size: var(--fs-sm);
  font-weight: 800;
  line-height: 1.25;
}

.techy-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.techy-review-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 8, 8, .06);
}

.techy-review-card__stars {
  color: var(--brand-primary, var(--gold));
  font-size: var(--fs-sm);
  letter-spacing: .12em;
}

.techy-review-card__text {
  margin: 0;
  color: var(--carbon);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.5;
}

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

.techy-review-card__avatar {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: var(--r-pill);
  background: var(--ink);
  font-weight: 850;
}

.techy-review-card__author strong,
.techy-review-card__author small {
  display: block;
}

.techy-review-card__author strong {
  color: var(--carbon);
  font-size: var(--fs-xs);
  line-height: 1.25;
}

.techy-review-card__author small {
  margin-top: 2px;
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.25;
}

/* Visual Proof */

.techy-gallery {
  padding: 76px 0;
  background: var(--surface-1);
}

.techy-gallery__header {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding: 0 var(--pad-x-sm) 34px;
}

.techy-visual-story {
  display: grid;
  gap: 28px;
}

.techy-visual-story__block {
  position: relative;
  display: grid;
  gap: 0;
  width: 100%;
}

.techy-visual-story__image {
  aspect-ratio: 4 / 3;
  width: 100%;
  max-height: 520px;
  min-height: 0;
  overflow: hidden;
  background: var(--surface-0);
}

.techy-visual-story__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.techy-visual-story__panel {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 560px);
  margin: -64px auto 0;
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: clamp(118px, 10vw, 150px);
  padding: clamp(24px, 5vw, 34px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .04)),
    rgba(22, 22, 22, .48);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
  box-shadow:
    0 30px 70px rgba(8, 8, 8, .22),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.techy-visual-story__panel h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 7vw, 2.75rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.techy-visual-story__panel p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(.78rem, 2.8vw, .95rem);
  font-weight: 750;
  line-height: 1.45;
}

.techy-proof-strip {
  width: min(100%, calc(var(--max-w) + 180px));
  margin: 32px auto 0;
  padding: 0 var(--pad-x-sm);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.techy-proof-strip__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--surface-0);
}

.techy-proof-strip__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Results */

.techy-results {
  background: var(--surface-0);
}

.techy-results__inner {
  display: grid;
  gap: 30px;
}

.techy-results__compare {
  --techy-results-position: 50%;
  position: relative;
  width: min(100%, 920px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ink);
  aspect-ratio: 4 / 3;
}

.techy-results__before,
.techy-results__after,
.techy-results__after-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.techy-results__before,
.techy-results__after {
  object-fit: cover;
}

.techy-results__after-wrap {
  clip-path: inset(0 0 0 var(--techy-results-position));
}

.techy-results__range {
  position: absolute;
  inset: auto 16px 18px;
  z-index: 3;
  width: calc(100% - 32px);
  accent-color: var(--brand-primary, var(--gold));
}

.techy-results__testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.techy-results__testimonial {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface-0);
}

.techy-results__testimonial img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-sm);
}

.techy-results__testimonial h3,
.techy-results__testimonial p {
  margin: 0;
}

.techy-results__testimonial h3 {
  color: var(--carbon);
  font-size: var(--fs-md);
  font-weight: 800;
}

.techy-results__testimonial p {
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 650;
  line-height: 1.45;
}

/* Featured Products Carousel */

.techy-featured-products {
  background: var(--surface-1);
}

.techy-featured-products__inner {
  display: grid;
  gap: 28px;
}

.techy-featured-products__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.techy-featured-products__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.techy-product-carousel__btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--carbon);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  cursor: pointer;
  transition:
    transform var(--t2) var(--ease),
    color var(--t2) var(--ease),
    background var(--t2) var(--ease),
    border-color var(--t2) var(--ease);
}

.techy-product-carousel__btn:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.techy-product-carousel__btn[disabled] {
  opacity: .42;
  cursor: not-allowed;
}

.techy-product-carousel__btn[disabled]:hover {
  color: var(--carbon);
  background: var(--white);
  border-color: var(--line);
  transform: none;
}

.techy-product-carousel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.techy-product-carousel__track {
  display: flex;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  scrollbar-width: thin;
  padding: 2px 2px 14px;
}

.techy-featured-products__card {
  flex: 0 0 min(82%, 320px);
  min-width: 0;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  scroll-snap-align: start;
  box-shadow: 0 16px 38px rgba(8, 8, 8, .07);
}

.techy-featured-products__image {
  display: block;
  aspect-ratio: 1;
  background: var(--surface-0);
}

.techy-featured-products__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.techy-featured-products__body {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
}

.techy-featured-products__name {
  margin: 0;
  color: var(--carbon);
  font-size: var(--fs-sm);
  font-weight: 800;
  line-height: 1.25;
}

.techy-featured-products__name a {
  color: inherit;
}

.techy-featured-products__price {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 800;
}

/* Contact CTA */

.techy-cta-contact {
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.techy-cta-contact__media,
.techy-cta-contact__overlay {
  position: absolute;
  inset: 0;
}

.techy-cta-contact__media {
  z-index: 0;
  background-image: var(--techy-cta-contact-image, none);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.techy-cta-contact__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .62) 100%),
    color-mix(in srgb, var(--brand-bg, var(--ink)) 84%, transparent);
}

.techy-cta-contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  text-align: center;
}

.techy-cta-contact__copy {
  display: grid;
  gap: 12px;
}

.techy-cta-contact__subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .82);
  font-size: var(--fs-md);
  font-weight: 650;
  line-height: 1.45;
}

.techy-cta-contact__actions {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.techy-cta-contact__meta {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .techy-hero {
    min-height: clamp(620px, 78svh, 820px);
  }

  .techy-hero__inner {
    padding-inline: var(--pad-x-md);
    padding-bottom: 64px;
  }

  .techy-hero__actions {
    width: auto;
    display: flex;
    flex-wrap: wrap;
  }

  .techy-brand-access__inner,
  .techy-ecosystem__inner,
  .techy-needs__inner,
  .techy-trust__inner,
  .techy-results__inner,
  .techy-featured-products__inner,
  .techy-cta-contact__inner {
    padding: 88px var(--pad-x-md);
  }

  .techy-brand-access__grid,
  .techy-ecosystem__grid,
  .techy-needs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .techy-gallery {
    padding: 88px 0;
  }

  .techy-gallery__header {
    padding-inline: var(--pad-x-md);
  }

  .techy-visual-story {
    --techy-visual-image-w: min(62vw, 1120px);
    --techy-visual-panel-w: clamp(360px, 30vw, 560px);
    --techy-visual-panel-overlap: clamp(88px, 6vw, 116px);
    gap: 72px;
  }

  .techy-visual-story__block {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
  }

  .techy-visual-story__block--2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .techy-visual-story__block--2 .techy-visual-story__image {
    grid-column: 1;
    justify-self: end;
  }

  .techy-visual-story__block--2 .techy-visual-story__panel {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .techy-visual-story__image {
    width: var(--techy-visual-image-w);
    height: clamp(430px, 34vw, 590px);
    aspect-ratio: 4 / 3;
    max-height: 590px;
    min-height: 0;
    justify-self: start;
    border-radius: 0 var(--r-md) var(--r-md) 0;
  }

  .techy-visual-story__block--2 .techy-visual-story__image {
    border-radius: var(--r-md) 0 0 var(--r-md);
  }

  .techy-visual-story__block--3 {
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    grid-template-columns: 1fr;
  }

  .techy-visual-story__block--3 .techy-visual-story__image {
    border-radius: 0 var(--r-md) var(--r-md) 0;
  }

  .techy-visual-story__image img {
    min-height: 0;
  }

  .techy-visual-story__panel {
    position: absolute;
    top: 54%;
    width: var(--techy-visual-panel-w);
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    transform: translateY(-50%);
  }

  .techy-visual-story__block--1 .techy-visual-story__panel,
  .techy-visual-story__block--3 .techy-visual-story__panel {
    left: calc(var(--techy-visual-image-w) - var(--techy-visual-panel-overlap));
  }

  .techy-visual-story__block--2 .techy-visual-story__panel {
    justify-self: end;
    right: calc(var(--techy-visual-image-w) - var(--techy-visual-panel-overlap));
  }

  .techy-visual-story__block--3 .techy-visual-story__panel {
    top: 60%;
  }

  .techy-proof-strip {
    margin-top: 44px;
    padding-inline: var(--pad-x-md);
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .techy-product-carousel__track {
    gap: 18px;
  }

  .techy-featured-products__card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .techy-cta-contact__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: center;
    text-align: left;
  }

  .techy-cta-contact .techy-section-title--light,
  .techy-cta-contact__subtitle {
    margin-inline: 0;
    text-align: left;
  }

  .techy-cta-contact__actions {
    justify-items: end;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .techy-visual-story__panel h3 {
    font-size: clamp(2rem, 4.4vw, 2.35rem);
  }

  .techy-visual-story__panel p {
    font-size: .8rem;
  }
}

@media (min-width: 1024px) {
  .techy-hero__inner {
    padding-inline: var(--pad-x);
  }

  .techy-brand-access__inner,
  .techy-ecosystem__inner,
  .techy-needs__inner,
  .techy-trust__inner,
  .techy-results__inner,
  .techy-featured-products__inner,
  .techy-cta-contact__inner {
    padding-inline: var(--pad-x);
  }

  .techy-brand-access__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .techy-brand-access__card {
    min-height: 420px;
  }

  .techy-brand-access__content {
    padding: 34px;
  }

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

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

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

  .techy-needs__path {
    min-height: 280px;
    grid-template-columns: 1fr;
  }

  .techy-gallery__header {
    padding-inline: var(--pad-x);
  }

  .techy-proof-strip {
    padding-inline: var(--pad-x);
  }

  .techy-product-carousel__track {
    gap: 20px;
  }

  .techy-featured-products__card {
    flex-basis: calc((100% - 40px) / 3);
  }
}

@media (min-width: 1440px) {
  .techy-brand-access__inner {
    width: min(100%, 1560px);
  }

  .techy-needs__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .techy-featured-products__card {
    flex-basis: calc((100% - 60px) / 4);
  }
}

@media (max-width: 420px) {
  .techy-hero {
    min-height: clamp(540px, 86svh, 680px);
  }

  .techy-hero__inner {
    padding-top: calc(var(--tc-header-height, 64px) + 28px);
    padding-bottom: 34px;
  }

  .techy-hero__copy {
    gap: 14px;
  }

  .techy-home-btn {
    width: 100%;
    padding-inline: 18px;
  }

  .techy-featured-products__header {
    align-items: start;
    flex-direction: column;
  }

  .techy-product-carousel__btn {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .techy-home-btn,
  .techy-brand-access__card,
  .techy-brand-access__image,
  .techy-brand-access__shade,
  .techy-product-carousel__btn {
    transition: none;
  }

  .techy-brand-access__card::before {
    animation: none;
  }

  .techy-home-btn:hover,
  .techy-brand-access__card:hover,
  .techy-brand-access__card:focus-within,
  .techy-brand-access__card:hover .techy-brand-access__image,
  .techy-brand-access__card:focus-within .techy-brand-access__image,
  .techy-product-carousel__btn:hover {
    transform: none;
  }
}
