/* ---------------------------------------------
   DiPStrategy -- Web Application Page
   style/web-app.css
   Layout & color scheme mirrored from ecommerce.css
   --------------------------------------------- */

.wa-top-section {
  position: relative;
  width: 100%;
  background-color: var(--navy);
  overflow: hidden;
}

.wa-top-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.5; z-index: 0;
  pointer-events: none;
}

.wa-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 20%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0) 70%
  );
  z-index: 1; pointer-events: none;
}

/* -- Hero image: bottom left -- */
.wa-hero-img {
  position: absolute;
  bottom: 0; left: 0;
  width: 40%; height: auto;
  z-index: 5;
  pointer-events: none;
  object-fit: contain;
  object-position: bottom left;
}

.wa-hero-content {
  position: relative; z-index: 10;
  padding: 180px 56px 0;
  padding-left: calc(30% + 56px);
}

.wa-accent-line {
  width: 160px; height: 4px;
  background: var(--lime);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}

.wa-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.6s 0.3s forwards;
}

.wa-label-star {
  width: 14px; height: 14px;
  animation: spin 12s linear infinite; flex-shrink: 0;
}

.wa-headline {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.0;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
}

.wa-headline .hl-1 {
  display: block;
  font-weight: 200;
  font-size: clamp(28px, 3.5vw, 60px);
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

.wa-headline .hl-2 {
  display: block;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 72px);
  letter-spacing: -0.04em;
  color: #fff;
  text-transform: uppercase;
}

.wa-subtext {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 560px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}

.wa-cta-group {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 56px;
  opacity: 0; animation: fadeUp 0.7s 0.6s forwards;
}

.wa-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #093564; background: #DEFF2D;
  border: none; border-radius: 999px;
  padding: 14px 28px; text-decoration: none;
  cursor: pointer; transition: background 0.25s, transform 0.2s;
}

.wa-cta-primary:hover { background: #f0ff50; transform: translateY(-2px); }

.wa-cta-secondary {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 13px;
  color: rgba(255,255,255,0.55); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}

.wa-cta-secondary:hover { color: #DEFF2D; }

/* Stat strip in hero */
.wa-stat-strip {
  display: flex; gap: 48px;
  opacity: 0; animation: fadeUp 0.7s 0.7s forwards;
}

.wa-stat-item { display: flex; flex-direction: column; gap: 4px; }

.wa-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(24px, 2.6vw, 36px);
  color: #DEFF2D; letter-spacing: -0.02em; line-height: 1;
}

.wa-stat-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 400; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Anchor strip */
.wa-anchor-strip {
  position: relative; z-index: 10;
  display: flex; align-items: center;
  padding: 0 56px;
  padding-left: calc(30% + 56px);
  opacity: 0; animation: fadeUp 0.7s 0.7s forwards;
}

.wa-anchor-item {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); text-decoration: none;
  padding: 16px 24px 16px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: 24px;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}

.wa-anchor-item:last-child { border-right: none; margin-right: 0; }
.wa-anchor-item:hover { color: #DEFF2D; }
.wa-anchor-item svg { width: 12px; height: 12px; }

/* --- UNTUK SIAPA --- */
.wa-us-section {
  position: relative;
  background-color: #E8357A;
  padding: 96px 56px; overflow: hidden;
}

.wa-us-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.15; z-index: 0; pointer-events: none;
}

.wa-us-inner { position: relative; z-index: 1; }

/* Base (global) -- dipakai juga oleh Yang Dibangun */
.wa-section-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #093564;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}

.wa-section-star {
  width: 14px; height: 14px;
  animation: spin 12s linear infinite; flex-shrink: 0;
}

.wa-section-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; font-size: clamp(30px, 3vw, 85px);
  color: #093564; letter-spacing: -0.02em;
  margin-bottom: 16px; line-height: 1.2;
}

.wa-opening {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; 
  font-size: clamp(15px, 1.3vw, 16px);
  line-height: 1.35;
  color: black;
  max-width: 640px; margin-bottom: 48px;
}

/* Override khusus untuk section Untuk Siapa (background pink -> teks putih) */
.wa-us-section .wa-section-label { color: rgba(255,255,255,0.9); }
.wa-us-section .wa-section-star { stroke: #093564 !important; }
.wa-us-section .wa-section-star g { stroke: #093564; }
.wa-us-section .wa-section-headline { color: #fff; }
.wa-us-section .wa-opening { color: rgba(255,255,255,0.85); }

/* 4 cards, 1 baris 4 kolom -- accordion vertikal */
.wa-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;
}

.wa-us-card {
  background: var(--card-color, #fff);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.wa-us-card.active {
  box-shadow: 0 4px 24px rgba(9,53,100,0.12);
}

.wa-us-card-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.wa-us-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--card-text, #093564);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
}

.wa-us-card-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--card-text, #093564);
  position: relative;
  margin-top: 2px;
}

.wa-us-card-icon svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  transition: opacity 0.25s;
}

.wa-us-card-icon .icon-minus { opacity: 0; }
.wa-us-card-icon .icon-plus  { opacity: 1; }

.wa-us-card.active .wa-us-card-icon .icon-minus { opacity: 1; }
.wa-us-card.active .wa-us-card-icon .icon-plus  { opacity: 0; }

.wa-us-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-us-card-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: var(--card-text, #093564);
  opacity: 0.85;
  padding: 0 24px 28px;
  margin: 0;
}

/* --- YANG DIBANGUN: 30/70 sticky + 6 cards --- */
.wa-yb-section {
  position: relative;
  background-color: #f0f0e6;
  padding: 64px 56px 96px; overflow: hidden;
}

.wa-yb-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.2; z-index: 0; pointer-events: none;
}

.wa-yb-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 64px; align-items: start;
}

.wa-yb-left { position: sticky; top: 100px; }

.wa-yb-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: clamp(30px, 2.5vw, 85px);
  color: #093564; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 16px;
}

.wa-yb-headline strong { font-weight: 900; }

.wa-yb-subtext {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; 
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.35;
  color: rgba(9,53,100,0.75);
}

.wa-yb-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.wa-yb-card {
  background: #fff; border-radius: 12px; padding: 28px;
  box-shadow: 0 2px 12px rgba(9,53,100,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.wa-yb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(9,53,100,0.1);
}

.wa-yb-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 10px;
  letter-spacing: 0.2em;
  color: #DEFF2D; background: #093564;
  display: inline-block; padding: 2px 8px;
  border-radius: 999px; margin-bottom: 12px;
}

.wa-yb-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 14px;
  color: #093564; margin-bottom: 8px;
}

.wa-yb-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 12.5px; line-height: 1.7;
  color: rgba(9,53,100,0.6);
}

/* --- SAMPLE WORK (Rekam Jejak, format carousel seperti E-Commerce) --- */
/* --- SAMPLE WORK (copied/adapted from Corporate Website) --- */
.wa-sw-section {
  position: relative;
  background-color: #f0f0e6;
  padding: 96px 56px;
  overflow: hidden;
}

.wa-sw-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.wa-sw-inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

/* -- Section header -- */
.wa-sw-header {
  text-align: center;
  margin-bottom: 32px;
}

.wa-sw-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #093564;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.wa-sw-star {
  width: 14px; height: 14px;
  animation: spin 12s linear infinite;
  flex-shrink: 0;
}

.wa-sw-subtitle {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 2.5vw, 85px);
  color: #093564;
  letter-spacing: -0.02em;
}

/* -- Intro text -- */
.wa-sw-intro {
  margin: 0 auto;
  padding: 0 10% 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(9,53,100,0.1);
  text-align: center;
}

.wa-sw-intro-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: clamp(15px 1.3vw 18px);
  line-height: 1.35;
  color: rgba(9,53,100,0.75);
  margin-bottom: 16px;
}

.wa-sw-intro-text:last-child { margin-bottom: 0; }

/* -- Carousel -- */
.wa-sw-carousel {
  position: relative;
  overflow: hidden;
}

.wa-sw-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* -- Card -- */
.wa-sw-card {
  flex: 0 0 calc((100% - 48px) / 3);
  cursor: pointer;
  position: relative;
}

.wa-sw-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.wa-sw-card-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.wa-sw-card:hover .wa-sw-card-img {
  transform: scale(1.04);
  filter: brightness(0.85);
}

/* Hover overlay */
.wa-sw-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.wa-sw-card:hover .wa-sw-card-overlay { opacity: 1; }

.wa-sw-card-overlay svg {
  width: 40px; height: 40px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Caption */
.wa-sw-card-caption {
  padding: 12px 4px 0;
}

.wa-sw-card-client {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 18vw);
  color: #093564;
  display: block;
  margin-bottom: 2px;
}

.wa-sw-card-project {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 0.9vw, 18px);
  color: rgba(9,53,100,0.85);
}

/* -- Dots -- */
.wa-sw-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.wa-sw-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(9,53,100,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.wa-sw-dot.active {
  background: #093564;
  width: 20px;
  border-radius: 3px;
}

/* -- Lightbox -- */
.wa-sw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wa-sw-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.wa-sw-lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,23,46,0.92);
  backdrop-filter: blur(8px);
}

.wa-sw-lb-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 90vw;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.95) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.wa-sw-lightbox.open .wa-sw-lb-content {
  transform: scale(1) translateY(0);
}

.wa-sw-lb-img {
  width: 100%;
  max-height: 65vh;
  object-fit: cover;
  display: block;
}

.wa-sw-lb-caption {
  background: #05213F;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.wa-sw-lb-client {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.wa-sw-lb-project {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.wa-sw-lb-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
  max-width: 560px;
}

.wa-sw-lb-close {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.wa-sw-lb-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.wa-sw-lb-close svg { width: 15px; height: 15px; }

.wa-sw-note {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 12px; line-height: 1.7;
  font-style: italic;
  color: rgba(9,53,100,0.35);
  text-align: center;
  margin-top: 32px;
}

/* --- CTA --- */
.wa-cta-section {
  background: #080808;
  padding: 80px 56px;
  position: relative; overflow: hidden; text-align: center;
}

.wa-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.04; pointer-events: none;
}

.wa-cta-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}

.wa-cta-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #DEFF2D;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}

.wa-cta-star { width: 14px; height: 14px; animation: spin 12s linear infinite; }

.wa-cta-headline { font-family: 'Montserrat', sans-serif; margin-bottom: 12px; }
.wa-cta-headline .hl-light {
  display: block; font-weight: 200;
  font-size: clamp(22px, 2.8vw, 40px);
  color: #fff; letter-spacing: -0.02em;
}
.wa-cta-headline .hl-bold {
  display: block; font-weight: 900;
  font-size: clamp(30px, 2.8vw, 85px);
  color: #DEFF2D; letter-spacing: -0.03em;
}

.wa-cta-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; 
  font-size: clamp(14px 1.3vw 18px);
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px; line-height: 1.35;
}

.wa-cta-form {
  display: flex; flex-direction: column; gap: 12px; text-align: left;
}

.wa-cta-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.wa-cta-field { display: flex; flex-direction: column; gap: 6px; }

.wa-cta-field-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.wa-cta-input,
.wa-cta-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 12px 16px;
  color: rgba(255,255,255,0.88);
  font-family: 'Barlow', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s; width: 100%;
}

.wa-cta-input::placeholder,
.wa-cta-textarea::placeholder { color: rgba(255,255,255,0.22); }
.wa-cta-input:focus,
.wa-cta-textarea:focus { border-color: rgba(222,255,45,0.4); }

.wa-cta-textarea { resize: none; height: 90px; line-height: 1.6; }

/* Checkbox toggles */
.wa-checkbox-group {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.wa-checkbox-btn {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 12px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; color: rgba(255,255,255,0.55);
  cursor: pointer; transition: all 0.2s;
  user-select: none;
}

.wa-checkbox-btn.selected {
  background: rgba(222,255,45,0.15);
  border-color: #DEFF2D;
  color: #DEFF2D;
}

.wa-cta-submit {
  background: #DEFF2D; border: none; border-radius: 8px;
  padding: 15px 28px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #080808; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%; margin-top: 4px;
}

.wa-cta-submit:hover { background: #f0ff50; transform: translateY(-1px); }

.wa-cta-microcopy {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center; margin-top: 8px;
}


.wa-cta-note {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 20px;
}

.wa-cta-note a { color: rgba(255,255,255,0.5); text-decoration: none; }
.wa-cta-note a:hover { color: #DEFF2D; }

/* --- TECHNOLOGY STACK (slim lime, sama format dengan Industry Insight) --- */
.wa-ts-section {
  background: #DEFF2D;
  padding: 56px 56px;
  overflow: hidden;
}

.wa-ts-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.wa-ts-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(9,53,100,0.5);
}

.wa-ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.wa-ts-card {
  padding: 0 32px 0 0;
}

.wa-ts-card.has-border {
  border-right: 1px solid rgba(9,53,100,0.15);
  margin-right: 32px;
}

.wa-ts-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #093564;
  display: block; margin-bottom: 16px;
}

.wa-ts-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.wa-ts-pill {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 12px;
  color: #093564;
  background: rgba(9,53,100,0.08);
  border-radius: 999px;
  padding: 6px 14px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .wa-hero-img       { display: none; }
  .wa-hero-content   { padding: 140px 24px 40px; }
  .wa-stat-strip     { gap: 32px; flex-wrap: wrap; }
  .wa-anchor-strip   { padding: 0 24px; flex-direction: column; gap: 0; }
  .wa-anchor-item    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 12px 0; margin-right: 0; }
  .wa-us-section     { padding: 64px 24px; }
  .wa-us-grid        { grid-template-columns: 1fr 1fr; }
  .wa-yb-section     { padding: 0 24px 64px; }
  .wa-yb-inner       { grid-template-columns: 1fr; gap: 40px; }
  .wa-yb-left        { position: static; }
  .wa-yb-grid        { grid-template-columns: 1fr; }
  .wa-ts-section     { padding: 48px 24px; }
  .wa-ts-grid        { grid-template-columns: 1fr; gap: 32px; }
  .wa-ts-card        { padding: 0; }
  .wa-ts-card.has-border { border-right: none; margin-right: 0; border-bottom: 1px solid rgba(9,53,100,0.15); padding-bottom: 32px; }
  .wa-sw-section     { padding: 64px 24px; }
  .wa-sw-intro       { padding: 0 4% 40px; }
  .wa-sw-card        { flex: 0 0 calc((100% - 24px) / 2); }
  .wa-cta-section    { padding: 64px 24px; }
  .wa-cta-row        { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wa-us-grid { grid-template-columns: 1fr; }
  .wa-sw-card { flex: 0 0 100%; }
}
