/* Home page — Techvio hero + Techno sticky header */

.home-card {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.home-faq[open] {
  border-color: color-mix(in srgb, var(--color-pd-primary) 35%, var(--color-pd-outline-variant));
  background: var(--color-pd-surface-container-low);
}

.home-faq summary:focus-visible {
  outline: 2px solid var(--color-pd-primary);
  outline-offset: 2px;
  border-radius: 8px;
}

.home-featured-card {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-featured-card:hover {
  border-color: color-mix(in srgb, var(--color-pd-primary) 30%, var(--color-pd-outline-variant));
}

/* Prevent 100vw full-bleed sections from causing horizontal scroll */
html {
  overflow-x: clip;
}

body.redilix-light-active {
  overflow-x: clip;
}

/* ── Home products grid ── */
.home-products {
  position: relative;
  overflow: hidden;
  width: auto;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding: 4.5rem 0 4rem;
  background: linear-gradient(165deg, #002171 0%, #00429b 38%, #006dba 72%, #0095ce 100%);
  box-sizing: border-box;
}

.home-products-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-products-pattern__cross {
  position: absolute;
  inset: -40%;
  width: 180%;
  height: 180%;
  background-image: repeating-linear-gradient(
    32deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.05) 40px,
    rgba(255, 255, 255, 0.05) 41px
  );
  animation: home-products-cross-slide 10s linear infinite;
}

.home-products-pattern__cross--reverse {
  background-image: repeating-linear-gradient(
    -32deg,
    transparent,
    transparent 52px,
    rgba(123, 104, 238, 0.07) 52px,
    rgba(123, 104, 238, 0.07) 53px
  );
  animation: home-products-cross-slide-reverse 12s linear infinite;
  opacity: 0.85;
}

.home-products-pattern__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}

.home-products-pattern__ring {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: home-products-ring-expand 3s ease-out infinite;
}

.home-products-pattern__ring:nth-child(1) {
  width: 140px;
  height: 140px;
}

.home-products-pattern__ring:nth-child(2) {
  animation-delay: -1s;
}

.home-products-pattern__ring:nth-child(3) {
  animation-delay: -2s;
}

.home-products-pattern__nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.home-products-pattern__node {
  animation: home-products-node-pulse 1.5s ease-in-out infinite;
}

.home-products-pattern__node-core {
  fill: rgba(255, 255, 255, 0.75);
}

.home-products-pattern__node-halo {
  fill: none;
  stroke: rgba(123, 104, 238, 0.35);
  stroke-width: 1;
  animation: home-products-node-halo 1.5s ease-in-out infinite;
}

.home-products-pattern__shimmer {
  position: absolute;
  inset: -55%;
  background: linear-gradient(
    108deg,
    transparent 42%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 58%
  );
  animation: home-products-shimmer 5s ease-in-out infinite;
}

.home-products-pattern__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: home-products-orb-drift 6s ease-in-out infinite;
}

.home-products-pattern__orb--1 {
  top: -10%;
  left: 12%;
  width: 260px;
  height: 260px;
  background: rgba(123, 104, 238, 0.42);
}

.home-products-pattern__orb--2 {
  right: 8%;
  bottom: -15%;
  width: 300px;
  height: 300px;
  background: rgba(45, 188, 220, 0.38);
  animation-delay: -2s;
}

.home-products-pattern__orb--3 {
  top: 35%;
  right: 32%;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.16);
  animation-delay: -4s;
}

@keyframes home-products-cross-slide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(36px, 26px);
  }
}

@keyframes home-products-cross-slide-reverse {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-30px, 22px);
  }
}

@keyframes home-products-ring-expand {
  0% {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    opacity: 0.55;
  }
  100% {
    width: 520px;
    height: 520px;
    margin: -260px 0 0 -260px;
    opacity: 0;
  }
}

@keyframes home-products-node-pulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes home-products-node-halo {
  0%,
  100% {
    r: 9;
    opacity: 0.35;
  }
  50% {
    r: 14;
    opacity: 0.12;
  }
}

@keyframes home-products-shimmer {
  0% {
    transform: translateX(-32%) rotate(0deg);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    transform: translateX(32%) rotate(0deg);
    opacity: 0;
  }
}

@keyframes home-products-orb-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(16px, -12px);
  }
}

.home-products__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  box-sizing: border-box;
}

.home-products__header {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.home-products__title {
  position: relative;
  display: inline-block;
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(11, 26, 61, 0.25);
}

.home-products__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 0.85rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #006dba, #7b68ee);
}

.home-products__lead {
  max-width: 36rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Catamaran", sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-products__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 1100px) {
  .home-products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.home-products__grid--single {
  grid-template-columns: 1fr;
  width: 100%;
}

.home-products__grid--single .home-product-card,
.home-products__grid--single .home-product-card--featured,
.home-products__grid--single .home-product-card--featured.home-product-card--skeleton {
  border-radius: 5px;
}

.home-products__grid--single .home-product-card__media,
.home-products__grid--single .home-product-card--featured .home-product-card__media {
  border-radius: 5px;
}

.home-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(11, 26, 61, 0.08);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(11, 26, 61, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.home-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 109, 186, 0.18);
  box-shadow: 0 14px 36px rgba(0, 109, 186, 0.14);
}

.home-product-card--featured {
  border-radius: 5px;
  box-shadow: 0 12px 40px rgba(11, 26, 61, 0.12);
}

.home-product-card--featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 109, 186, 0.18);
}

@media (min-width: 768px) {
  .home-product-card--featured {
    flex-direction: row;
    align-items: stretch;
    min-height: 22rem;
  }

  .home-product-card--featured .home-product-card__media {
    flex: 0 0 min(42%, 27rem);
    aspect-ratio: auto;
    min-height: 0;
    border-radius: 5px;
  }

  .home-product-card--featured .home-product-card__body {
    flex: 1;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3.5vw, 2.5rem);
  }

  .home-product-card--featured .home-product-card__title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
  }

  .home-product-card--featured .home-product-card__desc {
    -webkit-line-clamp: 4;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }

  .home-product-card--featured .home-product-card__price {
    max-width: none;
    margin-bottom: 0;
  }

  .home-product-card--featured .home-product-card__actions {
    max-width: none;
  }

  .home-product-card--featured .home-product-card__btn {
    min-height: 2.3rem;
    font-size: 0.8rem;
  }
}

.home-products__grid--single .home-product-card,
.home-products__grid--single .home-product-card--featured {
  border-radius: 5px;
}

.home-products__grid--single .home-product-card__media,
.home-products__grid--single .home-product-card--featured .home-product-card__media {
  border-radius: 5px;
}

.home-product-card__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 109, 186, 0.12), rgba(123, 104, 238, 0.12));
  color: #006dba;
  font-family: "Catamaran", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  width: calc(100% - 1rem);
  margin: 0.5rem;
  overflow: hidden;
  border-radius: 5px;
  background: linear-gradient(135deg, #e8f1f9, #dce9f5);
  text-decoration: none;
}

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

.home-product-card:hover .home-product-card__image {
  transform: scale(1.04);
}

.home-product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(11, 26, 61, 0.2);
  font-family: "Dosis", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.home-product-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 61, 0.22), transparent 50%);
  pointer-events: none;
}

.home-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.35rem;
}

.home-product-card__title {
  margin: 0 0 0.5rem;
  font-family: "Dosis", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-product-card__title a {
  color: #0b1a3d;
  text-decoration: none;
}

.home-product-card__title a:hover {
  color: #006dba;
}

.home-product-card__desc {
  display: -webkit-box;
  margin: 0 0 1rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-product-card__price {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(0, 109, 186, 0.18);
  border-radius: 5px;
  background:
    radial-gradient(circle at 100% 0%, rgba(123, 104, 238, 0.16), transparent 42%),
    linear-gradient(135deg, #f7fbff 0%, #eef7ff 100%);
  box-shadow: 0 8px 24px rgba(0, 66, 155, 0.12);
}

.home-product-card__price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-product-card__price-main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.home-product-card__currency-toggle {
  display: inline-flex;
  flex-shrink: 0;
  padding: 3px;
  border: 1px solid rgba(0, 109, 186, 0.22);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.78);
}

.home-product-card__currency-option {
  min-width: 2.8rem;
  border: 0;
  border-radius: 3px;
  background: transparent;
  padding: 0.3rem 0.55rem;
  color: #5a6478;
  cursor: pointer;
  font-family: "Catamaran", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-product-card__currency-option.is-active {
  background: linear-gradient(135deg, #006dba, #00429b);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 66, 155, 0.25);
}

.home-product-card__price-flag {
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #006dba, #00429b);
  color: #ffffff;
  font-family: "Catamaran", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.home-product-card__price-flag--inr {
  background: linear-gradient(135deg, #5a6478, #3d4a5c);
}

.home-product-card__price-amount {
  background: linear-gradient(135deg, #00429b, #7b68ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Geist", system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.home-product-card__price-suffix {
  color: #6b7280;
  font-family: "Catamaran", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.home-product-card__price-divider {
  height: 1px;
  margin: 0.65rem 0 0.55rem;
  background: linear-gradient(90deg, transparent, rgba(0, 109, 186, 0.2), transparent);
}

.home-product-card__price-alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.home-product-card__price-cycle {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 109, 186, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #006dba;
  font-family: "Catamaran", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-product-card__no-price {
  height: 100%;
  margin: 0;
  padding: 0.75rem;
  border: 1px dashed rgba(11, 26, 61, 0.12);
  border-radius: 5px;
  color: #6b7280;
  font-family: "Catamaran", sans-serif;
  font-size: 0.9rem;
}

.home-product-card__purchase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: auto;
}

@media (min-width: 768px) {
  .home-product-card--featured .home-product-card__purchase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.home-product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(2.75rem, auto);
  align-content: stretch;
  gap: 0.5rem;
  min-width: 0;
  margin: 0;
  border-radius: 5px;
}

.home-product-card__btn {
  display: inline-flex;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.35rem;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.home-product-card__btn .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.home-product-card__btn--details {
  border-color: #0050a8;
  background: #006dba;
  color: #ffffff;
  box-shadow: none;
}

.home-product-card__btn--details:hover {
  border-color: #00429b;
  background: #005ba8;
  color: #ffffff;
}

.home-product-card__btn--demo {
  border-color: #087f5b;
  background: #16a875;
  color: #ffffff;
  box-shadow: none;
}

.home-product-card__btn--demo:hover {
  border-color: #066c4d;
  background: #0b9168;
  color: #ffffff;
}

.home-product-card__btn--buy {
  grid-column: 1 / -1;
  border-color: transparent;
}

.home-product-card__btn--cart {
  border: 2px solid #006dba;
  background: #ffffff;
  color: #006dba;
  box-shadow: 0 2px 8px rgba(11, 26, 61, 0.06);
  flex: 1 1 7.5rem;
  min-width: 7.5rem;
}

.home-product-card__btn--cart .material-symbols-outlined {
  font-size: 1.05rem;
}

.home-product-card__btn--icon {
  flex: 0 0 auto;
  width: 2.65rem;
  min-width: 2.65rem;
  padding: 0;
}

.home-product-card__btn--icon .material-symbols-outlined {
  font-size: 1.25rem;
}

.home-product-card__btn.icon-hover-btn {
  overflow: hidden;
  gap: 0;
  transition:
    gap 0.22s ease,
    width 0.22s ease,
    min-width 0.22s ease,
    padding 0.22s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.home-product-card__btn.icon-hover-btn .icon-hover-btn__label {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: max-width 0.22s ease, opacity 0.18s ease;
}

.home-product-card__btn.icon-hover-btn:hover,
.home-product-card__btn.icon-hover-btn:focus-visible {
  width: auto;
  min-width: 2.65rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  gap: 0.35rem;
}

.home-product-card__btn.icon-hover-btn:hover .icon-hover-btn__label,
.home-product-card__btn.icon-hover-btn:focus-visible .icon-hover-btn__label {
  max-width: 9rem;
  opacity: 1;
}

.home-product-card__btn--cart:hover {
  border-color: #00429b;
  background: #f0f7fc;
  color: #00429b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 109, 186, 0.2);
}

.home-product-card__btn--buy {
  background: #facc15;
  color: #3b2f00;
  box-shadow: none;
}

.home-product-card__btn--buy:hover {
  background: #f6c90e;
  color: #2f2500;
  opacity: 0.95;
}

.home-product-card--skeleton {
  min-height: 420px;
  border-radius: 5px;
  animation: home-shimmer 1.4s linear infinite;
  background: linear-gradient(
    110deg,
    var(--color-pd-surface-container-low) 8%,
    var(--color-pd-surface-container) 18%,
    var(--color-pd-surface-container-low) 33%
  );
  background-size: 200% 100%;
}

.home-product-card--featured.home-product-card--skeleton {
  min-height: 22rem;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .home-product-card--featured.home-product-card--skeleton {
    min-height: 24rem;
  }
}

.home-products__error {
  margin: 0;
  color: #fecaca;
  font-family: "Catamaran", sans-serif;
  font-size: 0.95rem;
  text-align: center;
}

.home-products__empty {
  padding: 3rem 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Catamaran", sans-serif;
  font-size: 1rem;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .home-products-pattern__cross,
  .home-products-pattern__ring,
  .home-products-pattern__node,
  .home-products-pattern__node-halo,
  .home-products-pattern__shimmer,
  .home-products-pattern__orb {
    animation: none !important;
  }

  .home-product-card:hover {
    transform: none;
  }

  .home-product-card:hover .home-product-card__image {
    transform: none;
  }

  .home-product-card__btn:hover {
    transform: none;
  }
}

.home-featured-skeleton {
  background: linear-gradient(
    110deg,
    var(--color-pd-surface-container-low) 8%,
    var(--color-pd-surface-container) 18%,
    var(--color-pd-surface-container-low) 33%
  );
  background-size: 200% 100%;
  animation: home-shimmer 1.4s linear infinite;
}

@keyframes home-shimmer {
  to {
    background-position-x: -200%;
  }
}

/* ── Techvio hero fonts: Dosis headings, Catamaran body/nav ── */
/* ── Techno scrolled header fonts: Rajdhani menu + logo ── */

.home-hero-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.home-hero-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px clamp(1rem, 3vw, 1.5rem);
}

.home-hero-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
}

.home-hero-header__logo-icon {
  display: flex;
  width: 34px;
  height: 34px;
}

.home-hero-header__logo-icon svg {
  width: 100%;
  height: 100%;
}

.home-hero-header__logo-text {
  font-family: "Dosis", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
}

.home-hero-header__logo-img {
  display: block;
  width: 166px;
  height: 50px;
  max-width: min(166px, 50vw);
  object-fit: contain;
  object-position: left center;
}

.home-hero-header__logo-img--desktop {
  display: block;
}

.home-hero-header__logo-img--mobile,
.home-hero-header__logo-img--mobile-fallback {
  display: none;
}

@media (max-width: 767px) {
  .home-hero-header__logo-img--desktop {
    display: none;
  }

  .home-hero-header__logo-img--mobile {
    display: block;
    width: 50px;
    height: 50px;
    max-width: 50px;
  }

  .home-hero-header__logo-img--mobile-fallback {
    display: block;
    width: min(166px, 50vw);
    height: auto;
    max-height: 50px;
  }
}

@media (max-width: 767px) {
  .home-hero-header__logo:has(.home-hero-header__logo-img--mobile) .home-hero-header__logo-img--mobile-fallback {
    display: none;
  }
}

.home-hero-header__logo-img--icon-only {
  display: block;
  width: 50px;
  height: 50px;
  max-width: 50px;
}

.home-hero-header__nav {
  display: none;
  align-items: center;
  gap: 0;
}

@media (min-width: 992px) {
  .home-hero-header__nav {
    display: flex;
  }
}

.home-hero-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 15px;
  padding: 0;
  color: #ffffff;
  font-family: "Catamaran", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.home-hero-header__nav-link:hover {
  opacity: 0.85;
}

.home-hero-nav-caret {
  width: 10px;
  height: 6px;
  margin-top: 1px;
}

.home-hero-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

@media (min-width: 992px) {
  .home-hero-header__actions {
    margin-left: 0;
  }
}

.home-hero-header__cart {
  position: relative;
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.home-hero-header__cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.home-hero-header__cart .material-symbols-outlined {
  font-size: 1.2rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.home-hero-header__cart:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.home-hero-header__cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border: 1px solid rgba(59, 47, 0, 0.14);
  border-radius: 5px;
  background: #facc15;
  color: #3b2f00;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow: 0 4px 10px rgba(250, 204, 21, 0.3);
}

.home-hero-header__cta {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 40px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 52%, #2563eb 100%);
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.28);
  color: #ffffff;
  font-family: "Catamaran", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero-header__cta .material-symbols-outlined {
  font-size: 1.125rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.home-hero-header__cta:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.32);
}

/* Techno-style sticky header after scroll */
.home-hero-header--scrolled {
  background-color: #002171;
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.12);
  animation: home-header-fade-in 0.5s ease-in-out;
}

@keyframes home-header-fade-in {
  from {
    transform: translateY(-8px);
    opacity: 0.9;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.home-hero-header--scrolled .home-hero-header__inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.home-hero-header--scrolled .home-hero-header__logo-text {
  font-family: "Dosis", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.home-hero-header--scrolled .home-hero-header__nav-link {
  font-family: "Catamaran", sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
}

.home-hero-header--scrolled .home-hero-header__cta {
  height: 40px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 52%, #2563eb 100%);
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.28);
  color: #ffffff;
  font-family: "Catamaran", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
}

.home-hero-header--scrolled .home-hero-header__cart {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.home-hero-header--scrolled .home-hero-header__cart:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.home-hero-header--scrolled .home-hero-header__cart-badge {
  background: #facc15;
  color: #3b2f00;
}

/* Inner marketing pages — always solid header */
.home-hero-header--solid {
  background-color: #002171;
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.12);
}

.home-hero-header--solid .home-hero-header__inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.home-hero-header--solid .home-hero-header__logo-text {
  font-family: "Dosis", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.home-hero-header--solid .home-hero-header__nav-link {
  font-family: "Catamaran", sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
}

.home-hero-header--solid .home-hero-header__cta {
  height: 40px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 52%, #2563eb 100%);
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.28);
  color: #ffffff;
  font-family: "Catamaran", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
}

.marketing-page-main {
  position: relative;
  z-index: 1;
  padding-top: 72px;
}

.marketing-legal-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem 5rem;
  background:
    radial-gradient(circle at top right, rgba(123, 104, 238, 0.18), transparent 32%),
    radial-gradient(circle at left 15% bottom 15%, rgba(0, 96, 240, 0.18), transparent 28%),
    linear-gradient(180deg, #081126 0%, #0a1735 54%, #10244b 100%);
}

.marketing-legal-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 11rem;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 767px) {
  .marketing-legal-hero__inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.marketing-legal-hero__title {
  margin: 0;
  max-width: 42rem;
  color: #fff;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
}

.marketing-legal-hero__text {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: rgba(226, 232, 240, 0.9);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.marketing-about-hero {
  position: relative;
  overflow: hidden;
  padding: 8.2rem 0 3.35rem;
  background:
    radial-gradient(circle at right top, rgba(123, 104, 238, 0.2), transparent 30%),
    radial-gradient(circle at left bottom, rgba(0, 96, 240, 0.18), transparent 32%),
    linear-gradient(180deg, #071224 0%, #0a1735 52%, #10244b 100%);
}

.marketing-about-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (min-width: 768px) {
  .marketing-about-hero__inner {
    min-height: 13rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.marketing-about-hero__title {
  margin: 0;
  max-width: 42rem;
  color: #fff;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
}

.marketing-about-hero__text {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: rgba(226, 232, 240, 0.92);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.marketing-about-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.5);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(123, 104, 238, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
  box-shadow:
    0 24px 64px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
  padding: 1rem;
}

@media (min-width: 768px) {
  .marketing-about-card {
    padding: 1.5rem 1.75rem;
  }
}

.marketing-legal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.5);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
  padding: 2rem 2rem 2.25rem;
}

@media (min-width: 768px) {
  .marketing-legal-card {
    padding: 2rem 3rem 2.25rem;
  }
}

.marketing-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.marketing-legal__title {
  margin: 0 0 12px;
  color: #002171;
  font-family: "Dosis", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.marketing-legal__lead {
  margin: 0 0 28px;
  color: #475569;
  font-family: "Catamaran", sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.marketing-legal__body {
  padding: 28px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-family: "Catamaran", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.marketing-legal__body h2 {
  margin: 24px 0 8px;
  color: #002171;
  font-family: "Dosis", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.marketing-legal__body p {
  margin: 0 0 12px;
}
.marketing-page-main .home-products {
  margin-top: 0;
}

.marketing-page-main--product {
  padding-top: 64px;
}

/* ── Techvio index-1 hero section ── */
.home-hero-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  height: 800px;
  overflow: hidden;
  background: linear-gradient(to bottom, #370b6f, #00429b, #006dba, #0095ce, #2dbcdc);
}

/* ── Diagonal lattice + pulse ring background pattern ── */
.home-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-hero-pattern__lattice {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(
    55deg,
    transparent,
    transparent 38px,
    rgba(255, 255, 255, 0.07) 38px,
    rgba(255, 255, 255, 0.07) 39px
  );
  animation: home-hero-lattice-slide 32s linear infinite;
}

.home-hero-pattern__lattice--reverse {
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 48px,
    rgba(255, 255, 255, 0.05) 48px,
    rgba(255, 255, 255, 0.05) 49px
  );
  animation: home-hero-lattice-slide-reverse 40s linear infinite;
  opacity: 0.8;
}

.home-hero-pattern__pulses {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 0;
  height: 0;
}

.home-hero-pattern__pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: home-hero-pulse-expand 6s ease-out infinite;
}

.home-hero-pattern__pulse:nth-child(2) {
  animation-delay: -2s;
}

.home-hero-pattern__pulse:nth-child(3) {
  animation-delay: -4s;
}

.home-hero-pattern__nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.home-hero-pattern__node {
  animation: home-hero-node-blink 4s ease-in-out infinite;
}

.home-hero-pattern__node-core {
  fill: rgba(255, 255, 255, 0.75);
}

.home-hero-pattern__node-glow {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  transform-origin: center;
  transform-box: fill-box;
  animation: home-hero-node-ring 4s ease-in-out infinite;
}

.home-hero-pattern__shapes {
  position: absolute;
  inset: 0;
}

.home-hero-pattern__shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.home-hero-pattern__shape--diamond {
  width: 36px;
  height: 36px;
  transform: rotate(45deg);
}

.home-hero-pattern__shape--square {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.home-hero-pattern__shape--1 {
  top: 18%;
  left: 16%;
  animation: home-hero-shape-float 14s ease-in-out infinite;
}

.home-hero-pattern__shape--2 {
  top: 28%;
  right: 18%;
  width: 52px;
  height: 52px;
  animation: home-hero-shape-float 18s ease-in-out infinite -5s reverse;
}

.home-hero-pattern__shape--3 {
  bottom: 26%;
  left: 28%;
  animation: home-hero-shape-spin 22s linear infinite;
}

.home-hero-pattern__shape--4 {
  bottom: 34%;
  right: 24%;
  animation: home-hero-shape-float-square 16s ease-in-out infinite -8s;
}

.home-hero-pattern__glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: home-hero-glow-drift 20s ease-in-out infinite;
}

.home-hero-pattern__glow--left {
  top: 10%;
  left: -6%;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.55) 0%, transparent 70%);
}

.home-hero-pattern__glow--right {
  bottom: 8%;
  right: -8%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.45) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes home-hero-lattice-slide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(48px, 32px);
  }
}

@keyframes home-hero-lattice-slide-reverse {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-40px, 28px);
  }
}

@keyframes home-hero-pulse-expand {
  0% {
    transform: scale(0.4);
    opacity: 0.7;
  }
  100% {
    transform: scale(8);
    opacity: 0;
  }
}

@keyframes home-hero-node-blink {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

@keyframes home-hero-node-ring {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.45;
  }
}

@keyframes home-hero-shape-float {
  0%,
  100% {
    transform: translate(0, 0) rotate(45deg);
  }
  50% {
    transform: translate(16px, -20px) rotate(45deg);
  }
}

@keyframes home-hero-shape-float-square {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(14px, -16px);
  }
}

@keyframes home-hero-shape-spin {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(12px, -14px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes home-hero-glow-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(24px, -18px) scale(1.1);
  }
}

.home-hero-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 64px;
}

@media (min-width: 992px) {
  .home-hero-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 140px;
  }
}

.home-hero-section__content {
  max-width: 560px;
}

.home-hero-section__title {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: "Dosis", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .home-hero-section__title {
    font-size: 40px;
  }
}

.home-hero-section__lead {
  margin: 0;
  color: #ffffff;
  font-family: "Catamaran", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

.home-hero-section__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.home-hero-btn {
  display: inline-block;
  border: none;
  border-radius: 5px;
  font-family: "Catamaran", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.home-hero-btn:hover {
  opacity: 0.92;
}

.home-hero-btn--primary {
  padding: 13px 35px;
  background: #ffffff;
  box-shadow: 0 7px 25px rgba(123, 104, 238, 0.25);
  color: #7b68ee;
}

.home-hero-btn--secondary {
  padding: 13px 35px;
  background: #7b68ee;
  box-shadow: 0 7px 25px rgba(123, 104, 238, 0.25);
  color: #ffffff;
}

.home-hero-section__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  text-align: center;
}

@media (min-width: 992px) {
  .home-hero-section__visual {
    padding-top: 24px;
  }
}

/* ── Hero illustration frame: blobs, beam, orbit ring ── */
.home-hero-visual {
  position: relative;
  width: 100%;
  max-width: 580px;
  min-height: 420px;
  margin: 0 auto;
  cursor: pointer;
}

.home-hero-visual__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-hero-visual__blob {
  position: absolute;
  display: block;
  filter: blur(28px);
  opacity: 0.55;
  border-radius: 42% 58% 62% 38% / 38% 48% 52% 62%;
}

.home-hero-visual__blob--1 {
  top: 8%;
  right: 6%;
  width: 160px;
  height: 120px;
  background: rgba(125, 220, 255, 0.45);
  animation: home-hero-blob-morph-a 12s ease-in-out infinite;
}

.home-hero-visual__blob--2 {
  bottom: 18%;
  right: 18%;
  width: 130px;
  height: 100px;
  background: rgba(123, 104, 238, 0.35);
  animation: home-hero-blob-morph-b 10s ease-in-out infinite -2s;
}

.home-hero-visual__blob--3 {
  top: 32%;
  left: 4%;
  width: 110px;
  height: 90px;
  background: rgba(45, 188, 220, 0.4);
  animation: home-hero-blob-morph-c 14s ease-in-out infinite -4s;
}

.home-hero-visual__blob--4 {
  bottom: 8%;
  left: 22%;
  width: 90px;
  height: 70px;
  background: rgba(255, 255, 255, 0.18);
  animation: home-hero-blob-morph-a 11s ease-in-out infinite reverse -1s;
}

.home-hero-visual__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(92%, 420px);
  height: auto;
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  animation: home-hero-ring-spin 24s linear infinite;
}

.home-hero-visual__ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.5;
}

.home-hero-visual__ring-dash {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 2;
  stroke-dasharray: 12 18;
  stroke-linecap: round;
}

.home-hero-visual__ring-node {
  fill: rgba(255, 255, 255, 0.75);
  animation: home-hero-node-pulse 3s ease-in-out infinite;
}

.home-hero-visual__ring-node--b {
  animation-delay: -1s;
}

.home-hero-visual__ring-node--c {
  animation-delay: -2s;
}

.home-hero-visual__beam {
  position: absolute;
  top: 18%;
  right: 14%;
  z-index: 1;
  width: 72px;
  height: 200px;
  pointer-events: none;
}

.home-hero-visual__beam-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 230, 255, 0.55) 0%, transparent 70%);
  transform: translateX(-50%);
  animation: home-hero-beam-pulse 4s ease-in-out infinite;
}

.home-hero-visual__beam-column {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 48px;
  height: 160px;
  border-radius: 24px;
  background: linear-gradient(
    to top,
    rgba(125, 230, 255, 0.55) 0%,
    rgba(125, 230, 255, 0.22) 45%,
    rgba(255, 255, 255, 0.04) 100%
  );
  transform: translateX(-50%);
  animation: home-hero-beam-shimmer 3.5s ease-in-out infinite;
}

.home-hero-visual__beam-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 56px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 24px rgba(125, 230, 255, 0.6);
  transform: translateX(-50%);
}

.home-hero-visual__particle {
  position: absolute;
  bottom: 36px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Dosis", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(125, 230, 255, 0.8);
  animation: home-hero-particle-rise 4.5s ease-in-out infinite;
}

.home-hero-visual__art {
  position: relative;
  z-index: 2;
  width: 100%;
  background: transparent;
  transform-origin: center center;
  will-change: transform;
  animation: home-hero-art-float 8s ease-in-out infinite;
}

.home-hero-visual--tracking .home-hero-visual__art {
  animation: none;
}

.home-hero-visual__art > span {
  display: block !important;
  background: transparent !important;
}

.home-hero-section__banner {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: transparent;
}

@keyframes home-hero-blob-morph-a {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 42% 58% 62% 38% / 38% 48% 52% 62%;
  }
  50% {
    transform: translate(16px, -12px) rotate(8deg) scale(1.08);
    border-radius: 58% 42% 38% 62% / 52% 38% 62% 48%;
  }
}

@keyframes home-hero-blob-morph-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 48% 52% 58% 42% / 42% 58% 42% 58%;
  }
  50% {
    transform: translate(-14px, 10px) scale(1.12);
    border-radius: 62% 38% 42% 58% / 48% 62% 38% 52%;
  }
}

@keyframes home-hero-blob-morph-c {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, 14px) rotate(-6deg);
  }
}

@keyframes home-hero-ring-spin {
  to {
    transform: translate(-50%, -52%) rotate(360deg);
  }
}

@keyframes home-hero-beam-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
  }
}

@keyframes home-hero-beam-shimmer {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}

@keyframes home-hero-particle-rise {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.7);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: translateY(-140px) scale(1.1);
  }
}

@keyframes home-hero-art-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.home-hero-illus-float--slow {
  animation: home-hero-illus-float 7s ease-in-out infinite;
}

.home-hero-illus-float--mid {
  animation: home-hero-illus-float 5s ease-in-out infinite -1.5s;
}

.home-hero-illus-float--fast {
  animation: home-hero-illus-float 4s ease-in-out infinite -0.8s;
}

@keyframes home-hero-illus-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 767px) {
  .home-hero-visual__beam {
    right: 8%;
    width: 56px;
    height: 150px;
    opacity: 0.75;
  }

  .home-hero-visual__ring {
    width: 88%;
  }
}

/* ── Dark footer ── */
.home-footer {
  position: relative;
  background: #091a3d;
}

.home-footer__body {
  position: relative;
  overflow: hidden;
  background: #091a3d;
  color: #ffffff;
}

.home-footer__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  pointer-events: none;
}

.home-footer__map-dot {
  fill: rgba(140, 190, 230, 0.45);
}

.home-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 28px;
}

.home-footer__grid {
  display: grid;
  gap: 36px;
}

@media (min-width: 768px) {
  .home-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 28px;
  }
}

.home-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: "Dosis", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.home-footer__logo-icon {
  width: 34px;
  height: 34px;
}

.home-footer__logo-img {
  display: block;
  width: 166px;
  height: 50px;
  max-width: min(166px, 70vw);
  object-fit: contain;
  object-position: left center;
}

.home-footer__logo-img--desktop {
  display: block;
}

.home-footer__logo-img--mobile,
.home-footer__logo-img--mobile-fallback {
  display: none;
}

@media (max-width: 767px) {
  .home-footer__logo-img--desktop {
    display: none;
  }

  .home-footer__logo-img--mobile {
    display: block;
    width: 50px;
    height: 50px;
    max-width: 50px;
  }

  .home-footer__logo-img--mobile-fallback {
    display: block;
    width: min(166px, 70vw);
    height: auto;
    max-height: 50px;
  }

  .home-footer__logo:has(.home-footer__logo-img--mobile) .home-footer__logo-img--mobile-fallback {
    display: none;
  }
}

.home-footer__logo-img--icon-only {
  display: block;
  width: 50px;
  height: 50px;
  max-width: 50px;
}

.home-footer__about {
  max-width: 320px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Catamaran", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.home-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  color: #e2e8f0;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.home-footer__social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 104, 238, 0.55);
  background: linear-gradient(180deg, rgba(123, 104, 238, 0.28), rgba(123, 104, 238, 0.14));
  color: #ffffff;
}

@media (max-width: 767px) {
  .home-hero-header__cta {
    width: 40px;
    min-width: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(123, 104, 238, 0.96), rgba(91, 72, 222, 0.96));
    box-shadow:
      0 10px 24px rgba(91, 72, 222, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .home-hero-header__cta [data-auth-cta-label] {
    display: none;
  }

  .home-hero-header__cta .material-symbols-outlined {
    font-size: 1.25rem;
  }
}

.home-footer__heading {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: "Dosis", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.home-footer__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.home-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-footer__links li + li {
  margin-top: 12px;
}

.home-footer__links a {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Catamaran", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-footer__links a:hover {
  color: #ffffff;
}

.home-footer__contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-footer__contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.home-footer__contact li + li {
  margin-top: 18px;
}

.home-footer__contact-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  color: #ffffff;
}

.home-footer__contact-icon svg {
  width: 20px;
  height: 20px;
}

.home-footer__contact strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-family: "Dosis", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.home-footer__contact a,
.home-footer__contact span {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Catamaran", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}

.home-footer__contact a:hover {
  color: #ffffff;
}

.home-footer__bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-family: "Catamaran", sans-serif;
  font-size: 15px;
}

@media (min-width: 768px) {
  .home-footer__bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.home-footer__bar p {
  margin: 0;
}

.home-footer__bar-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.home-footer__bar-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-footer__bar-links a:hover {
  color: #ffffff;
}

.home-footer__top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: #7b68ee;
  box-shadow: 0 8px 24px rgba(123, 104, 238, 0.35);
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.home-footer__top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.home-footer__top svg {
  width: 22px;
  height: 22px;
}

.home-footer__top:hover {
  opacity: 0.92;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-pattern__lattice,
  .home-hero-pattern__pulse,
  .home-hero-pattern__node,
  .home-hero-pattern__node-glow,
  .home-hero-pattern__shape,
  .home-hero-pattern__glow,
  .home-hero-visual__blob,
  .home-hero-visual__ring,
  .home-hero-visual__beam-glow,
  .home-hero-visual__beam-column,
  .home-hero-visual__particle,
  .home-hero-visual__art,
  .home-hero-illus-float--slow,
  .home-hero-illus-float--mid,
  .home-hero-illus-float--fast {
    animation: none !important;
  }
}

.home-main-below-hero {
  padding-top: 0;
}

/* ── Why choose us ── */
.home-why {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: auto;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  padding-inline: max(16px, calc((100vw - 1200px) / 2));
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 149, 206, 0.1), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(123, 104, 238, 0.1), transparent 30%),
    linear-gradient(145deg, #f8fbff 0%, #f3f8fd 52%, #f8f6ff 100%);
  box-shadow: 0 18px 55px rgba(11, 26, 61, 0.07);
  box-sizing: border-box;
}

.home-why::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: radial-gradient(rgba(0, 109, 186, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.32;
  pointer-events: none;
}

.home-why::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -7rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(123, 104, 238, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgba(123, 104, 238, 0.035),
    0 0 0 6rem rgba(0, 109, 186, 0.025);
  pointer-events: none;
}

.home-why__header {
  width: 100%;
  margin-bottom: 2.5rem;
  text-align: center;
}

.home-why__title {
  position: relative;
  display: inline-block;
  margin: 0 0 1.25rem;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.4;
}

.home-why__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 0.85rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #006dba, #7b68ee);
}

.home-why__desc {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
}

.home-why__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

.home-why__card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 0 28px 0 28px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(11, 26, 61, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.home-why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 109, 186, 0.16);
}

.home-why__card-rise {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, #006dba 0%, #0088c2 100%);
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-why__card:hover .home-why__card-rise {
  transform: translateY(0);
}

.home-why__card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: 260px;
  flex-direction: column;
  padding: 2rem 1.75rem 1.75rem;
}

.home-why__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: #e8f4fc;
  transition: background 0.4s ease 0.08s;
}

.home-why__icon .material-symbols-outlined {
  color: #006dba;
  font-size: 1.85rem;
  transition: color 0.4s ease 0.08s;
}

.home-why__card-title {
  margin: 0 0 0.85rem;
  color: #1a2b4a;
  font-family: "Dosis", "Inter", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.4s ease 0.1s;
}

.home-why__card-body {
  flex: 1;
  margin: 0;
  color: #6b7280;
  font-family: "Catamaran", sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  transition: color 0.4s ease 0.12s;
}

.home-why__card:hover .home-why__icon {
  background: #ffffff;
}

.home-why__card:hover .home-why__icon .material-symbols-outlined {
  color: #006dba;
}

.home-why__card:hover .home-why__card-title,
.home-why__card:hover .home-why__card-body {
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .home-why__card {
    transition: none;
  }

  .home-why__card:hover {
    transform: none;
  }

  .home-why__card-rise {
    transition: none;
  }

  .home-why__card:hover .home-why__card-rise {
    transform: translateY(0);
  }
}

/* ── Home contact section ── */
.home-contact {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  width: auto;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding-block: clamp(1rem, 3vw, 2rem);
  padding-inline: max(16px, calc((100vw - 1200px) / 2));
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 149, 206, 0.11), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(0, 66, 155, 0.09), transparent 32%),
    linear-gradient(140deg, #f8fbff 0%, #eef6fc 55%, #f7f9ff 100%);
  box-shadow: 0 18px 55px rgba(11, 26, 61, 0.08);
  box-sizing: border-box;
}

.home-contact::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 109, 186, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 109, 186, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 72%);
  mask-image: linear-gradient(to right, #000, transparent 72%);
  pointer-events: none;
}

.home-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -8rem;
  left: -7rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(0, 109, 186, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 3.5rem rgba(0, 149, 206, 0.03),
    0 0 0 7rem rgba(123, 104, 238, 0.02);
  pointer-events: none;
}

.home-contact__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .home-contact__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem 2.5rem;
  }
}

.home-contact__info {
  padding: 1.5rem 0 0;
  min-width: 0;
}

@media (min-width: 768px) {
  .home-contact__info {
    padding: 2rem 0 2rem;
  }
}

.home-contact__title {
  margin: 0 0 0.5rem;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
}

.home-contact__subtitle {
  margin: 0 0 0.85rem;
  color: #006dba;
  font-family: "Catamaran", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.home-contact__lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: #6b7280;
  font-family: "Catamaran", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

.home-contact__details {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.home-contact__detail--phone,
.home-contact__detail--email {
  min-width: 0;
}

.home-contact__detail--address {
  grid-column: 1 / -1;
}

@media (max-width: 379px) {
  .home-contact__details {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-contact__detail--address {
    grid-column: auto;
  }
}

.home-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}

.home-contact__detail-text {
  flex: 1;
  min-width: 0;
  padding-top: 0.15rem;
}

.home-contact__detail strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #1a2b4a;
  font-family: "Dosis", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-contact__detail-value {
  display: block;
  color: #6b7280;
  font-family: "Catamaran", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  word-break: break-word;
}

a.home-contact__detail-value:hover {
  color: #006dba;
}

.home-contact__detail-icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 5px;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(11, 26, 61, 0.14);
}

.home-contact__detail-icon .material-symbols-outlined {
  font-size: 26px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.home-contact__detail-icon--phone {
  background: #f5a623;
}

.home-contact__detail-icon--email {
  background: #006dba;
}

.home-contact__detail-icon--address {
  background: #22c55e;
}

.home-contact__form-panel {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background:
    radial-gradient(circle at 100% 0%, rgba(123, 104, 238, 0.32), transparent 35%),
    linear-gradient(145deg, #0075c5 0%, #0055a8 55%, #00408b 100%);
  padding: 2rem 1.5rem 2.25rem;
  box-shadow: 0 20px 50px rgba(0, 66, 155, 0.22);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .home-contact__form-panel {
    margin-top: 0;
    padding: 2.25rem 1.75rem 2.5rem;
  }
}

@media (min-width: 992px) {
  .home-contact__form-panel {
    padding: 2.25rem 2rem 2.5rem;
  }
}

.home-contact__form-title {
  margin: 0 0 1.35rem;
  color: #ffffff;
  font-family: "Dosis", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.home-contact-form__row {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Side-by-side fields when the form has enough room (full-width mobile / wide desktop). */
@media (min-width: 480px) and (max-width: 767.98px), (min-width: 1100px) {
  .home-contact-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-contact-form__input {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 3rem;
  border: none;
  border-radius: 5px;
  background: #ffffff;
  padding: 0.85rem 1rem;
  color: #1a2b4a;
  font-family: "Catamaran", sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  outline: none;
}

.home-contact-form__input::placeholder {
  color: #9ca3af;
}

.home-contact-form__input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.home-contact-form__select {
  appearance: none;
  cursor: pointer;
  max-width: 100%;
  min-width: 0;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-contact-form__textarea {
  min-height: 140px;
  max-width: 100%;
  resize: vertical;
  grid-column: 1 / -1;
}

.home-contact-form__feedback {
  margin: 0;
  font-family: "Catamaran", sans-serif;
  font-size: 0.9rem;
}

.home-contact-form__feedback--error {
  color: #fecaca;
}

.home-contact-form__feedback--success {
  color: #bbf7d0;
}

.home-contact-form__submit {
  width: 100%;
  border: none;
  border-radius: 6px;
  background: #1a2b4a;
  padding: 0.95rem 1rem;
  color: #ffffff;
  cursor: pointer;
  font-family: "Catamaran", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: opacity 0.25s ease;
}

.home-contact-form__submit:hover:not(:disabled) {
  opacity: 0.92;
}

.home-contact-form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

/* ── Full-width CTA band ── */
.home-cta {
  position: relative;
  overflow: hidden;
  width: auto;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  background: linear-gradient(115deg, #370b6f 0%, #00429b 35%, #006dba 68%, #0095ce 100%);
  box-sizing: border-box;
}

.home-cta__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-cta__lattice {
  position: absolute;
  inset: -40%;
  width: 180%;
  height: 180%;
  background-image: repeating-linear-gradient(
    58deg,
    transparent,
    transparent 34px,
    rgba(255, 255, 255, 0.06) 34px,
    rgba(255, 255, 255, 0.06) 35px
  );
  animation: home-cta-lattice-slide 28s linear infinite;
}

.home-cta__lattice--reverse {
  background-image: repeating-linear-gradient(
    -58deg,
    transparent,
    transparent 42px,
    rgba(255, 255, 255, 0.04) 42px,
    rgba(255, 255, 255, 0.04) 43px
  );
  animation: home-cta-lattice-slide-reverse 34s linear infinite;
}

.home-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  animation: home-cta-orb-float 18s ease-in-out infinite;
}

.home-cta__orb--1 {
  top: -20%;
  left: 8%;
  width: 220px;
  height: 220px;
  background: rgba(123, 104, 238, 0.45);
}

.home-cta__orb--2 {
  right: 12%;
  bottom: -30%;
  width: 260px;
  height: 260px;
  background: rgba(45, 188, 220, 0.4);
  animation-delay: -6s;
}

.home-cta__orb--3 {
  top: 20%;
  right: 28%;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.18);
  animation-delay: -12s;
}

.home-cta__shimmer {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 58%
  );
  animation: home-cta-shimmer-sweep 14s ease-in-out infinite;
}

.home-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .home-cta__inner {
    padding: 4.5rem 2rem;
  }
}

.home-cta__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Catamaran", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-cta__title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(11, 26, 61, 0.25);
}

.home-cta__lead {
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Catamaran", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.home-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  border-radius: 999px;
  padding: 0.95rem 2rem;
  font-family: "Catamaran", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.home-cta__btn:hover {
  transform: translateY(-3px);
}

.home-cta__btn--primary {
  background: #ffffff;
  color: #00429b;
  box-shadow: 0 10px 28px rgba(11, 26, 61, 0.22);
}

.home-cta__btn--primary:hover {
  box-shadow: 0 14px 32px rgba(11, 26, 61, 0.28);
}

.home-cta__btn--secondary {
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.home-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

@keyframes home-cta-lattice-slide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 28px);
  }
}

@keyframes home-cta-lattice-slide-reverse {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-32px, 24px);
  }
}

@keyframes home-cta-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -16px) scale(1.08);
  }
}

@keyframes home-cta-shimmer-sweep {
  0% {
    transform: translateX(-35%) rotate(0deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(35%) rotate(0deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cta__lattice,
  .home-cta__orb,
  .home-cta__shimmer {
    animation: none !important;
  }

  .home-cta__btn:hover {
    transform: none;
  }
}

/* ── Testimonials — split pattern panel + auto slider ── */
.home-testimonials {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: auto;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  border-top: 0;
  background: linear-gradient(to bottom, #00429b 0%, #006dba 50%, #e8f1f9 50%, #f2f7fc 100%);
  box-shadow: 0 -10px 36px rgba(11, 26, 61, 0.05);
  box-sizing: border-box;
}

.home-testimonials__split {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 420px;
}

@media (min-width: 992px) {
  .home-testimonials {
    background: linear-gradient(to right, #00429b 0%, #006dba 50%, #e8f1f9 50%, #f2f7fc 100%);
  }

  .home-testimonials__split {
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }
}

/* Left / top patterned half */
.home-testimonials__pattern-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: transparent;
}

@media (min-width: 992px) {
  .home-testimonials__pattern-panel {
    justify-content: flex-start;
  }
}

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

.home-testimonials__dots {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  animation: home-testimonials-dots-drift 32s linear infinite;
}

.home-testimonials__rings {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: home-testimonials-ring-pulse 10s ease-in-out infinite;
}

.home-testimonials__rings::before,
.home-testimonials__rings::after {
  content: "";
  position: absolute;
  inset: -28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.home-testimonials__rings::after {
  inset: -56px;
  border-color: rgba(255, 255, 255, 0.05);
}

.home-testimonials__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: home-testimonials-glow-float 20s ease-in-out infinite;
}

.home-testimonials__glow--1 {
  top: -15%;
  left: -5%;
  width: 240px;
  height: 240px;
  background: rgba(123, 104, 238, 0.5);
}

.home-testimonials__glow--2 {
  right: -8%;
  bottom: -20%;
  width: 280px;
  height: 280px;
  background: rgba(45, 188, 220, 0.45);
  animation-delay: -8s;
}

.home-testimonials__sweep {
  position: absolute;
  inset: -60%;
  background: linear-gradient(
    120deg,
    transparent 44%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 56%
  );
  animation: home-testimonials-sweep 16s ease-in-out infinite;
}

.home-testimonials__intro {
  position: relative;
  z-index: 3;
  max-width: 28rem;
  padding: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .home-testimonials__intro {
    text-align: left;
  }
}

.home-testimonials__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Catamaran", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-testimonials__title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: "Dosis", sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(11, 26, 61, 0.2);
}

.home-testimonials__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Catamaran", sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Right / bottom slider half */
.home-testimonials__slider-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2.5rem 1.5rem 2rem;
  border-radius: 5px;
  background: transparent;
}

.home-testimonials__slider-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 109, 186, 0.22), transparent);
  pointer-events: none;
}

@media (min-width: 992px) {
  .home-testimonials__slider-panel {
    padding: 3rem 3rem 2.5rem;
    border-left: 1px solid rgba(0, 109, 186, 0.08);
  }
}

.home-testimonials__viewport {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 34rem;
  overflow: hidden;
}

.home-testimonials__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.home-testimonials__slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 0.25rem;
  box-sizing: border-box;
}

.home-testimonials__card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid rgba(11, 26, 61, 0.06);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: none;
}

.home-testimonials__quote-icon {
  display: block;
  width: 2.25rem;
  height: 1.65rem;
  margin-bottom: 1rem;
  color: rgba(0, 109, 186, 0.2);
}

.home-testimonials__quote-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-testimonials__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.home-testimonials__stars .material-symbols-outlined {
  font-size: 1.15rem;
  font-variation-settings: "FILL" 1;
  color: #f5a623;
}

.home-testimonials__stars .home-testimonials__star--empty {
  font-variation-settings: "FILL" 0;
  color: #cbd5e1;
}

.home-testimonials__text {
  flex: 1;
  margin: 0 0 1.5rem;
  color: #3d4a5c;
  font-family: "Catamaran", sans-serif;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
}

.home-testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11, 26, 61, 0.06);
}

.home-testimonials__avatar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #ffffff;
  font-family: "Dosis", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-testimonials__name {
  display: block;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}

.home-testimonials__role {
  margin: 0.15rem 0 0;
  color: #6b7280;
  font-family: "Catamaran", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
}

.home-testimonials__controls {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.home-testimonials__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(0, 109, 186, 0.22);
  cursor: pointer;
  transition:
    width 0.35s ease,
    background 0.35s ease;
}

.home-testimonials__dot.is-active {
  width: 1.75rem;
  background: #006dba;
}

.home-testimonials__dot:focus-visible {
  outline: 2px solid #006dba;
  outline-offset: 3px;
}

@keyframes home-testimonials-dots-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(28px, 20px);
  }
}

@keyframes home-testimonials-ring-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 1;
  }
}

@keyframes home-testimonials-glow-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(16px, -12px);
  }
}

@keyframes home-testimonials-sweep {
  0% {
    transform: translateX(-30%) rotate(0deg);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    transform: translateX(30%) rotate(0deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-testimonials__dots,
  .home-testimonials__rings,
  .home-testimonials__glow,
  .home-testimonials__sweep {
    animation: none !important;
  }

  .home-testimonials__track {
    transition: none;
  }
}
