@import 'about-team.css';

/* ======================================================
   CSS CUSTOM PROPERTIES
   ====================================================== */
:root {
  --w-o1: #fe9402;
  --w-o2: #fd5f24;
  --w-red: #f53548;
  --w-pur: #cd3576;
  --w-cyan: #06b6d4;
  --w-teal: #0891b2;
  --w-navy: #0A1628;
  --w-text: #1e293b;
  --w-mute: #64748b;
  --w-bg: #fafbff;
  --w-bgw: #ffffff;
  --w-bgs: #f0f9ff;
  --w-bord: rgba(6, 182, 212, .15);
  --w-grad: linear-gradient(135deg, #fe9402 0%, #fd5f24 33%, #f53548 66%, #cd3576 100%);
  --w-gradr: linear-gradient(to right, #fe9402, #fd5f24, #f53548, #cd3576);
  --w-grad-aqua: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #fe9402 100%);
  --w-soft: linear-gradient(135deg, rgba(6, 182, 212, .08) 0%, rgba(254, 148, 2, .06) 100%);
  --w-sha: 0 8px 30px rgba(10, 22, 40, .06);
  --w-sha2: 0 20px 60px rgba(10, 22, 40, .10);
  --w-rad: 16px;
  --w-rad2: 24px;
  --w-tr: .3s ease;
}

body {
  background: var(--w-bg);
  color: var(--w-text);
  overflow-x: hidden;
}

/* ======================================================
   REVEAL TRANSITIONS
   ====================================================== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
  opacity: 0;
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ======================================================
   BREADCRUMB
   ====================================================== */
.wt-bc {
  background: var(--w-bgw);
  border-bottom: 1px solid var(--w-bord);
  padding: 14px 0;
}

.wt-bc__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
}

.wt-bc__inner a {
  color: var(--w-mute);
  text-decoration: none;
  transition: var(--w-tr);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.wt-bc__inner a:hover {
  color: var(--w-o1);
}

.wt-bc__inner i {
  font-size: .75rem;
  color: #cbd5e1;
}

.wt-bc__inner span {
  color: var(--w-o1);
  font-weight: 600;
}

/* ======================================================
   SECTION LABELS & TITLES
   ====================================================== */
.wt-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--w-o1);
  margin-bottom: .9rem;
}

.wt-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--w-gradr);
  border-radius: 2px;
}

.wt-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--w-navy);
  line-height: 1.2;
  margin-bottom: .8rem;
}

.wt-title .grad {
  background: var(--w-gradr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wt-sub {
  font-size: 1.05rem;
  color: var(--w-mute);
  line-height: 1.65;
}

/* ======================================================
   1. INTRODUCTION HERO
   ====================================================== */
.wt-intro {
  padding: 48px 0;
  background: var(--w-bgw);
  border-bottom: 1px solid var(--w-bord);
  min-height: calc(100dvh - 160px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* ── Aurora Blobs ── */
.wt-hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wt-aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  will-change: transform;
}

.wt-aurora-blob--1 {
  width: 520px;
  height: 520px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, #fe9402 0%, transparent 70%);
}

.wt-aurora-blob--2 {
  width: 460px;
  height: 460px;
  bottom: -160px;
  right: -60px;
  background: radial-gradient(circle, #f53548 0%, transparent 70%);
}

.wt-aurora-blob--3 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, #cd3576 0%, transparent 70%);
  opacity: .12;
}

/* ── Dot Grid Overlay ── */
.wt-hero-dotgrid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(254, 148, 2, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 148, 2, .05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Particle Canvas ── */
.wt-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ── Content above decorative layers ── */
.wt-intro__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.wt-intro__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--w-navy);
  margin-bottom: 16px;
}

.wt-intro__title .grad {
  background: var(--w-gradr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wt-intro__tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.wt-intro__tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--w-text);
}

.wt-intro__tag i {
  color: var(--w-o1);
}

.wt-intro__para {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--w-mute);
  margin-bottom: 20px;
  font-weight: 500;
}

.wt-intro__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.wt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: var(--w-tr);
}

.wt-btn--fill {
  background: var(--w-grad);
  color: #fff;
  box-shadow: 0 4px 18px rgba(254, 148, 2, .3);
}

.wt-btn--fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 148, 2, .45);
  color: #fff;
}

.wt-btn--out {
  background: transparent;
  color: var(--w-text);
  border: 2px solid rgba(15, 22, 40, .15);
}

.wt-btn--out:hover {
  background: rgba(15, 22, 40, .05);
}

/* ======================================================
   HERO VISUAL — PARK IMAGE + LIVE STATS CARD
   ====================================================== */
.wt-intro__visual {
  background: #0f172a;
  border-radius: var(--w-rad2);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
  overflow: hidden;
  position: relative;
}

.wt-intro__vis-head {
  background: rgba(255, 255, 255, .03);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wt-intro__vis-head h4 {
  color: #f1f5f9;
  font-size: .9rem;
  font-weight: 700;
  margin: 0;
}

.wt-live-badge {
  font-size: .7rem;
  font-weight: 800;
  color: #22c55e;
  background: rgba(34, 197, 94, .15);
  padding: 3px 9px;
  border-radius: 50px;
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    opacity: .7;
  }

  50% {
    opacity: 1;
  }
}

/* Park image inside hero card */
.wt-hero-img-wrap {
  position: relative;
  overflow: hidden;
  max-height: 160px;
}

.wt-hero-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  filter: brightness(.85) saturate(1.2);
  transition: transform .6s ease;
}

.wt-intro__visual:hover .wt-hero-img-wrap img {
  transform: scale(1.04);
}

.wt-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0f172a 0%, transparent 60%);
}

/* Live Stats Pills */
.wt-vis-body {
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wt-vis-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.wt-vis-pill {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}

.wt-vis-pill__val {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.wt-vis-pill__label {
  font-size: .68rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .5px;
}

/* Ticket progress bars */
.wt-vis-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wt-vis-bar-row {}

.wt-vis-bar-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: .75rem;
  color: #94a3b8;
  font-weight: 600;
}

.wt-vis-bar-top span:last-child {
  color: var(--w-o1);
}

.wt-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, .07);
  border-radius: 10px;
  overflow: hidden;
}

.wt-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: var(--w-gradr);
}

/* Activity log */
.wt-activity-log {
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: monospace;
  font-size: .73rem;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wt-log-time {
  color: var(--w-o1);
}

/* ======================================================
   2. OVERVIEW TEXT
   ====================================================== */
.wt-overview {
  padding: 80px 0;
  background: var(--w-bg);
}

.wt-overview__content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.wt-overview__title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--w-navy);
  margin-bottom: 24px;
}

.wt-overview__para {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--w-mute);
  text-align: justify;
}

/* ======================================================
   3. KEY FEATURES SECTION
   ====================================================== */
.wt-kf-section {
  padding: 80px 0 90px;
  background: var(--w-bgw);
  border-top: 1px solid var(--w-bord);
  border-bottom: 1px solid var(--w-bord);
}

.wt-kf-header {
  text-align: center;
  margin-bottom: 55px;
}

.wt-kf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wt-kf-card {
  background: var(--w-bg);
  border: 1px solid rgba(6, 182, 212, .1);
  border-radius: var(--w-rad);
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wt-kf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--w-grad);
  opacity: 0;
  transition: var(--w-tr);
}

.wt-kf-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--w-sha2);
  background: #fff;
  border-color: rgba(254, 148, 2, .2);
}

.wt-kf-card:hover::before {
  opacity: 1;
}

.wt-kf-card__num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(10, 22, 40, .06);
  font-family: var(--font-head);
  line-height: 1;
  pointer-events: none;
}

.wt-kf-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--w-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--w-o2);
  flex-shrink: 0;
  transition: var(--w-tr);
}

.wt-kf-card:hover .wt-kf-card__icon {
  background: var(--w-grad);
  color: #fff;
  box-shadow: 0 4px 14px rgba(254, 148, 2, .3);
}

.wt-kf-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--w-navy);
  margin: 0;
  line-height: 1.3;
}

.wt-kf-card p {
  font-size: .88rem;
  line-height: 1.55;
  color: var(--w-mute);
  margin: 0;
  flex-grow: 1;
}


/* ======================================================
   4. VIDEO DEMONSTRATION
   ===================================================== */
.wt-video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--w-rad2);
  overflow: hidden;
  box-shadow: var(--w-sha2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #fff;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wt-video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(10, 22, 40, 0.15);
}

.wt-video-frame {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--w-rad);
}

.wt-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ======================================================
   5. CUSTOMERS SECTION
   ====================================================== */
.wt-customers {
  padding: 80px 0;
  background: var(--w-bgw);
  border-top: 1px solid var(--w-bord);
}

.wt-customers__header {
  text-align: center;
  margin-bottom: 55px;
}

.wt-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.wt-client-card {
  background: var(--w-bg);
  border: 1px solid var(--w-bord);
  border-radius: var(--w-rad);
  padding: 32px 24px;
  text-align: center;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.wt-client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--w-sha2);
  border-color: rgba(254, 148, 2, .25);
  background: #fff;
}

.wt-client-card__img {
  width: 100%;
  max-width: 130px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter .3s;
}

.wt-client-card:hover .wt-client-card__img {
  filter: grayscale(0%);
}

.wt-client-card h5 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--w-navy);
  margin: 0;
}

/* ── Why Choose Section Redesign ── */
.wt-why-container {
  margin-top: 80px;
  border-top: 1px solid var(--w-bord);
  padding-top: 80px;
}

.wt-why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.wt-why-container .wt-label {
  display: flex;
  justify-content: center;
}

.wt-why-heading {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--w-navy);
  line-height: 1.25;
  margin-bottom: 20px;
  text-align: center;
}

.wt-why-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--w-mute);
  margin-bottom: 24px;
}

.wt-why-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.wt-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.wt-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  color: var(--w-text);
  font-weight: 500;
}

.wt-why-list li i {
  background: var(--w-gradr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.wt-why-video {
  position: relative;
}

.wt-video-card {
  background: var(--w-bgw);
  border-radius: var(--w-rad2);
  padding: 12px;
  box-shadow: var(--w-sha2);
  border: 1px solid rgba(6, 182, 212, 0.12);
  transition: transform var(--w-tr), box-shadow var(--w-tr);
}

.wt-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(10, 22, 40, 0.15);
}

.wt-video-card .wt-video-frame {
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  position: relative;
  border-radius: var(--w-rad);
  overflow: hidden;
}

.wt-video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Simple Contact Info Paragraph ── */
.wt-simple-cta {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
  padding: 20px 0 0;
  border-top: 1px solid var(--w-bord);
}

.wt-simple-cta p {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--w-mute);
}

.wt-simple-cta a {
  color: var(--w-o2);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--w-tr);
}

.wt-simple-cta a:hover {
  color: var(--w-o1);
  text-decoration: underline;
}

.wt-simple-cta__tagline {
  font-weight: 700;
  color: var(--w-navy) !important;
  font-size: 1rem !important;
}

/* ======================================================
   5b. TURNSTILE VALIDATOR SECTION
   ====================================================== */
.wt-turnstile-section {
  padding: 80px 0 90px;
  background: var(--w-bg);
  border-top: 1px solid var(--w-bord);
}

.wt-turnstile-header {
  text-align: center;
  margin-bottom: 55px;
}

.wt-turnstile-video-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* ======================================================
   6. OTHER PRODUCTS
   ====================================================== */
.wt-other {
  padding: 80px 0;
  background: var(--w-bg);
}

.wt-other__header {
  text-align: center;
  margin-bottom: 45px;
}

.wt-other__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.wt-prod-card {
  background: var(--w-bgw);
  border: 1px solid var(--w-bord);
  border-radius: var(--w-rad);
  padding: 35px;
  text-decoration: none;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}

.wt-prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--w-sha2);
  border-color: rgba(254, 148, 2, .25);
}

.wt-prod-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--w-soft);
  color: var(--w-o2);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.wt-prod-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--w-navy);
  margin-bottom: 12px;
}

.wt-prod-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--w-mute);
  margin-bottom: 20px;
  flex-grow: 1;
}

.wt-prod-card__link {
  font-size: .9rem;
  font-weight: 700;
  color: var(--w-o2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
}

.wt-prod-card:hover .wt-prod-card__link {
  gap: 10px;
}

/* ======================================================
   6. CTA SECTION
   ====================================================== */
.au-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--w-navy) 0%, #12213e 60%, #180d25 100%);
  padding: 85px 0;
}

.au-cta__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.au-cta__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.au-cta__blob--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: rgba(254, 148, 2, .2);
}

.au-cta__blob--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: rgba(205, 53, 118, .2);
}

.au-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.au-cta__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  font-family: var(--font-head);
  color: #fff;
}

.au-cta__text h2 .grad {
  background: linear-gradient(135deg, #fe9402 0%, #fd5f24 30%, #f53548 65%, #cd3576 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.au-cta__text p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 720px;
}

.au-cta__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media(max-width:900px) {
  .au-cta {
    padding: 60px 0;
  }
  .au-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}


/* ======================================================
   RESPONSIVE LAYOUTS
   ====================================================== */

/* --- Large tablet: tighten gaps --- */
@media(max-width:1200px) {
  .wt-intro__grid {
    gap: 30px;
  }

  .wt-intro__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
  }
}

/* --- Tablet & Mobile: stack layout --- */
@media(max-width:900px) {

  /* Hero: allow natural scrolling height */
  .wt-intro {
    height: auto !important;
    overflow: visible !important;
    padding: 0;
    display: block;
  }

  .wt-intro__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Text column: fills exactly one viewport screen */
  .wt-intro__copy {
    min-height: calc(100dvh - 160px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0;
  }

  /* Visual / dashboard card: appears below after scrolling */
  .wt-intro__visual {
    max-width: 520px;
    margin: 0 auto;
    padding: 32px 0 48px;
  }

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

  .wt-feat-cols {
    grid-template-columns: 1fr;
  }

  .wt-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media(max-width:767px) {
  .wt-kf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wt-clients-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .wt-other__grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .wt-intro__copy {
    min-height: calc(100dvh - 160px);
    padding: 24px 0;
  }

  .wt-intro__visual {
    padding: 0 0 40px;
  }

  .wt-intro__actions {
    flex-direction: column;
    width: 100%;
  }

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

  .wt-vis-pills {
    grid-template-columns: repeat(2, 1fr);
  }

  .wt-kf-grid {
    grid-template-columns: 1fr;
  }
}