/* IT WEBHUT — layout only (colors/fonts stay on template defaults) */

#smooth-wrapper,
#smooth-content {
  opacity: 1 !important;
  visibility: visible !important;
}

.itwh-stats,
.itwh-products,
.itwh-why {
  background-color: var(--bg);
}

.itwh-services {
  background-color: var(--black);
}

.solutions .section-top__title {
  margin-left: 0;
}

.about-agency__image .itwh-stat-count {
  color: var(--theme);
}

.itwh-stats {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.itwh-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .itwh-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .itwh-stats__grid {
    grid-template-columns: 1fr;
  }
}

.itwh-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.itwh-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 82, 244, 0.25);
}

.itwh-stat-card__num {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.itwh-stat-card__num span {
  color: var(--theme);
}

.itwh-stat-card__label {
  font-size: 14px;
  color: var(--text);
}

.itwh-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .itwh-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .itwh-services__grid {
    grid-template-columns: 1fr;
  }
}

.itwh-service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.itwh-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--theme);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.itwh-service-card:hover {
  border-color: rgba(109, 82, 244, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.itwh-service-card:hover::before {
  transform: scaleX(1);
}

.itwh-service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--theme);
  background: rgba(109, 82, 244, 0.08);
  border: 1px solid rgba(109, 82, 244, 0.15);
  margin-bottom: 20px;
}

.itwh-service-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.itwh-service-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 18px;
}

.itwh-service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.itwh-service-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
}

.itwh-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1199px) {
  .itwh-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .itwh-products__grid {
    grid-template-columns: 1fr;
  }
}

.itwh-product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.itwh-product-card:hover {
  border-color: rgba(109, 82, 244, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.itwh-product-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.itwh-product-card__name {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.itwh-product-card__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: 12px;
}

.itwh-product-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
  flex: 1;
}

.itwh-product-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.itwh-product-card__link:hover {
  color: var(--white);
  gap: 12px;
}

.itwh-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .itwh-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .itwh-why__grid {
    grid-template-columns: 1fr;
  }
}

.itwh-why-card {
  padding: 36px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

.itwh-why-card:hover {
  border-color: rgba(109, 82, 244, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.itwh-why-card__num {
  font-size: 48px;
  font-weight: 700;
  color: rgba(109, 82, 244, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.itwh-why-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.itwh-why-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

.itwh-section-intro {
  max-width: 720px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.itwh-products-philosophy {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
  color: var(--theme);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Conversion-first homepage content */
.itwh-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.itwh-hero-tags span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(109, 82, 244, 0.28);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.03);
}

.hero-agency__showcase--dashboard .hero-agency__video-wrap {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0d0f;
}

.hero-agency__video {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.hero-agency__dashboard-fallback {
  position: absolute;
  inset: 16px;
  width: auto !important;
}

.itwh-intent-search {
  margin-top: 48px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.itwh-intent-search__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 8px;
}

.itwh-intent-search__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.itwh-intent-search__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.itwh-intent-search__input {
  flex: 1 1 260px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 15px;
}

.itwh-intent-search__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.itwh-intent-search__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.itwh-intent-chip {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(109, 82, 244, 0.3);
  color: var(--theme);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.itwh-intent-chip:hover {
  background: var(--theme);
  color: var(--white);
}

.itwh-problem-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 32px;
}

.itwh-problem-flow__item {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.itwh-problem-flow__item--bad {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.itwh-problem-flow__item--good {
  background: rgba(109, 82, 244, 0.12);
  border: 1px solid rgba(109, 82, 244, 0.35);
  color: var(--white);
}

.itwh-problem-flow__arrow {
  color: var(--theme);
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 767px) {
  .itwh-problem-flow__arrow {
    display: none;
  }

  .itwh-problem-flow__item {
    width: 100%;
  }
}

.itwh-compare__table {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.itwh-compare__head,
.itwh-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 20px;
}

.itwh-compare__head {
  background: rgba(109, 82, 244, 0.12);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  color: var(--white);
}

.itwh-compare__row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

.itwh-compare__row span:first-child {
  color: rgba(255, 255, 255, 0.55);
}

.itwh-compare__row span:last-child {
  color: var(--white);
  font-weight: 600;
}

.itwh-final-cta.itwh-approach-cta {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.itwh-final-cta__inner {
  text-align: center;
  grid-template-columns: 1fr !important;
  justify-items: center;
  background: transparent !important;
  border: none !important;
  padding: 56px 24px !important;
}

.itwh-final-cta .itwh-approach-cta__title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.itwh-final-cta .itwh-approach-cta__text {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.itwh-final-cta .itwh-approach-cta__aside {
  align-items: center;
}

@media (min-width: 1200px) {
  .solutions__sidebar-nav {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 8px;
  }
}

/* ── Logo (horizontal IT WEBHUT mark) ── */
.header-area-1 .header-logo {
  flex-shrink: 0;
  width: auto;
  min-width: 120px;
}

.header-area-1 .header-logo img,
.header-area-1 .header-logo .site-logo__img {
  width: auto !important;
  max-width: 190px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-logo__img {
  height: 46px;
  width: auto !important;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.header-area-1 .header-logo .site-logo__img,
.side-info .offset-logo .site-logo__img {
  height: 42px;
  max-width: 180px;
}

.footer1__logo {
  display: block;
  line-height: 0;
}

.footer1 .site-logo__img {
  height: 48px;
  max-width: 210px;
}

/* ── Grid cards: always full opacity (no GSAP dimming) ── */
.itwh-product-card,
.itwh-service-card,
.itwh-stat-card,
.process-agency .process-card,
.itwh-impact-list li,
.pricing-matrix__card,
.about-timeline__item {
  opacity: 1 !important;
  visibility: visible !important;
}

.itwh-grid-reveal .itwh-stat-card {
  animation: itwhCardIn 0.55s ease both;
}

.itwh-grid-reveal .itwh-stat-card:nth-child(1) { animation-delay: 0.04s; }
.itwh-grid-reveal .itwh-stat-card:nth-child(2) { animation-delay: 0.08s; }
.itwh-grid-reveal .itwh-stat-card:nth-child(3) { animation-delay: 0.12s; }
.itwh-grid-reveal .itwh-stat-card:nth-child(4) { animation-delay: 0.16s; }

.itwh-grid-reveal .itwh-product-card,
.itwh-grid-reveal .itwh-service-card {
  animation: itwhCardIn 0.55s ease both;
}

.itwh-grid-reveal .itwh-product-card:nth-child(1),
.itwh-grid-reveal .itwh-service-card:nth-child(1) { animation-delay: 0.04s; }
.itwh-grid-reveal .itwh-product-card:nth-child(2),
.itwh-grid-reveal .itwh-service-card:nth-child(2) { animation-delay: 0.08s; }
.itwh-grid-reveal .itwh-product-card:nth-child(3),
.itwh-grid-reveal .itwh-service-card:nth-child(3) { animation-delay: 0.12s; }
.itwh-grid-reveal .itwh-product-card:nth-child(4),
.itwh-grid-reveal .itwh-service-card:nth-child(4) { animation-delay: 0.16s; }
.itwh-grid-reveal .itwh-product-card:nth-child(5),
.itwh-grid-reveal .itwh-service-card:nth-child(5) { animation-delay: 0.20s; }
.itwh-grid-reveal .itwh-product-card:nth-child(6),
.itwh-grid-reveal .itwh-service-card:nth-child(6) { animation-delay: 0.24s; }
.itwh-grid-reveal .itwh-product-card:nth-child(7),
.itwh-grid-reveal .itwh-service-card:nth-child(7) { animation-delay: 0.28s; }
.itwh-grid-reveal .itwh-product-card:nth-child(8),
.itwh-grid-reveal .itwh-service-card:nth-child(8) { animation-delay: 0.32s; }

@keyframes itwhCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .itwh-grid-reveal .itwh-product-card,
  .itwh-grid-reveal .itwh-service-card,
  .itwh-grid-reveal .itwh-stat-card {
    animation: none;
  }
}

/* ── Product brand visuals ── */
.itwh-product-card__visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.itwh-product-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.itwh-product-card__visual i {
  font-size: 42px;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

.itwh-product-card__visual--hr { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); }
.itwh-product-card__visual--erp { background: linear-gradient(135deg, #373894 0%, var(--theme) 100%); }
.itwh-product-card__visual--art { background: linear-gradient(135deg, #581c87 0%, #a855f7 100%); }
.itwh-product-card__visual--doc { background: linear-gradient(135deg, #115e59 0%, #14b8a6 100%); }
.itwh-product-card__visual--test { background: linear-gradient(135deg, #166534 0%, #22c55e 100%); }
.itwh-product-card__visual--fpp { background: linear-gradient(135deg, #1e40af 0%, #6366f1 100%); }
.itwh-product-card__visual--pixel { background: linear-gradient(135deg, #9d174d 0%, #ec4899 100%); }
.itwh-product-card__visual--space { background: linear-gradient(135deg, #854d0e 0%, #f59e0b 100%); }

.itwh-product-card__visual img {
  display: none;
}

/* ── Pro polish: cards & sections ── */
.itwh-product-card,
.itwh-service-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.itwh-product-card__name,
.itwh-service-card__title {
  letter-spacing: 0.3px;
}

.itwh-product-card__cat {
  display: inline-block;
}

.section-top__subtitle {
  color: var(--theme);
}

.header-area-1 .header-main {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body:has([data-chapter="1"]) .header-area-1 .header-main {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-agency__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  max-width: 522px;
  margin-bottom: 16px;
}

.hero-agency__lead strong {
  color: var(--white);
  font-weight: 600;
}

.itwh-positioning {
  background-color: var(--black);
}

.itwh-positioning__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .itwh-positioning__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.itwh-problem-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.itwh-problem-list li {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 15px;
}

.itwh-problem-list li::before {
  content: "→";
  color: var(--theme);
  margin-right: 10px;
  font-weight: 700;
}

.itwh-services-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.itwh-services-tagline span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(109, 82, 244, 0.25);
  color: var(--theme);
}

.itwh-why-narrative {
  max-width: 900px;
  margin: 0 auto;
}

.itwh-why-narrative p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
}

.itwh-impact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .itwh-impact-list {
    grid-template-columns: 1fr;
  }
}

.itwh-impact-list li {
  list-style: none;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.itwh-impact-list li i {
  color: var(--theme);
  font-size: 16px;
  flex-shrink: 0;
}

.itwh-why-impact {
  margin-top: 48px;
  text-align: center;
}

.itwh-why-impact__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--theme);
  margin-bottom: 20px;
}

.itwh-why-impact__tagline {
  margin-top: 36px;
  font-size: 18px;
  color: var(--text);
}

.itwh-why-impact__tagline strong {
  color: var(--white);
}

.itwh-approach-cta {
  background: linear-gradient(135deg, rgba(109, 82, 244, 0.1), rgba(255, 255, 255, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.itwh-approach-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 48px 52px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
  .itwh-approach-cta__inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

.itwh-approach-cta__title {
  font-family: var(--font_teko);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.itwh-approach-cta__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 20px;
  max-width: 520px;
}

.itwh-approach-cta__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.itwh-approach-cta__points li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.itwh-approach-cta__points li i {
  color: var(--theme);
  font-size: 12px;
}

.itwh-approach-cta__aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .itwh-approach-cta__aside {
    width: 100%;
  }

  .itwh-approach-cta__aside .btn-main-primary,
  .itwh-approach-cta__aside .btn-main-secondary {
    width: 100%;
    justify-content: center;
  }
}

.itwh-approach-cta__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.itwh-approach-cta__meta a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s ease;
}

.itwh-approach-cta__meta a:hover {
  color: var(--theme);
}

.itwh-approach-cta__meta a i {
  color: var(--theme);
  width: 16px;
}

/* Compact homepage sections — premium chapters use larger spacing */
.itwh-chapter.about-one {
  padding: 0;
}

.itwh-chapter.portfolio-one.section-padding,
.itwh-chapter.solutions.section-padding,
.itwh-chapter.projects.section-padding {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .itwh-chapter.about-one {
    padding: 0;
  }
}

.itwh-final-cta {
  background: linear-gradient(135deg, rgba(109, 82, 244, 0.12), rgba(255, 255, 255, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.itwh-final-cta .section-top__title {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.itwh-final-cta__text {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.itwh-products-intro {
  max-width: 820px;
  margin: 0 auto 12px;
  text-align: center;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

/* ── Homepage polish (content + flow) ── */
.itwh-hero-title {
  letter-spacing: -0.02em;
}

.itwh-hero-link {
  margin-top: 18px;
  margin-bottom: 0;
}

.itwh-hero-link a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.itwh-hero-link a:hover {
  color: var(--theme);
}

.itwh-chapter--dark #hero .hero-agency__showcase-card {
  background: rgba(12, 13, 16, 0.72) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45) !important;
}

.itwh-chapter--dark #hero .hero-agency__showcase-card:hover {
  border-color: rgba(109, 82, 244, 0.32) !important;
  transform: scale(1.02) translateY(-4px) !important;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(109, 82, 244, 0.14) !important;
}

#hero .hero-agency__showcase-card.card--1,
#hero .hero-agency__showcase-card.card--2,
#hero .hero-agency__showcase-card.card--3 {
  animation-play-state: running;
}

#heroShowcaseRotator.is-switching .hero-agency__showcase-card.card--1 {
  animation: none;
}

#heroShowcaseRotator.is-switching .hero-agency__showcase-card.card--2 {
  animation: none;
}

#heroShowcaseRotator.is-switching .hero-agency__showcase-card.card--3 {
  animation: none;
}

#heroShowcaseRotator {
  transition: opacity 0.4s ease;
}


#heroShowcaseRotator.is-switching .hero-agency__showcase-card {
  opacity: 0.55;
  transform: translateY(4px) scale(0.985);
}

#heroShowcaseRotator.is-entering .hero-agency__showcase-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#heroShowcaseRotator.is-switching .hero-agency__showcase-card.card--3 img {
  opacity: 0.94;
  transform: scale(1);
}

#heroShowcaseRotator .hero-agency__showcase-card {
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

#heroShowcaseRotator .hero-agency__showcase-card.card--3 img {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

@keyframes itwh-hero-float-1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes itwh-hero-float-2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes itwh-hero-float-3 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* Hero card 1 — product capabilities */
#hero .hero-agency__showcase-card.card--1 .card-top .label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

#hero .hero-agency__showcase-card.card--1 .hero-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

#hero .hero-agency__showcase-card.card--1 .hero-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font_instrument);
  font-size: 11.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

#hero .hero-agency__showcase-card.card--1 .hero-feature-list li i {
  flex-shrink: 0;
  color: rgba(109, 82, 244, 0.95);
  font-size: 12px;
}

#hero .hero-agency__showcase-card.card--1 .card-body {
  padding-top: 2px;
}

/* Hero card 2 — logo + name + category */
#hero .hero-product-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
}

#hero .hero-product-brand__logo {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(109, 82, 244, 0.96), rgba(62, 45, 168, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(109, 82, 244, 0.24);
}

#hero .hero-product-brand__mark {
  font-family: var(--font_teko);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
}

#hero .hero-product-brand__name {
  font-family: var(--font_teko);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

#hero .hero-product-brand__category {
  font-family: var(--font_instrument);
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
}

/* Hero card 3 — screenshot with subtle live badge */
#hero .hero-agency__showcase-card.card--3 .card-inner {
  padding: 8px;
  background: rgba(255, 255, 255, 0.015);
}

#hero .hero-agency__showcase-card.card--3 img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center center;
  border-radius: calc(var(--itwh-hero-radius) - 6px);
  opacity: 1;
  background: rgba(255, 255, 255, 0.02);
  display: block;
}

#hero .hero-agency__showcase-card.card--3 .card-overlay {
  background: transparent;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px;
  pointer-events: none;
}

#hero .hero-agency__showcase-card.card--3 .card-overlay .text {
  font-family: var(--font_inter, "Inter", sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#hero .hero-agency__showcase-card.card--3:hover img {
  transform: scale(1.02);
}

#heroShowcaseRotator.is-switching .hero-feature-list li,
#heroShowcaseRotator.is-switching .hero-product-brand__name,
#heroShowcaseRotator.is-switching .hero-product-brand__category,
#heroShowcaseRotator.is-switching .hero-product-brand__mark {
  opacity: 0.65;
}

#hero .hero-feature-list li,
#hero .hero-product-brand__name,
#hero .hero-product-brand__category,
#hero .hero-product-brand__mark {
  transition: opacity 0.4s ease;
}

.hero-product-rotator {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0f;
}

.hero-product-rotator__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-product-rotator__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.55);
}

.hero-product-rotator__screen {
  position: relative;
  min-height: 300px;
}

.hero-product-rotator__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-product-rotator.is-switching .hero-product-rotator__img {
  opacity: 0.4;
  transform: scale(1.03);
}

.hero-product-rotator__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
}

.hero-product-rotator__name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.hero-product-rotator__tag {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.itwh-intent-search--large {
  margin-top: 56px;
  padding: 36px 32px;
}

.itwh-intent-search--large .itwh-intent-search__eyebrow {
  font-size: 13px;
  margin-bottom: 12px;
}

.itwh-intent-search--large .itwh-intent-search__label {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.itwh-intent-search--large .itwh-intent-search__input {
  min-height: 58px;
  font-size: 16px;
}

.itwh-intent-search__chips-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin: 8px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.itwh-intent-chip {
  cursor: pointer;
  font-family: "Inter", sans-serif;
  background: rgba(255, 255, 255, 0.02);
}

.itwh-problem-flow--vertical {
  flex-direction: column;
  align-items: stretch;
  max-width: 360px;
  margin-left: auto;
}

.itwh-problem-flow--vertical .itwh-problem-flow__item {
  text-align: center;
  animation: itwhFlowIn 0.6s ease both;
}

.itwh-problem-flow--vertical .itwh-problem-flow__item:nth-child(1) { animation-delay: 0.05s; }
.itwh-problem-flow--vertical .itwh-problem-flow__item:nth-child(3) { animation-delay: 0.15s; }
.itwh-problem-flow--vertical .itwh-problem-flow__item:nth-child(5) { animation-delay: 0.25s; }
.itwh-problem-flow--vertical .itwh-problem-flow__item:nth-child(7) { animation-delay: 0.35s; }
.itwh-problem-flow--vertical .itwh-problem-flow__item:nth-child(9) { animation-delay: 0.45s; }
.itwh-problem-flow--vertical .itwh-problem-flow__item:nth-child(11) { animation-delay: 0.55s; }
.itwh-problem-flow--vertical .itwh-problem-flow__item:nth-child(13) { animation-delay: 0.65s; }

.itwh-problem-flow--vertical .itwh-problem-flow__arrow {
  text-align: center;
  line-height: 1;
}

@keyframes itwhFlowIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solutions__preview-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.itwh-compare-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.itwh-compare-split__col {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.itwh-compare-split__col--others {
  background: rgba(255, 255, 255, 0.02);
}

.itwh-compare-split__col--us {
  background: rgba(109, 82, 244, 0.08);
  border-color: rgba(109, 82, 244, 0.25);
}

.itwh-compare-split__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
  color: var(--white);
}

.itwh-compare-split__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.itwh-compare-split__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

.itwh-compare-split__list li:last-child {
  border-bottom: none;
}

.itwh-compare-split__col--others .itwh-compare-split__list li {
  color: rgba(255, 255, 255, 0.55);
}

.portfolio-one__hover__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme);
  margin: 8px 0 12px;
}

.itwh-industries__grid,
.itwh-tech__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.itwh-industries__grid span,
.itwh-tech__pills span {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.03);
}

.itwh-tech__pills span {
  animation: itwhPillFloat 4s ease-in-out infinite;
}

.itwh-tech__pills span:nth-child(odd) {
  animation-delay: 0.5s;
}

@keyframes itwhPillFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.itwh-trusted__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.itwh-trusted__logo {
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.itwh-trusted__logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.itwh-trusted__logo img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.itwh-process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.itwh-process-timeline__step {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.itwh-process-timeline__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--theme);
  margin-bottom: 12px;
}

.itwh-process-timeline__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}

.itwh-process-timeline__text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.itwh-process-timeline__line {
  flex: 0 0 48px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(109, 82, 244, 0.15), rgba(109, 82, 244, 0.6), rgba(109, 82, 244, 0.15));
}

.itwh-final-cta__title {
  font-size: clamp(36px, 5vw, 64px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em;
}

.footer1__social-label {
  display: inline-block;
  margin-right: 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  vertical-align: middle;
}

.footer1__social a {
  margin-left: 12px;
}

@media (max-width: 991px) {
  .itwh-compare-split {
    grid-template-columns: 1fr;
  }

  .itwh-problem-flow--vertical {
    margin-left: 0;
    max-width: none;
  }

  .itwh-process-timeline {
    flex-direction: column;
    align-items: stretch;
  }

  .itwh-process-timeline__line {
    width: 2px;
    height: 32px;
    flex: none;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(109, 82, 244, 0.15), rgba(109, 82, 244, 0.6), rgba(109, 82, 244, 0.15));
  }
}

/* Contact — single-line intent chips + More sidebar */
@media (min-width: 992px) {
  #contact .contact__left-col,
  #contact .contact__right-col {
    display: flex;
    flex-direction: column;
  }

  #contact .contact__info-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #contact .contact__form-card {
    flex: 1;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  #contact .contact__form {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  #contact .contact__submit-wrap {
    margin-top: auto;
  }
}

.contact__form-label--intent {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.contact__chips-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.contact__chips-row::-webkit-scrollbar {
  display: none;
}

.contact__chips-inline {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.contact__chips-inline .contact__chip {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 8px 14px;
  font-size: 10px;
}

.contact__chips-more-btn {
  flex-shrink: 0;
  font-family: var(--font_inter);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  cursor: pointer;
  background: rgba(109, 82, 244, 0.12);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.contact__chips-more-btn:hover,
.contact__chips-more-btn[aria-expanded="true"] {
  border-color: var(--theme);
  color: var(--white);
  background: rgba(109, 82, 244, 0.22);
}

body.itwh-service-modal-open {
  overflow: hidden;
}

.itwh-service-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  visibility: hidden;
}

.itwh-service-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.itwh-service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 10, 11, 0.72);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.itwh-service-modal.is-open .itwh-service-modal__backdrop {
  opacity: 1;
}

.itwh-service-modal__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100%;
  padding: 28px 24px 32px;
  background: #121316;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.itwh-service-modal.is-open .itwh-service-modal__panel {
  transform: translateX(0);
}

.itwh-service-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.itwh-service-modal__head h4 {
  margin: 0;
  font-family: var(--font_inter);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.itwh-service-modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.itwh-service-modal__close:hover {
  border-color: var(--theme);
  color: var(--white);
}

.itwh-service-modal__chips {
  flex: 1;
  align-content: flex-start;
}

.itwh-service-modal__done {
  align-self: stretch;
  padding: 14px 20px;
  font-family: var(--font_inter);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--theme);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.itwh-service-modal__done:hover {
  transform: translateY(-1px);
  background: #6d52f4;
}

/* ── Button arrows · dark surfaces · form polish ── */

.btn-main-secondary .icon,
.btn-main-secondary .icon i {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background-image: none;
}

.btn-main-secondary:hover .icon,
.btn-main-secondary:hover .icon i {
  color: var(--black);
  -webkit-text-fill-color: var(--black);
}

.itwh-chapter--dark .btn-main-secondary .text {
  color: #fff;
}

.itwh-chapter--dark .btn-main-secondary:hover .text {
  color: #fff;
  background-color: var(--theme);
  border-color: var(--theme);
}

.btn-main-secondary--small .text {
  padding: 12px 28px;
  font-size: 14px;
  line-height: 1.2;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.itwh-chapter--dark.portfolio-one .portfolio-one__hover__btn .btn-main-secondary--small .text {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.itwh-chapter--dark.portfolio-one .portfolio-one__hover__btn .btn-main-secondary--small:hover .text {
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.itwh-chapter--dark.contact .contact__chip:hover {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transform: none;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.itwh-chapter--dark.contact .contact__form-label {
  color: rgba(255, 255, 255, 0.72);
}

.itwh-chapter--dark.contact .contact__input {
  min-height: 52px;
  box-sizing: border-box;
  color: #fff;
}

.itwh-chapter--dark.contact .contact__input--textarea {
  min-height: 120px;
}

.itwh-chapter--dark.contact .contact__input:-webkit-autofill,
.itwh-chapter--dark.contact .contact__input:-webkit-autofill:hover,
.itwh-chapter--dark.contact .contact__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.04) inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  transition: background-color 9999s ease-out 0s;
}
